/* Welcome to Compass.
 * In this file you should write your main styles. (or centralize your imports)
 * Import this file using the following HTML or equivalent:
 * <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
@import 'https://fonts.googleapis.com/css?family=Josefin+Sans';
@import 'https://fonts.googleapis.com/css?family=Josefin+Sans:300,400';
@import 'https://fonts.googleapis.com/css?family=Josefin+Sans';
@import 'https://fonts.googleapis.com/css?family=Josefin+Sans:300,400';
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

elements-of-type(html5-block) {
  display: block;
}

/*
 *
 * btns.css
 * Simple css utilities for building responsive buttons
 * Author: mrmrs
 * License: MIT
 *
 *                */
/*

  Base .btn class

  Code:
  <a href="#" class="btn">Default button</a>

*/
/*Variables*/
/*Menu*/
/*Nav bar*/
@font-face {
  font-family: 'Aracne';
  src: url("../Fonts/Arcane/ARACNE-ULTRA-CONDENSED_light.eot?") format("eot"), url("../Fonts/Arcane/ARACNE-ULTRA-CONDENSED_light.woff") format("woff"), url("../Fonts/Arcane/ARACNE-ULTRA-CONDENSED_light.ttf") format("truetype"), url("../Fonts/Arcane/ARACNE-ULTRA-CONDENSED_light.svg#AracneUltraCondensedLight") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "AracneReg";
  src: url("../Fonts/AracneReg/ARACNE-ULTRA-CONDENSED_regular.eot?") format("eot"), url("../Fonts/AracneReg/ARACNE-ULTRA-CONDENSED_regular.woff") format("woff"), url("../Fonts/AracneReg/ARACNE-ULTRA-CONDENSED_regular.ttf") format("truetype"), url("../Fonts/AracneReg/ARACNE-ULTRA-CONDENSED_regular.svg#AracneUltraCondensedRegular") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "AracneLight";
  src: url("../Fonts/Aracne_Light/ARACNE_light.eot?") format("eot"), url("../Fonts/Aracne_Light/ARACNE_light.woff") format("woff"), url("../Fonts/Aracne_Light/ARACNE_light.ttf") format("truetype"), url("../Fonts/Aracne_Light/ARACNE_light.svg#AracneLight") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "AracneRegular";
  src: url("../Fonts/Aracne_Regular/ARACNE_regular.eot?") format("eot"), url("../Fonts/Aracne_Regular/ARACNE_regular.woff") format("woff"), url("../Fonts/Aracne_Regular/ARACNE_regular.ttf") format("truetype"), url("../Fonts/Aracne_Regular/ARACNE_regular.svg#AracneRegular") format("svg");
  font-weight: normal;
  font-style: normal;
}

h1 {
  font-family: AracneRegular;
  font-size: 60px;
}

h2, a {
  font-family: AracneLight;
  font-size: 40px;
  letter-spacing: .04em;
}

h3 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 18px;
  font-weight: 300;
}

.btn,
.btn:link,
.btn:visited {
  width: 10px;
  font-size: 20px;
  border-radius: .25em;
  border-style: solid;
  border-width: 1px;
  color: #28394b;
  display: inline-block;
  font-family: AracneRegular, avenir, helvetica, roboto, arial, sans-serif;
  letter-spacing: .15em;
  margin-bottom: .5em;
  padding: .8em 1.5em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .4s, background-color .4s, border .4s;
}

.btn:hover,
.btn:focus {
  /*
  color: white;
	background-color: black;
  transition: background-color .3s, color .3s, border .3s;
	*/
}

.btn:active {
  color: #0074D9;
  background-color: black;
  border-color: #0074D9;
  transition: background-color .3s, color .3s, border .3s;
}

.btn:hover {
  color: white;
  background-color: #28394b;
  transition: background-color .3s, color .3s, border .3s;
}

/*

  Sizes

  Small  = .btn--s
  Medium = .btn--m
  Large  = .btn--l

  Code:
  <a href="#" class="btn btn--s">
  <a href="#" class="btn btn--m">
  <a href="#" class="btn btn--l">

*/
.btn--s {
  font-size: 14px;
}

.btn--m {
  font-size: 16px;
}

.btn--l {
  font-size: 20px;
  border-radius: 0.25em !important;
}

/*

  Layout utility for responsive buttons

  Code:
  <a href="#" class="btn btn--full">

*/
.btn--full,
.btn--full:link {
  border-radius: .25em;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: 85%;
}

/*

  Skins

  * Black & White
  * Grays
  * Colors

  Code:
  <a href="#" class="btn btn--black">
  <a href="#" class="btn btn--white">
  <a href="#" class="btn btn--gray">
  <a href="#" class="btn btn--gray-dark">
  <a href="#" class="btn btn--gray-border">
  <a href="#" class="btn btn--blue">

*/
/* BLACK & WHITE */
.btn--black,
.btn--black:link,
.btn--black:visited {
  color: #fff;
  background-color: #111;
}

.btn--black:hover,
.btn--black:focus {
  color: #fff;
  background-color: #444;
  border-color: #444;
}

.btn--black:active {
  color: #fff;
  background-color: #999;
  border-color: #999;
}

.btn--white,
.btn--white:link,
.btn--white:visited {
  color: #111;
  background-color: #fff;
}

.btn--white:hover,
.btn--white:focus {
  color: #111;
  background-color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--white:active {
  color: #111;
  background-color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
}

/* Gray */
.btn--gray:link,
.btn--gray:visited {
  background-color: #f0f0f0;
  border-color: #f0f0f0;
  color: #555;
}

.btn--gray:hover,
.btn--gray:focus {
  background-color: #ddd;
  border-color: #ddd;
  color: #444;
}

.btn--gray:active {
  background-color: #ccc;
  border-color: #ccc;
  color: #444;
}

.btn--gray-border:link,
.btn--gray-border:visited {
  background-color: #fff;
  border-color: #555;
  border-width: 2px;
  color: #555;
}

.btn--gray-border:hover,
.btn--gray-border:focus {
  background-color: #fff;
  border-color: #ddd;
  color: #777;
}

.btn--gray-border:active {
  background-color: #ccc;
  border-color: #ccc;
  color: #444;
}

.btn--gray-dark:link,
.btn--gray-dark:visited {
  background-color: #555;
  color: #eee;
}

.btn--gray-dark:hover,
.btn--gray-dark:focus {
  background-color: #333;
  border-color: #333;
  color: #eee;
}

.btn--gray-dark:active {
  background-color: #777;
  border-color: #777;
  color: #eee;
}

/* BLUE */
.btn--blue:link,
.btn--blue:visited {
  color: #fff;
  background-color: #0074D9;
}

.btn--blue:hover,
.btn--blue:focus {
  color: #fff !important;
  background-color: #0063aa;
  border-color: #0063aa;
}

.btn--blue:active {
  color: #fff;
  background-color: #001F3F;
  border-color: #001F3F;
}

@media screen and (max-width: 600px) {
  .btn:hover {
    background-color: #222d38;
  }
  .btn--full {
    max-width: 16em !important;
  }
}

/* Keep it mobile-first and responsive */
@media screen and (min-width: 601px) {
  .btn--full {
    max-width: 16em !important;
  }
  /*
	.btn--full:link {
	  width: 100%;
	}
	*/
}

@font-face {
  font-family: 'Aracne';
  src: url("../Fonts/Arcane/ARACNE-ULTRA-CONDENSED_light.eot?") format("eot"), url("../Fonts/Arcane/ARACNE-ULTRA-CONDENSED_light.woff") format("woff"), url("../Fonts/Arcane/ARACNE-ULTRA-CONDENSED_light.ttf") format("truetype"), url("../Fonts/Arcane/ARACNE-ULTRA-CONDENSED_light.svg#AracneUltraCondensedLight") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "AracneReg";
  src: url("../Fonts/AracneReg/ARACNE-ULTRA-CONDENSED_regular.eot?") format("eot"), url("../Fonts/AracneReg/ARACNE-ULTRA-CONDENSED_regular.woff") format("woff"), url("../Fonts/AracneReg/ARACNE-ULTRA-CONDENSED_regular.ttf") format("truetype"), url("../Fonts/AracneReg/ARACNE-ULTRA-CONDENSED_regular.svg#AracneUltraCondensedRegular") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "AracneLight";
  src: url("../Fonts/Aracne_Light/ARACNE_light.eot?") format("eot"), url("../Fonts/Aracne_Light/ARACNE_light.woff") format("woff"), url("../Fonts/Aracne_Light/ARACNE_light.ttf") format("truetype"), url("../Fonts/Aracne_Light/ARACNE_light.svg#AracneLight") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "AracneRegular";
  src: url("../Fonts/Aracne_Regular/ARACNE_regular.eot?") format("eot"), url("../Fonts/Aracne_Regular/ARACNE_regular.woff") format("woff"), url("../Fonts/Aracne_Regular/ARACNE_regular.ttf") format("truetype"), url("../Fonts/Aracne_Regular/ARACNE_regular.svg#AracneRegular") format("svg");
  font-weight: normal;
  font-style: normal;
}

h1 {
  font-family: AracneRegular;
  font-size: 60px;
}

h2, a {
  font-family: AracneLight;
  font-size: 40px;
  letter-spacing: .04em;
}

h3 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 18px;
  font-weight: 300;
}

/*Variables*/
/*Menu*/
/*Nav bar*/
.grid {
  margin: 0 auto;
  max-width: 1100px;
  width: 100%;
}

.row {
  width: 100%;
  display: flex;
}

.row::after {
  content: "";
  clear: both;
  display: block;
}

.col-1 {
  width: 8.33%;
}

.col-2 {
  width: 16.66%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.33%;
}

.col-5 {
  width: 41.66%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.33%;
}

.col-8 {
  width: 66.66%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.33%;
}

.col-11 {
  width: 91.66%;
}

.col-12 {
  width: 100%;
}

[class*="col-"] {
  float: left;
}

/*Basics*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  overflow: hidden;
}

body {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.grid {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  min-height: 700px;
  padding-top: 70px;
  padding-bottom: 40px;
  padding-right: 25px;
  padding-left: 25px;
}

header {
  display: flex;
  flex-flow: row wrap;
  position: relative;
  height: 20%;
  align-items: center;
}

/*Logo pieces*/
#brand {
  height: 100%;
  width: auto;
  display: flex;
  justify-content: flex-start;
  flex-flow: row nowrap;
  align-items: flex-start;
}

#brand a {
  text-decoration: none;
}

#logo-org {
  opacity: 1;
  background-image: url(../pictures/brand/logovec4.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100px;
  width: 100px;
}

#logo-text {
  position: absolute;
  right: 0;
  height: 100%;
  padding-left: 15px;
  margin-left: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

#logo-text h2 {
  padding-top: 10px;
  margin-bottom: 6px;
}

#logo-text h3 {
  text-align: right;
  padding-bottom: 10px;
  margin-left: 4px;
  color: #5d6e7f;
}

/*social media*/
.social-media {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-around;
  align-items: center;
  height: 100%;
}

.social-media a {
  text-decoration: none;
}

/*soc 1 == social media icons in header
soc 2 == social media icons in footer*/
#soc2 {
  display: none;
  align-self: center;
  margin-top: 100px;
}

#soc1 {
  display: none;
}

/*social media icons*/
.iconcon {
  padding: 3px;
  width: 45px;
  height: 45px;
  opacity: 0.65;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.iconcon:hover {
  opacity: 1.0;
  transition: opacity .35s;
}

#yt {
  background-image: url(../icons/yt.svg);
}

#ig {
  background-image: url(../icons/ig.svg);
}

#tw {
  background-image: url(../icons/twitter.svg);
}

#wp {
  background-image: url(../icons/wp.svg);
}

/*Main: Navigation links, portfolio button and footer social media box*/
.index-main {
  display: flex;
  flex-direction: column;
  height: 80%;
}

/*Picture that shows up in mobile version instead of navigation links*/
#profile {
  display: none;
  background-image: url(../pictures/profilemed.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.nav {
  margin-top: 100px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-around;
  align-items: center;
}

.art_nav {
  display: flex;
  flex-flow: column nowrap;
  position: relative;
  /*Text for art navigation*/
}

.art_nav h2, .art_nav h3 {
  font-family: AracneRegular;
  font-size: 40px;
  text-decoration: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  margin: 3px;
}

.imgcontainer {
  width: 200px;
  height: 200px;
  position: relative;
}

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

.overlay {
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #00284d;
}

/*Portfolio link button*/
#box {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-top: 70px;
  height: auto;
  justify-content: center;
}

#box a {
  text-decoration: none;
  font-size: 23px;
}

#box .portlink {
  display: none;
  font-family: AracneRegular;
  margin: auto;
  color: black;
}

/*Slight adjustment to desktop version*/
@media only screen and (max-width: 900px) {
  .imgcontainer {
    width: 180px;
    height: auto;
  }
  .art_nav h2, .art_nav h3 {
    font-size: 17px;
  }
}

/*Tablets (Square boxes)*/
@media only screen and (max-width: 900px) {
  .index-main {
    height: 80%;
    align-items: center;
  }
  .grid {
    height: 100vh;
    min-height: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 0px;
    padding-left: 0px;
  }
  #box {
    padding-top: 30px;
    height: 20vh;
    width: 60%;
  }
  #box .btn {
    font-size: 4vh;
  }
  .nav {
    flex-flow: row wrap;
    margin-top: 0px;
    height: 60vh;
    width: 60vh;
  }
  .art_nav {
    height: 50%;
    width: 50%;
  }
  .art_nav h2, .art_nav h3 {
    font-size: 2.5vh;
    text-align: left;
    opacity: 0.6;
    background-color: black;
    top: auto;
    left: 10%;
    bottom: 5%;
    transform: translate(0%, 0%);
  }
  .imgcontainer {
    padding: 10px;
    height: 100%;
    width: auto;
  }
  .row {
    position: static;
    flex-flow: column nowrap;
    height: 20%;
    justify-content: space-around;
  }
  .social-media {
    position: static;
  }
  #brand {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  #logo-cont {
    height: 50%;
    width: 100%;
  }
  #logo-org {
    position: static;
    height: 100%;
    width: 100%;
  }
  #logo-text {
    height: 50%;
    text-align: center;
    justify-content: center;
    padding-left: 0;
    margin-left: 0;
    position: static;
  }
  #logo-text h2 {
    padding-top: 0px;
    margin-bottom: 0.5vh;
    font-size: 4vh;
  }
  #logo-text h3 {
    text-align: center;
    padding-bottom: 0px;
    margin-left: 0px;
    font-size: 2vh;
  }
}

@media only screen and (max-width: 900px) and (orientation: landscape) {
  #box {
    width: 35%;
  }
}

/*Mobile devices*/
@media only screen and (max-width: 600px) {
  .grid {
    padding-bottom: 35px;
  }
  .social-media {
    width: 90%;
  }
  .nav {
    display: none;
  }
  .index-main {
    height: 65%;
  }
  .row {
    height: 35%;
  }
  #brand {
    height: 60%;
  }
  #profile {
    display: block;
    height: 80%;
    width: 100%;
  }
  #soc1 {
    max-width: 25em;
    display: flex;
    height: 40%;
  }
  #soc2 {
    display: none;
    align-items: flex-start;
    margin: auto;
    width: 80%;
    height: 10%;
    margin-top: 0px;
  }
  #box {
    width: 100% !important;
    height: 20%;
  }
  .iconcon {
    width: 6vh;
    height: 6vh;
  }
}

@media only screen and (max-width: 600px) and (orientation: landscape) {
  .social-media {
    width: 70%;
    max-width: 16em !important;
  }
  #box {
    width: 60%;
  }
  #box .btn {
    font-size: 3vh;
  }
}

/*Desktop*/
@media only screen and (min-width: 901px) {
  .art_nav h2, .art_nav h3 {
    font-family: AracneLight;
    font-size: 40px;
    display: none;
  }
  .art_nav:hover h2, .art_nav:hover h3, .art_nav:active h2, .art_nav:active h3 {
    display: block;
  }
  .art_nav:hover .overlay, .art_nav:active .overlay {
    opacity: 0.65;
    transition: opacity .25s;
  }
}
