/* code by webdevtrick ( https://webdevtrick.com ) */
@import url("https://fonts.googleapis.com/css?family=Raleway:300,400,600&subset=latin-ext");
* {
  box-sizing: border-box;
}

html, body {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
}



@media screen and (max-width: 768px) {
  html, body {
    font-size: 12px;
  }
}
.containerpopup {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
}

.button {
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  display: inline-block;
  background-color: transparent;
  color: #000000;
  padding: 1rem 2rem;
  font-weight: 900;
  text-align: center;
  font-style: bold;
}


.popup {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 100vw;
  height: 100vh;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1900;
  visibility: hidden;
  opacity: 0;
  overflow: hiden;
  transition: .64s ease-in-out;
}
.popup-inner {
  position: relative;
  bottom: -100vw;
  right: -100vh;
  display: flex;
  align-items: center;
  max-width: 800px;
  max-height: 600px;
  /* width: 60%;
  height: 80%; */
  background-color: #fff;
  transform: rotate(32deg);
  transition: .64s ease-in-out;
}
.popupphoto {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 40%;
  height: 100%;
  overflow: hidden;
}
.popupphoto img {
  width: auto;
  height: 100%;
}

.popupphoto2 {

  justify-content: flex-start;
  align-items: flex-start;
  width: 40%;
  height: 100%;
  overflow: hidden;
}
.popupphoto2 img {
  width: auto;
  height: 100%;
}

.popupphoto3 {
  align-content: left;
  width: 40%;
  height: 100%;
  overflow: hidden;
  
}

.popupphoto3 img {
  width: 100%;
  height: 100%;
}

.popupphoto4 {
  align-content: left;
  width: 50%;
  height: 100%;
  overflow: hidden;
  
}
.popupphoto4 img {
  width: 180%;
  height: 100%;
}

.popupphoto5 {
  align-content: left;
  width: 60%;
  height: 100%;
  overflow: hidden;
  
}

.popupphoto5 img {
  width: 100%;
  height: 100%;
}



.popuptext {
  display: flex;
  flex-direction: column;
  justify-content: justify;
  width: 60%;
  height: 100%;
  padding: 1rem;
  
  
}

.popuptext2 {
  display: flex;
  flex-direction: column;
  justify-content: justify;
  width: 60%;
  height: 100%;
  padding: 1rem;
  
}

.popuptext3 {
  display: flex;
  flex-direction: column;
  justify-content: justify;
  width: 60%;
  height: 100%;
  padding: 1rem;
  
}
.popuptext h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: uppercase;
  color: #0A0A0A;
}

.popuptext2 h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: uppercase;
  color: #0A0A0A;
}

.popuptext3 h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: uppercase;
  color: #0A0A0A;
}


.popuptext p {
  font-size: .875rem;
  color: #000000;
  line-height: .5;
}

.popuptext2 p {
  font-size: .875rem;
  color: #3a3a3a;
  line-height: .5;
}

.popuptext3 p {
  font-size: .875rem;
  color: #3a3a3a;
  line-height: 1.2;
}

.popuptext a {
	text-decoration: none;
	color:  #47BDFF;
}
.popup:target {
  visibility: visible;
  opacity: 1;
}
.popup:target .popup-inner {
  bottom: 0;
  right: 0;
  transform: rotate(0);
}
.closepopup {
  position: absolute;
  right: -1rem;
  top: -1rem;
  width: 3rem;
  height: 3rem;
  font-size: .875rem;
  font-weight: 300;
  border-radius: 100%;
  background-color: #d9534f;
  z-index: 4;
  color: #fff;
  line-height: 3rem;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
}