/* Theming */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;700&display=swap"); /* import font */

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

html {

}

body {
  font-family: "Nunito", sans-serif;
  color: #ff9900;
  /*padding: 12px 24px;*/
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  }

header {
  /*position: sticky;
  top: 0;*/
  width: 100%;
  /*background-color: white;*/
  background-image: linear-gradient(rgba(255, 255, 255, 1.0) 60%, rgba(255, 255, 255, 0));
  }

main {
  flex-grow: 2;
}

.hero{
  width:100%;
  height:100%;
}

/* ---- I have no idea what I'm doing - Attila ---- */

/* -------- START Type -------------------- */

a {
  color: #999999;
  }

a:hover {
  color: #ff9900;
  text-decoration: none;
  transition: all .35s ease-out;
  }

footer a {
  font-size: .8em;
}

footer a:after {
  content: "";
  height: 3px;
  background-color: #ef6a0d;
  width: 3px;
  display: inline-block;
  margin: 0px 5px 4px 8px;
  border-radius: 9px;
  }

footer a:last-child:after {
  content: normal;
}

/* -------- END Type ---------------------- */

/* -------- START Lists -------------------- */

ul {
  list-style: none;
  }

/* -------- END Lists ---------------------- */

/* -------- START Portfolio Graphic Design ------------------ */

.graphic {
max-width: 100%;
height: auto;
padding-left: 25px;
padding-right: 25px;
padding-top: 2.5px;
padding-bottom: 2.5px;
box-sizing: border-box;
}

/* -------- END Portfolio Graphic Design -------------------- */

/* -------- START Burger Menu -------------------- */

/* Nav menu */
.nav {
  width: 100%;
  height: 100%;
  position: left;*/
  overflow: hidden;
  }

.menu a {
  display: block;
  padding: 45px;
  }

.nav {
  position: absolute;
  width: 100%;
  margin: -300px 0 0 0px;
  padding: 50px;
  padding-top: 125px; 
  background: #fff;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  transform-origin: 0% 0%;
  transform: translate(0, -100%);
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
  z-index: 1;
  }

.hamb {
  cursor: pointer;
  float: right;
  padding: 40px 20px;
  }/* Style label tag */

.hamb-line {
  background: #ff9900;
  display: block;
  height: 4px;
  position: relative;
  width: 46px;
  z-index: 999;
  } /* Style span tag */

.hamb-line::before,
.hamb-line::after {
  background: #ff9900;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
  }

.hamb-line::before {
  top: 12px;
  }

.hamb-line::after {
  top: -12px;
  }

.side-menu {
  display: none;
  z-index: 2;
  } /* Hide checkbox */

/* Toggle menu icon */
.side-menu:checked ~ nav {
  transform: none;
  }

.side-menu:checked ~ .hamb .hamb-line {
  background: transparent;
  }

.side-menu:checked ~ .hamb .hamb-line::before {
  transform: rotate(-45deg);
  top:0;
  }

.side-menu:checked ~ .hamb .hamb-line::after {
  transform: rotate(45deg);
  top:0;
  }

    ul{
    list-style: none;
    background: #ffffff;
  }
  ul li {
    display: inline-block;
    position: relative;
  }
  ul li a {
    display: block;
    padding: 20px 25px;
    text-decoration: none;
    text-align: center;
    font-size: 16.5px;
    transition: all .35s ease-out;
  }
  ul li ul.dropdown li {
    display: block;

  }
  ul li ul.dropdown {
    width: 100%;
    position: absolute;
    z-index: 999;
    display: none;
  }
  ul li a:hover {
    background-color: white;
  }

  ul li:hover ul.dropdown {
    display: block;  
  }

/* -------- Burger Menu END-------------------- */

/* -------- START Logo -------------------- */

  .ws_logo_2 {
object-fit: cover;
position: absolute;
  }

  .ws_logo {

  }

/* -------- END Logo ---------------------- */

/* -------- START Social Media Icons -------------------- */

.somefacebook img{
width: 1.5em;
height: 1.5em;
object-fit: cover;
position: absolute;
top: 10.35em;
left: 1.35em;
z-index: 1;
}
.someyoutube img{
width: 1.5em;
height: 1.5m;
object-fit: cover;
position: absolute;
top: 10.58em;
left: 5.5em;
z-index: 1;
}
.somebehance img{
width: 3em;
height: 3m;
object-fit: cover;
position: absolute;
top: 9.75em;
left: 9.5em;
z-index: 1;
}
.somelinkedin img{
width: 1.5em;
height: 1.5m;
object-fit: cover;
position: absolute;
top: 10.35em;
left: 15em;
z-index: 1;
}
.somepatreon img{
width: 1.5em;
height: 1.5m;
object-fit: cover;
position: absolute;
top: 10.35em;
left: 20em;
z-index: 1;
}

/* -------- END Social Media Icons -------------------- */

/* -------- START Back to Top ------------------ */

.back-to-top {
  bottom: 20px;
  right: 20px;
  text-align: center;
}

.back-to-top a {
  text-decoration: none;
  font-family: "Nunito", sans-serif;
  color: #484848;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16.5px;
  transition: all .35s ease-out;
}

.back-to-top a:hover {
  color: #ff9900;
}

/* -------- END Back to Top ------------------ */

/* -------- START Media queries ------------------ */

@media (min-width: 768px) {

  header {
    display: flex;
    flex-direction: row;
    justify-content: flex-star;
  }

/* -------- START Burger Menu -------------------- */

  .nav {
    max-height: none;
    top: 0;
    position: relative;
    margin: 0;
    padding: 0;
    width: auto;
    /*float: right;
    width: fit-content;*/
    background-color: transparent;
    transform: none;
    }

  .menu li {  
    float: left;
    }
  .menu a:hover {
    background-color: transparent;
    color: var(--gray);
    }

  .hamb {
    display: none;
    }
  /* -------- Burger Menu END-------------------- */
  }

/* -------- END Media queries ------------------ */