/* FIRST.css load */

.browserupgrade {
  background-color: #92989b;
  width: 100%;
  color: white;
  padding-top: 50px;
  padding-bottom: 50px;
}

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

@font-face {
  font-family: "Gloriola Std";
  font-style: normal;
  font-weight: 100;
  src: local("Gloriola Std Light"), local("Gloriola-Std-Light"),
    url(../fonts/GloriolaStd-Light.woff2) format("woff2"),
    url(../fonts/GloriolaStd-Light.woff) format("woff");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC,
    U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}

@font-face {
  font-family: "Gloriola Std";
  font-style: normal;
  font-weight: 300;
  src: local("Gloriola Std Medium"), local("Gloriola-Std-Medium"),
    url(../fonts/GloriolaStd-Medium.woff2) format("woff2"),
    url(../fonts/GloriolaStd-Medium.woff) format("woff");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC,
    U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}

@font-face {
  font-family: "Gloriola Std";
  font-style: normal;
  font-weight: 800;
  src: local("Gloriola Std Bold"), local("Gloriola-Std-Bold"),
    url(../fonts/GloriolaStd-Bold.woff2) format("woff2"),
    url(../fonts/GloriolaStd-Bold.woff) format("woff");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC,
    U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}

body {
  margin-top: 64px;
  font-family: "Gloriola Std", sans-serif;
  font-weight: 100;
}

a {
  color: black;
}

b {
  font-weight: 300;
}

.container .profile {
  animation: rightToLeft 1s;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin-top: -64px;
  padding-bottom: 64px;
}

@media screen and (min-width: 671px) and (max-width: 990px) {
  .container .profile {
    background-image: url("../images/profile-600.jpg") !important;
  }
}

@media screen and (min-width: 991px) and (max-width: 1300px) {
  .container .profile {
    background-image: url("../images/profile-990.jpg") !important;
  }
}

@media screen and (min-width: 1300px) and (max-width: 1800px) {
  .container .profile {
    background-image: url("../images/profile-1600.jpg") !important;
  }
}

@media screen and (min-width: 1799px) {
  .container .profile {
    background-image: url("../images/profile-1920.jpg") !important;
  }
}

@media screen and (max-width: 670px) {
  .container .profile {
    display: none;
  }
}

.container .halfitem {
  width: 50%;
  height: 60vh;
  display: block;
  background-color: #ccc;
  position: relative;
  z-index: 3;
  transform-origin: center center;
  transition: 0.5s ease-in-out;
}

.container .halfitem.show {
  animation: flipItem 1s;
}

.container .halfitem.hide {
  transform-origin: left top;
  width: 0px;
}

.container .halfitem.hide .caption {
  display: none;
}

@keyframes flipItem {
  from {
    transform: rotateY(-40deg);
  }
  to {
    transform: rotateY(0deg);
  }
}

@media screen and (max-width: 670px) {
  .container .halfitem {
    width: 100%;
  }
}

.container .halfitem > picture,
.container .halfitem > picture > img,
.container .halfitem > img {
  display: block;
  width: 100%;
  height: 60vh;
  object-fit: cover;
  object-position: center;
  font-family: "object-fit: cover";
  transition: transform 0.5s ease-in-out;
  overflow: hidden;
  position: relative;
}

.container .halfitem:hover img {
  position: absolute;
  animation: topTo1pct 1s;
  animation: leftTo1pct 1s;
  transform: scale(1.1, 1.1);
}

@keyframes topTo1pct {
  from {
    top: 0%;
  }
  to {
    top: -1%;
  }
}

@keyframes topTo1pct {
  from {
    left: 0%;
  }
  to {
    left: -1%;
  }
}

.no-cssvwunit .container .halfitem img {
  height: inherit;
  width: 100%;
}

@keyframes leftToRight {
  from {
    transform: translate(-60%, 0px);
  }
  to {
    transform: translate(0px, 0px);
  }
}

@keyframes rightToLeft {
  from {
    transform: translate(60%, 0px);
  }
  to {
    transform: translate(0px, 0px);
  }
}

.container .animate:nth-child(1n) {
  animation: leftToRight 1s;
}

.container .animate:nth-child(2n) {
  animation: rightToLeft 1s;
}

.container .halfitem .caption {
  padding-left: 3vw;
  position: absolute;
  top: 45vh;
  width: calc(100% - 3vw);
  padding-top: 4vh;
  height: 11vh;
  background-color: rgba(0, 0, 0, 0.3);
  display: block;
  z-index: 4;
}

@media screen and (max-height: 300px) {
  .container .halfitem .caption {
    top: 0vh;
    height: 60vh;
  }
}

@media screen and (max-width: 800px) and (min-height: 300px) and (max-height: 920px) {
  .container .halfitem .caption {
    top: 35vh;
    height: 21vh;
  }
}

@media screen and (max-height: 550px) and (max-width: 950px) {
  .container .halfitem .caption {
    top: 30vh;
    height: 26vh;
  }
}

h2,
h3 {
  font-weight: 800;
  font-size: 34px;
  color: white;
  text-transform: uppercase;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

h2 {
  color: black;
}

.container .diapostive-header {
  position: relative;
  width: 100%;
  padding: 64px 8vw 58px 3vw;
  overflow: hidden;
  background-color: #263238;
  z-index: 1;
}

.container .diapostive-header::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 20%;
  height: 100%;
  background-color: #fff;
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 0 100%);
  content: "";
  pointer-events: none;
}

.container .diapostive-header h2,
.container .diapostive-header p {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.container .diapostive-header h2 {
  margin-bottom: 18px;
  color: white;
  font-size: 34px;
}

.container .diapostive-header p {
  color: white;
  font-size: 18px;
  line-height: 1.6;
}

@media screen and (max-width: 670px) {
  .container .diapostive-header {
    min-height: 0;
    padding: 48px 8vw 52px 6vw;
  }

  .container .diapostive-header::after {
    width: 0%;
  }

  .container .diapostive-header h2 {
    font-size: 30px;
  }

  .container .diapostive-header p {
    font-size: 17px;
  }
}

h3 a {
  color: white;
  text-decoration: none;
}

.caption p {
  color: white;
  margin-top: 10px;
  font-weight: 100;
  font-size: 16px;
}
.caption span {
  color: white;
}

.caption p a {
  color: white;
}

.about {
  position: relative;
  height: 100vh;
}

/* About section link */
.more {
  display: inline-block;
  color: white;
  text-decoration: underline;
  margin-top: 10px;
  font-weight: 100;
  line-height: 1.6;
  font-size: 18px;
}


.no-cssvwunit .about {
  height: 400px;
  background-color: #263238;
}

@media screen and (max-height: 800px) {
  .about {
    height: 50vw;
  }
}

@media screen and (max-width: 1300px) {
  .about {
    height: 50vw;
  }
}

@media screen and (max-width: 670px) {
  .about {
    height: 110vw;
  }
}

@media screen and (max-width: 414px) {
  .about {
    height: 150vw;
  }
}

.about-triangle {
  position: absolute;
  padding-left: 0px;
  top: 0px;
  left: 0px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50vw 49vw 0 0;
  border-color: #263238 transparent transparent;
  z-index: 1;
  pointer-events: none;
}

@media screen and (max-width: 1800px) {
  .about-triangle {
    padding-left: 20%;
  }
}

@media screen and (max-width: 990px) {
  .about-triangle {
    padding-left: 49%;
  }
}

@media screen and (max-width: 670px) {
  .about-triangle:before {
    position: absolute;
    top: -100vw;
    left: 0px;
    background-color: #263238;
    width: 204%;
    height: 50vw;
    content: "";
  }
  .about-triangle {
    top: 50vw;
    padding-left: 49%;
    height: 60vw;
  }
}

@media screen and (max-width: 414px) {
  .about-triangle:before {
    top: -150vw;
    height: 100vw;
  }
  .about-triangle {
    top: 100vw;
  }
}

.about-image {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

@media screen and (min-width: 2401px) {
  .about-image {
    background-image: url("../images/about-image-2560.png");
  }
}

@media screen and (min-width: 1900px) and (max-width: 2400px) {
  .about-image {
    background-image: url("../images/about-image-1920.png");
  }
}

@media screen and (min-width: 1300px) and (max-width: 1899px) {
  .about-image {
    background-image: url("../images/about-image-1600.png");
    width: 90%;
    left: 10%;
    background-size: contain;
  }
}

@media screen and (max-height: 800px) and (min-width: 1300px) {
  .about-image {
    height: 50vw;
  }
}

@media screen and (min-width: 991px) and (max-width: 1300px) {
  .about-image {
    background-image: url("../images/about-image-990.png");
    height: 50vw;
    width: 70%;
    left: 30%;
    background-size: contain;
  }
}

@media screen and (min-width: 671px) and (max-width: 990px) {
  .about-image {
    background-size: contain;
    background-image: url("../images/about-image-700.png");
    height: 50vw;
    width: 48%;
    left: 51%;
  }
}

@media screen and (min-width: 415px) and (max-width: 670px) {
  .about-image {
    background-size: contain;
    height: 50vw;
    background-image: url("../images/about-image-500.png");
    left: 0px;
    width: 100%;
    top: 60vw;
  }
}

@media screen and (max-width: 414px) {
  .about-image {
    left: 0%;
    top: 100vw;
    width: 100%;
    background-size: contain;
    height: 50vw;
    background-image: url("../images/about-image-500.png");
  }
}

@media screen and (max-width: 370px) {
  .about-image {
    left: 0%;
    top: 100vw;
    width: 100%;
  }
}

.contact-image {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 3;
}

@media screen and (min-width: 2401px) {
  .contact-image {
    background-image: url("../images/contact-image-2560.png");
  }
}

@media screen and (min-width: 1900px) and (max-width: 2400px) {
  .contact-image {
    background-image: url("../images/contact-image-1920.png");
  }
}

@media screen and (min-width: 1300px) and (max-width: 1899px) {
  .contact-image {
    background-image: url("../images/contact-image-1600.png");
    width: 90%;
    left: 10%;
    background-size: contain;
  }
}

@media screen and (max-height: 800px) and (min-width: 1300px) {
  .contact-image {
    height: 50vw;
  }
}

@media screen and (min-width: 991px) and (max-width: 1300px) {
  .contact-image {
    background-image: url("../images/contact-image-990.png");
    height: 50vw;
    width: 86%;
    left: 14%;
    background-size: contain;
  }
}

@media screen and (min-width: 671px) and (max-width: 990px) {
  .contact-image {
    background-size: contain;
    background-image: url("../images/contact-image-700.png");
    background-position: bottom right;
    height: 50vw;
    width: 70%;
    left: 30%;
  }
}

@media screen and (min-width: 415px) and (max-width: 670px) {
  .contact-image {
    background-size: contain;
    height: 60vw;
    background-position: bottom right;
    background-image: url("../images/contact-image-500.png");
    left: 0px;
    width: 100%;
    top: 40vw;
  }
}

@media screen and (max-width: 414px) {
  .contact-image {
    left: 10%;
    top: 100vw;
    width: 90%;
    background-size: contain;
    height: 50vw;
    background-image: url("../images/contact-image-500.png");
  }
}

@media screen and (max-width: 370px) {
  .contact-image {
    left: 30%;
    top: 100vw;
    width: 70%;
  }
}

@media screen and (min-width: 1248px) {
  .about-page .contact-image {
    background-position: right bottom;
    height: 60vh;
    width: 70%;
    left: 30%;
    background-size: contain;
  }
}

@media screen and (min-width: 885px) and (max-height: 640px) {
  .about-page .contact-image {
    height: 100vh;
  }
}

.about .caption {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 30vw;
  margin-left: 3vw;
  margin-top: 3vw;
  z-index: 3;
}

@media screen and (min-width: 991px) {
  .about .caption {
    padding-top: 60px;
  }
}

@media screen and (max-width: 990px) {
  .about .caption {
    padding-top: 40px;
    width: 50vw;
  }
}

@media screen and (max-width: 670px) {
  .about .caption {
    width: 80vw;
  }
}

@media screen and (max-width: 414px) {
  .about .caption {
    padding-top: 50px;
    width: calc(99% - 3vw);
  }
}

.no-cssvwunit .about .caption {
  padding-top: 130px;
}

.about .caption p {
  line-height: 1.6;
  font-size: 18px;
  text-shadow: 0 0 10px #263238;
}

@media screen and (min-width: 300px) and (max-width: 780px) {
  .about .caption p {
    font-size: 20px;
    line-height: 30px;
  }
}

.about-next {
  position: absolute;
  top: 20vw;
  left: 27vw;
  z-index: 2;
}

@media screen and (min-width: 991px) and (max-width: 1800px) {
  .about-next {
    left: 46vw;
  }
}

@media screen and (min-width: 671px) and (max-width: 990px) {
  .about-next {
    top: 25vw;
    left: 70vw;
  }
}

@media screen and (max-width: 670px) {
  .about-next {
    top: 70vw;
    left: 80vw;
  }
}

@media screen and (max-width: 400px) {
  .about-next {
    top: 120vw;
    left: 3vw;
  }
}

.no-cssvwunit .about-next {
  top: 320px;
}

#blog {
  z-index: 2;
  display: -webkit-flex;
  /* Safari */
  -webkit-flex-wrap: wrap;
  /* Safari 6.1+ */
  display: flex;
  flex-flow: row wrap;
}

#blog .thumbnail {
  width: 50%;
  height: 40vh;
  display: table;
  z-index: 2;
  background-position: center center;
  background-size: cover;
  text-decoration: none;
}

@media screen and (max-width: 670px) {
  #blog .thumbnail {
    width: 100%;
  }
}

.no-cssvwunit #blog .thumbnail #blog .thumbnail {
  height: 300px;
}

#blog .thumbnail .label {
  background-color: rgba(38, 50, 56, 0.3);
  width: inherit;
  height: inherit;
  vertical-align: bottom;
  display: table-cell;
  padding-left: 3vw;
  padding-right: 3vw;
}

.container .halfitem .bloglabel,
#portfolio .halfitem .bloglabel,
#portfolio-data .halfitem .bloglabel,
#blog .thumbnail .bloglabel {
  display: inline-block;
  background-color: #263238;
  color: white;
  text-decoration: none;
  padding: 7px;
}

#blog .thumbnail .tags {
  margin-bottom: 25px;
}

#blog .thumbnail .tags span {
  color: white;
  text-shadow: 0 0 10px #263238;
}

#blog.contact-blog {
  z-index: 0;
  text-decoration: none;
}

@media screen and (max-width: 1130px) {
  #blog.contact-blog .thumbnail {
    width: 100%;
  }
  #blog.contact-blog .thumbnail:nth-child(3),
  #blog.contact-blog .thumbnail:nth-child(4) {
    display: none;
  }
}

.col-2-3 #blog .thumbnail {
  height: 45vh;
}

.footer {
  height: 50vh;
  background-color: #263238;
  color: white;
}

@media screen and (max-height: 667px) {
  .footer {
    height: inherit;
  }
}

@media screen and (max-width: 414px) {
  .footer {
    height: inherit;
  }
}

.footer a {
  color: white;
  text-decoration: none;
}

.footer h4 {
  font-size: 24px;
  line-height: 35px;
  font-weight: 300;
  margin-bottom: 15px;
}

.footer p,
.footer ul,
.footer li {
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 10px;
}

.footer .contact,
.footer .followme,
.footer .navi {
  width: calc(33% - 3vw);
  padding-left: 3vw;
  margin-top: 10vh;
}

@media screen and (max-height: 500px) {
  .footer .contact,
  .footer .followme,
  .footer .navi {
    width: 100%;
  }
  .footer .followme {
    margin-bottom: 10vh;
  }
}

@media screen and (max-width: 414px) {
  .footer .contact,
  .footer .followme,
  .footer .navi {
    width: 100%;
  }
  .footer .followme {
    margin-bottom: 10vh;
  }
}

.footer .followme a {
  margin-right: 8.25%;
}

.footer .disclaimer-box {
  margin-top: 30px;
}
.footer .disclaimer-box a {
  margin-right: 0px;
}

@media screen and (min-width: 670px) and (max-width: 910px) {
  .footer .followme a {
    margin-right: 3%;
  }
}

.footer .contact h4.space {
	margin-top: 30px;
}

.container .table {
  display: table;
}

@media screen and (min-width: 640px) and (max-width: 755px) {
  .container .table {
    width: 90%;
  }
}

@media screen and (min-width: 755px) and (max-width: 950px) {
  .container .table {
    width: 40%;
  }
}

.container .itemcenter {
  text-align: center;
  vertical-align: middle;
  display: table-cell;
}

.container .itemmiddle {
  vertical-align: middle;
  display: table-cell;
}

@media screen and (max-width: 670px) {
  .container .itemcenter,
  .container .itemmiddle {
    vertical-align: baseline;
  }
}

.container .table h1 {
  color: #263238;
  font-size: 45px;
  margin-left: 3vw;
  margin-right: 3vw;
  font-weight: 800;
  text-transform: uppercase;
}

@media screen and (max-width: 700px) {
  .container .table h1 {
    font-size: 40px;
  }
}

.container .table h3,
.container .table h2 {
  color: #263238;
  margin-left: 3vw;
  margin-right: 3vw;
  font-size: 34px;
  font-weight: 800;
  text-transform: uppercase;
}

.container .table h3 {
  font-size: 28px;
}

.container .table > .itemmiddle > em,
.container .table > em {
  margin-left: 3vw;
  margin-top: 10px;
  display: inline-block;
  margin-bottom: 10px;
}

@media screen and (max-width: 1000px) {
  .container .table h2,
  .container .table h1 {
    word-wrap: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
    overflow-wrap: break-word;
  }
}

.container.video {
  margin-bottom: 50px;
}

@media screen and (max-width: 670px) {
  .container .table h1,
  .container .table h2 {
    margin-left: 0vw;
    margin-right: 0px;
    margin-top: 40px;
  }
}

@media screen and (max-width: 480px) {
  .container .table h2 {
    font-size: 28px;
  }
}

.container .table blockquote {
  background: #f9f9f9;
  border-left: 10px solid #ccc;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  quotes: "\201C""\201D""\2018""\2019";
}

.container .table blockquote:before {
  color: #ccc;
  content: open-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}

.container .table blockquote,
.container .table p {
  margin-top: 3vh;
  margin-right: 6vw;
  margin-left: 3vw;
  font-size: 16px;
  font-weight: 100;
  line-height: 24px;
}

.container .table blockquote p {
  margin: 0px;
}
@media screen and (max-width: 670px) {
  .container .table p {
    margin-left: 0px;
    margin-bottom: 40px;
  }
}

.container .table hr {
  margin-top: 4vh;
  margin-left: 3vw;
  margin-right: calc(100% - 146px);
}

.container .table svg {
  margin-top: 1.5vh;
  margin-left: 3vw;
}

.container.header.x50,
.container .x50 {
  height: 50vh;
}

.container.header.x80,
.container .x80 {
  height: 90vh;
}

.container .x150 {
  height: 150vh;
}

.container .x150 .spacer {
  width: 100%;
  height: 30vh;
}

@media screen and (max-width: 670px) {
  .container .x150 .spacer {
    height: 10px;
  }
}

.container .col-2-3 {
  width: 66%;
  padding-left: 0px;
}
.container .col-3-3 {
  width: 100%;
  padding-left: 0px;
}

.container .col-1-3 {
  width: 33%;
  padding-left: 0px;
}

.container .col-1-4 {
  width: 25%;
  padding-left: 0px;
}

@media screen and (max-width: 670px) {
  .container .col-1-4,
  .container .col-1-3,
  .container .col-2-3 {
    width: calc(100% - 6vw);
    margin-left: 3vw;
    height: inherit;
  }
}

.container .col-1-3 img {
  margin: 0px;
  padding: 0px;
  margin-top: 15px;
  width: 100%;
  height: calc(50vh + 15px);
  object-fit: cover;
  font-family: "object-fit: cover";
}

.container .col-1-3 img:last-child {
  margin-bottom: 15px;
  z-index: -1;
}

@media screen and (max-width: 670px) {
  .container .col-1-3 img {
    margin-top: 0px;
    margin-left: 0px;
    height: auto;
    width: 50%;
    margin-bottom: 5px;
    text-align: left;
  }
  .container .col-1-3 img:nth-child(2) {
    margin-bottom: 5px;
  }
  .container .col-1-3 img:nth-child(3) {
    display: none;
  }
}

/* 2-2 col, review about page */
.container .col-1-2 {
  width: 50%;
  padding-left: 0px;
}

.container .col-2-2 {
  width: 50%;
  padding-left: 0px;
}

@media screen and (max-width: 670px) {
  .container .col-1-2 h2 {
    margin-left: 10px;
  }
  .container .col-2-2,
  .container .col-1-2 {
    width: 100%;
  }
}

.container.header {
  height: 80vh;
  width: 100%;
  background-size: cover;
  background-position: center;
}

.container.header img {
  height: 80vh;
  width: 100%;
  object-fit: cover;
  font-family: "object-fit: cover";
}

.container.header.contains img {
  object-fit: contain;
  font-family: "object-fit: contain";
}

.container .arrowdown {
  display: block;
  background-image: url("../images/arrowdown.svg");
  height: 45px;
  width: 45px;
  margin-left: 50vw;
  margin-left: calc(50vw - 45px);
  background-size: cover;
  text-indent: -9999px;
}

.container .col-2-3 .arrowdown {
  margin-left: 33vw;
  margin-left: calc(33vw - 45px);
}

.iphonemockup {
  background-image: url("../images/iphone5swhite.svg");
  background-size: cover;
  height: 72vw;
  width: 40vw;
  position: relative;
  display: inline-block;
  animation: rightToLeft 1s;
}

.iphonemockup > div {
  position: absolute;
  margin-left: 7.8vw;
  margin-top: 12.4vw;
  width: 24.5vw !important;
  height: 42.8vw !important;
}

.iphonemockup .nobar .vjs-play-control {
  width: 24.5vw;
  height: 42.8vw;
  position: absolute;
  top: -43vw;
  background: none !important;
}

.iphonemockup .vjs-playing .vjs-play-control .vjs-control-content {
  display: none;
}

@media screen and (max-width: 750px) {
  .iphonemockup {
    height: 144vw;
    width: 80vw;
  }

  .iphonemockup > div {
    margin-left: 15.6vw;
    margin-top: 24.8vw;
    width: 49vw !important;
    height: 85.6vw !important;
  }

  .iphonemockup .nobar .vjs-play-control {
    height: 144vw;
    width: 49vw;
    top: -86vw;
  }
}

/* 13 mini */

.iphone13minimockup {
  background-image: url("../images/iphone13miniwhite.svg");
  background-size: cover;
  height: 62vw;
  width: 30vw;
  position: relative;
  display: inline-block;
  animation: rightToLeft 1s;
}

.iphone13minimockup > .nodge {
  position: absolute;
  display: inline-block;
  z-index: 10;
  margin-top: 9.7vw;
  margin-left: -2.6vw;
  height: 1.9vw;
  width: 9.5vw;
  background-color: #1f1f1f;
  border-radius: 0px 0px 1.1vw 1.1vw;
}

.iphone13minimockup > div {
  /* display: none; */
  position: absolute;
  margin-left: 7.7vw;
  margin-top: 9.8vw;
  width: 19vw !important;
  height: 41.1vw !important;
  border-radius: 30px;
  background-color: white;
}

.iphone13minimockup .vjs-poster,
.iphone13minimockup .nobar .vjs-play-control,
.iphone13minimockup .video-js .vjs-tech {
  border-radius: 30px;
}

.iphone13minimockup .nobar .vjs-play-control {
  width: 24.5vw;
  height: 42.8vw;
  position: absolute;
  top: -43vw;
  background: none !important;
}

.iphone13minimockup .vjs-playing .vjs-play-control .vjs-control-content {
  display: none;
}

@media screen and (max-width: 750px) {
  .iphone13minimockup {
    height: 100vw;
    width: 65vw;
  }

  .iphone13minimockup > .nodge {
    margin-top: 17.5vw;
    height: 4vw;
    border-radius: 0px 0px 2vw 2vw;
    width: 18vw;
    margin-left: -9.5vw;
  }

  .iphone13minimockup > div {
    margin-left: 13.6vw;
    margin-top: 18vw;
    width: 36.5vw !important;
    height: 77.5vw !important;
  }

  .iphone13minimockup .nobar .vjs-play-control {
    height: 144vw;
    width: 49vw;
    top: -86vw;
  }
}

/* end 13 mini */

.imacmockup {
  background-image: url("../images/imac-0.svg");
  background-size: cover;
  height: 33vw;
  width: 40vw;
  position: relative;
  display: inline-block;
}

.imacmockup > div {
  position: absolute;
  margin-left: 1.5vw;
  margin-top: 1.5vw;
  width: 36.9vw !important;
  height: 21vw !important;
}

.imacmockup .nobar .vjs-play-control {
  width: 36.9vw;
  height: 27vw;
  position: absolute;
  top: -27vw;
  background: none !important;
}

@media screen and (max-width: 750px) {
  .imacmockup {
    height: 66vw;
    width: 80vw;
  }
  .imacmockup > div {
    margin-left: 3vw;
    margin-top: 3vw;
    width: 73.8vw !important;
    height: 42vw !important;
  }
  .imacmockup .nobar .vjs-play-control {
    height: 42vw;
    width: 73.8vw;
    top: -42vw;
  }
}

#portfolio-filter {
  margin: 3vw;
  line-height: 1.6;
}

#portfolio-filter h1 {
  font-weight: 800;
  font-size: 34px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

#portfolio-filter ul > li {
  margin-top: 20px;
  margin-bottom: 10px;
  display: inline-block;
  text-align: left;
}

#portfolio-filter ul > li > a {
  margin-right: 15px;
  padding: 10px;
  border-radius: 3px;
  background-color: #b0bec5;
  text-decoration: none;
  color: black;
  transition: background 1.1s ease-in-out, color 0.5s ease-in-out;
}

#portfolio-filter ul > li > .on {
  background-color: #263238;
  color: white;
}

.about-page {
  background-color: #fff;
  z-index: 1;
}

.about-page .about-triangle:before {
  background-color: #37474f;
}

.about-page .about-triangle {
  border-color: #37474f transparent transparent;
}

@media screen and (min-width: 1248px) {
  .about-page .about-triangle {
    padding-left: 50%;
    border-width: 60vh 60vh 0 0;
  }
  .about-page.about {
    height: 60vh;
  }
  .about-page .about-image {
    background-position: right bottom;
    height: 60vh;
    width: 70%;
    left: 30%;
    background-size: contain;
  }
}

@media screen and (min-width: 885px) and (max-height: 640px) {
  .about-page .about-triangle {
    border-width: 100vh 100vh 0 0;
  }
  .about-page.about {
    height: 100vh;
  }
  .about-page .about-image {
    height: 100vh;
  }
}

@media screen and (min-width: 894px) and (max-width: 986px) {
  .about-page .about-triangle {
    border-width: 100vh 100% 0 0;
  }
}

.no-flexbox .container .item.intro {
  display: block;
  position: relative;
  left: 0px;
  top: 0px;
  width: 49%;
  height: 400px;
}

.no-flexbox .container .item.profile {
  display: inline-block;
  text-align: right;
  width: 49%;
  height: 400px;
  position: absolute;
  top: 0px;
  left: 50%;
}

.no-flexbox .container .halfitem {
  display: inline-block;
  text-align: left;
  width: 49%;
}

.no-flexbox .container .halfitem img {
  max-height: 400px;
}

.no-flexbox #blog .thumbnail {
  display: inline-block;
  text-align: left;
  width: 49%;
  height: 300px;
}


.cta-button-primary,
.cta-button-secondary {
  display: inline-block;
  background-color: #263238;
  padding: 14px 28px;
  font-size: 16px;
  color:white;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background .8s ease-in-out;
  margin-bottom: 10px;
  margin-right: 10px;
}

.cta-button-primary:hover {
  background-color: #37474f;
}
.cta-button-secondary {
  background-color: #546E7A;
}

.cta-button-secondary:hover {
  background-color: #607D8B;
}

.container.subscribe {
	position: relative;
	overflow: hidden;
	background: #f5f7fa;
	min-height: clamp(360px, 60vw, 520px);
	padding: clamp(1.5rem, 4vw, 3rem);
	box-sizing: border-box;
	display: flex;
	align-items: center;
}

@media (max-width: 600px) {
	.container.subscribe {
		min-height: 500px;
	}
}

.subscribe .subscribe-triangle {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	border-top: 90vh solid #263238;
	border-right: 90vw solid transparent;
	z-index: 1;
}

@media (min-width: 800px) {
	.subscribe .subscribe-triangle {
		border-top: 1000px solid #263238;
		border-right: 1000px solid transparent;
	}
}

.subscribe-page.subscribe .subscribe-triangle {
  border-top: 90vh solid #37474f;
}
@media (min-width: 800px) {
  .subscribe-page.subscribe .subscribe-triangle {
    border-top: 1000px solid #37474f;
  }
}


.subscribe .subscribe-image {
	position: absolute;
	bottom: 0;
	right: 0;
	width: clamp(280px, 60vw, 620px);
	height: clamp(200px, 45vw, 420px);
	background-repeat: no-repeat;
	background-position: bottom right;
	background-size: contain;
	z-index: 2;
	pointer-events: none;
}

@media screen and (max-width: 500px) {
  .subscribe .subscribe-image {
  	background-image: url("../images/subscribe-image-500.png");
   	width: clamp(200px, 45vw, 420px);
  	height: clamp(140px, 30vw, 240px);
  }
}

@media screen and (min-width: 500px) and (max-width: 700px) {
  .subscribe .subscribe-image {
  	background-image: url("../images/subscribe-image-700.png");
    width: clamp(200px, 45vw, 420px);
  	height: clamp(140px, 30vw, 240px);
  }
}

@media screen and (min-width: 700px) and (max-width: 990px) {
  .subscribe .subscribe-image {
  	background-image: url("../images/subscribe-image-990.png");
  }
}

@media screen and (min-width: 990px) and (max-width: 1600px) {
  .subscribe .subscribe-image {
  	background-image: url("../images/subscribe-image-1600.png");
  }
}

@media screen and (min-width: 1600px) {
  .subscribe .subscribe-image {
  	background-image: url("../images/subscribe-image-1920.png");
  }
}

.subscribe .caption {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 90vw;
  margin-left: 3vw;
  margin-top: 3vw;
  z-index: 3;
  padding-top: 25px;
  line-height: 1.3;
}

@media screen and (min-width: 500px) {
  .subscribe .subscribe-image {
    padding-top: 60px;
  }
}

.subscribe .caption .background {
  background-color: #263238;
  display: block;
  border-radius: 3px;
  padding: 10px 5px;
  margin-left: -5px;
  max-width: 50vw;
}

.subscribe-page.subscribe .caption .background {
  background-color: #37474f;
}

@media screen and (min-width: 1200px) {
  .subscribe .caption .background {
    max-width: 30vw;
  }
}

.subscribe .caption h2 {
  hyphens: none;
  color: white;
}

@media screen and (max-width: 500px) {
  .subscribe .caption h2 {
    width: 90%;
  }
}

.subscribe label {
  display: block;
  margin: 10px 0 5px;
}

@media screen and (min-width: 600px) {
  .subscribe label {
    margin: 30px 0 5px;
  }
}

.subscribe input[type="email"] {
  width: 100%;
  max-width: 400px;
  padding: 10px;
  border: 1px solid #37474f;
  font-size: 16px;
  border-radius: 5px;
  margin: 10px 0px 10px 0px;
}

.subscribe button {
  background: white;
  color: #37474f;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
  transition: background 0.6s ease-in-out, color 0.6s ease-in-out;
}
.subscribe button:hover {
  background: #37474f;
  color: white;
}

