/**************************
*    GENERAL COMPONENTS   *
**************************/

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  /* 1rem == 10px approx. */
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background-color: #000;
}

body {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #555;
  overflow-x: hidden;
}

.bg-image {
  opacity: 0.33;
  background-position: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.header_bg_image {
  width: 100%;
  background-size: cover;
  background-position: center;
}

.container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 3.2rem;
}

.grid {
  display: grid;
  row-gap: 9.6rem;
  column-gap: 6.4rem;
}

.grid--2-rows {
  grid-template-rows: repeat(2, 1fr);
}

.grid--2-cols {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3-cols {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4-cols {
  grid-template-columns: repeat(4, 1fr);
}

.grid--5-cols {
  grid-template-columns: repeat(5, 1fr);
}
.grid--center-v {
  align-items: center;
}

.skewX-30-positive {
  transform: skewX(30deg) !important;
}

.color-white {
  color: #fff !important;
}

.uppercase {
  text-transform: uppercase !important;
}

.text-border-black {
  color: transparent;
  text-shadow: 1px 1px 0px #000, -1px -1px 0px #000, 1px -1px 0px #000,
    -1px 1px 0px #000;
}
.inverted-image {
  filter: invert(100%);
}

*:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem rgba(230, 125, 34, 0.5);
}

.padding-bottom-xxl {
  padding-bottom: 20rem !important;
}
.padding-right-sm {
  padding-right: 1rem !important;
}

.padding-right-md {
  padding-right: 3rem !important;
}

.padding-top-lg {
  padding-top: 9rem !important;
}

.padding-top-xl {
  padding-top: 18rem !important;
}

.padding-top-xxl {
  padding-top: 26rem !important;
}

.padding-top-xxxl {
  padding-top: 32rem !important;
}

.padding-top-sm {
  padding-top: 1rem !important;
}

.margin-top-lg {
  margin-top: 9rem !important;
}

.margin-top-xxl {
  margin-top: 26rem !important;
}

.margin-top-xl {
  margin-top: 18rem !important;
}

.margin-left-small {
  margin-left: 1.6rem !important;
}

.margin-left-lg {
  margin-left: 9rem !important;
}
.margin-left-xl {
  margin-left: 18rem !important;
}

.margin-left-md {
  margin-left: 3rem !important;
}

.margin-right-xs {
  margin-right: 1.1rem !important;
}

.margin-right-small {
  margin-right: 1.6rem !important;
}

.margin-right-xl {
  margin-right: 5rem !important;
}

.margin-bottom-md {
  margin-bottom: 4.8rem !important;
}

.margin-bottom-lg {
  margin-bottom: 9rem !important;
}

.margin-bottom-xl {
  margin-bottom: 18rem !important;
}

.margin-bottom-xxl {
  margin-bottom: 34rem !important;
}

.center-text {
  text-align: center;
}

.divider {
  width: 9.5rem;
  height: 0.7rem;
  color: #000;
  background-color: #e67e22;

  margin-bottom: 4.5rem;
}

strong {
  font-weight: 600;
}

.heading-secondary,
.heading-primary {
  font-weight: 700;
  color: #333;
  letter-spacing: -0.5px;
}

.heading-primary {
  font-size: 3.5rem;
  line-height: 1.05;
  margin-bottom: 3.2rem;
}

.heading-secondary {
  font-size: 4.4rem;
  line-height: 1.2;
  margin-bottom: 9.6rem;
}

.heading-tertiary {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 3.2rem;
}

.subheading {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  color: #e67e22;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  letter-spacing: 0.75px;
}

.btn--form {
  background-color: #45260a;
  color: #fdf2e9;
  align-self: end;
  padding: 1.2rem;
}

.btn--form:hover {
  background-color: #fff;
  color: #555;
}

.btn,
.btn:link,
.btn:visited {
  display: inline-block;

  text-decoration: none;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  padding: 1.6rem 3.2rem;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  font-family: inherit;

  transition: all 1s;
}

.btn--hero:link,
.btn--hero:visited {
  border-radius: 0;
  border: 1px solid #fff !important;
  background-color: #eee;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.2)
  );
  border: 1px solid #cf711d;
}

.btn--hero:hover,
.btn--hero:active {
  background-color: rgba(0, 0, 0, 0.4);
}

.btn--full:link,
.btn--full:visited {
  background-color: #e67e22;
  color: #fff;
}

.btn--full:hover,
.btn--full:active {
  background-color: #cf711d;
}

.btn--outline:link,
.btn--outline:visited {
  background-color: #fff;
  color: #555;
}

.btn--outline:hover,
.btn--outline:active {
  background-color: #fdf2e9;
  box-shadow: inset 0 0 0 2px #fff;
}

.link:link,
.link:visited {
  display: inline-block;
  color: #e67e22;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: all 0.3s;
}

.link:hover,
.link:active {
  color: #cf711d;
  border-bottom: 1px solid transparent;
}

.link2:link,
.link2:visited {
  display: inline-block;
  color: #999;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  padding-bottom: 2px;
  transition: all 0.3s;
}

.link2:hover,
.link2:active {
  color: #cf711d;
}

.link3:link,
.link3:visited {
  display: inline-block;
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: 0.3px;
  text-decoration: none;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  padding-bottom: 2px;
  transition: all 0.3s;
  text-shadow: -0.8px -0.8px 0 #000, 0.8px -0.8px 0 #000, -0.8px 0.8px 0 #000,
    0.8px 0.8px 0 #000; /* Reduce the border by 50% */
}

.link3:hover,
.link3:active {
  color: #eee;
}

.link4:link,
.link4:visited {
  display: flex;
  align-items: center;
  color: #222;
  font-size: 1.8rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  font-family: Verdana, Geneva, Tahoma, sans-serif;

  transition: all 0.3s;
}

.link4:hover,
.link4:active {
  color: #cf711d;
}

.link5:link,
.link5:visited {
  display: flex;
  grid-template-columns: 1fr 1fr;
  flex-direction: column;
  align-items: center;
  color: #222;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  font-family: Verdana, Geneva, Tahoma, sans-serif;

  transition: all 0.3s;
}

.link5:hover,
.link5:active {
  color: #cf711d;
}

.divider-left {
  border-left: 1px solid #ddd;
  padding-left: 2rem;
}

.shadow-box {
  position: relative;

  background-color: white;
}

.shadow-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px; /* Adjust as needed */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent);
}

.scroll-to-top-btn {
  display: block;
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #e67e22;
  color: white;
  border: none;
  padding: 10px 12px;
  border-radius: 5px;
  cursor: pointer;

  transition: opacity 0.3s, transform 0.3s;
  opacity: 0;
  transform: translateX(100%);
  z-index: 99999999999;
}

.scroll-to-top-btn.show {
  opacity: 1;
  transform: translateX(0);
}

.scroll-to-top-btn:hover {
  background-color: #d35400;
}

.custom-prev-button {
  padding: 1rem;
  font-size: 2.6rem;
  width: 6rem;
  border-radius: 12px;
  background-color: #e67e22;
  color: white;
  border: none;
  text-decoration: none;
  transition: background-color 0.3s;
}

.custom-prev-button:hover {
  background-color: #d35400;
}

.pause-button {
  padding: 1rem;
  font-size: 2.6rem;
  width: 6rem;
  border-radius: 12px;
  background-color: #e67e22;
  color: white;
  border: none;
  text-decoration: none;
  transition: background-color 0.3s;
}

.pause-button:hover {
  background-color: #d35400;
}

.custom-next-button {
  padding: 1rem;
  font-size: 2.6rem;
  width: 6rem;
  border-radius: 12px;
  background-color: #e67e22;
  color: white;
  border: none;
  text-decoration: none;
  transition: background-color 0.3s;
}

.custom-next-button:hover {
  background-color: #d35400;
}
/* Style to-kolonners layout */
.wpcf7-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 3.2rem;
  row-gap: 2.4rem;
}

.wpcf7-form label {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

/* Style input-felter */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 textarea {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.8rem;
  font-family: inherit;
  border: none;
  background-color: #fdf2e9;
  border-radius: 9px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
}

.wpcf7 textarea {
  height: 10rem;
  resize: none;
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: #aaa;
}

/* Style send-knap */
.wpcf7 input[type="submit"] {
  background-color: #45260a;
  color: #fdf2e9;
  margin-top: 4.5rem;
}

.wpcf7 input[type="submit"]:hover {
  background-color: #000;
}

.wpcf7 input[type="submit"] {
  display: inline-block;

  text-decoration: none;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  padding: 1.6rem 3.2rem;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  font-family: inherit;

  transition: all 1s;
}

/* Style fejlmeddelelser */
.wpcf7 .wpcf7-not-valid {
  border-color: #ff0000;
  background-color: #ffeeee;
  color: #ff0000;
  padding: 5px;
  font-size: 12px;
}

/* Style success-meddelelser */
.wpcf7 .wpcf7-mail-sent-ok {
  border-color: #00cc00;
  background-color: #eeffee;
  color: #00cc00;
  padding: 5px;
  font-size: 12px;
}
