*{
    padding: 0px;
    margin: 0px;
}

.carousel-item {
    height: 100%;
}

.stay_description {
    background-color: #c3d3ac;

    padding: 50px;
    margin-bottom: 50px;
    border-radius: 10px;
    transition: .5s;
}

.stay_description:hover {
    box-shadow: 3px 4px 29px -15px rgba(0,0,0,0.75);
    -webkit-box-shadow: 3px 4px 29px -15px rgba(0,0,0,0.75);
    -moz-box-shadow: 3px 4px 29px -15px rgba(0,0,0,0.75);
    transition: .5s;
}

.stay_article1{
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #eeeeee;
}
  
.stay_article1_grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
}
  
.stay_article1_grid>div{
    background-color: #E4EBDD;
    -webkit-box-shadow: 2px 2px 13px -4px rgba(90, 90, 90, 0.75);
    -moz-box-shadow: 2px 2px 13px -4px rgb(61, 61, 60);
    box-shadow: 0px 0px 16px -1px rgba(189,179,189,0.46);
}

.stay_article1_grid>div img{
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.cottage-description {
    font-size: 1.2em;
}

.stay_article2{
    padding-bottom: 50px;
    background-color: #eeeeee;
}

.stay_article2_section1 {
    position: relative;
    height: 500px;
}

.stay_article2_section1 img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.stay_article2_section1 .sts_data {
    background-color: rgba(0,0,0,0.5);
    color: white;
    width: 100%;
    position: absolute;
    top: 0px;
    bottom: 0px;

    padding: 100px;
}
  

  
  
  /****************MEDIA QUERIES FOR ALL DEVICE SIZES*****************/
  /* ##Device = Tablets, Ipads (portrait) ##Screen = B/w 768px to 1024px */
  @media (min-width: 768px) and (max-width: 1024px) {

    .stay_article2_section1 {
        position: relative;
        height: 500px;
    }

    .stay_article2_section1 img {
        width: 100%;
        height: 500px;
        object-fit: cover;
    }

    .stay_article2_section1 .sts_data {
        background-color: rgba(0,0,0,0.5);
        color: white;
        width: 100%;
        position: absolute;
        top: 0px;
        bottom: 0px;

        padding: 20px;
    }
   }
  
  /* ##Device = Tablets, Ipads (landscape) ##Screen = B/w 768px to 1024px */
  @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) { 
      
    .stay_article2_section1 {
        position: relative;
        height: 1000px;
    }

    .stay_article2_section1 img {
        width: 100%;
        height: 1000px;
        object-fit: cover;
    }

    .stay_article2_section1 .sts_data {
        background-color: rgba(0,0,0,0.5);
        color: white;
        width: 100%;
        position: absolute;
        top: 0px;
        bottom: 0px;

        padding: 20px;
    }
  }
  
  /* ##Device = Low Resolution Tablets, Mobiles (Landscape) ##Screen = B/w 481px to 767px */
  @media (min-width: 481px) and (max-width: 767px) {

    .carousel-item {
        height: 100%;
    }
  
    .stay_article1_grid{
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }
    

    .stay_article2_section1 {
        position: relative;
        height: 1000px;
    }

    .stay_article2_section1 img {
        width: 100%;
        height: 1000px;
        object-fit: cover;
    }

    .stay_article2_section1 .sts_data {
        background-color: rgba(0,0,0,0.5);
        color: white;
        width: 100%;
        position: absolute;
        top: 0px;
        bottom: 0px;

        padding: 20px;
    }
  
  }
  
  /* ##Device = Most of the Smartphones Mobiles (Portrait) ##Screen = B/w 320px to 479px */
  @media (min-width: 320px) and (max-width: 480px) {

    .carousel-item {
        height: 100%;
    }
    
    .stay_article1_grid{
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }
    

    .stay_article2_section1 {
        position: relative;
        height: 1000px;
    }

    .stay_article2_section1 img {
        width: 100%;
        height: 1000px;
        object-fit: cover;
    }

    .stay_article2_section1 .sts_data {
        background-color: rgba(0,0,0,0.5);
        color: white;
        width: 100%;
        position: absolute;
        top: 0px;
        bottom: 0px;

        padding: 20px;
    }
  
  }
  /****************MEDIA QUERIES FOR ALL DEVICE SIZES*****************/
  