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

html {
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
html body {
  width: 100%;
  height: 100%;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-width: 320px;
}

#main {
  align-items: center;
  position: relative;
  min-height: 100%;
  background-image: linear-gradient(340deg, #343656 0%, #D24646 53%, #343656 100%);
  background-repeat: no-repeat;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}
table th,
table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}
table th {
  background-color: rgb(166.1956521739, 168.2608695652, 201.3043478261);
  font-weight: 600;
  color: rgb(23.1739130435, 24.0652173913, 38.3260869565);
}
table tr:nth-child(even) {
  background-color: #f5f7fa;
  color: #333;
}
table tr:hover {
  background-color: rgb(166.1956521739, 168.2608695652, 201.3043478261);
  transition: background-color 0.2s ease;
}

.def-form {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.def-form label {
  font-weight: 600;
}
.def-form input,
.def-form textarea,
.def-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease;
}
.def-form input:focus,
.def-form textarea:focus,
.def-form select:focus {
  border-color: #343656;
  box-shadow: 0 0 0 3px rgba(52, 54, 86, 0.15);
}
.def-form button {
  background-color: #343656;
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.def-form button:hover {
  background-color: rgb(32.7826086957, 34.0434782609, 54.2173913043);
}

.wpcf7-form {
  background-color: rgba(52, 54, 86, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  overflow: hidden;
}
.wpcf7-form p {
  font-size: 16px;
  margin: 0;
}

section {
  width: 100%;
  padding: 40px 15px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}

.container {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  justify-self: center;
  max-width: 1440px;
  width: 100%;
  position: relative;
}

.justify-content-end {
  justify-content: flex-end;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-self-end {
  justify-self: flex-end;
}

.justify-self-center {
  justify-self: center;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.2;
  font-family: "Schibsted Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  margin: 0 0 16px;
}
@media (min-width: 768px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0 0 19px;
  }
}
@media (min-width: 1440px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0 0 22px;
  }
}

/* Scale */
h1 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
}

h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
}

h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.15;
}

h4 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
}

h5 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
}

h6 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
}

@media (min-width: 768px) {
  h1 {
    font-size: 72px;
  }
  h2 {
    font-size: 60px;
  }
  h3 {
    font-size: 48px;
  }
  h4 {
    font-size: 48px;
  }
}
@media (min-width: 1440px) {
  h1 {
    font-size: 90px;
  }
  h2 {
    font-size: 80px;
  }
  h3 {
    font-size: 64px;
  }
}
p {
  font-size: 18px;
  font-weight: 100;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  p {
    font-size: 23px;
    margin-bottom: 24px;
  }
}
@media (min-width: 1440px) {
  p {
    font-size: 28px;
    margin-bottom: 40px;
  }
}

a {
  color: #d24646;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s;
}
a:hover {
  font-weight: 600;
}

.breadcrumb-item a {
  color: #fff;
}

hr {
  margin: 20px 0;
}
@media (min-width: 768px) {
  hr {
    margin: 30px 0;
  }
}
@media (min-width: 1440px) {
  hr {
    margin: 40px 0;
  }
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
  padding: 0;
  border-style: none;
  border: 0;
  font-family: "Inter", sans-serif;
}

.button-def {
  background-color: transparent;
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 100;
  text-shadow: 0 0 0px #fff;
  text-decoration: none;
}
.button-def::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: url("../../images/vector/right-arrow.svg");
  background-repeat: no-repeat;
  width: 50px;
  height: 15px;
  margin-left: 30px;
  transition: all 0.3s;
}
.button-def:hover {
  font-weight: 100;
  text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff;
}
.button-def:hover::after {
  margin-left: 40px;
}

.generic-banner {
  padding: 115px 15px 40px;
}

.default-page {
  padding: 40px 15px;
}
.default-page ul {
  padding-left: 40px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .default-page ul {
    margin-bottom: 33px;
  }
}
@media (min-width: 1440px) {
  .default-page ul {
    margin-bottom: 50px;
  }
}
.default-page ul li {
  font-size: 18px;
  font-weight: 100;
}
@media (min-width: 768px) {
  .default-page ul li {
    font-size: 23px;
  }
}
@media (min-width: 1440px) {
  .default-page ul li {
    font-size: 28px;
  }
}
.default-page h2 {
  font-size: 30px;
}
.default-page h3 {
  font-size: 22px;
}
.default-page h4 {
  font-size: 18px;
}
.default-page h5 {
  font-size: 22px;
}
.default-page h6 {
  font-size: 14px;
}
@media (min-width: 768px) {
  .default-page h1 {
    font-size: 57px;
  }
  .default-page h2 {
    font-size: 45px;
  }
  .default-page h3 {
    font-size: 33px;
  }
  .default-page h4 {
    font-size: 33px;
  }
}
@media (min-width: 1440px) {
  .default-page h1 {
    font-size: 70px;
  }
  .default-page h2 {
    font-size: 60px;
  }
  .default-page h3 {
    font-size: 44px;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: rgba(52, 54, 86, 0.6);
  backdrop-filter: blur(10px);
}
header .wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .wrapper .site-logo-wrap {
  flex: 0 0 auto;
}
header .wrapper .site-logo-wrap .site-logo {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
  text-decoration: none;
}
header .wrapper {
  /* MENU */
}
header .wrapper .menu-wrap {
  flex: 1;
  justify-content: center;
  display: none;
}
@media (min-width: 992px) {
  header .wrapper .menu-wrap {
    display: flex;
  }
}
header .wrapper .menu-wrap .primary-menu {
  list-style: none;
  display: flex;
  gap: 36px;
  margin: 0;
  padding: 0;
}
header .wrapper .menu-wrap .primary-menu > li {
  position: relative;
}
header .wrapper .menu-wrap .primary-menu > li a {
  color: #f2f2f2;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}
header .wrapper .menu-wrap .primary-menu > li a:hover {
  color: #ff8a8a; /* subtle salmon highlight like logo accent */
}
header .wrapper .menu-wrap .primary-menu .current-menu-item > a {
  color: #ff8a8a;
}
header .wrapper {
  /* TAGLINE */
}
header .wrapper .tagline {
  flex: 0 0 auto;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
  display: none;
}
@media (min-width: 992px) {
  header .wrapper .tagline {
    display: block;
  }
}
header .wrapper .tagline span {
  font-weight: 600;
}
header .wrapper {
  /* MOBILE MENU ICON */
}
header .wrapper .h-mobile-menu-wrap {
  flex: 0 0 auto;
}
@media (min-width: 992px) {
  header .wrapper .h-mobile-menu-wrap {
    display: none;
  }
}
header .wrapper .h-mobile-menu-wrap .menu-bar {
  width: 26px;
  cursor: pointer;
}
header .wrapper .h-mobile-menu-wrap .bar {
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
  margin: 6px 0;
  transition: all 0.3s ease;
}

footer {
  width: 100%;
  padding: 40px 15px;
  margin-top: 90px;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
footer:before {
  content: "";
  background-image: url("../../images/vector/top-left-scale.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: block;
  width: 750px;
  height: 750px;
  position: absolute;
  top: 300px;
  left: 0;
}
footer .footer-col {
  flex: 0 1 25%;
}
footer .footer-col h2,
footer .footer-col h3 {
  font-weight: 600;
}
footer .footer-col h2 {
  font-size: 80px;
  margin-bottom: 50px;
}
footer .footer-col h3 {
  font-size: 40px;
  margin-bottom: 25px;
}
footer .footer-col p {
  font-size: 28px;
  font-weight: 100;
  margin-bottom: 40px;
}
footer .footer-col a {
  display: inline-block;
  font-weight: 100;
  font-size: 30px;
  text-decoration: none;
  color: #fff;
}
footer .footer-col a:hover {
  text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff;
}
footer .footer-col .social-links li {
  list-style: none;
}
footer .col-45 {
  flex: 0 1 45%;
}
footer .footer-bottom {
  margin-top: 130px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
footer .footer-bottom p {
  font-weight: 100;
  font-size: 25px;
  margin-bottom: 0;
}

.hero {
  height: 100vh;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero .image-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 540px;
  height: 540px;
  clip-path: ellipse(93% 88% at 6% 9%);
  opacity: 0.18;
}
.hero .image-top:before {
  content: "";
  background-image: url("../../images/meeting.jpg");
  background-repeat: no-repeat;
  background-position: -50px -10px;
  background-size: cover;
  display: block;
  width: 100%;
  height: 100%;
}
.hero .image-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 540px;
  height: 540px;
  clip-path: ellipse(93% 88% at 94% 91%);
  opacity: 0.18;
}
.hero .image-bottom:before {
  content: "";
  background-image: url("../../images/usual-work.jpg");
  background-repeat: no-repeat;
  background-position: 0px -170px;
  background-size: cover;
  display: block;
  width: 100%;
  height: 100%;
}
.hero .wrapper {
  position: relative;
  width: 900px;
  padding: 20px 10px;
}
.hero .wrapper h1 {
  text-align: center;
  color: #fff;
  font-size: 90px;
  font-weight: 600;
}

.partner {
  padding: 90px 60px;
  position: relative;
}
.partner:before {
  content: "";
  background-image: url("../../images/vector/top-left-scale.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: block;
  width: 750px;
  height: 750px;
  position: absolute;
  top: 0;
  left: 0;
}
.partner .wrapper {
  flex: 0 1 690px;
}
.partner .wrapper h2 {
  color: #fff;
  font-size: 80px;
  font-weight: 600;
  margin-bottom: 50px;
}
.partner .wrapper p {
  color: #fff;
  font-size: 28px;
  font-weight: 100;
  letter-spacing: 1.4px;
  line-height: 40px;
  max-width: 650px;
  margin-bottom: 50px;
}

.services {
  padding: 90px 60px;
  position: relative;
}
.services:before {
  content: "";
  background-image: url("../../images/vector/top-left-scale.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: block;
  width: 750px;
  height: 750px;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}
.services .wrapper {
  flex: 0 1 690px;
}
.services .wrapper h2 {
  color: #fff;
  font-size: 80px;
  font-weight: 600;
  margin-bottom: 50px;
}
.services .wrapper p {
  color: #fff;
  font-size: 28px;
  font-weight: 100;
  letter-spacing: 1.4px;
  line-height: 40px;
  margin-bottom: 50px;
}

.error404 .default-page .container {
  max-width: 768px;
}

.page-template-templates .generic-banner {
  position: relative;
  overflow: hidden;
  min-height: 75vh;
}
.page-template-templates .generic-banner:before {
  content: "";
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.2;
}

.page-template-about-template .generic-banner:before {
  background-image: url("../../images/mikael.jpg");
}

.what-we-do {
  padding: 50px 15px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .what-we-do {
    padding: 100px 15px;
  }
}
@media (min-width: 1440px) {
  .what-we-do {
    padding: 200px 15px 100px;
  }
}
.what-we-do:before {
  content: "";
  background-image: url("../../images/vector/top-left-scale.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: block;
  width: 750px;
  height: 750px;
  position: absolute;
  top: 0;
  left: 0;
}
.what-we-do .container {
  max-width: 1050px;
}
.what-we-do .container .wrapper p {
  font-family: "Schibsted Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1.3;
  margin: 0;
}
@media (min-width: 768px) {
  .what-we-do .container .wrapper p {
    font-size: 35px;
    letter-spacing: -0.8px;
    line-height: normal;
  }
}
@media (min-width: 1440px) {
  .what-we-do .container .wrapper p {
    font-size: 50px;
  }
}

.the-team {
  padding: 50px 15px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .the-team {
    padding: 100px 15px;
  }
}
@media (min-width: 1440px) {
  .the-team {
    padding: 100px 15px 200px;
  }
}
.the-team:after {
  content: "";
  background-image: url("../../images/vector/top-left-scale.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: block;
  width: 750px;
  height: 750px;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}
.the-team .container {
  z-index: 1;
}
@media (min-width: 768px) {
  .the-team .container .wrapper {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    gap: 40px;
  }
}
@media (min-width: 1440px) {
  .the-team .container .wrapper {
    gap: 80px;
  }
}
@media (min-width: 768px) {
  .the-team .container .wrapper .left,
  .the-team .container .wrapper .right {
    flex: 0 1 50%;
  }
}
.the-team .container .wrapper .left img {
  max-height: 350px;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .the-team .container .wrapper .left img {
    max-height: 700px;
  }
}
.page-template-contact-template .generic-banner:before {
  background-image: url("../../images/cup-work.jpg");
}
.page-template-contact-template .default-page {
  padding: 40px 15px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .page-template-contact-template .default-page {
    padding: 120px 15px;
  }
}
@media (min-width: 1440px) {
  .page-template-contact-template .default-page {
    padding: 200px 15px;
  }
}
.page-template-contact-template .default-page:before {
  content: "";
  background-image: url("../../images/vector/top-left-scale.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: block;
  width: 750px;
  height: 750px;
  position: absolute;
  top: 0;
  left: 0;
}
.page-template-contact-template .default-page:after {
  content: "";
  background-image: url("../../images/vector/top-left-scale.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: block;
  width: 750px;
  height: 750px;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}
.page-template-contact-template .default-page .container {
  z-index: 1;
}

.footer-banner {
  position: relative;
  overflow: hidden;
  min-height: 220px;
}
@media (min-width: 768px) {
  .footer-banner {
    min-height: 330px;
  }
}
@media (min-width: 1440px) {
  .footer-banner {
    min-height: 440px;
  }
}
.footer-banner:before {
  content: "";
  display: block;
  background-image: url("../../images/fauxel.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.2;
}
.footer-banner h2 {
  font-size: 26px;
  margin: 0;
}
@media (min-width: 768px) {
  .footer-banner h2 {
    font-size: 46px;
    margin-top: 30px;
  }
}
@media (min-width: 1440px) {
  .footer-banner h2 {
    font-size: 66px;
    margin-top: 50px;
  }
}

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