@import url("https://fonts.googleapis.com/css2?family=Albert+Sans:wght@300;600;700&display=swap");
* {
  color: white;
  font-family: "Albert Sans", sans-serif;
  text-align: center;
}

p {
  margin: 0;
}

h1,
h2 {
  margin: 0;
  color: #ebbc55;
}

button {
  border-radius: 900px;
  background-color: #ebbc55;
  font-weight: 900;
  color: black;
  border: 0;
  padding: 12px 20px;
  min-width: 200px;
  font-size: 17px;
  margin-top: 40px;
  cursor: pointer;
}

body {
  background-color: black;
}

.header {
  margin-bottom: 150px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
}

@media only screen and (max-width: 1000px) {
  .header {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.header img {
  width: 100%;
}

.header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 50px;
}

.header-container img {
  width: 50%;
  margin-bottom: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}

.header-container p {
  width: 80%;
  max-width: 370px;
}

.header h1 {
  margin: 0;
}

.divider {
  margin: 100px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 900px;
}

.divider .line {
  height: 1px;
  width: 100%;
  background-color: #ebbc55;
}

.divider img {
  margin: -10px 30px;
}

.grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 900px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}

@media only screen and (max-width: 1000px) {
  .grid {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

.grid .grid-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.grid .grid-item .grid-image-container {
  position: relative;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url("../assets/hringur.png");
  background-size: 75%;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
}

.grid .grid-item .grid-image-container img {
  position: absolute;
  width: 95%;
  height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
}

.image-grid {
  width: 900px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  grid-gap: 30px;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}

@media only screen and (max-width: 1000px) {
  .image-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.image-grid video {
  background-color: black;
  width: 100%;
  height: 100%;
}

.image-grid img {
  width: 100%;
  height: 100%;
}

.image-grid .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.image-grid .content p,
.image-grid .content h2 {
  text-align: left;
}

.image-grid .content p {
  margin-left: 15px;
  margin-top: 7px;
}

form {
  width: 600px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

form label {
  text-align: left;
  width: 100%;
  margin-top: 20px;
}

form label input {
  margin-top: 4px;
  border-radius: 900px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 10px;
  background-color: black;
  width: 100%;
  text-align: left;
}

form .check {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

form .check input {
  width: auto;
  margin-right: 10px;
  margin-top: -5px;
}

.footer-image {
  margin-top: 120px;
  width: 100%;
}

.footer-text {
  margin: 25px;
}

/* width */
::-webkit-scrollbar {
  width: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #ebbc55;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #ebbc55;
}
/*# sourceMappingURL=main.css.map */