/* FONTS */
@import url(./poppins.css);

/* VARIABLES */
:root {
    --c-dark: #212529;
    --c-brand: #25FFBE;
    --font-base: "Poppins-Regular", sans-serif;
    --font-bold: "Poppins-Bold";
    --font-semiBold: "Poppins-SemiBold";
    --font-italic :"Poppins-Italic";
}

/* RESET & HELPERS */
body {
    font-family: var(--font-base);
    line-height: 1.5;
    color: white;
    background: radial-gradient(circle, rgba(8,11,11,1) 0%, rgba(19,32,37,1) 40%, rgba(50,63,65,1) 100%);
}

h1, h2, h3,h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-semiBold);
    font-weight: 600;
    color: white
}

h1.welcome-large {
    font-size: 160px;
}

h1.welcome-small {
    text-align: center;
    font-size: 100px;
}

h1.presentation {
    font-family: var(--font-bold);
    font-size: 100px;
}

h1.presentation-mobile {
    font-family: var(--font-bold);
    font-size: 80px;
}

a {
    text-decoration: none;
}

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

.rounded-corners{
    border-radius: 25px;
}

.fw-bold {
    font-family: var(--font-bold);
    width: 600;
    font-size: 18px;
}

.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

.line {
    width: 100%;
    height: 4px;
    background-color: white;
    margin: 16px auto 24px auto;
}

/* NAVBAR */
.navbar {  
    background-color: rgba(47, 57, 60, 0.8);   
}

.navbar-nav .nav-link {
    font-family: var(--font-semiBold);
    color: var(--c-brand);
}

.navbar-nav .nav-link:hover {
    color: white;
}

.navbar-toggler {
    border-color: var(--c-brand);
    color: var(--c-brand);
}

.navbar-brand img {
    border-radius: 0px;
}

/* SECTION TITLE */
.section-title {
    margin-bottom: 40px;
    text-align: center;
}

.section-title img {
    height: 50px;
}

.section-title .animation {
    height: auto;
}

/*VI ER NINE*/
#viErNine .arrow {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#viErNine video {
    border-radius: 25px;
}

/*OVERBLIK*/
.overblik-element a {
    display: block;
    text-align: center;
}

.overblik-element .cover {
    width: 80%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/*LIVET I NINE*/
#livetINine a {
    text-align: center;
}

#centerContent img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#livetINine-VoresFaglighed img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
}

#livetINine .animation {
    width: 75%;
}

/*OM JOBBET*/
#omJobbet .links img {
    padding-top: 40px;
    width: 100%;
}

#OmJobbet-Rekrutteringsporcessen video {
    border-radius: 25px;
}

/*BENEFITS*/
.icon {
    padding-top: 10px;
    padding-bottom: 10px;
}

.contact-link{
    color: white;
}

.contact-link:hover {
    color: var(--c-brand);
}

/*KONTAKT*/
.contact-info{
    text-align: center;
}

.contact-person{
    border-radius: 50%;
    width: 50%;
    padding-top: 5px;
    padding-bottom: 10px;
}

/*CITAT*/
.citat-text {
    text-align: center;
    font-family: var(--font-italic);
    font-size: 12px;
    margin-bottom: 5px;
}

.citat-name {
    text-align: center;
    font-size: 12px;
    color: var(--c-brand);
}


/*Lister*/
ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  li {
    padding-left: 1em; 
    text-indent: -.7em;
    padding-bottom: 20px;
  }
  
  li::before {
    content: "• ";
    color: var(--c-brand)
  }