@charset "utf-8";
/* CSS Document */

.exterior-container{
width: 686px;
height: 434px;
border-radius: 0 999px 999px 0;
overflow: hidden;
margin-top: 120px;
position: absolute;
left: 0;
}

@media(max-width: 767px){
.exterior-container{
width: 330px;
height: 208px;
}
}

.image{
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
opacity: 0;
background-size: cover;
background-position: center center;

animation: image-switch-animation 20s infinite;
}

@keyframes image-switch-animation {
  0%{ opacity: 0;}
  5%{ opacity: 1;}
  25%{ opacity: 1;}
  40%{ opacity: 0;}
  100%{ opacity: 0;}
}

.exterior01{
background-image: url("../images/exterior01.jpg");
}

.exterior02{
background-image: url("../images/exterior02.jpg");
}

.exterior03{
background-image: url("../images/exterior03.jpg");
}

.exterior04{
background-image: url("../images/exterior04.jpg");
}

.image:nth-of-type(1) {
  animation-delay: 0s;
}
.image:nth-of-type(2) {
  animation-delay: 5s;
}
.image:nth-of-type(3) {
  animation-delay: 10s;
}
.image:nth-of-type(4) {
  animation-delay: 15s;
}