@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&family=Red+Rose:wght@300..700&display=swap");
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-1rem);
  }
  60% {
    transform: translateY(-0.5rem);
  }
}
@keyframes open-menu {
  0% {
    transform: scaleY(0);
  }
  80% {
    transform: scaleY(1.2);
  }
  100% {
    transform: scaleY(1);
  }
}
@keyframes fadeInDown {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  25% {
    transform: translateY(75%);
    opacity: 0.25;
  }
  50% {
    transform: translateY(50%);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes beat {
  0%, 50%, 100% {
    transform: scale(1, 1);
  }
  30%, 80% {
    transform: scale(0.84, 0.86);
  }
}
@keyframes animateOutline {
  0% {
    outline-width: 1px;
    outline-offset: 0;
    outline-color: rgba(0, 130, 206, 0);
  }
  10% {
    outline-color: rgba(0, 130, 206, 0.75);
  }
  /* The animation finishes at 50% */
  50% {
    outline-width: 3px;
    outline-offset: 3px;
    outline-color: rgba(0, 130, 206, 0);
  }
  100% {
    outline-width: 5px;
    outline-offset: 3px;
    outline-color: rgba(102, 102, 102, 0);
  }
}
*,
*::after,
*::before {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}
@media (max-width: 64em) {
  html {
    font-size: 50%;
  }
}
@media (max-width: 48em) {
  html {
    font-size: 43.75%;
  }
}
@media (max-width: 40em) {
  html {
    font-size: 37.5%;
  }
}

body {
  box-sizing: border-box;
  font-family: "Red Rose", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.7;
  color: #f3f6f9;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background-color: rgba(33, 37, 41, 0.9);
  height: 5rem;
}
.header .navbar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: 2rem;
  gap: 3rem;
  max-width: 90%;
  padding: 0.5rem;
  /* Hamburger menu styling */
}
.header .navbar .logo img {
  height: 4rem;
  width: auto;
}
.header .navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 15px;
}
.header .navbar .nav-links li a {
  color: #f3f6f9;
  font-size: 1.7rem;
  margin: 0 2rem;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 0.2rem solid transparent;
  transition: all 0.55s ease;
}
.header .navbar .nav-links li a:hover {
  color: #e23d28;
  border-bottom: 0.2rem solid white;
}
.header .navbar .menu-toggle {
  position: absolute;
  top: 1.2rem;
  right: 2rem;
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.header .navbar .menu-toggle .line {
  width: 20px;
  height: 2px;
  background-color: #f3f6f9;
  margin: 2px;
  transition: all 0.3s ease;
}
@media (max-width: 40em) {
  .header .navbar .nav-links {
    position: absolute;
    top: 5rem;
    left: -100%;
    right: 0;
    height: 100vh;
    width: 100%;
    flex-direction: column;
    background-color: rgba(33, 37, 41, 0.9);
    transform: translateX(0%);
    transition: transform 0.3s ease-in-out;
  }
  .header .navbar .nav-links.show {
    transform: translateX(100%);
  }
  .header .navbar .nav-links.show li {
    opacity: 1;
  }
  .header .navbar .nav-links li {
    opacity: 0;
    text-align: center;
    margin: 1rem 0;
    transition: opacity 0.3s ease-in-out;
  }
  .header .navbar .menu-toggle {
    display: flex;
  }
  .header .navbar .menu-toggle.open .line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  .header .navbar .menu-toggle.open .line:nth-child(2) {
    opacity: 0;
  }
  .header .navbar .menu-toggle.open .line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
}

main {
  background: linear-gradient(135deg, #1f1f23, #2d2d31, #101012);
  background-attachment: fixed;
}
main .search-section {
  background-image: url("../imgs/vipdesign-web.jpeg");
  background-size: cover;
  background-position: center;
  min-height: 91vh;
  padding-top: 8rem;
  position: relative;
}
main .search-section .scroll-down {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 90%;
}
main .search-section .scroll-down svg {
  fill: white;
  width: 2.4rem;
  height: 2.4rem;
  margin: 0 1rem;
  animation: bounce 2s infinite;
}
main .featured {
  scroll-margin-top: 5rem;
}
main .featured__title {
  font-size: 2.8rem;
  font-weight: 600;
  margin: 1rem auto;
  text-transform: uppercase;
  text-align: center;
  color: #f3f6f9;
  text-decoration: underline #e23d28;
  text-underline-offset: 0.35em;
}
main .hero-section {
  position: relative;
  top: 0;
  height: calc(100vh - 5rem);
  left: 0;
  z-index: 10; /* Ensure video is behind other content */
}
main .hero-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}
main .hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  z-index: 20; /* Ensure overlay is above the video */
  background-color: rgba(37, 38, 39, 0.5);
}
main .hero-section .overlay .slogan {
  position: relative;
  padding: 1rem;
  text-transform: uppercase;
  top: 20vh;
  color: white;
  font-size: 5rem;
  line-height: 1.1;
  letter-spacing: 0.13em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
@media (max-width: 64em) and (orientation: landscape) {
  main .hero-section .overlay .slogan {
    font-size: 4rem;
    top: 10vh;
  }
}
@media (max-width: 64em) and (orientation: portrait) {
  main .hero-section .overlay .slogan {
    font-size: 4rem;
    top: 10vh;
  }
}
@media (max-width: 48em) {
  main .hero-section .overlay .slogan {
    font-size: 4.5rem;
  }
}
@media (max-width: 40em) {
  main .hero-section .overlay .slogan {
    font-size: 3.5rem;
  }
}
main .hero-section .overlay .slogan span.first-words {
  color: #e23d28;
  text-shadow: 0.1rem 0.1rem 0.2rem rgba(33, 37, 41, 0.9);
}
main .hero-section .overlay .slogan .fadeInUp-animation {
  animation: 3s fadeInUp;
}
main .hero-section .overlay .slogan .fadeInDown-animation {
  animation: 3.5s fadeInDown;
}
main .hero-section .overlay .scroll-down {
  position: absolute;
  top: 95%;
}
@media (max-width: 40em) {
  main .hero-section .overlay .scroll-down {
    top: 80%;
  }
}
@media (max-width: 64em) and (orientation: portrait) {
  main .hero-section .overlay .scroll-down {
    top: 85%;
  }
}
main .hero-section .overlay .scroll-down svg {
  fill: white;
  width: 2.4rem;
  height: 2.4rem;
  margin: 0 1rem;
  animation: bounce 2s infinite;
}
main .hero-section .overlay .audio-icon {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  font-size: 2rem;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  padding: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  z-index: 20;
}
@media (max-width: 40em) {
  main .hero-section .overlay .audio-icon {
    bottom: 16%;
  }
}
@media (max-width: 64em) and (orientation: portrait) {
  main .hero-section .overlay .audio-icon {
    bottom: 10%;
  }
}
main .listing-page {
  position: relative;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
}
main .search-box {
  position: relative;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #f3f6f9;
  gap: 1rem;
}
@media (max-width: 48em) {
  main .search-box {
    width: 90%;
    font-size: 2.2rem;
  }
}
main .search-box .form-row {
  width: 100%;
}
main .search-box .form-row:last-child {
  width: 100%;
  margin-bottom: 1rem;
}
main .search-box .form-title {
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  color: white;
  text-decoration: underline #e23d28;
  text-underline-offset: 0.35em;
}
@media (max-width: 48em) {
  main .search-box .form-title {
    font-size: 3rem;
  }
}
main .search-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 48em) {
  main .search-form {
    flex-direction: column;
  }
}
main .search-form .custom-select {
  width: 30%;
  height: 4rem;
}
@media (max-width: 48em) {
  main .search-form .custom-select {
    width: 50%;
    height: 6rem;
  }
}
main .search-form .custom-select select {
  width: 100%;
  height: 100%;
  border-radius: 0.2rem;
  font-size: 1.4rem;
  color: #f3f6f9;
  background-color: rgba(33, 37, 41, 0.9);
  padding: 0.1rem;
}
@media (max-width: 48em) {
  main .search-form .custom-select select {
    padding: 1rem;
    font-size: 2rem;
  }
}
main .search-form .search-button {
  padding: 1rem 2rem;
  border: 1px solid #ccc;
  background-color: rgba(33, 37, 41, 0.9);
  color: white;
  border-radius: 0.5rem;
  cursor: pointer;
}
@media (max-width: 48em) {
  main .search-form .search-button {
    width: 50%;
    height: 6rem;
    padding: 0;
    font-size: 2rem;
  }
}
main .search-form .search-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
main .listing-page__listing {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2rem;
}
main .listing-page__listing .listing-page__lightbox {
  display: none;
  flex-direction: column;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 35;
  overflow: hidden;
}
main .listing-page__listing .listing-page__lightbox .lightbox__close-btn {
  position: absolute;
  top: 6rem;
  right: 6rem;
  cursor: pointer;
}
@media (max-width: 40em) {
  main .listing-page__listing .listing-page__lightbox .lightbox__close-btn {
    top: 2rem;
    right: 1rem;
  }
}
main .listing-page__listing .listing-page__lightbox .lightbox__close-btn svg {
  fill: #f3f6f9;
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 0.5rem;
}
main .listing-page__listing .listing-page__lightbox .lightbox__main-image-box {
  width: auto;
  max-width: 96rem;
  max-height: 70vh;
  margin-bottom: 2rem;
  margin-top: 2rem;
}
main .listing-page__listing .listing-page__lightbox .lightbox__main-image-box .lightbox__main-image {
  width: 100%;
  height: auto;
  max-height: 100%;
  display: block;
}
main .listing-page__listing .listing-page__lightbox .lightbox__carousel-box {
  display: flex;
  align-items: center;
  width: 90%;
}
main .listing-page__listing .listing-page__lightbox .lightbox__carousel-box .lightbox__carousel {
  display: flex;
  overflow: hidden;
  width: calc(100% - 8rem);
  position: relative;
}
main .listing-page__listing .listing-page__lightbox .lightbox__carousel-box .lightbox__carousel .lightbox__thumbnail {
  display: flex;
  transition: transform 0.3s ease-in-out;
}
main .listing-page__listing .listing-page__lightbox .lightbox__carousel-box .lightbox__carousel .lightbox__thumbnail img {
  width: 15rem;
  height: auto;
  object-fit: cover;
  cursor: pointer;
  margin: 0 0.5rem;
}
main .listing-page__listing .listing-page__lightbox .lightbox__carousel-box .lightbox__carousel .lightbox__thumbnail img:hover {
  transform: scale(1.1);
}
@media (max-width: 48em) {
  main .listing-page__listing .listing-page__lightbox .lightbox__carousel-box .lightbox__carousel .lightbox__thumbnail img {
    width: 10rem;
    height: auto;
  }
}
@media (max-width: 40em) {
  main .listing-page__listing .listing-page__lightbox .lightbox__carousel-box .lightbox__carousel .lightbox__thumbnail img {
    width: 7.5rem;
    height: auto;
  }
}
main .listing-page__listing .listing-page__lightbox .lightbox__carousel-box .lightbox__nav-button {
  background-color: rgba(0, 0, 0, 0.5);
  color: #f3f6f9;
  border: none;
  cursor: pointer;
  padding: 1rem;
  font-size: 1.8rem;
  margin: 0 1rem;
  transition: background-color 0.3s;
}
main .listing-page__listing .listing-page__lightbox .lightbox__carousel-box .lightbox__nav-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
main .listing-page__listing .card {
  background-color: #fff;
  box-shadow: 0 0.4rem 0.6rem rgba(0, 0, 0, 0.1);
  margin: 1.5rem;
  width: 40rem;
  border-radius: 0.8rem;
  overflow: hidden;
  position: relative;
  border: 0.1rem solid #ccc;
  display: flex;
  flex-direction: column;
}
main .listing-page__listing .card:hover {
  transform: scale(1.04);
  transition: transform 0.3s ease;
}
main .listing-page__listing .card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
main .listing-page__listing .card .btn-gallery {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  padding: 0.5rem 0.7rem;
  border-radius: 0.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0.2rem;
  outline-width: 1px;
  outline-offset: 0;
  outline-color: rgba(0, 130, 206, 0.75);
  outline-style: solid;
  animation: animateOutline 4s ease infinite;
}
main .listing-page__listing .card .btn-gallery .icon {
  width: 4rem;
  height: 2.2rem;
  margin-right: 0.2rem;
  animation: 1.5s ease 0s infinite beat;
}
main .listing-page__listing .card .btn-gallery .icon svg {
  fill: white;
  width: 2rem;
  height: 2rem;
  margin: 0 0.5rem;
}
main .listing-page__listing .card .btn-gallery .text {
  font-size: 1.3rem;
  margin: 0;
  margin-right: 0.5rem;
}
main .listing-page__listing .card .btn-gallery:hover {
  background-color: rgba(0, 0, 0, 0.5);
  border: 0.1rem solid #ccc;
}
main .listing-page__listing .card .featured {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 0.7rem;
}
main .listing-page__listing .card .featured svg {
  fill: rgb(228, 186, 0);
  width: 2rem;
  height: 2rem;
  margin: 0 0.5rem;
}
main .listing-page__listing .card .summary {
  padding: 0 1rem;
  color: #333;
  font-size: 1.4rem;
}
main .listing-page__listing .card .summary h3 {
  color: #e23d28;
  text-align: center;
}
main .listing-page__listing .card .summary a {
  color: #212529;
  transition: all 0.55s ease;
}
main .listing-page__listing .card .summary a:hover {
  color: #e23d28;
}
main .listing-page__listing .card .highlights {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 1.5rem;
  color: #333;
}
main .listing-page__listing .card .highlights .element {
  padding: 0.5rem;
  width: 50%;
  font-size: 1.1rem;
}
main .listing-page__listing .card .highlights .element span {
  color: rgb(160, 160, 160);
}
main .listing-page__listing .card .highlights .element svg {
  fill: rgb(160, 160, 160);
  width: 1.4rem;
  height: 1.4rem;
  margin: 0 0.5rem;
}
main .listing-page__listing .card .highlights .element h3 {
  padding-left: 2.5rem;
}
main .details {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: calc(100vh - 5rem);
}
@media (max-width: 48em) and (orientation: portrait) {
  main .details {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
}
@media (max-width: 40em) {
  main .details {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
}
main .details__nav {
  margin-top: 6rem;
}
@media (max-width: 40em) {
  main .details__nav {
    margin-top: 2rem;
    margin-left: 2rem;
  }
}
main .details__nav a {
  letter-spacing: 0.2rem;
  font-size: 1.5rem;
  color: #e23d28;
  text-transform: uppercase;
  margin-right: 1rem;
  transition: all 0.3s ease;
}
main .details__nav a:hover {
  color: #f3f6f9;
}
main .details__box {
  overflow: hidden;
  max-width: 80rem;
  width: 100%;
  padding: 2rem;
  text-align: center;
}
@media (max-width: 40em) {
  main .details__box {
    padding: 1rem;
  }
}
main .details__box .details__main-image {
  border: 2px solid;
  border-image: linear-gradient(to right top, #b3b3b3, #585858);
  border-image-slice: 1;
  margin-bottom: 2rem;
}
main .details__box .details__main-image img {
  max-width: 100%;
  height: auto;
  display: block;
}
main .details__box .details__thumbnails {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
main .details__box .details__thumbnails img {
  width: 8rem;
  height: 8rem;
  object-fit: cover;
  cursor: pointer;
  border: 0.2rem solid rgb(160, 160, 160);
  border-radius: 0.8rem;
  transition: border 0.3s;
}
main .details__box .details__thumbnails img:hover {
  transform: scale(1.1);
  border: 0.2rem solid #f3f6f9;
}
@media (max-width: 40em) {
  main .details__box .details__thumbnails img {
    margin-bottom: 1rem;
  }
}
main .details__box .details__content {
  text-align: left;
}
main .details__box .details__content h1 {
  margin-bottom: 1rem;
  font-size: 2rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  text-align: center;
}
main .details__box .details__content h2 {
  margin-bottom: 1rem;
  display: inline-block;
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
  color: #e23d28;
  text-transform: uppercase;
  border-bottom: 0.2rem solid white;
}
main .details__box .details__content .details__price {
  color: #e23d28;
  font-size: 2rem;
  letter-spacing: 0.2rem;
  text-align: center;
  margin-bottom: 2rem;
}
main .details__box .details__content .details__features-box {
  margin-bottom: 2rem;
}
@media (max-width: 40em) {
  main .details__box .details__content .details__features-box {
    width: 80%;
    margin-inline: auto;
  }
}
main .details__box .details__content .details__features-box .details__features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 40em) {
  main .details__box .details__content .details__features-box .details__features-grid {
    grid-template-columns: 1fr;
  }
}
main .details__box .details__content .details__features-box .details__features-grid .details__features-element {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
main .details__box .details__content .details__features-box .details__features-grid .details__features-element .details__features-title {
  flex: 0 1 30%;
  display: flex;
  align-items: center;
  color: rgb(160, 160, 160);
  font-size: 1.2rem;
}
@media (max-width: 40em) {
  main .details__box .details__content .details__features-box .details__features-grid .details__features-element .details__features-title {
    font-size: 1.8rem;
  }
}
main .details__box .details__content .details__features-box .details__features-grid .details__features-element .details__features-title i {
  margin-right: 0.8rem;
  color: #f3f6f9;
}
main .details__box .details__content .details__features-box .details__features-grid .details__features-element .details__features-content {
  flex: 0 1 50%;
  padding: 0.5rem;
  font-size: 1.3rem;
  border-radius: 0.4rem;
}
@media (max-width: 40em) {
  main .details__box .details__content .details__features-box .details__features-grid .details__features-element .details__features-content {
    font-size: 2rem;
  }
}
main .details__box .details__content .details__description {
  margin-bottom: 2rem;
}
@media (max-width: 40em) {
  main .details__box .details__content .details__description {
    width: 80%;
    margin-inline: auto;
  }
}
main .details__box .details__content .details__description p {
  font-size: 1.2rem;
}
@media (max-width: 40em) {
  main .details__box .details__content .details__description p {
    font-size: 2rem;
  }
}
main .car-form {
  position: relative;
  padding-top: 20rem;
  width: 100%;
  min-height: 100vh;
  padding: 2rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background-color: royalblue;
}
main .car-form form {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 3rem;
}
main .about {
  min-height: calc(100vh - 5rem);
  background: linear-gradient(135deg, #1f1f23, #2d2d31, #101012);
}
main .about__hero {
  height: 50vh;
  width: 100%;
  margin: 0;
  background-image: linear-gradient(to left bottom, rgba(50, 50, 50, 0.7), rgba(0, 0, 0, 0.7)), url(../imgs/about.jpeg);
  background-size: cover;
  background-position: center;
  text-align: center;
}
main .about__hero--title {
  position: relative;
  top: 80%;
  display: inline-block;
  font-size: 3rem;
  text-transform: uppercase;
  text-decoration: underline #e23d28;
  text-underline-offset: 0.35em;
  letter-spacing: 0.5rem;
}
main .about__summary {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  width: min(80% - 1rem);
  margin-inline: auto;
  flex-direction: row;
  padding-bottom: 2rem;
}
@media (max-width: 40em) {
  main .about__summary {
    flex-direction: column;
  }
}
main .about__summary--article {
  min-width: calc(50% - 0.5rem);
  flex-shrink: 1;
  flex-grow: 1;
  flex-basis: 0;
  padding: 0.5rem 1rem;
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
}
@media (max-width: 40em) {
  main .about__summary--article {
    font-size: 1.8rem;
  }
}
main .about__summary--article h3 {
  letter-spacing: 0.2rem;
  font-size: 1.5rem;
  color: #e23d28;
  text-transform: uppercase;
}
@media (max-width: 40em) {
  main .about__summary--article h3 {
    font-size: 2rem;
  }
}
main .about__summary--article > * {
  margin: 0.5rem 0;
  padding: 0.2rem 0;
}
main .about__summary--action h3 {
  color: #f3f6f9;
}
main .about__summary--action .call_btn {
  display: inline-flex;
  background-color: #e23d28;
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
}
main .about__summary--action .call_btn:hover {
  color: #e23d28;
  background-color: #f3f6f9;
}
main .about__summary--action .call_btn:hover svg {
  fill: #e23d28;
}
main .about__summary--action .call_btn svg {
  fill: #f3f6f9;
  width: 2.2rem;
  height: 2.2rem;
  margin-right: 0.5rem;
}
main .about__summary--action a {
  color: #f3f6f9;
}

footer {
  color: #f3f6f9;
  background-color: #050505;
}
footer .footer {
  display: flex;
  font-size: 1.2rem;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem;
}
footer .footer__section {
  text-align: center;
  padding: 1rem;
}
footer .footer__section h3 {
  color: #e23d28;
  text-transform: uppercase;
}
footer .footer__section span {
  text-transform: uppercase;
  font-weight: 600;
  margin-right: 0.5rem;
}
footer .footer__section p {
  display: flex;
  padding: 0.5rem 0;
}
footer .footer__section a {
  color: #f3f6f9;
}
footer .footer__section a:hover {
  color: #e23d28;
}
footer .footer__section .social-links {
  flex: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}
footer .footer__section .social-links svg {
  fill: white;
  width: 3rem;
  height: 3rem;
  margin: 1rem;
}
footer .footer__section .social-links svg:hover {
  fill: #e23d28;
  transform: scale(1.5);
}
footer .footer__brand {
  display: flex;
  align-items: center;
}
footer .footer__logo {
  padding: 1rem;
  max-width: 20rem;
}
@media (max-width: 40em) {
  footer .footer__logo {
    max-width: 15rem;
  }
}
footer .footer__logo img {
  max-width: 100%;
  height: auto;
  display: block;
}
footer .footer__address {
  text-align: left;
}
footer .footer__address h4 {
  font-size: 1.4rem;
  padding-bottom: 1rem;
}
footer .footer__address svg {
  fill: #f3f6f9;
  width: 2rem;
  height: 2rem;
  margin-right: 0.5rem;
}
footer .footer__social {
  flex: 0;
}
footer .footer__copy {
  flex-basis: 100%;
  font-size: 1rem;
  text-align: center;
}

/*# sourceMappingURL=style.css.map */
