@import url(normalize.css);
:root {
  --color-primary: white;
  --color-secondary: grey;
  --color-body: white;
  --color-heading: white;
  --color-hover: rgb(175, 235, 255);
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

html {
  height: 100%;
  font-size: 100%;
  background: url(/app/img/background.webp);
}

@font-face {
  font-family: "Insominia";
  src: url("/app/scss/Fonts/Insominia-Regular.woff2") format("woff2"),
    url("/app/scss/Fonts/Insominia-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--color-body);
  left: 0;
  top: 0;
  margin: 0px;
  padding: 0px;
  font-size: 1rem;
}

h1,
h2,
h3 h5 {
  margin-bottom: 1rem;
}

h6 {
  font-size: 0.8rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: lighter;
}

h1 {
  font-size: 6rem;
  font-family: "Insominia", Arial, Helvetica, sans-serif;
  margin: 0 0 -3rem 0;
  letter-spacing: 0.1rem;
}

h2 {
  font-size: 4rem;
}

h3 {
  font-size: 2rem;
  font-family: "Insominia", Arial, Helvetica, sans-serif;
  letter-spacing: 0.2rem;
}
h5 {
  font-size: 10rem;
}

p {
  margin-top: 0;
}

@media screen and (min-width: 1024px) {
  h1 {
    font-size: 7rem;
    margin: 0 0 -4rem 0;
    letter-spacing: 0.1rem;
  }
  h1:hover {
    color: var(--color-hover);
  }

  h2 {
    font-size: 6rem;
  }

  h3 {
    font-size: 3rem;
    letter-spacing: 0.2rem;
  }

  h5 {
    font-size: 20rem;
  }

  body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--color-body);
    left: 0;
    top: 0;
    margin: 0px;
    padding: 0px;
  }
}

@media screen and (max-width: 400px) {
  h3 {
    font-size: 3rem;
    letter-spacing: 0.2rem;
    padding-top: 0px;
  }
}
/*LINKS*/
a {
  text-decoration: none;
}

a:link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a:visited {
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: none;
}

/* OTG Navbar*/
.nav {
  background: #000;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-left: 30px;
  padding-right: 10px;
  align-items: center;
  align-content: center;
  max-height: 8vh;
}

.navbar__list {
  width: auto;
  display: flex;
  max-height: 100%;
  opacity: 1;
  font-size: 1.3rem;
  font-family: "Insominia", Arial, Helvetica, sans-serif;
}
.navbar__item {
  padding: 2rem 2rem;
  list-style: none;
}

.navbar__item:hover {
  color: grey;
}

@media screen and (max-width: 600px) {
  .navbar li {
    display: flex;
    font-size: 0.7rem;
    padding: 0 2px;
  }
  .nav {
    justify-content: center;
    justify-items: center;
    flex-wrap: wrap;
    padding-left: 2px;
    padding-right: 2px;
    align-items: center;
    align-content: center;
    max-height: 12vh;
  }
  .navbar__item {
    padding: 0.5rem 0.5rem;
    list-style: none;
  }
  .logo__nav {
    padding-top: 15px;
    margin-bottom: -12px;
  }
}

/* Home Navbar */

header {
  display: flex;
  background: rgba(0, 0, 0, 0.925);
  height: 9vh;
  width: 100%;
  opacity: 1;

  align-content: center;
  align-items: center;
  justify-items: center;
  justify-content: center;
  position: fixed;

  margin-top: 0;
}

.navbar {
  list-style: none;
  display: flex;
  justify-content: space-between;
  margin-left: -40px;
  font-family: "Insominia", Arial, Helvetica, sans-serif;
}

.navbar li {
  display: inline-block;
  padding: 0 50px;
  color: var(--color-body);
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
}

.navbar li a {
  transition: all 0.5s ease;
}

.navbar li a:hover {
  color: grey;
}

@media screen and (max-width: 768px) {
  .navbar li {
    display: flex;
    font-size: 1.2rem;
    padding: 0 10px;
  }

  .mainheader__content > h1 {
    font-size: 4rem;
  }
}

.logo {
  width: auto;
  height: auto;
  top: 0;
  left: 0;
  z-index: 0;
  margin-right: auto;
  position: fixed;
  display: inline-block;
}

.logo .img-top {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
}

.logo:hover .img-top {
  display: inline;
}

.grid {
  display: grid;
  /* grid-template-columns: repeat(1, auto); /* 1 columns */
  /* grid-template-rows: repeat(3, auto); /* 3 rows  */
  grid-template-columns: repeat(1, auto);
  grid-auto-rows: min-content;
  grid-gap: 1px 1px; /* 50 pixels of space added between rows and 30 pixels added between columns  */

  min-height: 33vh;
  width: 100px;

  padding-left: 3vw;
  padding-right: 3vw;

  margin-top: 60px;
  margin-bottom: 0px;
  margin-left: auto;
  margin-right: auto;

  row-gap: 50px;
  column-gap: 10px;

  align-items: center;
  align-content: center;
  justify-items: center;
  justify-content: center;

  line-height: 1.4;

  opacity: 1;
  transform: translate(0, 0);
  transition-delay: 0.24s;
  transition-duration: 0.6s;
  transition-timing-function: ease;
}

.grid__onec {
  display: grid;
  grid-template-columns: repeat(1, auto);
  grid-auto-rows: min-content;
  grid-gap: 1px 1px; /* 50 pixels of space added between rows and 30 pixels added between columns  */

  min-height: 33vh;
  width: 100px;

  padding-left: 3vw;
  padding-right: 3vw;

  margin-top: 50px;
  margin-bottom: 100px;
  margin-left: auto;
  margin-right: auto;

  row-gap: 20px;

  align-items: center;
  align-content: center;
  justify-items: center;
  justify-content: center;

  opacity: 1;
  transform: translate(0, 0);
  transition-delay: 0.24s;
  transition-duration: 0.6s;
  transition-timing-function: ease;
}

.grid-item {
  border: thin gray solid;
}

@media screen and (min-width: 1500px) {
  .grid {
    grid-template-columns: repeat(2, auto);
  }
}

@media screen and (max-width: 600px) {
  .grid {
    row-gap: 10px;
  }
  .mainheader__content > p {
    margin-top: 12px;
  }
}

.mainheader {
  display: flex;
  align-items: center;
  align-content: center;
  justify-items: center;
  justify-content: center;
  background-image: url(/app/img/logo.png);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center 10px;

  height: 105vh;
}

.mainheader__2 {
  display: flex;
  align-items: center;
  align-content: center;
  justify-items: center;
  justify-content: center;
  background-image: url(/app/img/logo.png);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center 10px;

  height: 60vh;
}

.mainheader4 {
  display: flex;
  align-items: center;
  align-content: center;
  justify-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center 10px;
  background: #0000005f;

  height: 105vh;
}

.mainheader__3 {
  display: flex;
  align-items: center;
  align-content: center;
  justify-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.199);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center 10px;
  padding-top: 100px;
  margin-bottom: -40px;
  height: 60vh;
}

.mainheader__3 p {
  margin-top: -40px;
}

.mainheader__content {
  text-align: center;
  margin-top: 5px;
}

.mainheader__content > br {
  text-align: center;
  margin-bottom: 0;
}

.mainheader__content2 {
  text-align: center;
  margin-top: 5px;
}

.mainheader__content2 > h1 {
  margin-bottom: 60px;
}
/* -- IMAGE OVERLAY -- */

.image {
  position: relative;
  width: 420px;
}

@media screen and (min-width: 800px) {
  .image {
    width: 680px;
  }
}
@media screen and (max-width: 400px) {
  .image {
    width: 300px;
  }

  .mainheader__content h3 {
    text-align: left;
    margin-top: 100px;
  }
}

.image__img {
  width: 100%;
}

.image__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #ffffff;
  font-family: "Quicksand", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}

.image__overlay--blur {
  backdrop-filter: blur(1px);
}

.image__overlay--primary {
  background: black;
}

.image__overlay > * {
  transform: translateY(20px);
  transition: transform 0.25s;
}

.image__overlay:hover {
  opacity: 0.8;
}

.image__overlay:hover > * {
  transform: translateY(0);
}

.image__title {
  font-size: 3em;
  font-family: "Insominia", Arial, Helvetica, sans-serif;
  letter-spacing: 0.1rem;
  text-align: center;
  margin-bottom: -18px;
}

.image__title:hover {
  color: #9a9a9a;
  cursor: pointer;
}

.image__description {
  font-size: 1.25em;
  margin-top: 0.25em;
  text-align: center;
}

footer {
  display: grid;
  grid-template-columns: repeat(1, 500px);
  grid-template-rows: repeat(2, 50px);
  background-color: #1d1d1d;

  align-content: center;
  justify-content: center;

  align-items: center;
  justify-items: center;

  color: grey;
  height: 15vh;
}

.foottext {
  align-items: center;
  padding: 2px;
}

.icon {
  height: 40px;
  width: 40px;
  fill: grey;
  margin-top: 10px;
  margin-bottom: 10px;
}

.icon:hover {
  fill: #2867b2;
}

.list2 {
  display: flex;
  list-style: none;
  padding-left: 0;
  color: var(--color-secondary);

  justify-items: center;
  align-items: center;
  justify-content: center;
  align-content: center;

  height: 0.2vh;
}

.list--inline .list__item {
  display: inline-block;
  padding: 1rem;
}

.email {
  text-align: center;
}

.container_otgfc {
  display: grid;

  position: relative;
  align-content: center;
  justify-content: center;
  align-items: center;
  justify-items: center;
  width: 50%;
}

.image_otgfc {
  display: block;
  width: 100%;
  height: auto;
}

.overlay_otgfc {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 0.5s ease;
  background-color: #3f3f3fd7;
}

.container_otgfc:hover .overlay_otgfc {
  opacity: 0.8;
}

.text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.wrapper {
  display: inline-flex;
}
.wrapper .icon {
  margin: 0 10px;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 2;
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.wrapper .icon span {
  display: block;
  height: 60px;
  width: 60px;
  background: rgb(55, 55, 55);
  border-radius: 25%;
  position: relative;
  z-index: 2;
  transition: 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  margin-top: 50px;
  margin-bottom: 20px;
}
.wrapper .icon span i {
  line-height: 60px;
  font-size: 25px;
}

.wrapper .icon:hover span {
  color: #fff;
}
.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.4);
}

.wrapper .twitter:hover span,
.wrapper .twitter:hover .tooltip,
.wrapper .twitter:hover .tooltip:before {
  background: #2867b2;
}

.recent__work {
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-auto-rows: min-content;
  height: 60vh;
  background: #0000005f;
  align-content: center;
  justify-content: center;
  align-items: center;
  justify-items: center;
  width: 100%;
}

.recentwork__content {
  text-align: center;
}

.butt {
  border: 2px solid rgb(255, 255, 255);
  color: white;
  background-color: rgba(173, 216, 230, 0);
  height: 50px;
  width: 175px;
  cursor: pointer;
  margin-top: 20px;
  box-shadow: -7px 8px 0px white;
}

.butt:hover {
  background-color: white;
  color: black;
  cursor: pointer;
}

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

/* Clear floats after the columns */
.wrapper__1 {
  display: grid;
  grid-template-columns: 100%;
  grid-auto-rows: min-content;
  height: 50vh;
  background: #0000005f;
  width: 100%;
}

.box {
  color: #fff;
  padding: 1em;
}

.a {
  height: 400px;
  text-align: center;

  color: white;
  text-shadow: 0 5px 10px black;
  margin-top: 150px;
}
.a > p {
  margin-top: -30px;
}

.a > h5 {
  font-size: 40px;
  margin-top: -10px;
  margin-bottom: -20px;
}

.b {
  height: 400px;
  text-align: center;
  margin-top: 0px;
  padding-top: 90px;
}

@media screen and (max-width: 1024px) {
  .b {
    padding-top: 100px;
  }
}

.b > h3 {
  margin-bottom: 5px;
}

.c {
  height: 400px;
  text-align: center;
}

.box__2 {
  color: #fff;
  padding: 1em;
  background: rgba(0, 0, 0, 0.336);
  padding-bottom: 450px;
}

.box__3 {
  color: #fff;
  padding: 1em;
  padding-bottom: 500px;
}

* {
  box-sizing: border-box;
}
.box12 {
  display: flex;
  width: 50%; /* three boxes (use 25% for four, and 50% for two, etc) */
  padding: 100px; /* if you want space between the images */
}

article {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 20px;

  align-content: center;
  justify-content: center;
  justify-items: center;
}

/* Pattern styles */
.container123 {
  display: table;
  width: 100%;
}

.left-half {
  background-color: #ff9e2c;
  position: absolute;
  left: 0px;
  width: 50%;
}

.right-half {
  background-color: #b6701e;
  position: absolute;
  right: 0px;
  width: 50%;
}
