/* GENERELLE */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: bilo, sans-serif;
	font-style: normal;
}

body {
	width: 100%;
	position: relative;
}

/* FORSIDE */
/* Billede på forside */
.content {
	max-width: 100%;
	background-image: linear-gradient(rgba(0,0,0,0.3),transparent),url(img/baggrund.JPG);
	background-size: cover;
	background-position: center;
	padding: 0 8%;
}

/* SIDEBAR */
.app {
	display: flex;
	min-height: 100vh;
}

html {
	scroll-behavior: smooth;
}

.menu-toggle {
	display: none;
	position: fixed;
	top: 2rem;
	right: 2rem;
	width: 60px;
	height: 60px;
	border-radius: 99px;
	background-color: #2e3047;
	cursor: pointer;
}

.hamburger {
	position: relative;
	top: calc(50% - 2px);
	left: 50%;
	transform: translate(-50%, -50%);
	width: 32px;
}

.hamburger > span,
.hamburger > span::before,
.hamburger > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 4px;
  border-radius: 99px;
  background-color: #FFF;
  transition-duration: .25s;
}

.hamburger > span::before {
  content: '';
  top: -8px;
}
.hamburger > span::after {
  content: '';
  top: 8px;
}
.menu-toggle.is-active .hamburger > span {
  transform: rotate(45deg);
}
.menu-toggle.is-active .hamburger > span::before {
  top: 0;
  transform: rotate(0deg);
}
.menu-toggle.is-active .hamburger > span::after {
  top: 0;
  transform: rotate(90deg);
}

.sidebar {
	display: flex;
	background-color: #B0C4DE;
	width: 200px;
}

.sidebar a {
	font-size: 20px;
}

.menu {
	display: flex;
	flex-direction: column;
}

.dropdown-container {
	display: none;
	flex-direction: column;
}

.dropdown:hover .dropdown-container {
	display: block;
	display: flex;
}

.dropdown-container a {
	padding: 0.5em;
	text-align: center;
}

button {
	border: none;
	background: none;
	padding: 1em;
	color: white;
	transition: 0.2s;
	font-size: 20px;
}

.sidebar .menu .menu-item {
	display: block;
	padding: 1em;
	color: #FFF;
	text-decoration: none;
	transition: 0.2s linear;
}

.sidebar .menu .menu-item:hover {
	border-right: 5px solid #003CA6;
}

.content {
	flex: 1 1 0;
	padding: 2rem;
}

.content h1 {
	color: #b0c4de;
	font-size: 4.5rem;
	margin-bottom: 1rem;
    text-align: center;
}

.content h2 {
	color: black;
	font-size: 2.5rem;
	margin-bottom: 1rem;
    text-align: center;
}

.content p {
    color: #b0c4de;
    font-size: 20px;
	font-weight: bold;
	margin-top: 30px;
	margin-left: 160px;
    text-align: center
	
}

.btn_1 {
    background-color: blue;
    padding: 14px 28px;
    font-size: 16px;
    cursor: pointer;
    display: block;
	border: 1px solid rgb(0, 0, 118);
    margin: auto;
    text-decoration: none;
	transition: background 0.5s;
}

/* Når musen kører over knappen */
.btn_1:hover {background: #005eff;}

/* OM MIG */
#about{
	padding: 80px 50px;
}

.row {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.about-col-1 {
	flex-basis: 35%;
}

.about-col-1 img {
	width: 100%;
	border-radius: 15px;
}

.about-col-2 {
	flex-basis: 60%;
}

.sub-title {
	font-size: 70px;
	font-weight: 600;
	color: #2e3047;
}

.sub-title-1 {
	font-size: 21px;
	line-height: 1.6em;
}

.tab-titles {
	display: flex;
	margin: 20px 0 40px;
}

.tab-links {
	margin-right: 50px;
	font-size: 20px;
	font-weight: 500;
	cursor: pointer;
	position: relative;
}

.tab-links::after {
	content: "";
	width: 0;
	height: 3px;
	background: #0051de;
	position: absolute;
	left: 0;
	bottom: -8px;
	transition: 0.5s;
}

.tab-links.active-link::after {
	width: 50%;
}

.tab-contents ul li {
	list-style: none;
	margin: 10px 0;
}

.tab-contents ul li span {
	color: #0051de;
	font-size: 16px;
}

.tab-contents {
	display: none;
	font-size: 18px;
}

.tab-contents.active-tab {
	display: block;
}

/* STUDIE PROJEKTER */
#portfolio {
	padding: 50px 0;
	padding-left: 50px;
	padding-right: 50px;
}

.work-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-gap: 40px;
	margin-top: 50px;
}

.work {
	border-radius: 10px;
	position: relative;
	overflow: hidden;
}

.work img {
	width: 100%;
	border-radius: 10px;
	display: block;
	transition: transform 0.5s;
}

.layer {
	width: 100%;
	height: 0;
	background: linear-gradient(rgba(0,0,0,0.6),#F8EFE0);
	border-radius: 10px;
	position: absolute;
	left: 0;
	bottom: 0;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 40px;
	text-align: center;
	font-size: 19px;
	transition: height 0.5s;
}

.layer h4 {
	font-weight: 500;
	margin-bottom: 20px;
	font-size: 30px;
}

.layer a {
	margin-top: 20px;
	color: white;
	text-decoration: none;
	font-size: 18px;
	line-height: 60px;
	background: #005eff;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	text-align: center;
}

.work:hover img {
	transform: scale(1.1);
}

.work:hover .layer {
	height: 100%;
}

.btn {
	display: block;
	margin: 50px auto;
	width: fit-content;
	border: 3px solid #b0c4de;
	padding: 14px;
	text-decoration: none;
	color: #000;
	transition: background 0.5s;
	font-weight: 500;
}

.btn:hover {
	background: #b0c4de;
}


/* FLOW 1 */
/* Content til forside billede på flow 1 */
.content-1 {
	width: 100%;
	height: 100vh;
	background-image: url(img/collage.png);
	background-size: cover;
	background-position: center;
	padding: 0 8%;
}

.content-1 h1 {
	color: #2e3047;
	background-color: #F8EFE0;
	font-size: 4.5rem;
	padding-top: 5px;
    text-align: center;
}

/* Section med beskrivelse af flowet */
header {
	background-color: #000080;
	color: #fff;
	text-align: center;
	padding: 1em;
}

section {
	margin: 20px;
	padding: 20px;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

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

.div1 {
	width: 40%;
	float: left;
}

.div1 h2 {
	font-size: 30px;
}

.div1 h3 {
	font-size: 25px;
}

.div1 p {
	font-size: 21px;
	line-height: 1.6em;
}

.div1 a {
	color: #000;
	text-decoration: underline;
	font-size: 15px;
}

.div2 h2 {
	font-size: 30px;
}

.div2 h3 {
	font-size: 25px;
}

.div2 p {
	font-size: 21px;
	line-height: 1.6em;
} 

.div2 {
	width: 60%;
	float: right;
}

/* FLOW 2 */
/* Content til forside billede på flow 2 */
.medier {
	width: 100%;
	height: 100vh;
	background-image: url(img/forside-flow2.png);
	background-size: cover;
	background-position: center;
	padding: 0 8%;
}

.medier h1 {
	color: #2e3047;
	font-size: 4.5rem;
    text-align: center;
	padding: 5px;
	background-color: #F8EFE0;
}

.header {
	padding: 30px;
	margin: 1em;
	text-align: center;
	background-color: #000080;
	color: white;
}

.flex-container h1 {
	font-size: 25px
}

.flex-container p {
	font-size: 21px;
	line-height: 1.6em;
}

.flex-container a {
	color: #000;
	text-decoration: underline;
	font-size: 15px;
}

/* De 3 billeder på flow 2 */
.img-gallery {
	width: 80%;
	margin: 100px auto 50px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.img-gallery img {
	width: 100%;
	cursor: pointer;
	transition: 0.4s;	
	padding: 1em;
}

.img-gallery img:hover {
	transform: scale(0.8) rotate(-15deg);
	border-radius: 20px;
	box-shadow: 0 32px 75px rgba(68,77,136,0.2);
}

.full-img {
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0.9);
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 100;
}

.full-img img {
	width: 90%;
	max-width: 600px;
}

.full-img span {
	position: absolute;
	top: 5%;
	right: 5%;
	font-size: 30px;
	color: #fff;
	cursor: pointer;
}

/* FLOW 3 */
.div3 {
	width: 50%;
	float: left;
}

.div3 h2 {
	font-size: 25px;
}

.div3 p {
	font-size: 21px;
	line-height: 1.6em;
}

.div4 {
	width: 50%;
	float: right;
}

.div4 h2 {
	font-size: 25px;
}

.div4 p {
	font-size: 21px;
	line-height: 1.6em;
}

.div5 {
	width: 33.33%;
	float: left;
}

.div6 {
	width: 33.33%;
	float: inline-start;
}

.div7 {
	width: 33.33%;
	float: right;
}

.content-2 {
	width: 100%;
	height: 100vh;
	background-image: url(img/forside-flow3.png);
	background-size: cover;
	background-position: center;
	padding: 0 8%;
}

.content-2 h1 {
	color: #2e3047;
	background-color: #F8EFE0;
	font-size: 4.5rem;
	padding-top: 5px;
    text-align: center;
}

.full-img-1 {
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0.9);
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 100;
}

.full-img-1 img {
	width: 90%;
	max-width: 1200px;
}

.full-img-1 span {
	position: absolute;
	top: 5%;
	right: 5%;
	font-size: 30px;
	color: #fff;
	cursor: pointer;
}

/* FLOW 4 */
.content-3 {
	width: 100%;
	height: 100vh;
	background-image: url(img/flow4-forside.png);
	background-size: cover;
	background-position: center;
	padding: 0 8%;
}

.content-3 h1 {
	color: #2e3047;
	background-color: #F8EFE0;
	font-size: 4.5rem;
	padding-top: 5px;
    text-align: center;
}

.div8 h2 {
	font-size: 25px;
}

.div8 p {
	font-size: 21px;
	line-height: 1.6em;
}

.div9 h2 {
	font-size: 25px;
}

.div9 p {
	font-size: 21px;
	line-height: 1.6em;
}

.div9 a {
	color: #000;
	text-decoration: underline;
	font-size: 15px;
}


/* Videoer */
/* 30 sekunders video */
.video30 {
	width: 600px;
	height: 337.50px;
	float: left;
	padding: 1em;
}

.video15 {
	width: 600px;
	height: 337.50px;
	float: inline-start;
	padding: 1em;
}

.video5 {
	width: 600px;
	height: 337.50px;
	float: right;
	padding: 1em;
}

/* EGNE PROJEKTER */
.content-4 {
	width: 100%;
	height: 100vh;
	background-image: url(img/processen-forside.png);
	background-size: cover;
	background-position: center;
	padding: 0 8%;
}

/* Baggrunds video */
.container-2 {
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.background-clip {
	right: 100%;
	bottom: 100vh;
	z-index: -1;
}

@media (min-aspect-ratio:16/9) {
	.background-clip {
		width: 100%;
		height: auto;
	}
}

@media (max-aspect-ratio:16/9) {
	.background-clip {
		width: auto;
		height: 100%;
	}
}

/* Slideshow tegninger */
.container1 {
	width: 50%;
	height: 110vh;
	background: #F8EFE0;
	display: flex;
	align-items: center;
}

.swiper {
	width: 70%;
	height: min-content;
}

.swiper-slide img {
	height: auto;
}

.swiper .swiper-button-prev, .swiper .swiper-button-next {
	color: #fff;
}

.tegninger {
	padding: 1em;
	background-color: #FFF;
}

.tegninger h1 {
	font-size: 40px;
}

.div10 {
	width: 50%;
	float: left;
	margin-top: 200px;
	background-color: #FFF;
}

.div10 h2 {
	font-size: 25px;
}

.div10 p {
	font-size: 21px;
	line-height: 1.6em;
}

/* Eksamens video */
.eksamen-video {
	padding: 5em;
}

.eksamen-video h2 {
	font-size: 30px;
	color: #2e3047;
}

/* Overskrift og beskrivelse slideshow med foto */
.fotografier1 {
	width: 50%;
}

.fotografier1 h2 {
	font-size: 25px;
}

.fotografier1 p {
	font-size: 21px;
	line-height: 1.6em;
}

/* Slideshow foto */
.container-1 {
    position: relative;
    background: #b0c4de;
	padding: 1em;
}
.slide-1 {
    background: url('img/blomster.JPG');
}
.slide-2 {
    background: url('img/far.JPG');
}
.slide-3 {
    background: url('img/østrig2.JPG');
}
.slide-4 {
    background: url('img/mad.JPG');
}
.slide-5 {
    background: url('img/paris1.JPG');
}
.slide-6 {
    background: url('img/paris2.JPG');
}
.slide-7 {
    background: url('img/rom1.JPG');
}
.slide-8 {
    background: url('img/østrig1.JPG');
}
.slide-8 {
    background: url('img/østrig4.JPG');
}

.slide {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow-x: hidden;
}
.caption {
    background: rgba(0, 0, 0, 0.03);
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 40px 0px;
}
.caption h3 {
    color: #fff;
    text-align: center;
    font-size: 50px;
    padding: 18px;
}
.caption p {
    max-width: 600px;
    width: 90%;
    margin: 0px auto;
    color: #ccc;
    text-align: center;
    font-size: 18px;
    line-height: 1.5em;
}
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 100;
    background: rgba(0, 0, 0, .1);
    border-radius: 50%;
    transform: background 500ms;
}
.arrow img {
    width: 50px;
}
.arrow:hover {
    background: rgba(0, 0, 0, .4);
}
.l {
    left: 0;
}
.r {
    right: 0;
}

/* PROCESSEN */
.proces1 {
	font-size: 30px;
	color: #2e3047;
	text-align: center;
	padding: 2em;
}

.proces {
	font-size: 21px;
}

.proces p {
	line-height: 1.6em;
}

.proces img {
	display: inline;
}

.proces {
	font-size: 21px;
}

.venstre {
	width: 50%;
	float: left;
}

.højre {
	width: 40%;
	float: right;
}

.proces a {
	color: #000;
	text-decoration: underline;
	font-size: 15px;
}

/* FOOTER */
a {
	text-decoration: none;
	transition: 1s;
	color: whitesmoke;
}

ul, li {
	list-style-type: none;
}

footer {
	background-color: #003CA6;
	color: whitesmoke;
}

.footer_info {
	width: 90%;
	margin: 0 auto;
	display: flex;
	padding: 50px 0;
}

.footer_info .footer_width {
	padding: 0 15px;
}

.footer_info h3 {
	margin-bottom: 20px;
}

.about , .contact {
	width: 40%;
}

.link {
	width: 20%;
}

.social-media {
	margin-top: 30px;
}

.social-media ul {
	display: flex;
}

.social-media ul li a {
	display: inline-block;
	margin-right: 50px;
	width: 50px;
	height: 50px;
	padding-top: 12px;
	background-color: transparent;
	border: 1px solid whitesmoke;
	text-align: center;
}

.social-media ul li a:hover {
	background-color: #fff;
	color: #003CA6;
}

.link ul li a {
	display: block;
	margin-bottom: 15px;
	font-size: 18px;
}

.link ul li a:hover {
	color: #000;
}

.Contact ul li {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.Contact ul li span {
	margin-right: 15px;
}

.copy-rights {
	padding: 15px 0;
	text-align: center;
	background-color: #0051de;

}

@media screen and (max-width: 992px) {
	.about , .contact {
		width: 35%;
	}

	.link {
		width: 30%;
	}
}

@media screen and (max-width: 767px) {
	.about , .contact , .link {
		width: 100%;
		margin-bottom: 30px;
	}

	.footer_info {
		flex-direction: column;
	}
}

@media (max-width: 1024px) {
	.sidebar {
		max-width: 200px;
	}
	.row {
		flex-direction: column;
	}
}

@media (max-width: 768px) {
	.menu-toggle {
		display: block;
	}
	.content {
		padding-top: 8rem;
	}
	.sidebar {
		position: fixed;
		top: 0;
		left: -300px;
		height: 100vh;
		width: 100%;
		max-width: 200px;
		transition: 0.2s linear;
	}

	.sidebar.is-active {
		left: 0;
	}
}

  /* Media Query for mobil */
  @media only screen and (max-width: 481px) {
	.content p {
		font-size: 17px !important;
		padding: 0;
		margin: 0;
	}
	.højre {
		width: 20%;
	}
	.venstre {
		width: 41%;
	}
	.content-1 h1 {
		font-size: 30px;
	}
	.div1 h2 {
		font-size: 15px;
	}
	.div1 h3 {
		font-size: 20px;
	}
	.div2 h2 {
		font-size: 15px;
	}
	.div2 h3 {
		font-size: 20px;
	}
	.content-3 img {
		width: 100%;
	}
	.video30 {
		width: 100%;
	}
	.video15 {
		width: 100%;
	}
	.container-2 video {
		width: 100%;
	}
}


  /* Media Query for tablets */
  @media only screen and (max-width: 1024px) {
	.content h1 {
		font-size: 50px;
	}
	.content img {
		width: 100%;
	}
	.content p  {
		font-size: 20px;
	}
	.about-col-2 {
		margin-top: 200px;
		padding-left: 50px;
	}
	.sidebar {
		width: 230px;
	}
	.højre {
		width: 39.5%;
	}
	.social-media ul li a {
		width: 30px;
	}
	.content-1 img {
		width: 100%;
	}
	.div2 video {
		width: 100%;
	} 
	.medier h1 {
		font-size: 40px;
		margin-top: 40px;
	}
	.content-2 h1 {
		font-size: 30px;
	}
	.content-3 h1 {
		font-size: 30px;
	}
	.video5 {
		width: 100%;;
	}
	.div10 {
		margin: 0;
	}
	.div10 p {
		font-size: 15px;
	}
	.fotografier1 p {
		font-size: 15px;
	}
}
