* {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-family: "Lato", 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
}

body {
    margin: 0;
    padding: 0;
    font-size: 1.1em;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    overflow-x: hidden;
    min-height: 100vh;
}

header {
    background-color: white;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 120;
}

#nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: .5em 0 .5em 45px;
    -webkit-box-shadow: 0px 3px 6px #36454F;
            box-shadow: 0px 3px 6px #36454F;
}

#nav span {
    margin-left: 2%;
    width: 25%;
    font-size: 1.2em;
    text-transform: uppercase;
}

.logo {
    -ms-flex-item-align: end;
        align-self: flex-end;
}

.nav-list {
    width: 100%;
    list-style-type: none;
    line-height: 1.5;
    text-align: right;
}

.nav-list ul {
    padding: 0;
}

.hamburger1 {
    display: none;
}

#toggle1 {
    display: none;
}

.nav-mobile {
    display: none;
}

li.page {
    display: inline-block;
    position: relative;
    margin: 0 1em;
}

li.page::after {
    content: '';
    position: absolute;
    width: 100%;
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #00246B;
    -webkit-transform-origin: bottom right;
        -ms-transform-origin: bottom right;
            transform-origin: bottom right;
    -webkit-transition: -webkit-transform 0.25s ease-out;
    transition: -webkit-transform 0.25s ease-out;
    -o-transition: transform 0.25s ease-out;
    transition: transform 0.25s ease-out;
    transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}

li.page:hover::after {
    -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: bottom left;
        -ms-transform-origin: bottom left;
            transform-origin: bottom left;
}

li a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 120%;
}

a:link {
    text-decoration: none;
    color: black;
}

a:visited {
    color: black;
}

.banner {
    background-image: -webkit-gradient(
      linear,
      left top, left bottom,
      from(rgba(165, 220, 255, 0.25)),
      to(rgba(165, 220, 255, 0.25))
    ), url(images/shapes-background2.webp);
    background-image: -o-linear-gradient(
      rgba(165, 220, 255, 0.25),
      rgba(165, 220, 255, 0.25)
    ), url(images/shapes-background2.webp);
    background-image: linear-gradient(
      rgba(165, 220, 255, 0.25),
      rgba(165, 220, 255, 0.25)
    ), url(images/shapes-background2.webp);
    background-color: white;
    background-repeat: no-repeat;
    background-position: center;
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;   
    background-size: cover;
    height: fit-content;
}

.inside-banner {
    text-align: center;
    z-index: 1;
}

.inside-banner h1 {
    color: black;
    white-space: pre-line;
    font-size: 3.5em;
    text-transform: uppercase;
    font-family: "Special Gothic Expanded One";
    font-weight: 400;
    margin-bottom: 0;
}

.inside-banner h2 {
    color: black;
    font-size: 1.25em;
}

.border {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-image: url("images/Gradient\ Fill\ 2.webp");
    background-position: bottom;
    width: 100%;
    height: 115px;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 5;
}

.buttons {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 5%;
}

.button {
  background-image: -webkit-gradient(linear, left top, right top, from(#00246B), to(#408EC6));
  background-image: -o-linear-gradient(left, #00246B, #408EC6);
  background-image: linear-gradient(to right, #00246B, #408EC6);
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 5px;
  border-radius: 8px;
  -webkit-transition-duration: 0.4s;
       -o-transition-duration: 0.4s;
          transition-duration: 0.4s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
  -webkit-box-shadow: 5px 10px 30px 0px rgba(0,36,107,0.75);
          box-shadow: 5px 10px 30px 0px rgba(0,36,107,0.75);;
}

.button.prio {
    font-size: 1.5em;
    color: white;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.button:hover span{
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}

.form {
    background-image: url("images/bottom\ banner\ v3.png");
    background-color: white;
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}

.form-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 3%;
    padding: 0;
}

.contact-info {
    padding: 5%;
    width: 45%;
    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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.contact-info h3 {
    font-size: 2.5em;
    margin: 0;
    text-align: center;
}

.contact-info p {
    font-size: 1.25em;
}

#contact-form {
    display: -ms-grid;
    display: grid;
    row-gap: 1.5em;
    margin: auto;
    padding: 0 5%;
    padding-top: 10%;
    padding-bottom: 5%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 50%;
}

.form-field {
    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 {
    font-size: 1.25em;
    padding-bottom: 0.5em;
}

.form-input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0.375em;
  border-width: 0;
  -webkit-box-shadow: #00246B 0 0 0 1px inset;
          box-shadow: #00246B 0 0 0 1px inset;
  color: black;
  font-size: 1em;
  height: 2.5em;
  line-height: 1.5em;
  outline: none;
  padding-left: 0.75em;
  padding-right: 0.75em;
}

.form-input:focus-visible {
  -webkit-box-shadow: #00246B 0 0 0 1.5px inset;
          box-shadow: #00246B 0 0 0 1.5px inset;
  outline: 3px solid #CADCFC;
  outline-offset: 0;
}

.form-input::-webkit-input-placeholder {
  color: #36454F;
}

.form-input::-moz-placeholder {
  color: #36454F;
}

.form-input:-ms-input-placeholder {
  color: #36454F;
}

.form-input::-ms-input-placeholder {
  color: #36454F;
}

.form-input::placeholder {
  color: #36454F;
}

.form-textarea {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border-radius: 0.375em;
    border-width: 0;
    -webkit-box-shadow: #00246B 0 0 0 1px inset;
            box-shadow: #00246B 0 0 0 1px inset;
    color: black;
    font-size: 1em;
    line-height: 1.5em;
    outline: none;
    padding: 0.5em 0.75em;
    resize: vertical;
}

.form-textarea:focus-visible {
    -webkit-box-shadow: #00246B 0 0 0 1.5px inset;
            box-shadow: #00246B 0 0 0 1.5px inset;
    outline: 3px solid #CADCFC;
    outline-offset: 0;
}

.form-textarea::-webkit-input-placeholder {
    color: #36454F;
}

.form-textarea::-moz-placeholder {
    color: #36454F;
}

.form-textarea:-ms-input-placeholder {
    color: #36454F;
}

.form-textarea::-ms-input-placeholder {
    color: #36454F;
}

.form-textarea::placeholder {
    color: #36454F;
}

.form-button-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-column-gap: 1.5em;
       -moz-column-gap: 1.5em;
            column-gap: 1.5em;
}

#form-button {
    background-image: -webkit-gradient(linear, left top, right top, from(#00246B), to(#408EC6));
    background-image: -o-linear-gradient(left, #00246B, #408EC6);
    background-image: linear-gradient(to right, #00246B, #408EC6);
    border: 2px solid #00246B;
    color: white;
    padding: .75em 1.75em;
    text-align: center;
    text-decoration: none;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em;
}

#form-button:hover {
    border: 2px solid white;
}

#result {
    font-size: 1.2em;
    text-align: center;
}

footer {
    background-color: #36454F;
    color: white;
    padding: 1% 3%;
}

.scroll {
    opacity: 0;
}

@media only screen and (max-width: 900px) {
    .logo {
        position: absolute;
        margin: .5% 1%;
        top: 0;
    }

    #nav span {
        display: none;
    }

    #nav {
        padding: 0%;
    }
    
    .nav-list {
        display: none;
    }

    .nav-mobile {
        display: block;
        width: 100%;
    }
    
    .hamburger1 {
        height: 45px;
        margin: 10px;
        display: -ms-grid;
        display: grid;
        grid-template-rows: repeat(3, 1fr);
        float: right;
        z-index: 120;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }

    .hamburger1:hover {
        cursor: pointer;
    }

    .hamburger1 div {
        background-color: #36454F;
        position: relative;
        width: 40px;
        height: 5px;
        margin-top: 7px;
        -webkit-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
    }

    #toggle1 {
        display: none;
    }

    #toggle1:checked + .hamburger1 .top {
        -webkit-transform: rotate(-45deg);
                -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
        margin-top: 22.5px;
    }

    #toggle1:checked + .hamburger1 .meat {
        -webkit-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
            transform: rotate(45deg);
        margin-top: -5px;
    }

    #toggle1:checked + .hamburger1 .bottom {
        -webkit-transform: scale(0);
                -ms-transform: scale(0);
            transform: scale(0);
    }

    #toggle1:checked ~ .menu1 {
        height: 340px;
    }

    .menu1 {
        width: 100%;
        background-image: -webkit-gradient(linear, left top, right top, from(#00246B), to(#408EC6));
        background-image: -o-linear-gradient(left, #00246B, #408EC6);
        background-image: linear-gradient(to right, #00246B, #408EC6);
        margin: 0;
        display: -ms-grid;
        display: grid;
        padding: 0;
        list-style: none;
        clear: both;
        width: auto;
        text-align: center;
        height: 0px;
        overflow: hidden;
        -webkit-transition: height .4s ease;
        -o-transition: height .4s ease;
        transition: height .4s ease;
        z-index: 120;
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-shadow: 1px 10px 5px -7px rgba(54,69,79,0.75) inset;
                box-shadow: 1px 10px 5px -7px rgba(54,69,79,0.75) inset;
    }

    .mobile-page {
        width: 100%;
        margin: 0;
        padding: 2% 0;
        font-size: 1.5em;
    }

    a:link {
        color: white;
    }

    a:visited {
        color: white;
    }

    .mobile-page:hover {
        background-color: #fff;
        color: #36454F;
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
}

@media only screen and (max-width: 700px) {
    .banner {
        height: auto;
    }

    .inside-banner {
        padding: 0 5%;
    }

    .button.prio {
        font-size: 1.25em;
    }

    .form {
        background-image: url("images/mobile\ bottom\ banner.png");
        background-position: top;
    }

    .form-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .contact-info {
        margin: 10% auto;
        width: 90%;
    }

    #contact-form {
        width: 80%;
        padding: 2%;
    }

}

@media only screen and (max-width: 450px) {
    .inside-banner h1 {
        font-size: 2.5em;
    }

    .inside-banner h2 {
        font-size: 1em;
    }
    
    .logo {
        margin: 1.25% 1%;
    }

    .button {
        font-size: .8em;
    }

    .button.prio {
        font-size: 1em;
    }

    .border {
        height: 100px;
    }

    footer {
        font-size: .75em;
    }

    .contact-info {
        margin: 15% auto;
    }

    .contact-info p {
        font-size: 1.1em;
    }
}