@charset "UTF-8";
@font-face {
  font-family: "SourceSans3";
  font-weight: 400 500 600 700;
  src: url(fonts/SourceSans3-VariableFont_wght.ttf) format(woff2), url(fonts/SourceSans3-VariableFont_wght.ttf) format(woff), url(fonts/SourceSans3-VariableFont_wght.ttf) format(truetype);
  font-display: swap;
}
body,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "SourceSans3", Fallback, sans-serif;
}
@media screen and (max-width: 1075px) {
  body,
  html {
    overflow-x: hidden;
  }
}

html {
  scroll-behavior: smooth;
}

@media screen and (orientation: landscape) {
  html {
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -o-text-size-adjust: 100%;
  }
}
body.no-scroll {
  overflow: hidden;
}

a {
  color: #410445;
  text-decoration: none;
}
a:hover {
  font-weight: 600;
}

img {
  max-width: 100%;
}

strong {
  font-weight: 600;
}

.section-wrapper .header-bg {
  background-color: #410445;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}
@media screen and (max-width: 1075px) {
  .section-wrapper .header-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 90px auto;
  }
}
.section-wrapper .header-bg .logo img {
  width: 150px;
  height: auto;
  display: block;
}
.section-wrapper .header-bg .logo img:hover {
  cursor: pointer;
}
.section-wrapper .header-bg .logo img {
  transition: width 0.3s ease-in-out;
}
@media screen and (max-width: 1075px) {
  .section-wrapper .header-bg .logo img {
    width: 90px;
    padding: 0 1.5rem;
  }
}
.section-wrapper .header-bg.transparent .logo img {
  width: 90px;
  transition: width 0.3s ease-in-out;
}
.section-wrapper .header {
  max-width: 1075px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.section-wrapper .header .logo {
  margin-right: auto;
  align-self: flex-start;
}
.section-wrapper .header nav ul.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: space-between;
}
.section-wrapper .header nav ul.nav-links li {
  margin-right: 2rem;
}
.section-wrapper .header nav ul.nav-links li:last-child {
  margin-right: 0;
}
.section-wrapper .header nav ul.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
}
.section-wrapper .header nav ul.nav-links li a:hover {
  text-decoration: underline;
}
.section-wrapper .header .mobile-menu {
  display: none;
}
@media screen and (max-width: 1075px) {
  .section-wrapper .header .main-nav {
    display: none;
  }
  .section-wrapper .header .mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: fixed;
    top: 0;
    right: 0;
    height: auto;
    background-color: #410445;
  }
  .section-wrapper .header .mobile-menu .mobile-menu-toggle {
    font-size: 1rem;
    text-align: center;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10000;
    width: 45px;
    height: 45px;
    cursor: pointer;
  }
  .section-wrapper .header .mobile-menu .mobile-menu-toggle.exit span {
    background-color: #fff;
  }
  .section-wrapper .header .mobile-menu .mobile-menu-toggle.exit span:first-child {
    transform: rotate(45deg);
    top: 44px;
    right: 2.5rem;
  }
  .section-wrapper .header .mobile-menu .mobile-menu-toggle.exit span:nth-child(2) {
    opacity: 0;
  }
  .section-wrapper .header .mobile-menu .mobile-menu-toggle.exit span:nth-child(3) {
    transform: rotate(-45deg);
    top: 44px;
    right: 2.5rem;
  }
  .section-wrapper .header .mobile-menu .mobile-menu-toggle.exit .open {
    display: none;
  }
  .section-wrapper .header .mobile-menu .mobile-menu-toggle span {
    width: 41px;
    height: 4px;
    background-color: #fff;
    border-radius: 50px;
    position: absolute;
    transition: all 0.3s;
  }
  .section-wrapper .header .mobile-menu .mobile-menu-toggle span:first-child {
    top: 22px;
    right: 2.5rem;
  }
  .section-wrapper .header .mobile-menu .mobile-menu-toggle span:nth-child(2) {
    top: 32px;
    right: 2.5rem;
  }
  .section-wrapper .header .mobile-menu .mobile-menu-toggle span:nth-child(3) {
    top: 42px;
    right: 2.5rem;
  }
  .section-wrapper .header .mobile-menu .mobile-menu-toggle .open {
    display: block;
    padding-right: 2.5rem;
    position: absolute;
    top: 46px;
    right: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
  }
  .section-wrapper .header .mobile-menu .mobile-menu-items {
    display: flex;
    justify-content: center;
    list-style-type: none;
    background-color: #410445;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 2rem;
    z-index: 9999;
    visibility: hidden;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }
  .section-wrapper .header .mobile-menu .mobile-menu-items.show {
    visibility: visible;
    transform: translateX(0);
    opacity: 1;
  }
  .section-wrapper .header .mobile-menu .mobile-menu-items ul.mobile-menu-list {
    flex-direction: column;
    list-style-type: none;
  }
}
@media screen and (max-width: 1075px) and (orientation: landscape) and (max-height: 540px) {
  .section-wrapper .header .mobile-menu .mobile-menu-items ul.mobile-menu-list {
    margin-top: 0rem;
  }
}
@media screen and (max-width: 1075px) {
  .section-wrapper .header .mobile-menu .mobile-menu-items ul.mobile-menu-list li {
    margin: 1.5rem 0;
  }
}
@media screen and (max-width: 1075px) and (orientation: landscape) and (max-height: 540px) {
  .section-wrapper .header .mobile-menu .mobile-menu-items ul.mobile-menu-list li {
    margin: 0.5rem 0;
  }
  .section-wrapper .header .mobile-menu .mobile-menu-items ul.mobile-menu-list li:first-child {
    margin-top: -0.5rem;
    padding-top: 0rem;
  }
}
@media screen and (max-width: 1075px) {
  .section-wrapper .header .mobile-menu .mobile-menu-items ul.mobile-menu-list li a {
    font-size: 1.6rem;
    color: #fff;
    text-decoration: none;
  }
}
@media screen and (max-width: 1075px) and (orientation: landscape) and (max-height: 540px) {
  .section-wrapper .header .mobile-menu .mobile-menu-items ul.mobile-menu-list li a {
    font-size: 1.2rem;
    font-weight: 600;
  }
  .section-wrapper .header .mobile-menu .mobile-menu-items ul.mobile-menu-list li a img {
    width: 22px;
    height: auto;
  }
}
@media screen and (max-width: 1075px) {
  .section-wrapper .header .mobile-menu .mobile-menu-items ul.mobile-menu-list li a:hover {
    text-decoration: underline;
  }
}
.section-wrapper .top-section-wrapper {
  background-color: #410445;
}
.section-wrapper .top-section-wrapper .top-section {
  color: #fff;
  padding: 1.5625rem 0;
  margin: 0 auto;
  position: relative;
  width: clamp(300px, 100%, 1075px);
}
.section-wrapper .top-section-wrapper .top-section h1 {
  font-size: clamp(4.6rem, 5.3vw, 5.6rem);
  font-weight: 700;
  margin: 0;
  line-height: 100%;
  width: clamp(300px, 45%, 537.5px);
}
@media screen and (max-width: 1075px) {
  .section-wrapper .top-section-wrapper .top-section h1 {
    width: clamp(300px, 98%, 537.5px);
    font-size: clamp(2.8rem, 7.5vw, 4rem);
    line-height: 100%;
    margin-top: 5.5rem;
  }
}
.section-wrapper .top-section-wrapper .top-section h2 {
  font-size: clamp(1.8rem, 2vw, 2rem);
  line-height: 140%;
  font-weight: 600;
  margin: 0;
  padding: 1rem 0 0;
  width: clamp(300px, 50%, 537.5px);
}
@media screen and (max-width: 740px) {
  .section-wrapper .top-section-wrapper .top-section h2 {
    width: clamp(290px, 97%, 537.5px);
    font-size: clamp(1.55rem, 3vw, 2rem);
  }
}
.section-wrapper .top-section-wrapper .top-section .intro-text {
  font-size: clamp(1.375rem, 1.5vw, 1.375rem);
  line-height: 155%;
  margin: 1rem 0 0;
  width: clamp(300px, 50%, 537.5px);
}
.section-wrapper .top-section-wrapper .top-section .intro-text a,
.section-wrapper .top-section-wrapper .top-section .intro-text a:hover,
.section-wrapper .top-section-wrapper .top-section .intro-text a:visited,
.section-wrapper .top-section-wrapper .top-section .intro-text a:active,
.section-wrapper .top-section-wrapper .top-section .intro-text a:focus {
  color: #fff;
}
@media screen and (max-width: 740px) {
  .section-wrapper .top-section-wrapper .top-section .intro-text {
    width: clamp(290px, 98%, 537.5px);
    font-size: clamp(1.275rem, 2.5vw, 1.375rem);
  }
}
.section-wrapper .top-section-wrapper .top-section .intro-buttons {
  margin: 1.5625rem 0 2rem;
}
@media screen and (max-width: 740px) {
  .section-wrapper .top-section-wrapper .top-section .intro-buttons {
    display: none;
  }
}
.section-wrapper .top-section-wrapper .top-section .intro-buttons .btn {
  display: inline-block;
  font-size: clamp(1.25rem, 1.5vw, 1.5rem);
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding: 0.8125rem 1.5625rem;
  border-radius: 1000px;
  margin-right: 0.9375rem;
  margin-bottom: 0.9375rem;
}
.section-wrapper .top-section-wrapper .top-section .intro-buttons .btn.btn--outline {
  background-color: transparent;
  border: 2px solid #fff;
}
.section-wrapper .top-section-wrapper .top-section .intro-buttons .btn:hover {
  background-color: #fff;
  color: #410445;
  transition: background-color 0.3s ease-out, border 0.3s ease-out, color 0.3s ease-out;
}
.section-wrapper .top-section-wrapper .top-section .intro-image img {
  position: absolute;
  right: 0;
  top: 2rem;
  border-radius: 0.5rem;
  width: clamp(300px, 47%, 500px);
  height: auto;
}
@media screen and (min-width: 1100px) and (max-width: 1600px) {
  .section-wrapper .top-section-wrapper .top-section .intro-image img {
    width: clamp(300px, 48%, 475px);
  }
}
@media screen and (max-width: 1075px) {
  .section-wrapper .top-section-wrapper .top-section .intro-image img {
    width: clamp(300px, 46%, 475px);
    top: 7.5rem;
  }
}
@media screen and (max-width: 740px) {
  .section-wrapper .top-section-wrapper .top-section .intro-image img {
    display: none;
  }
}
.section-wrapper .top-section-wrapper .top-section .intro-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: start;
  gap: 1.25rem;
  row-gap: 1.25rem;
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 740px) {
  .section-wrapper .top-section-wrapper .top-section .intro-features {
    margin-top: 1.5rem;
  }
}
.section-wrapper .top-section-wrapper .top-section .intro-features .intro-feature {
  padding: 1.25rem;
  background-color: #fff;
  color: #000;
  border-radius: 0.5rem;
}
.section-wrapper .top-section-wrapper .top-section .intro-features .intro-feature h3 {
  margin: 0 0 0.625rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: #410445;
}
.section-wrapper .top-section-wrapper .top-section .intro-features .intro-feature p {
  margin: 0;
  font-size: 1.1rem;
  padding-bottom: 0.5rem;
  line-height: 1.6;
}
.section-wrapper .top-section-wrapper .top-section .intro-features .intro-feature a {
  color: #000;
  text-decoration: none;
}
.section-wrapper .top-section-wrapper .top-section .intro-features .intro-feature a:hover {
  font-weight: 600;
}
.section-wrapper .top-section-wrapper .top-section .intro-features .intro-feature .intro-feature-image {
  max-width: 100%;
  height: auto;
  margin: 0.5rem 0 0.25rem;
}
@media screen and (max-width: 987px) {
  .section-wrapper .top-section-wrapper .top-section .intro-features .intro-feature {
    align-self: stretch;
  }
}
@media screen and (max-width: 1100px) {
  .section-wrapper .top-section-wrapper {
    padding: 0 1.5rem;
  }
}
.section-wrapper .shop-section-wrapper {
  padding-bottom: 1.25rem;
}
.section-wrapper .shop-section-wrapper .page-section-shop {
  max-width: 1075px;
  margin: 0 auto;
}
.section-wrapper .shop-section-wrapper .page-section-shop .page-section-shop-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #410445;
  margin-bottom: 1.25rem;
  text-align: center;
}
.section-wrapper .shop-section-wrapper .page-section-shop .list-of-pics {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  row-gap: 1.5rem;
}
@media screen and (max-width: 667px) {
  .section-wrapper .shop-section-wrapper .page-section-shop .list-of-pics {
    -moz-column-count: 1;
         column-count: 1;
  }
  .section-wrapper .shop-section-wrapper .page-section-shop .list-of-pics :last-child {
    margin-bottom: 0;
  }
}
.section-wrapper .shop-section-wrapper .page-section-shop .list-of-pics img {
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  max-width: 100%;
  height: auto;
}
.section-wrapper .shop-section-wrapper .page-section-shop .list-of-pics img[alt="Ett kylskåp med många kartonger med hundfoder"] {
  margin-bottom: 0;
}
@media screen and (max-width: 667px) {
  .section-wrapper .shop-section-wrapper .page-section-shop .list-of-pics img[alt="Ett kylskåp med många kartonger med hundfoder"] {
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 1100px) {
  .section-wrapper .shop-section-wrapper .page-section-shop {
    padding: 0 1.5rem;
  }
}
.section-wrapper .suppliers-section-wrapper {
  background-color: #410445;
  padding-bottom: 3rem;
}
.section-wrapper .suppliers-section-wrapper .page-section-suppliers {
  max-width: 1075px;
  margin: 0 auto;
}
.section-wrapper .suppliers-section-wrapper .page-section-suppliers .page-section-suppliers-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  padding: 2rem 0 0;
  text-align: center;
}
.section-wrapper .suppliers-section-wrapper .page-section-suppliers .page-section-suppliers-text {
  font-size: 1.375rem;
  line-height: 155%;
  margin: 1rem auto;
  color: #fff;
  max-width: 575px;
}
.section-wrapper .suppliers-section-wrapper .page-section-suppliers .page-section-suppliers-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: 1.25rem;
  place-items: center;
  margin-top: 1.25rem;
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 0.5rem;
}
.section-wrapper .suppliers-section-wrapper .page-section-suppliers .page-section-suppliers-logos img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 1100px) {
  .section-wrapper .suppliers-section-wrapper .page-section-suppliers {
    padding: 0 1.5rem;
  }
}
.section-wrapper .contact-section-wrapper {
  background-color: #fff;
  margin: 0 auto;
  padding-bottom: 1.5rem;
}
.section-wrapper .contact-section-wrapper .page-section-contact {
  max-width: 575px;
  margin: 0 auto;
}
.section-wrapper .contact-section-wrapper .page-section-contact .page-section-contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: #410445;
  text-align: center;
}
.section-wrapper .contact-section-wrapper .contact-form-info-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.875rem;
  padding-bottom: 1.5rem;
  max-width: 1075px;
  margin: 0 auto;
}
.section-wrapper .contact-section-wrapper .contact-form-info-wrapper .contact-form {
  padding: 0 1.5rem 1.5rem;
  background-color: #f6f6f6;
  border-radius: 0.5rem;
}
.section-wrapper .contact-section-wrapper .contact-form-info-wrapper .contact-form h3.contact-form-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: #410445;
  margin-bottom: 0.9375rem;
}
.section-wrapper .contact-section-wrapper .contact-form-info-wrapper .contact-form label {
  display: block;
  margin-bottom: 0.3125rem;
  font-weight: 600;
  color: #000;
  font-size: 1.125rem;
}
.section-wrapper .contact-section-wrapper .contact-form-info-wrapper .contact-form label span {
  font-weight: 400;
}
.section-wrapper .contact-section-wrapper .contact-form-info-wrapper .contact-form input,
.section-wrapper .contact-section-wrapper .contact-form-info-wrapper .contact-form textarea {
  width: 96%;
  padding: 0.625rem;
  font-family: "SourceSans3", Fallback, sans-serif;
  font-size: 1.125rem;
  color: #000;
  background-color: #fff;
  margin-bottom: 0.9375rem;
  border-radius: 0.5rem;
  border: 1px solid #000;
  outline: 2px solid transparent;
}
.section-wrapper .contact-section-wrapper .contact-form-info-wrapper .contact-form input:hover, .section-wrapper .contact-section-wrapper .contact-form-info-wrapper .contact-form input:focus, .section-wrapper .contact-section-wrapper .contact-form-info-wrapper .contact-form input:active,
.section-wrapper .contact-section-wrapper .contact-form-info-wrapper .contact-form textarea:hover,
.section-wrapper .contact-section-wrapper .contact-form-info-wrapper .contact-form textarea:focus,
.section-wrapper .contact-section-wrapper .contact-form-info-wrapper .contact-form textarea:active {
  border: 2px solid #410445;
}
@media screen and (max-width: 740px) {
  .section-wrapper .contact-section-wrapper .contact-form-info-wrapper .contact-form input,
  .section-wrapper .contact-section-wrapper .contact-form-info-wrapper .contact-form textarea {
    width: 93%;
  }
}
.section-wrapper .contact-section-wrapper .contact-form-info-wrapper .contact-form textarea {
  margin-bottom: 0.25rem;
}
.section-wrapper .contact-section-wrapper .contact-form-info-wrapper .contact-form button {
  padding: 0.625rem 1.25rem;
  background-color: #410445;
  color: #fff;
  border-radius: 1000px;
  border: 2px solid #410445;
  cursor: pointer;
  font-family: "SourceSans3", Fallback, sans-serif;
  font-weight: 400;
  font-size: 1.375rem;
}
.section-wrapper .contact-section-wrapper .contact-form-info-wrapper .contact-form button:hover {
  background-color: #fff;
  color: #410445;
  border: 2px solid #410445;
  transition: background-color 0.3s ease-out, border 0.3s ease-out, color 0.3s ease-out;
}
.section-wrapper .contact-section-wrapper .contact-form-info-wrapper .contact-form {
  /* Customize the agree-box */
}
.section-wrapper .contact-section-wrapper .contact-form-info-wrapper .contact-form .agree {
  display: block;
  position: relative;
  cursor: pointer;
  font-size: clamp(0.7rem, 2vw, 0.9rem);
  font-weight: 600;
  padding-left: 2.5rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.section-wrapper .contact-section-wrapper .contact-form-info-wrapper .contact-form .agree input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.section-wrapper .contact-section-wrapper .contact-form-info-wrapper .contact-form {
  /* Create a custom checkbox */
}
.section-wrapper .contact-section-wrapper .contact-form-info-wrapper .contact-form .checkmark {
  position: absolute;
  top: 0;
  left: 0.25rem;
  height: 25px;
  width: 25px;
  background-color: #410445;
}
.section-wrapper .contact-section-wrapper .contact-form-info-wrapper .contact-form {
  /* On mouse-over, add a grey background color */
}
.section-wrapper .contact-section-wrapper .contact-form-info-wrapper .contact-form .agree:hover input ~ .checkmark {
  background-color: #ccc;
}
.section-wrapper .contact-section-wrapper .contact-form-info-wrapper .contact-form {
  /* When the checkbox is checked, add a lila background */
}
.section-wrapper .contact-section-wrapper .contact-form-info-wrapper .contact-form .agree input:checked ~ .checkmark {
  background-color: #410445;
}
.section-wrapper .contact-section-wrapper .contact-form-info-wrapper .contact-form {
  /* Create the checkmark/indicator (hidden when not checked) */
}
.section-wrapper .contact-section-wrapper .contact-form-info-wrapper .contact-form .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.section-wrapper .contact-section-wrapper .contact-form-info-wrapper .contact-form {
  /* Show the checkmark when checked */
}
.section-wrapper .contact-section-wrapper .contact-form-info-wrapper .contact-form .agree input:checked ~ .checkmark:after {
  display: block;
}
.section-wrapper .contact-section-wrapper .contact-form-info-wrapper .contact-form {
  /* Style the checkmark/indicator */
}
.section-wrapper .contact-section-wrapper .contact-form-info-wrapper .contact-form .agree .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.section-wrapper .contact-section-wrapper .contact-form-info-wrapper .contact-form .agree.text {
  font-size: 0.9375rem;
  line-height: 1.1rem;
  font-weight: 600;
  padding: 0 0 0.5rem 2.25rem;
}
@media screen and (max-width: 1100px) {
  .section-wrapper .contact-section-wrapper .contact-form-info-wrapper {
    padding: 0 1.5rem;
  }
}
.section-wrapper .contact-section-wrapper .accessibility {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  border: 0 !important;
}
.section-wrapper .contact-section-wrapper .ort {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
}
.section-wrapper .contact-section-wrapper #city {
  display: none;
}
.section-wrapper .contact-section-wrapper .contact-info {
  padding: 0 1.5rem 1.5rem 1.5rem;
  background-color: #f6f6f6;
  border-radius: 0.5rem;
}
.section-wrapper .contact-section-wrapper .contact-info h3.contact-info-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: #410445;
  margin-bottom: 0.9375rem;
}
.section-wrapper .contact-section-wrapper .contact-info p {
  margin: 1rem 0;
  color: #000;
  font-size: clamp(1.2rem, 2vw, 1.375rem);
  line-height: 1.6;
}
.section-wrapper .contact-section-wrapper .contact-info p a {
  color: #000;
  text-decoration: none;
}
.section-wrapper .contact-section-wrapper .contact-info p a:hover {
  font-weight: 600;
}
.section-wrapper .contact-section-wrapper .contact-info p.social-media a {
  margin-right: 1.5rem;
}
.section-wrapper .contact-section-wrapper .contact-info p.social-media a img {
  width: 35px;
  height: auto;
  padding-top: 1rem;
}

footer {
  background-color: #410445;
  color: #fff;
  padding: 1.25rem;
  text-align: center;
}
footer .copyright {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.2rem);
}
footer .design {
  font-size: clamp(0.95rem, 2vw, 1rem);
  margin-top: 0.3125rem;
}
footer .design a {
  color: #fff;
  text-decoration: none;
}
footer .design a:hover {
  text-decoration: underline;
  font-weight: 600;
}

.thanks {
  height: 100dvh;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
  font-weight: 600;
  padding: 1rem 2rem 6rem;
  color: #410445;
  background-color: rgba(51, 0, 51, 0.1);
}
.thanks h1 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.thanks h2 {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
}
.thanks h3 {
  font-size: 1.25rem;
}
.thanks a {
  text-decoration: none;
  color: #410445;
  font-weight: 600;
  cursor: pointer;
}/*# sourceMappingURL=style.css.map */