html {
    tab-size: 4;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-feature-settings: normal;
    font-variation-settings: normal;
}
body {
    display: flex;
    flex-direction: column;
    margin: 0px 0px 0px 0px;
    min-height: 100vh;
}
header {
    z-index: 5;
    backdrop-filter: blur(12px);
    height: 6rem;
    position: fixed;
    top: 0;
    width: 100%;
}
#firstheader {
    background-color: #ffffff4d;
}
#otherheader {
    background-color: #0000004d;
}
main {
    flex-grow: 1;
}
.fade {
    background-image: linear-gradient(to bottom, #60a5fa, white);
}
.fade > div {
    margin-top: 10rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    max-width: 64rem;
}
.fade > #portraitscontainer {
    margin-top: 0;
}
.fade > div > h1 {
    font-weight: 700;
}
.fade > div > p {
    font-weight: 600;
}
ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}
li {
    margin-bottom: 1.25rem;
}
nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    padding: 1.5rem;
}
#firstnav a {
    color: #1e40af;
}
#othernav a {
    color: white;
}
#linkhome {
    font-family: ui-serif,Georgia,Cambria,Times New Roman,Times,serif;
    font-size: 1.5rem;
    line-height: 2rem;
}
#navlinkscontainer {
    display: none;
}
#mobilenavlinkcontainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    height: 100vh;
    width: 100vw;
    background-color: #1e40af;
    position: fixed;
    top: 0;
    left: 100vw;
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 700;
    z-index: 10;
    transition-property: left;
    transition-duration: .3s;
}
#mobilenavlinkcontainer > a {
    color: white;
}
#mobilenavlinkcontainer[data-open="true"] {
    left: 0;
}
#mobilenavbutton {
    z-index: 11;
    position: fixed;
    top: 0.75rem;
    right: 0.75rem;
    width: 60px;
    height: 60px;
    border-width: 2px;
    border-color: white;
    border-style: solid;
    border-radius: 0.75rem;
    background-color: #1e40af;
    padding: 0px 0px 0px 0px;
    outline: none;
}
.baton {
    position: absolute;
    left: 12px;
    width: 32px;
    height: 4px;
    border-radius: 2px;
    background-color: white;
    transition-property: all;
    transition-duration: .3s;
    transform-origin: 23px 2px;
}
#mobilenavbutton > .first {
    top: 18px;
}
#mobilenavbutton > .second {
    bottom: 18px;
}
#mobilenavbutton[data-open="true"] > .baton {
    left: 3px;
    width: 53px;
}
#mobilenavbutton[data-open="true"] > .first {
    top: 24px;
    transform: rotate(45deg);
}
#mobilenavbutton[data-open="true"] > .second {
    bottom: 24px;
    transform: rotate(-45deg);
}
@media (min-width: 1024px) {
    #linkhome {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
    #navlinkscontainer {
        display: flex;
        flex-direction: row;
        gap: 1.5rem;
        align-items: center;
    }
    #mobilenavbutton {
        display: none;
    }
}
#navlinkscontainer > a {
    font-size: 1.25rem;
    line-height: 1.75rem;
}
a {
    text-decoration: none;
    color: black;
}
#videocontainer {
    display: grid;
    grid-template-columns: repeat(1,minmax(0,1fr));
    grid-auto-rows: minmax(0,1fr);
}
.subcontainer {
    display: grid;
    grid-template-columns: repeat(1,minmax(0,1fr));
    grid-auto-rows: minmax(0,1fr);
    background-color: black;
    margin-bottom: 4rem;
}
.subcontainer > img {
    z-index: 1;
    grid-row-start: 1;
    grid-column-start: 1;
    width: 100%;
    height: 50vh;
    object-fit: cover;
    opacity: 0.55;
}
video {
    z-index: 1;
    grid-row-start: 1;
    grid-column-start: 1;
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
#welcome {
    z-index: 2;
    grid-row-start: 1;
    grid-column-start: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 6rem;
}
#welcome > h1 {
    font-family: ui-serif,Georgia,Cambria,Times New Roman,Times,serif;
    font-size: 2.25rem;
    line-height: 2.5rem;
    text-wrap: balance;
    color: white;
}
.subinfo {
    z-index: 2;
    grid-row-start: 1;
    grid-column-start: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.subinfo > h1 {
    font-family: ui-serif,Georgia,Cambria,Times New Roman,Times,serif;
    font-size: 2.25rem;
    line-height: 2.5rem;
    text-wrap: balance;
    color: white;
    margin-bottom: 1rem;
}
.subinfo > p {
    color: white;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    margin-top: 0px;
}
@media (min-width: 1024px) {
    .subinfo > p {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
}
.subinfo > p > a {
    color: white;
}
#personalh1 {
    font-family: ui-serif,Georgia,Cambria,Times New Roman,Times,serif;
    font-size: 2.25rem;
    line-height: 2.5rem;
    text-wrap: balance;
    color: white;
    margin-top: 10rem;
    margin-bottom: 4rem;
    text-align: center;
}
@media (min-width: 1024px) {
    #welcome > h1 {
        font-size: 6rem;
        line-height: 1;
    }
    .subinfo > h1 {
        font-size: 6rem;
        line-height: 1;
    }
    #personalh1 {
        font-size: 6rem;
        line-height: 1;
    }
}
#bluewelcome {
    color: #1e40af;
}
.googlereviews {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}
.subinfo > .googlereviews {
    background-color: white;
    padding: 0.75rem;
    border-radius: 0.75rem;
    font-weight: 600;
}
.stars {
    color: #ffdb00;
}
#prices {
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 48rem;
}
#prices > p {
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.75rem;
}
#prices > ul {
    list-style: inside;
    margin-left: 1rem;
}
#prices > ul > li {
    margin-bottom: 0.75rem;
}
#book-and-reviews {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
}
#book-and-reviews > div {
    background-color: white;
    padding: 0.75rem;
    border-radius: 0.75rem;
}
#offerings {
    text-align: left;
    color: white;
    font-weight: 700;
    margin-top: 2rem;
    font-size: 1.25rem;
}
#offerings > li {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}
#secondscreen {
    background-color: #60a5fa;
    padding-top: 6rem;
    padding-bottom: 6rem;
}
#google5 {
    font-size: 2.25rem;
    line-height: 2.5rem;
    text-align: center;
    color: white;
    margin-block: 0px 0px;
}
@media (min-width: 1024px) {
    #google5 {
        font-size: 3rem;
        line-height: 1;
    }
}
@keyframes reviewslide {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(calc(100vw - 100%));
  }
}
#reviewoverflowcontainer {
    overflow-x: hidden;
    margin-top: 2rem;
    padding: 1rem 1rem 1rem 1rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 500;
}
#reviewslidecontainer {
    width: 287rem;
    height: 20rem;
    position: relative;
    animation: 60s infinite alternate reviewslide;
    animation-timing-function: linear;
}
.reviewallcontainer {
    position: absolute;
    top: 1rem;
    z-index: 4;
    display: flex;
    flex-direction: column;
    height: 18rem;
    width: 23rem;
    padding: 1rem 1rem 1rem 1rem;
    background-color: white;
    border-radius: 0.75rem;
}
.reviewstarcontainer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}
.reviewstarcontainer > span {
    color: #ffdb00;
}
.reviewtextcontainer {
    flex-grow: 1;
}
.reviewnamecontainer {
    margin-top: 0px;
    margin-bottom: 0px;
    text-align: right;
}
#associationscontainer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 6rem;
    padding-left: 1rem;
    padding-right: 1rem;
}
#associations {
    display: grid;
    grid-template-columns: repeat(1,minmax(0,1fr));
    grid-auto-rows: minmax(0,1fr);
    gap: 1rem;
    text-align: center;
}
#associations > div {
    max-width: 36rem;
}
#associations > div > h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    color: white;
}
#associations > div > p {
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 600;
    color: white;
}
#associations > div > div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: 9rem;
}
#associations > div > div > img {
    border-radius: 4.5rem;
}
@media (min-width: 1024px) {
    #associations {
        grid-template-columns: repeat(3,minmax(0,1fr));
    }
}
#thirdscreen {
    text-align: center;
}
#thirdscreen > h2 {
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 700;
    font-family: ui-serif,Georgia,Cambria,Times New Roman,Times,serif;
}
@media (min-width: 1024px) {
    #thirdscreen > h2 {
        font-size: 6rem;
        line-height: 1;
    }
}
#allservicescontainer {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
#services {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    grid-auto-rows: minmax(0,1fr);
    font-weight: 700;
    gap: 2.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: center;
}
@media (min-width: 1024px) {
    #services {
        grid-template-columns: repeat(3,minmax(0,1fr));
    }
}
.servicecontainer {
    background-color: #60a5fa;
    padding: 2rem 1rem 2rem 1rem;
    border-radius: 0.5rem;
}
@media (min-width: 1024px) {
    .servicecontainer {
        padding: 3rem 3rem 3rem 3rem;
    }
}
.servicecontainer > div {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.servicecontainer > div > img {
    height: 4rem;
}
@media (min-width: 1024px) {
    .servicecontainer > div > img {
       height: 6rem;
    }
}
.servicecontainer > p {
    margin-bottom: 0px;
    color: white;
}
span.line {
    display: inline-block;
}
#portraitscontainer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    padding-left: 1rem;
    padding-right: 1rem;
}
#portraits {
    display: grid;
    grid-template-columns: repeat(1,minmax(0,1fr));
    grid-auto-rows: minmax(0,1fr);
    max-width: 72rem;
    gap: 2rem;
}
@media (min-width: 1024px) {
    #portraits {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
}
.portrait > div {
    height: 18rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 1rem;
}
.portrait > div > img {
    border-radius: 12rem;
}
@media (min-width: 1024px) {
    .portrait > div {
        height: 24rem;
    }
}
.portraitname {
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.75rem;
}
.portraitdescription {
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.75rem;
    max-width: 36rem;
}
#kontaktdetaljer {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 1rem;
    padding-right: 1rem;
}
#kontaktdetaljer > p {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    max-width: 56rem;
}
@media (min-width: 1024px) {
    #kontaktdetaljer > p {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
}
.bluelink {
    color: #2563eb;
}
#hittaoss > a:hover {
    text-decoration: underline;
}
#kontaktinfo {
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media (min-width: 1024px) {
    #kontaktinfo {
        gap: 4rem;
        flex-direction: row;
        justify-content: center;
        align-items: start;
    }
}
#kontaktinfo > div > h2 {
    margin-bottom: 0.5rem;
}
#hours > ul > li {
    margin-bottom: 0.75rem;
}
.link:hover {
    text-decoration: underline;
}
footer {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    grid-auto-rows: minmax(0,1fr);
    place-items: center;
    margin-top: 2rem;
    padding: 0rem;
    text-align: center;
    font-weight: 700;
    font-size: 0.75rem;
}
#progma:hover {
    text-decoration: underline;
}
#midfooter > p {
    margin: 0rem 0rem 0.25rem 0rem;
}
#midfooter > p > a {
    color: #1e40af;
}
#midfooter > p > a:hover {
    text-decoration: underline;
}
#rightfooter > a {
    padding-left: 0.5rem;
}
@media (min-width: 600px) {
    footer {
        grid-template-columns: repeat(4,minmax(0,1fr));
        font-size: inherit;
        padding: 1rem;
    }
    #midfooter {
        grid-column: span 2 / span 2;
    }
    #rightfooter > a {
        padding-left: 1rem;
    }
}