/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3rem;

  /*========== Colors ==========*/
  --hue: 174;
  --sat: 63%;
  --first-color: hsl(var(--hue), var(--sat), 40%);
  --first-color-alt: hsl(var(--hue), var(--sat), 36%);
  --title-color: hsl(var(--hue), 12%, 15%);
	--title-color-grey: #afafaf;
  --text-color: hsl(var(--hue), 8%, 35%);
  --body-color: hsl(var(--hue), 100%, 99%);
  --container-color: #FFF;
	 --h3-color: #081d35;

  /*========== Font and typography ==========*/
  --body-font: 'Lato', sans-serif;
  --h1-font-size: 1.5rem;
	--h1-line-height: 1.5rem;
	 --p-font-size: 1.4rem;
  --normal-font-size: 1rem;
  --tiny-font-size: .625rem;
	--h2-line-height: 1.4rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

@media screen and (min-width: 968px) {
  :root {
    --h1-font-size: 70px;
	  --h1-line-height: 80px;
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}
h1 {
}	

ul {
  list-style: none;
}

p {
	font-size: var(--p-font-size);
	line-height: 1.8rem;
  text-decoration: none;
	width: 60%;
}
h2 {
	font-size: var(--p-font-size);
	line-height: var(--h2-line-height);
	color: var(--h1-color);
  text-decoration: none;
	
}
h3 {
	font-size: var(--p-font-size);
	line-height: var(--h1-line-height);
	color: var(--h3-color);
  text-decoration: none;
	width: 60%;
}

a {
  text-decoration: none;
}

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

/*=============== REUSABLE CSS CLASSES ===============*/
.contenttop {
  height: 100vh;
	margin-left: 2rem;
  margin-right: 2rem;
}

.section {
 
	
}

.section__title {
  font-size: var(--h1-font-size);
	line-height: var(--h1-line-height);
  color: var(--title-color);
  text-align: left;
  margin-bottom: 1.5rem;
	width: 65%;
	-webkit-font-smoothing: antialiased;
    font-weight: normal;
}
.section__title__grey {
  font-size: var(--h1-font-size);
	line-height: var(--h1-line-height);
  color: var(--title-color-grey);
  text-align: left;
  margin-bottom: 1.5rem;
	width: 65%;
	-webkit-font-smoothing: antialiased;
    font-weight: normal;
}

.section__height {
  height: 100vh;
}

/*=============== CV ===============*/
.align-center {   display: block;
  margin-left: auto;
  margin-right: auto;
  width: 60%;
}
.cv ul {
  list-style-type: none;
}

.cv li {
  /* You need to turn on relative positioning so the line is placed relative to the item rather than absolutely on the page */
  position: relative;
  
  /* Use padding to space things out rather than margins as the line would get broken up otherwise */
  margin: 0;
  padding-bottom: 1em;
  padding-left: 20px;
}

/* The actual line being placed before each list item, tweak width and color as appropriate */
.cv li:before {
  background-color: #081d35;
  width: 2px;
  content: '';
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 5px;
}

/* Small bullets for normal list items */
.cv li::after {
  content: '';
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-hidden='true' viewBox='0 0 32 32' focusable='false'%3E%3Ccircle stroke='none' fill='%23c00' cx='16' cy='16' r='10'%3E%3C/circle%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
  top: 2px;
  width: 12px;
  height: 12px;
}

/* Large bullet for the first list item */
.cv li:first-child::after {
  content: '';
  width: 16px;
  height: 16px;
  left: -2px;
  top: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-hidden='true' viewBox='0 0 32 32' focusable='false'%3E%3Cpath d='M16 4c6.6 0 12 5.4 12 12s-5.4 12-12 12S4 22.6 4 16 9.4 4 16 4zm0-4C7.2 0 0 7.2 0 16s7.2 16 16 16 16-7.2 16-16S24.8 0 16 0z' fill='%23c00'%3E%3C/path%3E%3Ccircle fill='%23c00' cx='16' cy='16' r='6'%3E%3C/circle%3E%3C/svg%3E");
}
    
/* Start the line further down on the first list item */
.cv li:first-child:before { top: 15px;  }

/* Stop the line short on the final list item */
.cv li:last-child:before { height: 6px; }
    
.cv a { color: #081d35; }

.cv__icon {
  font-size: 7rem;
}
/*=============== Ideer ===============*/
.ideer {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: 1fr;
grid-column-gap: 0px;
grid-row-gap: 0px;
}

.div1 { grid-area: 1 / 1 / 2 / 2; }
.div2 { grid-area: 1 / 2 / 2 / 3; }
.div3 { grid-area: 1 / 3 / 2 / 4; }

/*=============== LAYOUT ===============*/
.container {
  max-width: 100vw;
  margin-left: 2rem;
  margin-right: 2rem;
}

/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--container-color);
  z-index: var(--z-fixed);
  transition: .4s;
}

/*=============== FOOTER ===============*/

.site-footer {
    position: relative;
    z-index: 1000;
    padding: 120px 0 60px 2rem;
    float: left;
    width: 100%;
    color: #222;
	font-family: var(--body-font);
  font-size: var(--normal-font-size);
}
.address {
    width: 48.82943%;
    margin-right: 2.34114%;
    float: left;
	}
.label {
    color: #222;
}
.contact {
    width: 23.24415%;
    margin-right: 2.34114%;
    float: left;
	}
.follow {
    width: 23.24415%;
    float: left;
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
	margin-left: 2rem;
  margin-right: 2rem;
}

.nav__img {
  width: 32px;
  border-radius: 50%;
}

.nav__logo {
  color: var(--title-color);
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: var(--container-color);
    box-shadow: 0 -1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
    width: 100%;
    height: 4rem;
    padding: 0 1rem;
    display: grid;
    align-content: center;
    border-radius: 1.25rem 1.25rem 0 0;
    transition: .4s;
  }
}

.nav__list, 
.nav__link {
  display: flex;
}

.nav__link {
  flex-direction: column;
  align-items: center;
  row-gap: 4px;
  color: var(--title-color);
  font-weight: 600;
}

.nav__list {
  justify-content: space-around;
}

.nav__name {
  font-size: var(--tiny-font-size);
  /* display: none;*/ /* Minimalist design, hidden labels */
}

.nav__icon {
  font-size: 1.5rem;
}

/*Active link*/
.active-link {
  position: relative;
  color: var(--first-color);
  transition: .3s;
}

/* Minimalist design, active link */
/* .active-link::before{
  content: '';
  position: absolute;
  bottom: -.5rem;
  width: 4px;
  height: 4px;
  background-color: var(--first-color);
  border-radius: 50%;
} */

/* Change background header */
.scroll-header {
  box-shadow: 0 1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
}

.align-center {   
    display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;;

}
/*=============== MEDIA QUERIES ===============*/
/* For small devices */
/* Remove if you choose, the minimalist design */
@media screen and (max-width: 320px) {
  .nav__name {
    display: none;
  }
	 body {
    margin: 0;
	  line-height: 1.1rem;
  }
	.align-center {   
    display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;

}
	
	
}

/* For medium devices */
@media screen and (min-width: 576px) {
  .nav__list {
    justify-content: center;
    column-gap: 3rem;
  }
}

@media screen and (min-width: 767px) {
  body {
    margin: 0;
	  line-height: 1.1rem;
  }
  .section {
    padding: 5rem 0 2rem;
  }
  .nav {
    height: calc(var(--header-height) + 1.5rem); /* 4.5rem */
  }
  .nav__img {
    display: none;
  }
  .nav__icon {
    display: none;
  }
  .nav__name {
    font-size: var(--normal-font-size);
    /* display: block; */ /* Minimalist design, visible labels */
  }
  .nav__link:hover {
    color: var(--first-color);
  }

  /* First design, remove if you choose the minimalist design */
  .active-link::before {
    content: '';
    position: absolute;
    bottom: -.75rem;
    width: 4px;
    height: 4px;
    background-color: var(--first-color);
    border-radius: 50%;
  }
.align-center {   
    display: block;
  margin-left: auto;
  margin-right: auto;
  width: 60%;

}
  /* Minimalist design */
  /* .active-link::before{
      bottom: -.75rem;
  } */
}

/* For large devices */
@media screen and (min-width: 1024px) {
  .container {
    
  }
}
