@import url('https://fonts.googleapis.com/css?family=Public+Sans:300i,300,500,800&display=swap');

body {
	font-family: 'Public Sans', sans-serif;
	font-size: 16px;
	line-height: 1.5;
	
	color: #333333;
}
i {
  font-style: oblique;
}

.top {
    padding: 30px;
  margin-bottom: 30px;
}
.topflex {
    display: flex;
  justify-content: space-between;
}
.voltar a,
.voltar2 a,
.menu a {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
}
.email {
  margin: 0;
}
.voltar {
  padding: 20px 30px;
  bottom: 0;
  position: fixed;
}
.voltar2 {
  padding: 20px 30px;
  display: none;
}
p {
      font-size: 14px;
    margin: 5px 0;
    line-height: 1.3;
}
a {
  color: #333333;
  text-decoration: none;
  margin-bottom: 5px;
}
a:active {
  color: #333333;
}

.main {
  display: flex;
  width: 100%;
  padding: 30px;
}
.left {
  width: 25%;
}
.right {
  width: 75%;
  padding-left: 30px;
}

h1 {
	font-size: 16px;
	font-weight: 700;
}

nav {
      display: flex;
    flex-direction: column;
}
nav a,
h2 {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

nav a img {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 400px;
  width: auto;
  opacity: 0;
  pointer-events: none;
}
nav a:hover img {
  opacity: 1;
}

img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.images {
  display: flex;
}

.images > div:not(:last-child) {
  margin-right: 15px;
}
.images:not(:first-child) {
  margin-top: 15px;
}

.iphoneh { flex: 1.3333; }
.iphonev { flex: 0.7507; }
.canonh { flex: 1.5003; }
.canonv { flex: 0.6666; } 


.modal-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:  rgba(0, 0, 0, 0.75);
}

.modal-close {
  position: absolute;
  right: 0;
  top: 0;
  color: white;
  padding: 20px 25px;
}

.modal-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 600px;
  max-height: 100vh;
  width: 90%;
  width: fit-content;
}
.modal-content img {
  max-height: 100vh;
  width: auto;
}

.modal {
  display: none;
}




@media (max-width:800px) {
  .main {
    display: block;
  }
  .left {
    width: 100%;
  }
  .right {
    width: 100%;
    padding: 30px 0 ;
  }
  .voltar {
    display: none;
  }
  .voltar2 {
    display:  block;
  }
}

@media (max-width:500px) {
  .main,
  .top,
  .voltar {
    padding: 20px;
  }
  .images {
    display: block;
  }
  .images>div {
    margin: 15px 0;
  }
  .images > div:not(:last-child) {
    margin-right: 0;
}
}