/* Services Section */
.services {
    background: var(--background_black);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    border: #e9e9e9;
    border-width: 2px;
}

.services_container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.services_card {
    margin: 2rem;
    height: 625px;
    width: 400px;
    border-radius: 4px;
    background-size: cover;
    position: relative;
    color: #ffffff;
    z-index: 1;
}

.services_card_info {
    margin: 2rem;
    height: 625px;
    width: 400px;
    border-radius: 4px;
    background-size: cover;
    position: relative;
    color: #ffffff;
    z-index: 1;
}

.services_card_info  i{
    color: var(--text_white);
    position: absolute;
    text-align: center !important;
    top: 75px !important;
    right: 70px !important;
    width: 30px !important;
    height: 30px !important;
}

.services_card_info  i:hover{
    cursor: pointer;
}

.services_card_info  h2{
    color: var(--text_white);
    position: absolute;
    text-align: center !important;
    top: 100px !important;
    left: 50px !important;
    width: 300px !important;
    margin: 0 auto !important;
}

.services_card_info  hr{
    color: var(--text_white);
    position: absolute;
    text-align: center !important;
    top: 155px !important;
    left: 50px !important;
    width: 300px !important;
    margin: 0 auto !important;
    font-size: 1.75rem !important;
}

.services_card_info  ul{
    color: var(--text_white);
    position: absolute;
    text-align: left !important;
    top: 175px !important;
    left: 50px !important;
    width: 300px !important;
    margin: 0 auto !important;
    font-size: 1.25rem !important;
}

.services_card_info  li:not(:last-child) { 
    margin-bottom: 30px !important;  
 }

.services h2 {
    position: absolute;
    top: 500px;
    left: 30px;
}

.services_card p {
    position: absolute;
    top: 480px;
    left: 30px;
}

.services_card button {
    color: #000000;
    padding: 10px 20px;
    border: none;
    outline: none;
    border-radius: 4px;
    background: var(--text_blue);
    position: absolute;
    width: 200px;
    top: 550px;
    left: 30px;
    font-size: 1rem;
    cursor: pointer
}

#info {
  padding: 20px 20px;
  width: 300px;
  width: 50%; 
  margin-left: auto;
  margin-right: auto;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.75;
  background-color: #ffffff2f;
  color: rgb(0, 0, 0);
  border: solid 3px #7d12f8;
  list-style-type: none;
}

#ins {
  padding: 20px 20px;
  width: 300px;
  width: 50%; 
  margin-left: auto;
  margin-right: auto;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.75;
  color: rgb(255, 255, 255);
  list-style-type: none;
}

#stitle {
  text-align: center;
}

#showmore {
    text-align: center;
}

#stay-in-place {
    color: var(--text_white);
    opacity: 1;
}

#move-in-to-place-group {
    position: absolute;
    bottom: -100%;
    height : 100%;
    width : 100%;
    background: var(--background_black);
    color: var(--text_white);
    opacity:0;
}

#move-in-to-place-open {
    position: absolute;
    bottom: -100%;
    height : 100%;
    width : 100%;
    background: var(--background_black);
    color: var(--text_white);
    opacity:0;
}

#move-in-to-place-one {
    position: absolute;
    bottom: -100%;
    height : 100%;
    width : 100%;
    background: var(--background_black);
    color: var(--text_white);
    opacity:0;
}
.services_box {
    position: relative;
    overflow:hidden;
}
#move-in-to-place-group.is-active {
    bottom: 0;
    -webkit-transition: all 1s, -webkit-transform 1s;
    transition: all 1s, transform 1s;
    z-index: 999;
    width:100%;
    height:100%;
    opacity:0.9;
}
#move-in-to-place-open.is-active {
    bottom: 0;
    -webkit-transition: all 1s, -webkit-transform 1s;
    transition: all 1s, transform 1s;
    z-index: 999;
    width:100%;
    height:100%;
    opacity:0.9;
}
#move-in-to-place-one.is-active {
    bottom: 0;
    -webkit-transition: all 1s, -webkit-transform 1s;
    transition: all 1s, transform 1s;
    z-index: 999;
    width:100%;
    height:100%;
    opacity:0.9;
}

.services_card button:hover {
    background: var(--text_hover_blue);
    color: var(--text_white);
    transition: all 0.3s ease;
}

.contactWindow {
    margin-top: 20px;
}

@media screen and (max-width: 960px) {
    .services {
        height: auto;
    }

    .services h1 {
        font-size: 2rem;
        margin-top: 12rem;
    }

    #info {
        padding: 20px 50px;
        width: 80%
    }

    #ins {
        padding: 20px 50px;
        width: 100%
    }
    
}

@media screen and (max-width: 480px) {
    .services {
        height: auto;
    }

    .services h1 {
        font-size: 1.2rem;
    }

    .services_card {
        width: 300px;
    }
}