@import 'fonts/index.css';
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oxanium:wght@200..800&display=swap");
:root {
  --primary: #4845e9;
  --secondary: #16161c;
  --tertiary: #4c8ab3;
  --dark: #2c2c32;
  --dark-three: #3c3c4b;
  --light: #eff6fa;
  --positive: #6bcc21;
  --negative: #f58973;
  --alert: #f4dd64;
  --white: #ffffff;
  --black: #000000;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "PPObjectSans Regular", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--white);
  background-color: var(--light);
  scroll-behavior: smooth;
  box-sizing: border-box;
  letter-spacing: 0px;
}

.header-wrapper,
.section-wrapper,
form {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.section-wrapper,
form {
  max-width: 144rem;
}

h1 {
  font-size: 7.2rem;
  font-weight: 400;
  line-height: 1.3;
  margin-top: 25rem;
  max-width: 24ch;
  text-align: center;
  color: var(--secondary);
  margin-bottom: 2rem;
}

h2 {
  font-size: 5.6rem;
  font-weight: 400;
  line-height: 1.3;
}

h3 {
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.3;
}

p {
  font-size: 1.9rem;
}

img {
  width: 100%;
  height: auto;
}

strong {
  font-weight: 700;
}

section,
footer {
  display: flex;
  padding: 0 0.8rem;
  max-width: 170rem;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  section,
  footer {
    padding: 0 1.6rem;
  }
}

@media (max-width: 1120px) {
  h1 {
    font-size: 4rem;
    margin-top: 7rem;
    max-width: 24ch;
  }
  h2 {
    font-size: 3.2rem;
    line-height: 130%;
    letter-spacing: 0;
  }
  h3 {
    font-size: 3.2rem;
    margin-bottom: 2rem;
  }
  h4 {
    font-size: 2rem;
  }
  p {
    line-height: 1.6;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.7rem;
    margin-top: 10rem;
    padding: 0 1.6rem;
  }
  h2 {
    font-size: 2.7rem;
  }
  p {
    font-size: 1.6rem;
  }
}
@media (max-width: 500px) {
  h1 {
    max-width: 100%;
  }
  section,
  footer {
    padding: 0 1rem;
  }
}
header {
  position: fixed;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  width: 100%;
  height: 9.52rem;
  top: 0;
  left: 0;
  right: 0;
  background-color: transparent;
  z-index: 2;
}

header.scrolled {
  background-color: var(--light);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

.header-wrapper {
  display: flex;
  align-items: center;
  padding: 0 10rem 0 10rem;
  width: 100%;
}

.header-wrapper .brand {
  display: flex;
}

.header-wrapper .brand img {
  width: 13.5rem;
  height: auto;
}

.header-wrapper .nav-container {
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding-left: 8rem;
}

.nav-container .nav-links-desktop {
  list-style: none;
  display: flex;
}

.nav-links-desktop li {
  display: inline;
}

.nav-links-desktop li a {
  font-size: 1.6rem;
  margin-right: 3.5rem;
  color: var(--secondary);
  text-decoration: none;
  border-bottom: 0.3rem solid transparent;
  border-bottom-color: transparent;
  transition: border-bottom-color 0.3s ease-out;
}

.nav-links-desktop li a:hover,
.nav-links-desktop li a:active {
  border-bottom-color: var(--white);
}

/* Links with underline effect */
.nav-links-desktop li a {
  border-bottom: 3px solid transparent;
  transition: 0.3s ease-out;
}

.nav-links-desktop li a.active {
  border-bottom-color: var(--dark);
}

.nav-links-desktop li a:hover,
.nav-links-desktop li a:active {
  border-bottom-color: var(--dark);
}

/*Mobile nav*/
.nav-links-burger {
  padding-top: 10rem;
  background-color: var(--light);
  list-style: none;
  padding: 12.8rem;
  display: flex;
  height: 100vh;
  position: absolute;
  width: 20rem;
  left: 0;
  top: 0;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in;
  opacity: 0;
  z-index: 88;
}

.login-open-account a {
  text-decoration: none;
  padding: 1.3rem 2rem;
  border: solid 1px #d9d9d9;
  border-radius: 4px;
  font-size: 1.6rem;
  color: var(--secondary);
  background-color: var(--light);
}
.login-open-account a.open-account {
  color: var(--white);
  background-color: var(--secondary);
}

@media (max-width: 1120px) {
  header {
    height: auto;
    padding: 0;
  }
  header nav a {
    font-size: 1.6rem;
  }
  .header-wrapper {
    padding: 2.5rem 1rem 3rem 5.7rem;
  }
  .header-wrapper .brand {
    flex-grow: 1;
  }
  .header-wrapper .brand img {
    width: 12rem;
  }
  .nav-container {
    flex-direction: column;
    justify-content: center;
  }
  .nav-links-desktop {
    position: absolute;
    right: 0;
    height: 100vh;
    top: 0vh;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    width: 100%;
    transform: translateX(100%);
    transition: transform 0.3s ease-in;
    opacity: 0;
    z-index: 88;
  }
  .nav-links-burger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  .nav-links-burger li {
    opacity: 0;
    margin-bottom: 4.3rem;
    text-align: center;
  }
  .nav-links-burger li a {
    margin-right: 0;
    text-decoration: none;
    color: var(--secondary);
  }
  .nav-links-burger li a:active {
    color: var(--primary);
  }
  .nav-links-burger li.active a {
    border-bottom: 2px solid var(--primary);
    padding-bottom: 4px;
  }
  .burger-wrapper-icon {
    display: flex;
    height: 5.4rem;
    width: 5.4rem;
    position: absolute;
    left: 0;
    top: 12px;
    justify-content: center;
    align-items: center;
    z-index: 99;
    cursor: pointer;
  }
  .burger-wrapper-icon.open {
    background-color: #000;
  }
  .burger {
    display: flex;
    z-index: 99;
    width: 1.8rem;
    height: 1.6rem;
    flex-direction: column;
    justify-content: space-between;
  }
  .burger div {
    width: 100%;
    height: 2px;
    background-color: var(--black);
    transition: all 0.3s ease;
  }
  .burger .line2 {
    left: 0;
    width: 70%;
  }
  .burger.toggle .line2 {
    width: 100%;
  }
  .nav-active {
    transform: translateX(0%);
    opacity: 1;
  }
  @keyframes navLinkFade {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0px);
    }
  }
  .burger.toggle {
    width: 26px;
    height: 26px;
    position: relative;
  }
  .burger.toggle:before {
    content: "";
    display: block;
    padding-top: 100%;
  }
  .toggle .line1,
  .toggle .line2 {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin-top: -2px;
    height: 1px;
    background-color: var(--white);
    transform-origin: center;
  }
  .toggle .line1 {
    transform: rotate(45deg);
  }
  .toggle .line2 {
    transform: rotate(-45deg);
  }
  body > header nav a {
    padding: 0.3rem;
  }
  main#home > section#about > header {
    padding: 4rem 2rem 1rem 2rem;
  }
  .login-open-account a.open-account {
    display: none;
  }
}
#one {
  position: relative;
  max-width: unset;
  margin-inline: 11rem;
  padding: 0;
}
#one .section-wrapper {
  position: relative;
  overflow-x: clip;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding-bottom: 22.6rem;
}
#one .section-wrapper a {
  text-decoration: none;
  padding: 1.3rem 2rem;
  border-radius: 4px;
  font-size: 1.6rem;
  color: var(--white);
  background-color: var(--primary);
}
@media (max-width: 1024px) {
  #one .section-wrapper {
    background: none;
    padding-bottom: 7rem;
  }
}
@media (max-width: 769px) {
  #one .section-wrapper {
    padding-bottom: 10rem;
  }
}
@media (max-width: 420px) {
  #one .section-wrapper {
    padding-bottom: 7rem;
  }
}
@media (max-width: 1699px) {
  #one {
    margin-inline: 0rem;
  }
}
#one .pattern-left-svg,
#one .pattern-right-svg {
  display: none;
}
@media (min-width: 1121px) {
  #one .pattern-left-svg,
  #one .pattern-right-svg {
    position: absolute;
    z-index: -2;
  }
}
@media (min-width: 1121px) {
  #one .pattern-left-svg {
    top: 9.52rem;
    bottom: 16rem;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
  }
  #one .pattern-left-svg img {
    height: 100%;
    max-height: 22.5em;
  }
}
@media (min-width: 1700px) {
  #one .pattern-left-svg {
    bottom: 11rem;
    justify-content: center;
  }
  #one .pattern-left-svg img {
    max-height: 50rem;
  }
}
@media (min-width: 1121px) {
  #one .pattern-right-svg {
    top: 0;
    bottom: 0;
    right: 0;
    display: unset;
  }
  #one .pattern-right-svg img {
    width: 1200px;
  }
}
@media (min-width: 1700px) {
  #one .pattern-right-svg {
    top: 9.52rem;
  }
  #one .pattern-right-svg img {
    width: 1700px;
  }
}
#one .card-left-svg,
#one .card-right-svg {
  position: absolute;
  z-index: -1;
  top: 23rem;
}
@media (min-width: 369px) {
  #one .card-left-svg,
  #one .card-right-svg {
    top: 17rem;
  }
}
@media (min-width: 630px) {
  #one .card-left-svg,
  #one .card-right-svg {
    top: 14rem;
  }
}
@media (min-width: 1121px) {
  #one .card-left-svg,
  #one .card-right-svg {
    top: unset;
    bottom: 10rem;
  }
}
#one .card-left-svg img,
#one .card-right-svg img {
  width: unset;
  height: unset;
}
#one .card-left-svg {
  left: -10rem;
}
@media (min-width: 850px) {
  #one .card-left-svg {
    left: -5rem;
  }
}
@media (min-width: 970px) {
  #one .card-left-svg {
    left: 0rem;
  }
}
#one .card-left-svg img {
  height: 320px;
  height: min(320px, 65vw);
  aspect-ratio: 1;
}
@media (min-width: 1121px) {
  #one .card-left-svg img {
    height: 400px;
  }
}
#one .card-right-svg {
  right: -5rem;
}
@media (min-width: 850px) {
  #one .card-right-svg {
    right: 0rem;
  }
}
@media (min-width: 970px) {
  #one .card-right-svg {
    right: 2rem;
  }
}
#one .card-right-svg img {
  height: 300px;
  height: min(300px, 55vw);
  aspect-ratio: 1;
}
@media (min-width: 1121px) {
  #one .card-right-svg img {
    height: 400px;
  }
}

#two {
  position: relative;
  justify-content: center;
  scroll-margin-top: 16rem;
  max-width: unset;
  margin-inline: 0.8rem;
  background-color: var(--secondary);
  border-radius: 24px;
}
#two .section-wrapper-mobile {
  display: none;
}
#two .section-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% - 16px);
  background-color: var(--secondary);
  border-radius: 24px;
  padding: 0 10rem 12rem 10rem;
}
#two .section-wrapper .top {
  position: relative;
  top: -11rem;
}
#two .section-wrapper .top h2 {
  color: var(--secondary);
  font-size: 2.4rem;
  font-weight: normal;
  text-align: center;
  margin-bottom: 2rem;
}
#two .section-wrapper .top .three-cards {
  display: flex;
  justify-content: center;
}
#two .section-wrapper .top .three-cards .card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  width: 100%;
  background-color: var(--white);
  border-radius: 12px;
  background-image: url(images/card-bg.svg);
  background-repeat: no-repeat;
  background-position-x: right;
  background-position-y: 1rem;
}
#two .section-wrapper .top .three-cards .card img {
  max-width: 2.7rem;
}
#two .section-wrapper .top .three-cards .card h3 {
  flex-grow: 1;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: var(--secondary);
  padding: 5.5rem 0 2rem;
  border-bottom: 1px solid var(--light);
}
#two .section-wrapper .top .three-cards .card p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  color: var(--secondary);
  line-height: 1.6;
  padding-top: 2rem;
}
#two .section-wrapper .top .three-cards .card:nth-child(2) {
  margin: 0 1.6rem;
}
#two .section-wrapper .middle {
  display: flex;
  margin-bottom: 3rem;
}
#two .section-wrapper .middle h2 {
  color: var(--white);
  width: 100%;
  padding-right: 12rem;
}
#two .section-wrapper .middle .text-and-image {
  max-width: 40rem;
}
#two .section-wrapper .middle .text-and-image p {
  color: var(--light);
  font-size: 1.6rem;
  margin-bottom: 3rem;
}
#two .section-wrapper .middle .text-and-image img {
  max-width: 13.2rem;
}
#two .section-wrapper .laptop {
  max-width: 106rem;
}
#two .section-wrapper .laptop-only {
  max-width: 106rem;
  display: none;
}
@media (min-width: 1700px) {
  #two .section-wrapper .laptop {
    display: none;
  }
  #two .section-wrapper .laptop-only {
    display: block;
  }
}
#two .section-wrapper .bottom {
  display: flex;
}
#two .section-wrapper .bottom .b-card {
  width: 100%;
  max-width: 25%;
  border: 1px solid #39393e;
  border-radius: 12px;
  padding: 1rem;
  margin: 0 0.5rem;
}
#two .section-wrapper .bottom .b-card img {
  margin-bottom: 2rem;
}
#two .section-wrapper .bottom .b-card p {
  font-size: 1.8rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
}
#two .section-wrapper .bottom .b-card:first-child {
  margin-left: 0;
}
#two .section-wrapper .bottom .b-card:last-child {
  margin-right: 0;
}
@media (max-width: 1024px) {
  #two {
    background-color: transparent;
    border-radius: 0;
    margin-inline: 0;
    flex-direction: column;
  }
  #two .section-wrapper-mobile {
    display: flex;
    max-width: 144rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  #two .section-wrapper-mobile .top {
    position: relative;
  }
  #two .section-wrapper-mobile .top h2 {
    color: var(--secondary);
    font-size: 2.4rem;
    font-weight: normal;
    text-align: center;
    margin-bottom: 2rem;
  }
  #two .section-wrapper-mobile .top .three-cards {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  #two .section-wrapper-mobile .top .three-cards .card {
    padding: 2rem;
    width: 100%;
    background-color: var(--white);
    border-radius: 12px;
    background-image: url(images/card-bg.svg);
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: 1rem;
    border-bottom: solid 2px var(--tertiary);
    margin-bottom: 2rem;
  }
  #two .section-wrapper-mobile .top .three-cards .card img {
    max-width: 2.7rem;
  }
  #two .section-wrapper-mobile .top .three-cards .card h3 {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: var(--secondary);
    border-bottom: 1px solid var(--light);
    font-size: 1.8rem;
    padding: 3.5rem 0 2rem;
  }
  #two .section-wrapper-mobile .top .three-cards .card p {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.4rem;
    color: var(--secondary);
    line-height: 1.6;
    padding-top: 0rem;
  }
  #two .section-wrapper-mobile .top .three-cards .card:nth-child(2) {
    margin: 0;
    margin-bottom: 2rem;
  }
  #two .section-wrapper {
    padding: 4rem 2rem 4rem 2rem;
    width: 100%;
    align-items: normal;
  }
  #two .section-wrapper .top {
    display: none;
  }
  #two .section-wrapper .middle {
    flex-direction: column;
  }
  #two .section-wrapper .bottom {
    flex-direction: column;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
  #two .section-wrapper .bottom .b-card {
    max-width: 100%;
    margin-bottom: 2rem;
  }
  #two .section-wrapper .bottom .b-card p {
    padding: 1rem;
  }
}
@media (max-width: 500px) {
  #two .section-wrapper .bottom {
    width: 100%;
  }
}
#two .patterns {
  display: none;
  position: absolute;
  inset: 0;
  top: 20rem;
}
@media (min-width: 1700px) {
  #two .patterns {
    display: grid;
    gap: 69rem;
    justify-content: space-between;
    align-items: center;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 2500px) {
  #two .patterns {
    top: 0;
    gap: 124rem;
  }
}
#two .patterns img {
  max-width: 36rem;
  width: 100%;
  justify-self: center;
}
@media (min-width: 2100px) {
  #two .patterns img {
    max-width: max(36rem, 18vw);
  }
}
@media (min-width: 2500px) {
  #two .patterns img {
    max-width: min(max(36rem, 18vw), 80rem);
  }
}

#three {
  justify-content: center;
}
#three .section-wrapper {
  padding: 1rem 10rem;
}
#three .section-wrapper .text-and-mobile {
  display: flex;
  align-items: flex-end;
  align-items: stretch;
  width: 100%;
  padding-top: 12rem;
}
#three .section-wrapper .text-and-mobile .text-side {
  width: 50%;
  flex-grow: 1;
  margin-right: 5rem;
  align-self: flex-end;
}
#three .section-wrapper .text-and-mobile .text-side h2 {
  color: var(--secondary);
  margin-bottom: 2rem;
}
#three .section-wrapper .text-and-mobile .text-side p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  color: var(--secondary);
  line-height: 1.6;
  margin-bottom: 6rem;
}
#three .section-wrapper .text-and-mobile .text-side .info {
  display: flex;
  border-radius: 12px;
  background-color: var(--white);
  align-items: center;
  padding: 1rem;
  border-bottom: 2px solid var(--primary);
  max-width: 53rem;
}
#three .section-wrapper .text-and-mobile .text-side .info img {
  width: 32px;
  margin-right: 2rem;
}
#three .section-wrapper .text-and-mobile .text-side .info p {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.8rem;
  color: var(--secondary);
  margin-bottom: 0rem;
}
#three .section-wrapper .text-and-mobile .text-side .info:last-child {
  margin-top: 1rem;
}
#three .section-wrapper .mobile-side {
  display: flex;
  align-items: flex-end;
  background-image: url(images/mobile-bg.svg);
  background-repeat: no-repeat;
  background-position-x: right;
  background-position-y: top;
  background-size: contain;
}
@media (max-width: 1024px) {
  #three .section-wrapper {
    padding: 1rem;
  }
  #three .section-wrapper .text-and-mobile {
    flex-direction: column;
    padding-top: 6rem;
  }
  #three .section-wrapper .text-and-mobile .text-side {
    width: 100%;
    margin-right: 0;
  }
  #three .section-wrapper .text-and-mobile .text-side > p {
    max-width: 100%;
    margin-bottom: 3rem;
  }
  #three .section-wrapper .mobile-side {
    max-width: 50%;
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    padding-top: 5rem;
    margin-left: auto;
    margin-right: auto;
  }
  #three .section-wrapper .mobile-side img {
    max-width: 40rem;
  }
}
@media (max-width: 500px) {
  #three .section-wrapper .mobile-side {
    max-width: 100%;
  }
}

#four .section-wrapper {
  display: flex;
  justify-content: center;
  padding-top: 17rem;
}
#four .section-wrapper img {
  max-width: 139rem;
}
@media (max-width: 1024px) {
  #four .section-wrapper {
    padding-top: 8rem;
  }
}

#five .section-wrapper {
  padding: 1rem 10rem 12rem;
}
#five .section-wrapper .who-we-are {
  display: flex;
  align-items: flex-start;
  padding-top: 7rem;
  margin-bottom: 7rem;
}
#five .section-wrapper .who-we-are div {
  min-width: 40rem;
  height: 36rem;
  background-image: url(images/who-we-are-bg.svg);
  background-repeat: no-repeat;
  background-position-x: left;
  background-position-y: top;
}
#five .section-wrapper .who-we-are div h3 {
  color: var(--secondary);
}
#five .section-wrapper .who-we-are p {
  font-size: 3.2rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--dark-three);
  line-height: 1.5;
}
@media (max-width: 1024px) {
  #five .section-wrapper {
    flex-direction: column;
    padding: 1rem 0 5rem;
  }
  #five .section-wrapper .who-we-are {
    flex-direction: column;
    padding-top: 2rem;
    margin-bottom: 3rem;
  }
  #five .section-wrapper .who-we-are div {
    min-width: auto;
    height: auto;
    background: none;
  }
  #five .section-wrapper .who-we-are div h3 {
    padding-top: 2rem;
  }
  #five .section-wrapper .who-we-are p {
    font-size: 2rem;
  }
}

#six {
  scroll-margin-top: 16rem;
}
#six .section-wrapper {
  display: flex;
  padding: 1rem 10rem 14rem;
}
#six .section-wrapper .enter-leikur {
  padding: 8rem 9rem;
  border-radius: 16px;
  border: 1px solid var(--primary);
  margin-right: 8px;
  flex-grow: 1;
}
#six .section-wrapper .enter-leikur h3 {
  max-width: 61rem;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--secondary);
}
#six .section-wrapper .enter-leikur img {
  max-width: 208px;
  margin-bottom: 2rem;
  margin-left: -1.6rem;
}
#six .section-wrapper .enter-leikur h2 {
  max-width: 61rem;
  color: var(--secondary);
  margin-bottom: 2rem;
}
#six .section-wrapper .enter-leikur p {
  max-width: 61rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--dark-three);
}
#six .section-wrapper .form {
  padding: 9rem 8rem 7rem;
  background-color: var(--primary);
  width: 60rem;
  border-radius: 16px;
}
#six .section-wrapper .form h3 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 2rem;
}
#six .section-wrapper .form form {
  max-width: 91.5rem;
}
#six .section-wrapper .form form .inputs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
#six .section-wrapper .form form input {
  max-width: calc(50% - 1rem);
  display: inline-block;
  margin-bottom: 1.3rem;
  padding: 1.1rem 0 1.1rem 1.2rem;
  border: none;
  width: 100%;
  background-color: var(--white);
  border-radius: 8px;
}
#six .section-wrapper .form form input::placeholder {
  color: var(--dark-three);
  font-size: 1.4rem;
  font-family: "PPObjectSans Regular", sans-serif;
  font-weight: 400;
  background-color: var(--white);
}
#six .section-wrapper .form form .textarea-and-button {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
#six .section-wrapper .form form .textarea-and-button textarea {
  width: 100%;
  min-height: 22.3rem;
  margin: 0;
  padding: 0;
  border: none;
  padding: 1.1rem 0 1.1rem 1.2rem;
  margin-bottom: 2rem;
  background-color: var(--white);
  border-radius: 8px;
}
#six .section-wrapper .form form .textarea-and-button textarea::placeholder {
  color: var(--dark-three);
  font-size: 1.4rem;
  font-family: "PPObjectSans Regular", sans-serif;
  font-weight: 400;
  background-color: var(--white);
}
#six .section-wrapper .form form .textarea-and-button button {
  width: 100%;
  font-family: "PPObjectSans Regular", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  background-color: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: 4px;
  padding: 1.9rem 0;
  cursor: pointer;
}
#six .section-wrapper .form form .textarea-and-button button:hover {
  background-color: rgba(99, 67, 85, 0.9);
  transition: 0.3s ease-out;
}
@media (max-width: 1120px) {
  #six .section-wrapper {
    flex-direction: column;
  }
  #six .section-wrapper .enter-leikur {
    border-color: var(--secondary);
    padding: 3rem;
    margin-bottom: 2rem;
    margin-right: 0;
  }
  #six .section-wrapper .enter-leikur h3 {
    font-size: 2.7rem;
    line-height: normal;
  }
  #six .section-wrapper .enter-leikur img {
    max-width: 114px;
  }
  #six .section-wrapper .enter-leikur p {
    max-width: 100%;
  }
  #six .section-wrapper .form {
    width: 100%;
  }
}
@media (max-width: 10240px) {
  #six .section-wrapper {
    padding: 1rem 0 2rem;
  }
}
@media (max-width: 720px) {
  #six .section-wrapper .form {
    padding: 3rem 2rem 4rem;
  }
  #six .section-wrapper .form form input:nth-child(3) {
    max-width: 100%;
  }
  #six .section-wrapper .form form input:nth-child(4) {
    max-width: 100%;
  }
}

footer {
  display: flex;
  padding-bottom: 0.8rem;
  justify-content: center;
  max-width: unset;
}
footer .section-wrapper {
  max-width: unset;
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: var(--secondary);
  border-radius: 24px;
  padding: 10rem 10rem 20rem 10rem;
  position: relative;
}
footer .section-wrapper .top {
  display: flex;
}
footer .section-wrapper .top ul {
  list-style: none;
  margin-left: 4rem;
}
footer .section-wrapper .top ul li {
  margin-bottom: 2rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
}
footer .section-wrapper .top ul li:first-child {
  color: #8a8a8d;
  font-size: 1.4rem;
  text-transform: uppercase;
  font-family: "Oxanium", sans-serif;
  font-weight: 800;
  font-style: normal;
}
footer .section-wrapper .top ul li a {
  text-decoration: none;
  color: var(--white);
}
footer .section-wrapper .top .one {
  flex-grow: 1;
}
footer .section-wrapper .top .one img {
  max-width: 136px;
  margin-bottom: 3rem;
}
footer .section-wrapper .top .one p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
footer .section-wrapper .top .one p:last-child {
  color: #8a8a8d;
}
footer .section-wrapper .top .three li:first-child {
  color: var(--white);
  text-transform: none;
  visibility: hidden;
}
footer .section-wrapper .top .five {
  width: 23rem;
}
footer .section-wrapper .top .five ul li {
  display: inline-block;
  margin-right: 1rem;
  margin-bottom: 2rem;
}
footer .section-wrapper .top .five ul li img {
  max-width: 24px;
}
footer .section-wrapper .top .five ul li:first-child {
  display: block;
}
footer .section-wrapper .top .address-mobile {
  display: none;
}
footer .section-wrapper .bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 17rem;
  width: 100%;
  background-image: url(images/footer-bg.svg);
  background-repeat: repeat;
  background-position-x: -300px;
  background-position-y: -1px;
}
@media (max-width: 1024px) {
  footer {
    padding-bottom: 1.6rem;
  }
  footer .section-wrapper {
    width: 100%;
    padding: 4rem 2rem 10rem;
  }
  footer .section-wrapper .top {
    flex-direction: column;
    align-items: center;
  }
  footer .section-wrapper .top .one .address {
    display: none;
  }
  footer .section-wrapper .top .three ul li:first-child {
    display: none;
  }
  footer .section-wrapper .top ul {
    margin: 0;
    text-align: center;
  }
  footer .section-wrapper .top .four,
  footer .section-wrapper .top .five {
    margin-top: 4rem;
  }
  footer .section-wrapper .top .address-mobile {
    display: block;
    text-align: center;
    margin-top: 4rem;
  }
  footer .section-wrapper .top .address-mobile p {
    font-size: 1.6rem;
  }
  footer .section-wrapper .top .address-mobile p:last-child {
    color: #8a8a8d;
  }
  footer .section-wrapper .bottom {
    left: 0;
    bottom: -14px;
    height: 6.5rem;
    background-position-y: 0px;
    background-size: contain;
  }
}

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