/* Fonts and basics */
body {
  margin: 0px;
  font-family: "Raleway", serif;
  background-color: var(--evr_backgr);
}
* {
  box-sizing: border-box;
}

/* Background image for all pages */
.map {
  /* position: fixed; */
  margin-top: 3%;
  width: 100%;
  height: 100%;
  background-image: url("map.svg");
  background-position: top;
  background-repeat: no-repeat;
  background-size: 100%;
  backdrop-filter: blur(0.1em);
  -webkit-backdrop-filter: blur(00.1em);
}
/* End Background image */
/* EVR Colors */
:root {
  --evr_light: #0188cb;
  --evr_dark: #004aad;
  --evr_gold: #bab164;
  --evr_white: #ffffff;
  --evr_hf: #f0f0f04c;
  --evr_backgr: #05101e; /* Site Background */ 
  --evr_text: #f8fbfc; /* Site text */
  --evr_diag: #f0f0f0d6; 

}

a {
  text-decoration: none;
  color: var(--evr_text);
  font-weight: 400;
  transition: color 1s linear;
}
a:hover {
  color: var(--evr_dark);
}
h1 {
  text-align: center;
  font-size: 65px;
  font-weight: normal;
}
h2 {
  text-align: initial;
  font-size: 40px;
}
h3 {
  font-size: 30px;
}
h4 {
  font-size: 25px;
}

p {
  font-size: 20px;
}
ul {
  list-style: none;
}
/* End of Basics */

/* Primary header desktop */

.main-logo {
  z-index: 1005;
  position: sticky;
  width: 300px;
}
.primary-header {
  width: 100%;
  flex-direction: row;
  position: fixed;
  top: 0;
  z-index: 1000;
  background-color: var(--evr_backgr);
  backdrop-filter: blur(1em);
  -webkit-backdrop-filter: blur(1em);
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px -5px 13px 1px;
}
.primary-navigation {
  align-items: center;
  margin-right: 20px;
  list-style: none;
  width: fit-content;
  padding: unset;
}
.primary-navigation a {
  font-size: 20px;
  font-weight: 500;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
}
.primary-navigation a:hover {
  color: var(--evr_dark);
  text-decoration: none;
}
.mobile-connect {
  display: none;
}
/* Styles for the dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--evr_backgr);
  min-width: 120px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  border-radius: 0px 0px 25px 25px;
}

.dropdown-content a {
  color: var(--evr_text);
  padding: 12px 16px;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  gap: 5px;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
  border-radius: 0px 0px 25px 25px;
}

/* Show the dropdown content when the "Talk" link is hovered */
.dropdown:hover .dropdown-content {
  display: block;
}
/* End of Header desktop */

/* Main Content makes all Blocks appear in the same width, and adds text colors */
.main-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
}
.main-content h1,h2,h3,h4,p,a {
  color: var(--evr_text);
}
/* Add some spacing between sections */
.main-content > div:not(:first-child) {
  margin-bottom: 100px;
}
/* Style blocks. Background blur and border radius + content padding */
.main-content > div {
  margin-top: 5%;
  backdrop-filter: blur(0.2em);
  -webkit-backdrop-filter: blur(0.2em);
  border-radius: 55px;
  padding: 40px;
  box-shadow: 0px 0px 20px 1px;
}
/* Specific margins and backgrounds for specified page heroe's */
.main-content .quality-standards,.main-content .services-hero,.main-content .about-us-container,.main-content .privacy {
  margin-top: 5%;
  background-color: transparent;
  box-shadow: none;
}

.quality-standards {
  flex-direction: column;
}
/* Landing page hero element. Animations, images so and so */
.hero {
  margin-top: 2%;
  /* height: 1000px; */
  height: max-content;
  /* margin-bottom:10%; */
  flex-direction: row;
  text-align: initial;
  justify-content: space-between;
}
.hero-text h1  {
  margin: 0;
}

@keyframes moveAndFade-Award {
  0% {
      transform: translateX(0px);
      opacity: 0;
  }
  25% {
      /* transform: translateX(-100px); */
      opacity: 0;
  }
  30% {
      opacity: 0;
  } 
  40% {
      /* transform: translateX(-165px); */
      opacity: 1;
  }
  50% {
      transform: translateX(-165px);
      opacity: 1;
  }
  55% {
      transform: translateX(-165px);
      opacity: 0;
  }
  60% {
      transform: translateX(-165px);
      opacity: 0;
  }
  75% {
      transform: translateX(-165px);
      opacity: 0;
  }
  100% {
      transform: translateX(-260px);
      opacity: 0;
  }
}
@keyframes moveAndFade-Reliable {
  0% {
      transform: translateX(0px);
      opacity: 0;
  }
  25% {
      transform: translateX(-100px);
      opacity: 0;
  }
  30% {
      opacity: 0;
  }
  40% {
      /* transform: translateX(-135px); */
      opacity: 1;
  }
  50% {
      transform: translateX(-135px);
      opacity: 1;
  }
  55% {
      transform: translateX(-135px);
      opacity: 0;
  }
  60% {
      transform: translateX(-135px);
      opacity: 0;
  }
  75% {
      transform: translateX(-135px);
      opacity: 0;
  }
  100% {
      transform: translateX(-260px);
      opacity: 0;
  }
}
@keyframes moveAndFade-Speed {
  0% {
      transform: translateX(0px);
      opacity: 0;
  }
  25% {
    transform: translateX(-100px);
    opacity: 0;
  }
  30% {
      opacity: 0;
  }
  40% {
      /* transform: translateX(-160px); */
      opacity: 1;
  }
  50% {
      transform: translateX(-160px);
      opacity: 1;
  }
  55% {
      transform: translateX(-160px);
      opacity: 0;
  }
  60% {
      transform: translateX(-160px);
      opacity: 0;
  }
  75% {
    transform: translateX(-160px);
    opacity: 0;
  }
  100% {
      transform: translateX(-260px);
      opacity: 0;
  }
}

.evr-success {
  position: relative;
}

.evr-success .iphone-frame {
  position: relative;
  display: inline-block;
}

.iphone-frame img {
  width: 500px;
  display: block;
  margin-top: -10%;
  margin-bottom: 5%;
}

.evr-success .icon {
  position: absolute;
  top: 45%;
  opacity: 0;
  font-size: 100px;
  transform: translate(-50%, -50%);
  color: var(--evr_text);
}
.evr-success .icon-1 {
  right: 9.5%;
  -webkit-animation: moveAndFade-Award 5s infinite linear;
  animation: moveAndFade-Award 5s infinite linear;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}
.evr-success .icon-2 {
  right: 10%;
  -webkit-animation: moveAndFade-Reliable 5s infinite linear;
  animation: moveAndFade-Reliable 5s infinite linear;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}
.evr-success .icon-3 {
  right: 9.5%;
  -webkit-animation: moveAndFade-Speed 5s infinite linear;
  animation: moveAndFade-Speed 5s infinite linear;
  -webkit-animation-delay: 4.5s;
  animation-delay: 4.5s;
}
/* hero anims above */


.hero-success {
  /* margin: auto; */
  list-style: none;
  padding: 0;

}
.hero-success li {
  width: fit-content;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
}

.btn-hero {
  color: var(--evr_text);
  margin: 1% 0% !important;
}
/* Landing About block */

.about-container {
  flex-direction: row-reverse;
  align-items: center;
}
.about-text {
  padding: 5%;

}


.about-image img {
  width: 450px;
}
/* Landing Why Us Block */

.why-container {
  color: var(--evr_text);
  flex-direction: column;
  align-items: center !important;

}
.why-container h2 {
  margin-top: 0;
}
.why-text {
  flex-direction: row;
  flex-wrap: nowrap;
}
.why-image img {
  width: 450px;
}

/* Footer */
.sticky-footer {
  margin: auto;
  color: var(--evr_text);
  bottom: 0;
  height: fit-content;
  width: 100%;
  flex-direction: column;
  box-shadow: 0px 10px 10px 5px var(--evr_light);

}
.sticky-footer img {
  width: 150px;
}

.footer-content {
  margin: auto;
  justify-content: space-evenly;
  gap: 10rem !important;
  padding: 50px 50px 0px 50px;
}
.footer-content h3 {
  margin-top: 0;
  font-size: 20px;
}
.footer-content p,a {
  font-size: 16px;
}
.sticky-footer .rights {
  text-align: center;
}


/* utility classes */
.btn {
  text-decoration: none;
  padding: 10px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  /* background: var(--evr_hf); */
  background: linear-gradient(
    -45deg,
    var(--evr_dark) 0%,
    var(--evr_light) 100%
  );
}

/* Modal (The Email and Visual improvement window) */
.modal {
  width: max-content;
  border-radius: 50px;
  border: none;
  padding: 70px;

  background-color: var(--evr_diag);
}
.modal.improvement .modal-content {
  flex-direction: column;
}
.modal-content {
  flex-direction: column-reverse;
  align-items: self-end;
}
.modal::backdrop {
  position: fixed !important ;
  -webkit-backdrop-filter: blur(000.5em);
  backdrop-filter: blur(00.5em);
}
.modal.improvement {
  width: 50%;
  height: 70%;
  overflow: hidden;
}
.hero-contact-form {
  flex-direction: row;
}
.form-heading {
  flex-direction: column-reverse;
  justify-content: flex-end;
}

.hero-form {
  color: #000000;
  flex-direction: column;
  gap: 0.3rem !important;
  width: 100%;
  font-size: 24px;
  align-items: flex-start;

}
.hero-form input,textarea,select {
  width: 100%;
  font-size: 20px;
  font-family: Raleway;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.147);
}
.form-text > .heading,.form-text h3,.form-text > p {
  color: #000000 !important;
}
.contact.content {
  color: var(--evr_white);
  width: 100%;
}


.close-dialog-btn {
  background: linear-gradient(
    -45deg,
    var(--evr_light) 0%,
    var(--evr_gold) 100%
  );
  color: var(--evr_text);
  font-size: 30px;
  transition: background ease-in-out 1s;
}
.close-dialog-btn:hover {
  background: transparent;
}
.btn.submit {
  color: #e8e8e8;
  text-decoration: none;
  padding: 10px;
  font-weight: 600;
  font-size: 16px;
  width: 25%;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  background: linear-gradient(
    -45deg,
    var(--evr_dark) 0%,
    var(--evr_light) 100%
  );
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.btn.submit:disabled {
  opacity:.3!important;
}
.btn.submit:hover {
  outline: 2px solid #e8e8e8;
  background: transparent;
  color: #e8e8e8;
}
.btn.submit:active {
  box-shadow: none;
}

.flex {
  display: flex;
  gap: 1rem;
}
.fa-angle-double-left,.fa-angle-double-right {
  display: none !important;
}

/* Card hover styles. the thing that makes the gold blue hover effect on blocks */
.card {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  /* width: 320px; */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  padding: 32px;
  overflow: hidden;
  /* border-radius: 10px; */
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}


.about-text.content,
.hero-text.content {
  flex-direction: column;
  color: var(--evr_text);
}

.content .heading {
  font-weight: 700;
  font-size: 32px;
}

.content .para {
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
}

.content .btn {
  color: #e8e8e8;
  text-decoration: none;
  padding: 10px;
  font-weight: 600;
  font-size: 20px;
  border: none;
  cursor: pointer;
  background: linear-gradient(
    -45deg,
    var(--evr_dark) 0%,
    var(--evr_light) 100%
  );
  border-radius: 5px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    -45deg,
    var(--evr_dark) 10%,
    var(--evr_gold) 100%
  );
  z-index: -1;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.card:hover::before {
  height: 100%;
}

.card:hover {
  box-shadow: none;
}

.card:hover .btn {
  color: #212121;
  background: #e8e8e8;
}

.content .btn:hover, .second-content .btn:hover{
  outline: 2px solid #e8e8e8;
  background: transparent;
  color: #e8e8e8;
}


.content .btn:active {
  box-shadow: none;
}

/* Card Small light to dark blue gradient */

.card-small {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  /* width: 420px; */
  height: 250px;
  /* height: fit-content; */
  width: 25%;
  /* width: calc(50% - 20px); */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  padding: 15px;
  overflow: hidden;
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.card-small.inner {
  width: 100%;
  height: 800px;
  margin-bottom: 10%;
}

.rma-step {
  flex-wrap: wrap;
}

.card-small.request {
  width: 100%;
  /* height: 20%; */
}
.card-small.contact-form {
  margin-top: 5%;
  width: 100%;
}
.card-small.questions {
  width: 100%;
  margin-top: 10%;
}
.about-us-container > div {
  margin-top:5%;
  width: 100%;
}



.content-small {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* gap: 20px; */
  /* color: #e8e8e8; */
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.first-content .heading {
  font-weight: 700;
  font-size: 32px;
  padding: 1%;
  margin-top: unset;
}

.second-content .para {
  /* line-height: 1.5; */
  font-size: 16px !important;
}

.content-small .btn {
  color: #e8e8e8;
  text-decoration: none;
  padding: 10px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: linear-gradient(-45deg, #f89b29 0%, #ff0f7b 100%);
  border-radius: 5px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.card-small::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    -45deg,
    var(--evr_dark) 0%,
    var(--evr_light) 100%
  );
  z-index: -1;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-small:hover::before {
  height: 100%;
}

.card-small:hover {
  box-shadow: none;
}

.card-small:hover .btn {
  color: #212121;
  background: #e8e8e8;
}

.content-small .btn:hover {
  outline: 2px solid #e8e8e8;
  background: transparent;
  color: #e8e8e8;
}

.content-small .btn:active {
  box-shadow: none;
}

.first-content {
  height: 100%;
  width: 100%;
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* margin: auto; */
  opacity: 1;
  border-radius: 15px;
  transition: all 0.4s;


}
.first-content ul {
  list-style: none;
  padding: 0;
  text-align: center;
}
.first-content  i {
  opacity: 1;
  font-size: 48px;
  transition: all 0.4s;
}

.card-small:hover .first-content {
  height: 0px;
  opacity: 0;
}
.card-small:hover .first-content i {
  opacity: 0;
}

.second-content {
  height: 0%;
  opacity: 0;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  transition: height 0.4s;
  font-size: 0px;

}

.card-small:hover .second-content {
  opacity: 1;
  height: 100%;
  transition: height 0.4s;
}
/* Fades in blocks */
.hidden {
  opacity: 0;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}

.show {
  opacity: 1;
}

.content.hidden.rma {
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;

}
.content.hidden.rma {
  width: 350px;
  opacity: 0;
  border-radius: 50px;
}
.rma-process-container {
  flex-direction: column;
  align-items: unset;
}

.services.card {
  flex-direction: column;
  align-items: flex-start;
}
/* About page team block */
.the-team {
  flex-direction: row;
  flex-wrap: wrap;
  color: var(--evr_text);
  text-align: center;
}
.team-member {
  flex-direction: column;
  padding: 5px;
  width: 30%;
  margin: auto;
  gap: 0;
}
.team-member-pic {
  position: relative;
  width: 100%;
  border-radius: 30px;
  margin: auto;
}
.pic-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.pic-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    -45deg,
    var(--evr_dark) 0%,
    var(--evr_light) 100%
  );
  z-index: -1;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.pic-wrap:hover::before {
  height: 100%;
}

.pic-wrap:hover {
  box-shadow: none;
}
.team-member-name {
  margin-top: 15px;
  font-size: 26px;
  line-height: 1;
  padding: none;
}
.team-position {
  margin-top: 10px;
  font-weight: bold;
}
.team-socials {
  margin-top: 5px;
}

/* Improvement Slider */
.split {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: strech;
}
.split p {
  flex-basis: 100%;
}
@media screen and (min-width: 767px) {
  .split p {
    flex-basis: 48%;
  }
}

.container {
  position: relative;
  width: 100%;
  margin: 50px 0;
}
.container .inner {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
  box-sizing: border-box;
  padding: 20px 30px;
  background-color: #EEE;
}

.comparison-slider-wrapper {
  position: relative;
  width: 100%;
  margin: 20px 0;
  background-color: white;
}
.comparison-slider-wrapper .comparison-slider {
  position: relative;
  width: 100%;
  margin: 0;
  border: 5px white solid;
  box-sizing: border-box;
}
.comparison-slider-wrapper .comparison-slider > img {
  width: 100%;
  height: auto;
  display: block;
}
.comparison-slider-wrapper .comparison-slider .overlay {
  display: none;
  position: absolute;
  width: 250px;
  bottom: 20px;
  right: 20px;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 10px;
  box-sizing: border-box;
  color: #DDD;
  text-align: right;
}
@media screen and (min-width: 767px) {
  .comparison-slider-wrapper .comparison-slider .overlay {
    display: block;
  }
}
.comparison-slider-wrapper .comparison-slider .resize {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
}
.comparison-slider-wrapper .comparison-slider .resize > img {
  display: block;
}
.comparison-slider-wrapper .comparison-slider .resize .overlay {
  right: auto;
  left: 20px;
  text-align: left;
}
.comparison-slider-wrapper .comparison-slider .divider {
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  left: 50%;
  top: 0;
  bottom: 0;
  margin-left: -1px;
  cursor: ew-resize;
}
.comparison-slider-wrapper .comparison-slider .divider:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: -9px;
  top: 50%;
  margin-top: -10px;
  background-color: white;
  transform: rotate(45deg);
  transition: all 0.1s ease-in-out;
}
.comparison-slider-wrapper .comparison-slider .divider:after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  left: -5px;
  top: 50%;
  margin-top: -6px;
  background-color: white;
  transform: rotate(45deg);
  transition: all 0.1s ease-in-out;
}
.comparison-slider-wrapper .comparison-slider .divider.draggable:before {
  width: 30px;
  height: 30px;
  left: -14px;
  margin-top: -15px;
}
.comparison-slider-wrapper .comparison-slider .divider.draggable:after {
  width: 20px;
  height: 20px;
  left: -9px;
  margin-top: -10px;
  background-color: #555;
}
.comparison-slider-wrapper .caption {
  position: relative;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  font-size: 12px;
  font-style: italic;
}
/* End Slider */
/* Policy pages */
.terms ul {
  color: var(--evr_text);
  margin: 0;
}
.terms li {
  margin: 5px;
}
.policy ul {
  padding-left: 25px;

}
.policy li {
  color: var(--evr_text);
  padding: 5px;
}

.LIAA_container {
  display:flex;
  justify-content: center;
  flex-direction: column;
  align-items:center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.LIAA_container > p {
  font-size:0.8rem;
  width: 50%;
  text-align: center;
}

/* Styles for mobile phones */
@media (max-width: 450px) {

  h1 {
    text-align: center;
    font-size: 35px;
    font-weight: normal;
  }
  h2 {
    text-align: initial;
    font-size: 30px;
  }
  h3 {
    font-size: 16px;
  }

  p {
    font-size: 14px;
  }
  .main-logo {
    width: 250px;
  }
  .primary-header img {
    width: 250px;
  }
  .primary-header {
    padding-top: 5px;
  }
  .primary-navigation {
    padding-top: 50%;
    align-items: flex-end;
    flex-direction: column;
    gap: 0rem;
    position: fixed;
    top: -25px;
    left: 500px;
    width: 100%;
    height: 110%;
    -webkit-backdrop-filter: blur(00.5rem);
    backdrop-filter: blur(00.5rem);
    transition: all ease-in-out 0.5s;
    z-index: 1001;

  }
  .primary-navigation a {
    font-size: 34px;
    text-align: end;
  }
  .primary-navigation ul {
    margin-top: 10% !important;
  }
  .primary-navigation li {
    margin: 0% 10% 5% 0%;
  }

  .flex {
    flex-direction: column;
  }

  .primary-navigation.active {
    left: 0;
  }

  .dropdown {
    display: none;
  }

  .mobile-connect {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .mobile-connect i {
    padding-right: 20px;
  }

  .fa-angle-double-left,.fa-angle-double-right {
    display: block !important;
    position: fixed;
    background-color: transparent;
    border: none;
    font-size: 3rem !important;
    z-index: 1002;
    margin: 1%;
    color: var(--evr_text);
    top: 1%;
    left: 82%;
    margin-right: 5%;
    padding: 0;
    cursor: pointer;
  }

  .main-content {
    margin: 10% auto;
    padding: unset;
    width: 100%;
  }

  .main-content > div,
  .main-content > div:not(:first-child) {
    box-shadow: none;
    border-radius: 0;
    background: none;
    margin: 0;
  }

  .primary-header {
    margin: auto;
    max-width: 100%;
    
  }

  .card {
    background-color: none;
  }

  .evr-success,
  .about-image,
  .why-image {
    display: none;
  }

  .heading {
    font-size: 24px;
  }

  .hero {
    margin-top: 25% !important;
  }

  .hero-heading h1 {
    font-size: 44px;
    font-weight: bold;
  }

  .hero-heading p {
    font-size: 18px;
  }

  .hero-success li {
    font-size: 14px;
  }

  .card-small {
    width: unset;
  }

  .card-small.inner {
    width: 100%;
    height: 250px;
    margin-bottom: 10%;
  }

  .map {
    width: 100%;
    height: 100%;
    background-image: url("map.svg");
    background-position: top;
    background-repeat: no-repeat;
    background-size: 150%;
  }

  .modal {
    width: max-content;
    border-radius: 15px;
    border: none;
    padding: 10px;
  }

  .modal-content {
    flex-direction: column-reverse;
    align-items: self-end;
    gap: unset;
  }

  .modal.improvement {
    width: 100%;
    height: fit-content;
    overflow: hidden;
  }

  .hero-form {
    font-size: 14px;

  }
  .hero-form input textarea select {
    font-size: 14px;
  }

  .btn.submit {
    width: 100%;
  }

  .form-heading {
    flex-direction: row;
    align-items: flex-start;
  }

  .close-dialog-btn {
    width: 15%;
    font-size: 20px;
  }

  .content.hidden.rma {
    justify-content: center;

  }
  .content.hidden.rma img {
    width: 350px;
    border-radius: 25px;
  }

  .team-member {
    width: auto;
  }

  .footer-content {
    margin:0% 5% 0% 0%;
    gap: 2rem !important;
    padding-left: 5%;
  }
  .footer-content h3 {
    font-size: 20px;
  }
  .footer-content p a {
    font-size: 16px;
  }

  .terms ul {
    color: var(--evr_text);
    margin: 0;
    padding: 0; 
  }
  .LIAA_container > p {
    font-size:0.8rem;
    width: 100%;
    padding: 0 1rem;
    text-align: center;
  }
}
