/* html, body{
    height: 100%;
} */

body {
  background-color: #f1f1f1;
  margin: 0;
  height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
}

img {
  width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
}

.page-content {
  /* position: absolute; */
  position: relative;
  /* top: 50%; */
  /* left: 50%; */
  /* transform: translateY(-45%); */
  width: 100%;
  /* max-width: 1220px; */
}

@media only screen and (max-width: 768px) {
  .page-content{
    top: 40%;
  }
}

.section {
  position: relative;
  /* background-color: #fff; */
}

.section-header {
  padding: 2rem 0;
}

.section-header .section-object {
  width: 30%;
}

.section-body {
  padding-top: 3.75rem;  
}

@media only screen and (min-width: 768px){
  .section-body{
    padding-top: 1rem;
  }  
}

.section-items {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 40%;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (min-width: 768px){
  .section-items{
    width: 20%;
  }  
}
@media only screen and (min-width: 1024px){
  .section-items{
    flex-direction: row; 
    height: 250px;
    /* height: 100%; */
    width: 100%;
    margin-top: auto;
    margin-bottom: auto;
  }  
}

.section-object {
  padding: 1rem 1.25rem;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (min-width: 768px){
  .section-object{
    padding: 0 1.225rem;
  }  
}

.section-object a img{
  transition: all .2s ease;
}

.section-object a img:hover{
  filter: grayscale(100%);
  padding-bottom: .5rem;
}

.swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}


.swiper-slide img{
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
  /* background-repeat: no-repeat; */
}

@media only screen and (max-width: 768px){
  .swiper-slide img{
    height: 100%;
    width: auto;
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

.swiper-slide::before{
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0, .50);
}

.contact-section{
  display: flex;
  align-items: center;
  padding: 1.5rem;
  background-color: rgba(0,0,0, .20);
  border-radius: 1rem;
}

@media only screen and (max-width: 768px){
  .contact-section{
    flex-direction: column;
  }  
}

.contact-list{
  color: #fff;
  font-size: 1.25rem;
  width: 50%;
}

@media only screen and (min-width: 768px){
  .contact-list{
    width: 100%;
    padding-bottom: 1rem;
  }  
}

.contact-item{
  display: flex;
  align-items: center;
  text-shadow: 0 0 2px #f1f1f1;
  padding: 4px 0;
}

.contact-item span{
  font-weight: 600;
  margin-right: 8px;
}

.contact-item p{
  margin: 0 !important;
}
.contact-item a{
  text-decoration: none;
  color: #fff;
}

.contact-item a:hover{
  color: #b3b3b3;
}

.contact-map{
  width: 50%;
}

@media only screen and (min-width: 768px){
  .contact-map{
    width: 100%;
  }  
}


