/*-- imported fonts --*/
@font-face {
    font-family: "mont";
    src: url("../fonts/Mont-Regular.woff") format("woff");
}

@font-face {
    font-family: "mont-bold";
    src: url("../fonts/Mont-Bold.woff") format("woff");
}

@font-face {
    font-family: "mont-heavy";
    src: url("../fonts/Mont-Heavy.woff") format("woff");
}

/*-- vars --*/
html {
    scroll-behavior: smooth;
}

html,
body {
    background: #fff;
    overflow-x: hidden;
    max-width: 100%;
    font-family: "mont";
}

h1 .h1_bgfarve {
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    display: inline;
    padding: 16px;
    background-color: rgba(0, 71, 187, 0.9);
    line-height: 5rem;
}

@media (max-width: 992px) {
    h1 .h1_bgfarve {
        line-height: 3.8rem;
    }
}

h1 {
    font-family: "mont-heavy";
    color: #000;
    font-size: 44px;
    line-height: 48px;
    font-weight: 700;
    margin: 0 15px 0 0;
}

@media (max-width: 992px) {
    h1 {
        font-size: 26px;
        line-height: 32px;
    }
}

h2 {
    font-family: "mont-bold", sans-serif;
    color: #142d41;
    font-size: 32px;
    line-height: 34px;
    margin: 60px 0 20px;
}

@media (max-width: 992px) {
    h2 {
        font-size: 26px;
        line-height: 32px;
    }
}

h3 {
    font-family: "mont-heavy", sans-serif;
    color: #142d41;
    font-size: 32px;
    line-height: 38px;
    margin: 25px 0 20px 0;
}

@media (max-width: 992px) {
    h3 {
        font-size: 26px;
        line-height: 32px;
        margin: 20px 0 15px 0;
    }
}

h4 {
    font-family: "mont-bold", sans-serif;
    color: #000;
    font-size: 24px;
    line-height: 28px;
    margin: 0 0 20px;
}

@media (max-width: 992px) {
    h4 {
        font-size: 20px;
        line-height: 26px;
    }
}

p {
    font-family: "mont", sans-serif;
    color: #000;
    font-size: 16px;
    line-height: 22px;
}

b {
    font-family: "mont-bold", sans-serif;
}

a {
    font-family: "mont", sans-serif;
    color: #142d41;
    text-decoration: underline;
}

a:hover {
    color: #000;
}

.bold-text {
    font-family: "mont-bold", sans-serif;
}

.curser-pointer {
    cursor: pointer;
}

.p-link {
    font-family: "mont-bold", sans-serif;
    font-size: 16px;
    line-height: 22px;
    text-decoration: none;
    position: relative;
    padding: 0 12px 0 0;
    font-weight: 700;
    transition: all 0.2s ease;
}

@media (max-width: 992px) {
    .p-link {
        font-size: 12px;
    }
}

.p-link:hover {
    color: #e40632;
    transition: all 0.2s ease;
}

.p-link:before {
    content: url(../img/arrow-right-solid.svg);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    transition: all 0.2s ease;
}

.p-link:hover:before {
    right: -5px;
    transition: all 0.2s ease;
}

.bold {
    font-family: "mont-bold", sans-serif;
}

/*-- wrapper --*/
.full-wrapper {
    max-width: 2500px;
    margin: 0 auto;
}

.wrapper {
    max-width: 1460px;
    margin: 0 auto;
}

/*-- negative space --*/
.mt-n1 {
    margin-top: -0.25rem !important;
}

.mt-n2 {
    margin-top: -0.5rem !important;
}

.mt-n3 {
    margin-top: -1rem !important;
}

.mt-n4 {
    margin-top: -1.5rem !important;
}

.mt-n5 {
    margin-top: -3rem !important;
}

.mt-n6 {
    margin-top: -6rem !important;
}

.p-n1 {
    padding: -0.25rem !important;
}

.p-n2 {
    padding: -0.5rem !important;
}

.p-n3 {
    padding: -1rem !important;
}

.p-n4 {
    padding: -1.5rem !important;
}

.p-n5 {
    padding: -3rem !important;
}

.space {
    padding: 120px 0;
}

@media (max-width: 992px) {
    .space {
        padding: 0;
    }
}

@media (max-width: 992px) {
    .space {
        padding: 50px 0;
    }
}

@media (max-width: 576px) {
    .bg-drak.space {
        padding: 0;
    }
}

/*-- colors --*/
.white {
    color: #fff;
}

.bg-white {
    background: #fff;
}

.bg-drak {
    background: #142d41;
}

@media (max-width: 576) {
    .bg-drak {
        margin: 12px;
    }
}

.bg-grey {
    background: #d3d3d3;
}

.bg-lightgrey {
    background: #f2f2f2;
}

.bg-texture {
    background: url("../img/bg-texture.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

/*-- topbar --*/
.topbar {
    background: #fff;
    padding: 12px 0;
    transition: all 0.2s ease;
}

@media (max-width: 992px) {
    .topbar {
        padding: 10px 0;
    }
}

/*-- logo --*/
.topbar .logo {
    width: 170px;
}

@media (max-width: 768px) {
    .topbar .logo {
        width: 100px;
    }
}

/*-- topbar scroll --*/

@media (max-width: 576px) {
    .topbar .logo {
        width: 100px;
    }
}

.topbar-scroll .logo {
    width: 140px;
    transition: all 0.2s ease;
}

/*-- location --*/
.city-text {
    font-size: 22px;
    font-family: "mont-heavy";
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    display: inline;
    padding: 12px;
    background-color: rgba(228, 6, 50, 0.9);
}

@media (max-width: 992px) {
    .city-text {
        padding: 16px;
        font-size: 18px;
    }
}

.location {
    font-family: "mont-heavy", sans-serif;
    font-size: 22px;
    line-height: 20px;
    margin: 0 0 20px;
    position: relative;
    padding: 15px 0 10px 22px;
    display: inline-block;
    color: #fff;
}

.location:before {
    content: url(../img/location.svg);
    position: absolute;
    left: 0;
    top: 52%;
    transform: translate(0, -50%);
}

/*-- hero --*/
.hero-plain {
    margin: 60px 12px 0 12px;
    background: url(../img/sds-hero.jpg) no-repeat center;
    min-height: 80vh;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 992px) {
    .hero-plain {
        background: url(../img/sds-hero-mobile.jpg) no-repeat center;
        background-size: cover;
    }
}

@media (max-width: 576px) {
    .hero-plain {
        background-attachment: unset;
        background-position: top;
    }
}

.hero-title {
    position: absolute;
    bottom: 40%;
}

@media (max-width: 576px) {
    .hero-title {
        bottom: 30%;
    }
}

/*-- buttons --*/
/*-- save job --*/
.jobad-element-myjob {
    list-style: none;
    margin: 0;
    padding: 0;
}

.jobad-element-myjob a {
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    font-family: "mont", sans-serif;
    background: #0047bb;
    padding: 12px 30px 12px 50px;
    display: block;
    text-decoration: none;
    margin: 0 35px 0 0;
    position: relative;
    transition: all 0.2s ease;
}

.jobad-element-myjob a::before {
    transition: all 0.2s ease;
    content: "";
    border-bottom: 22px solid transparent;
    border-top: 22px solid transparent;
    border-left: 23px solid #0047bb;
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    right: -23px;
}

.jobad-element-myjob a:hover::before {
    transition: all 0.2s ease;
    border-bottom: 22px solid transparent;
    border-top: 22px solid transparent;
    border-left: 23px solid #e40532;
}

@media (max-width: 992px) {
    .jobad-element-myjob a::before {
        border-bottom: 20px solid transparent;
        border-top: 20px solid transparent;
        border-left: 20px solid #0047bb;
        position: absolute;
        right: -20px;
    }

    .jobad-element-myjob a:hover::before {
        transition: all 0.2s ease;
        border-bottom: 20px solid transparent;
        border-top: 20px solid transparent;
        border-left: 20px solid #e40632;
    }
}

.jobad-element-myjob svg {
    position: absolute;
    top: 48%;
    left: 35px;
    transform: translate(-50%, -50%);
}

.jobad-element-myjob:hover a {
    background: #e40532;
    transition: all 0.2s ease;
    color: #fff;
    position: relative;
}

@media (max-width: 992px) {
    .jobad-element-myjob a {
        font-size: 14px;
        padding: 10px 20px 10px 45px;
    }

    .jobad-element-myjob svg {
        left: 30px;
    }
}

@media (max-width: 576px) {
    .jobad-element-myjob a {
        font-size: 12px;
        padding: 10px 20px 10px 35px;
        margin: 0 28px 0 0;
    }

    .jobad-element-myjob svg {
        left: 22px;
    }
}

/*-- JIX btn and  --*/
.cta,
.jix_onlineapplication_button .button {
    transition: all 0.2s ease;
    font-family: "mont", sans-serif;
    float: left;
    background: #e40532;
    position: relative;
    text-align: center;
    font-size: 16px;
    padding: 12px 30px;
    line-height: 20px;
    color: #fff;
    border: 0;
    border-radius: 0;
    text-decoration: none;
}

.cta::before,
.jix_onlineapplication_button .button::before {
    transition: all 0.2s ease;
    content: "";
    border-bottom: 22px solid transparent;
    border-top: 22px solid transparent;
    border-left: 23px solid #e40532;
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    right: -23px;
}

@media (max-width: 992px) {

    .cta,
    .jix_onlineapplication_button .button {
        font-size: 14px;
        padding: 10px 20px;
    }
}

.cta:hover,
.cta:focus,
.cta:active,
.jix_onlineapplication_button .button:hover,
.jix_onlineapplication_button .button:focus,
.jix_onlineapplication_button .button:active {
    transition: all 0.2s ease;
    color: #fff;
    background: #0047bb;
    box-shadow: none;
}

.cta:hover::before,
.jix_onlineapplication_button .button:hover::before {
    transition: all 0.2s ease;
    border-bottom: 22px solid transparent;
    border-top: 22px solid transparent;
    border-left: 23px solid #0047bb;
}

@media (max-width: 992px) {

    .cta::before,
    .jix_onlineapplication_button .button::before {
        transition: all 0.2s ease;
        border-bottom: 20px solid transparent;
        border-top: 20px solid transparent;
        border-left: 23px solid #e40632;
    }

    .cta:hover::before,
    .jix_onlineapplication_button .button:hover::before {
        transition: all 0.2s ease;
        border-bottom: 20px solid transparent;
        border-top: 20px solid transparent;
        border-left: 23px solid #0047bb;
    }
}

.quote-text p {
    margin-top: 20px;
    color: #142d41;
    font-size: 32px;
    line-height: 38px;
    font-family: "mont-bold", sans-serif;
}

.quote-text .auther {
    font-family: "mont", sans-serif;
    font-size: 14px;
}

.btn-box {
    position: relative;
    width: 140px;
    height: 60px;
    bottom: 0;
}

.link-vp {
    font-size: 15px !important;
    font-family: "mont-bold", sans-serif !important;
}

/*-- quotes --*/
.quote,
blockquote,
.blockquote-small {
    background: #142d41;
    padding: 50px;
    margin-top: 4rem;
}

@media (max-width: 992px) {

    .quote,
    blockquote,
    .blockquote-small {
        padding: 30px;
    }
}

.quote p,
blockquote p,
.blockquote-small p {
    color: #fff;
    font-size: 26px !important;
    line-height: 34px !important;
    font-style: normal !important;
    font-family: "mont-bold", sans-serif;
    font-weight: 600;
    margin: 0 0 15px;
}

@media (max-width: 992px) {

    .quote p,
    blockquote p,
    .blockquote-small p {
        font-size: 20px !important;
        line-height: 28px !important;
        margin: 0 0 15px;
    }
}

.quote p:before,
blockquote p:before,
.blockquote-small p:before {
    content: url(../img/quote-icon.svg) !important;
    display: block;
    margin: 0 0 35px;
}

.quote footer,
.quote span,
blockquote footer,
blockquote span,
.blockquote-small footer,
.blockquote-small span {
    font-family: "mont", sans-serif;
    color: #fff;
    font-size: 14px !important;
    line-height: 20px !important;
    left: 0 !important;
    opacity: 0.6;
    margin-left: 0 !important;
}

.quote footer:before,
blockquote footer:before,
.blockquote-small footer:before {
    content: none !important;
}

/*-- footer --*/
.footer {
    padding-top: 120px;
    padding-bottom: 120px;
    background: #142d41;
}

.footer h4 {
    font-family: "mont-heavy", sans-serif;
    font-size: 22px;
    line-height: 26px;
    color: #fff;
    margin: 0 0 20px;
}

.footer p {
    font-size: 14;
    color: #fff;
}

.footer a {
    font-family: "mont-bold", sans-serif;
    color: #e40632;
}

/*-- some --*/
.some a {
    display: inline-block;
    opacity: 1;
    transition: all 0.2s ease;
    margin: 0 0 0 10px;
}

.some a:hover {
    opacity: 0.6;
    transition: all 0.2s ease;
}

.some-centered a {
    margin: 0 5px 0;
}

/*-- videoer */
.video-link {
    color: #FFF;
    font-size: 16px;
}

iframe {
    min-height: 315px;
    width: 100%;
    border: 0;
}

.name-box {
    padding: 18px;
}

.name-box p {
    margin-bottom: 0;
}

/*-- text list --*/
.selling-list {
    padding: 120px;
    margin: 15px 0;
}

@media (max-width: 1200px) {
    .selling-list {
        padding: 0 40px 40px 40px;
    }
}

@media (max-width: 992px) {
    .selling-list {
        padding: 0 50px;
    }
}

@media (max-width: 576px) {
    .selling-list {
        padding: 0;
    }
}

.selling-list ul {
    padding-left: 0.9rem;
}

.selling-list li::marker {
    color: #e40632;
}

.selling-list li {
    padding: 20px 0;
}

/*-- intro --*/
.intro {
    margin-bottom: 8rem !important;
}

@media (max-width: 992px) {
    .intro {
        margin-bottom: 3rem !important;
    }
}

li {
    padding: 8px 0;
}

li::marker {
    color: #e40632;
}

ul {
    padding-left: 18px;
}

/*-- quote --*/
.quote-img {
    background: url("../img/sds-qoute.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/*-- ScrollTrigger GSAP --*/
.fade-delay-one {
    opacity: 0;
    transform: translate(0, 50px);
}

.fade-in {
    opacity: 0;
}
