.hero1{
    height: 90vh;
    text-align: center;
    width: 100%;
    background-color: #f5f7f8;
    overflow: hidden;
}

.hero1 section{
    height: 100%;
    width: 45vw;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
    z-index: 1;
    background-color: #f5f7f8;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.leftheroimages{
    align-items: center;
    align-content: center;
    justify-content: center;
    display: inline-flex;
    float: left;
}

.leftheroimages img{
    float: left;
    width: auto;
    margin-left: 7.5vw;
    height: 60%;
    object-fit: contain;
}

.rightherobanner{
    font-size: 3rem;
    font-weight: bold;
    color: #4834d4;
    line-height: 12vh;
    text-align: right;
    float: right;
    display: inline-block;
}

.rightherobanner h1{
    color: black !important;
    right: 8%;
    position: absolute;
    top: 40vh;
}

.switchp{
    animation-name: appear;
    animation-duration: 1s;
    animation-iteration-count: 1;
    position: absolute;
    top: 52.5vh;
    right: 8%;
    opacity: 0;
}

#p1{
    animation-delay: 0s;
}

#p2{
    animation-delay: 1s;
}

#p3{
    animation-delay: 2s;
}

#p4{
    animation-delay: 3s;
}

#p5{
    animation-delay: 4s;
}

#p6{
    animation-delay: 5s;
}

#p7{
    animation-delay: 6s;
}

#p8{
    animation-delay: 7s;
}

@keyframes appear {

    0%{
        opacity: 0;
    }

    1%{
        opacity: 1;
    }

    90%{
        opacity: 1;
    }

    99%{
        opacity: 0;
    }

    100%{
        opacity: 0;
    }

}

#p9{
    animation-name: appearend;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-delay: 9s;
    animation-duration: 1s;
    position: absolute;
    top: 52.5vh;
    right: 8%;
    opacity: 0;
}

@keyframes appearend {

    0%{
        opacity: 0;
    }

    100%{
        opacity: 1;
    }

}

.calltoaction{
    width: auto;
    height: auto;
    padding: 2.5vh;
    color: gray;
    background-color: transparent;
    border: 2px transparent solid;
    border-image: linear-gradient(45deg, #4834d4, #be2edd);
    -moz-border-image: linear-gradient(45deg, #4834d4, #be2edd);
    -webkit-border-image: linear-gradient(45deg, #4834d4, #be2edd);
    border-image-slice: 1;
    -webkit-border-image-slice: 1;
    position: absolute;
    top: 75vh;
    right: 8%;
    box-shadow: 0px 0px 8px lightgrey;
    font-family: 'Roboto';
}

.calltoaction:hover{
  background-color: black;
  color: white;
  background-image: none;
  transition-duration: .4s;
  -webkit-transition-duration: .4s;
  -moz-transition-duration: .4s;
  -o-transition-duration: .4s;
}

.calltoaction:not(hover){
    background-color: transparent;
    border: 2px transparent solid;
    border-image: linear-gradient(45deg, #4834d4, #be2edd);
    border-image-slice: 1;
}

.section2{
    text-align: center;
    font-family: 'Montserrat' !important;
    height: 300vh;
}

.searchdiv{
    height: auto;
    width: 90%;
    background-color: lightgrey;
    margin: auto;
    margin-top: 7.5vh;
    text-align: center;
    font-family: 'Montserrat';
    padding-bottom: 5vh;
}

.searchbox{
    height: 10vh;
    line-height: 10vh;
    display: flex;
    justify-content: center;
    border: none;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, #4834d4, #be2edd);
    border-image-slice:1;
    font-family: 'Montserrat';
}

.searchbox input{
    width: 38%;
    background-color: lightgrey;
    color: black;
    text-align: center;
    line-height: 10vh;
    border: none;
    font-family: 'Montserrat';
    display: inline-block;
}

.sorter, .filterbtn{
    width: 15%;
    background-color: white;
    color: black;
    text-align: center;
    line-height: 6.5vh;
    border: none;
    border-radius: 4vh;
    height: 6.5vh;
    margin-left: 3vw;
    margin-right: 3vw;
    margin-top: auto;
    margin-bottom: auto;
    font-family: 'Montserrat';
    display: inline-block;
}

.sorter{
        -moz-appearance: none;
        -webkit-appearance: none;
        appearance: none;
        border: none;
        text-align: center !important;
}

.sorter::-ms-expand {
    display: none;
  }

#filterdiv{
    display: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    justify-content: center;
    align-items: center;
}

.filterbox{
    background-color: white;
    height: 100%;
    width: 100%;
    padding: 4vh;
    text-align: center; 
    font-family: 'Montserrat' !important;
    overflow: hidden;
}


.filterbox h1{
    font-size: 5vh;
    padding: 3vh;
    line-height: 5vh;
    color: grey;
    position: relative;
    right: -6vh;
    display: inline-block;
}

#filterclosebtn{
    color: black;
    font-size: 5vh;
    float: right;
    background-color: white;
    outline: none;
    border: none;
    display: inline-block;
    height: 5vh;
    width: 5vh;
    line-height: 5vh;
    text-align: center;
    margin: 3vh;
}

.filterbox form{
    margin-top: 5vh;
    display: flex;
    max-width: 90%;
    margin-left: 5vw;
}

.filterbox form section{
    display: inline-block;
    padding: 5vh;
    text-align: left;
    border: none;
    border-radius: 3vh;
    box-shadow: 0px 0px 10px 2px lightgrey;
    margin: 4vh;
}

.filterbox form section h2{
    color: #4834d4;
    font-size: 3vh;
    padding: 2.5vh;
    padding-left: 0;
    position: relative;
    top: -3vh;
    display: inline;
}


#pricesec{
    height: 30vh;
 }

#pricesec input{
    display: inline-block;
    height: 4vh;
    text-align: center;
    width: 6vw;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 10px;
    font-family: 'Montserrat';
    padding-left: 15px;
}

#pricesec p{
    display: inline-block;
    font-size: 3vh;
    line-height: 4vh;
    text-align: center;
    font-weight: 300;
    color: grey;
    width: 6vw;
}

#yieldsec{
    height: 30vh;
}

#yieldsec input{
    display: inline-block;
    height: 4vh;
    text-align: center;
    width: 6vw;
    border: 1px solid rgb(10, 9, 9);
    border-radius: 10px;
    font-family: 'Montserrat';
    padding-left: 15px;
}

#yieldsec p{
    display: inline-block;
    font-size: 3vh;
    line-height: 4vh;
    text-align: center;
    font-weight: 300;
    color: grey;
    width: 6vw;
}

#categorysec{
    text-align: center;
    height: 55vh;
    width: 25vw;
}

#categorysec h2{
    display: inline !important;
}

#categorysec button{
    background-color: transparent;
    border: none;
    height: 9.5vh;
    width: 8vh;
    text-align: center;
}

#categorysec button i{
    height: 5vh;
    width: 5vh;
    line-height: 5vh;
    text-align: center;
    border-radius: 50%;
    background-image: linear-gradient(45deg, #4834d4, #be2edd);
    border: none;
    color: white;
    font-size: 2.5vh;
    display: inline-block;
    margin-top: 1.5vh;
}

.leftcategory{
    float: left;
}

#categorysec p{
    color: grey;
    font-size: 1.5vh;
    padding: 0vh;
    padding-top: .5vh;
}

#locationsec{
    height: 20vh;
    position: relative;
    bottom: -35vh;
    left: -85vw;
    min-width: 29.5vw !important;
}

#locationsec input{
    height: 6vh;
    width: 20vw;
    border: 1px solid black;
    border-radius: 10px;
    padding-left: 20px;
}

#opinionsec{
    max-height: 55vh !important;
}

#opinionsec p{
    font-size: 2vh;
    line-height: 2.5vh;
    padding-top: 2vh;
}

#opinioncheck{
    height: 4vh;
    display: inline-block;
    width: 4vh;
    border-radius: 10px;
    border: none;
    box-shadow: 0px 0px 5px 0px lightgrey;
    margin-top: 7.5vh;
}

#opinionlabel{
    font-size: 2vh;
    color: grey;
    display: inline-block;
    position: relative;
    top: -1.25vh;
    right: -1vw;
}

#ownersec{
    width: 600px;
    max-height: 55vh !important;
}

#ownersec p{
    font-size: 2vh;
    line-height: 2.5vh;
    padding-top: 2vh;
    padding-bottom: 3vh;
}

#ownersec input{
    height: 3vh;
    display: inline-block;
    width: 3vh;
    border-radius: 10px;
    border: none;
    box-shadow: 0px 0px 5px 0px lightgrey;
    margin-top: 1.5vh;
}

#ownersec label{
    font-size: 2vh;
    color: grey;
    display: inline-block;
    line-height: 3vh;
    padding-left: 5vw;
    padding-right: 5vw;
    box-sizing: border-box;
    width: 10vw;
    position: relative;
    top: -3.5vh;
}

.filterbox .btnbox{
    position: relative;
    top: -10vh;
    max-width: 40vw !important;
}

.btnbox #filterapply{
    float: left;
    background-color: transparent;
}

.btnbox #filterreset{
    background-image: linear-gradient(45deg, #4834d4, #be2edd);
    position: relative;
    right: -2px;
}

.searchbox select{
    padding-left: 1vw;
}

.searchbox .submitbtn{
    width: 10%;
    background-color: lightgrey;
    color: black;
    text-align: center;
    line-height: 10vh;
    border: none;
    display: inline-block;
}

.searchdiv .listingcontainer{
    width: 100%;
    height: auto;
    padding-bottom: 5vh;
    display: flex;
    align-content: center;
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    z-index: 2;
    position: relative !important;
}

.listing{
    height: 45vh;
    width: 35vw;
    z-index: 3 !important;
    display: inline-block;
    margin-left: 2.5vw;
    margin-right: 2.5vw;
    text-align: left;
    padding-top: 8vh;
    margin-bottom: 8vh;
    position: relative !important;
}

.listing ul{
    display: none;
    text-align: center;
    background-color: black;
    color: lightgrey;
    line-height: 5.5vh;
    font-size: 2.5vh;
    width: 20vw;
    border: none;
    z-index: 5;
    font-family: 'Montserrat';
    font-weight: 500;
    position: absolute;
    margin-top: 1vh;
}

.listing ul li:hover{
    background-color: lightgrey;
    color: black;
    cursor: default;
}

.listing img{
    height: 100%;
    width: 100%;
    overflow: hidden; 
    z-index: 3;
    object-fit: cover;
}

#menubtn{
    color: grey;
    font-size: 2.5vh;
    position: relative;
    z-index: 10;
    top: 6.3vh;
    padding: 2vh;
    left: 0vw;
    padding-right: 2.5vw;
}

#menubtn:hover ul {
    display: block;
}

.arrowgroup{
    font-size: 3vh;
    color: grey;
    width: 100%;
    position: relative;
    top: -52.5%;
    text-align: center;
}

#leftarrow{
    float: left;
    margin-left: 1.5vw;
    background-color: black;
    border-radius: 50%;
    width: 5vh;
    height: 5vh;
    line-height: 5vh;
}

.leftarrowclick{
    color: #4834d4;
}

#rightarrow{
    float: right; 
    margin-right: 1.5vw;
    background-color: black;
    border-radius: 50%;
    width: 5vh;
    height: 5vh;
    line-height: 5vh;
}

.rightarrowclick{
    color: #4834d4;
}

.moneysec{
    background-color: transparent;
    justify-content: center;
    position: relative;
    top: -3vh;
}

.moneysec p{
   display: inline-block;
   width: 7.5vw;
   text-align: center;
   font-size: 2.5vh;
   height: 5vh;
   line-height: 5vh;
   color: white;
   border-radius: 4vh;
   border: none;
   box-shadow: 0px 0px 9px 1px rgb(99, 99, 99);
}

.listingprice{
    background-color: black;
    float: left;
}

.listingreturn{
    background-image: linear-gradient(45deg, #4834d4, #be2edd);
    float: right;
}

.pageorganiser{
    display: flex;
    width: 100%;
    justify-content: center;
    align-content: center;
    align-items: center;
    height: 7.5vh;
    margin-top: 2.5vh;
}

.pagebtn{
    color: lightgrey;
    width: 5vh;
    height: 5vh;
    border-radius: 50%;
    background-color: black;
    box-shadow: 0px 0px 5px 1px lightgrey;
    margin: 1vh;
    border: none;
    text-align: center;
}

#listingammount{
    background-color: black;
    color: lightgrey;
    border: none;
    border-radius: 3vh;
    box-shadow: 0px 0px 5px 1px lightgrey;
    height: 5vh;
    width: 10vw;
    padding-left: 10px;
    margin-left: 5vw;
}

.section3{
    height: 120vh;
    overflow: hidden;
}

.acquisitiondiv{
    width: 100%;
    height: 100%;
    font-family: 'Montserrat';
    padding-left: 10vw;
    padding-right: 10vw;
    margin-top: 25vh;
}

.acquisitiondiv .rightacquisition{
    height: 40vh;
    width: 100%;
    text-align: right;
    position: relative;
    z-index: 5 !important;
}

.rightacquisition button{
    width: 15vw;
    height: 8vh;
    line-height: 0vh;
    padding: 2.5vh;
    color: gray;
    background-color: white;
    border: 2px transparent solid;
    border-image: linear-gradient(45deg, #4834d4, #be2edd);
    -moz-border-image: linear-gradient(45deg, #4834d4, #be2edd);
    -webkit-border-image: linear-gradient(45deg, #4834d4, #be2edd);
    border-image-slice: 1;
    -webkit-border-image-slice: 1;
    box-shadow: 0px 0px 8px lightgrey;
    font-family: 'Roboto';
    margin-top: 8vh;
}

.rightacquisition button:hover{
  background-color: black;
  color: white;
  background-image: none;
  transition-duration: .4s;
  -webkit-transition-duration: .4s;
  -moz-transition-duration: .4s;
  -o-transition-duration: .4s;
}

.rightacquisition button:not(hover){
    border: 2px transparent solid;
    border-image: linear-gradient(45deg, #4834d4, #be2edd);
    border-image-slice: 1;
}

.acquisitiondiv h2{
    font-size: 4vh;
    line-height: 6vh;
    background: linear-gradient(45deg, #4834d4, #be2edd);
    color: transparent;
    background-clip: text;
    -moz-background-clip: text;
    -webkit-background-clip: text;
}

.leftacquisition{
    position: absolute;
    z-index: 2;
    pointer-events: visible;
}

.leftacquisition input{
    height: 7vh;
    width: 28vw;
    background-color: white;
    text-align: left;
    padding-left: 40px;
    color: grey;
    border-radius: 3vh;
    border: none;
    margin-top: 7.5vh;
    float: left;
    margin-left: 0vw;
}

.leftacquisition button{
    height: 7vh;
    width: 7vh;
    border-radius: 3vh;
    float: left;
    margin-left: -7vh;
    color: black;
    background-image: linear-gradient(45deg, #4834d4, #be2edd);
    border: none;
    margin-top: 7.5vh;
}

.blackshape{
    background-color: black;
    transform: rotate(25deg);
    height: 1000vh;
    width: 1000vh;
    position: relative;
    left: -900vh;
    top: -190vh;
    z-index: 1 !important;
}       

@media only screen and (max-width: 950px){
 
    .listing{
        width: 65vw !important;
        height: 50vh !important;
        margin-top: 4vh;
        margin-bottom: 7vh;
    }

    .moneysec p{
        height: 6vh;
        width: 14vw;
        font-size: 2.5vh;
        text-align: center;
        line-height: 6vh;
    }

    .pageorganiser{
        margin-top: 7vh;
    }

    #listingammount{
        width: 15vw;
    }

    .blackshape{
        top: -175vh;
    }

}

@media only screen and (max-width: 700px){

    .hero1 section{
        height: 50%;
        width: 100%;
        float: none;
    }

    .leftheroimages img{
        margin: none !important;
        width: 100vw !important;
        height: 50vh !important;
        margin-right: 10.25vw;
    }

    .rightherobanner{
        text-align: center;
        line-height: 2vh;
        font-size: 2.25rem;
    }

    .rightherobanner span,.rightherobanner h1, .rightherobanner #p9{
        position: normal;
        right: 0;
        left: 0;
        float: none;
        padding: 0;
        margin: 0;
    }

    .rightherobanner h1{
        top: 52vh;
    }

    .rightherobanner span, #p9 {
        top: 61vh;
    }

    .rightherobanner .calltoaction{
        width: 40vw;
        margin-left: 30vw;
        margin-right: 30vw;
        right: -1%;
    }

    .searchbox input{
        font-size: 1.5vh;
    }

    .sorter, .filterbtn{
        font-size: 2vh;
        height: 5vh;
        line-height: 5vh;
    }

    .moneysec p{
        font-size: 1.8vh;
    }

    .searchbox select{
        padding-left: 1vw;
    }
    
    .searchdiv{
        height: auto;
        width: 100%;
        background-color: lightgrey;
        margin: auto;
        margin-top: 0vh;
        text-align: center;
        font-family: 'Montserrat';
        padding-bottom: 5vh;
    }
    
    .listing{
        height: 50vh !important;
        width: 80vw !important;
        z-index: 3;
        display: inline-block;
        margin-left: 2.5vw;
        margin-right: 2.5vw;
        text-align: left;
        margin-top: 5vh;
        margin-bottom: 5vh;
    }

    .section3{
        height: 100vh;
    }

    .acquisitiondiv h2{
        font-size: 2.5vh;
        line-height: 3vh;
    }

    .rightacquisition button{
        width: 20vw;
        box-shadow: none;
        margin-top: 4vh;
    }

    .leftacquisition input{
        width: 40vw;
        margin-top: 4vh;
    }

    .leftacquisition button{
        margin-top: 4vh;
    }

    .blackshape{
        top: -168vh;
    }

}

@media only screen and (max-width: 600px){

    .sorter, .filterbtn{
        font-size: 1.25vh;
    }

}