/*--------------------------------------------------------------
# Media Query For Mobile Devices | Tablet Devices - HomePage
--------------------------------------------------------------*/
/* For Mobile Devices */
@media screen and (min-width: 320px) and (max-width: 480px){
.header .container-fluid , .footer .container{
max-width:calc(100% - 5%);
}
.exploreCountries .container , .usp .container , .uniqueProperties .container, .likedproperties .container , .hrRegister .container , .hrOffers .container , .hrInspiration .container {
max-width:calc(100% - 10%);
}
}
/* For Tablet Devices */
@media screen and (min-width: 768px) and (max-width: 1024px){
.header .container-fluid , .footer .container{
max-width:calc(100% - 10%);
}
.hero .search-form{
width:100%;
}
.exploreCountries .container , .usp .container , .uniqueProperties .container, .likedproperties .container , .hrRegister .container , .hrOffers .container , .hrInspiration .container {
max-width:calc(100% - 10%);
}
}
/*--------------------------------------------------------------
# Media Query For Mobile Devices | Tablet Devices - Search Result Page
--------------------------------------------------------------*/
/* For Mobile Devices */
@media screen and (min-width: 320px) and (max-width: 480px){
.starter-page .container{
max-width:calc(100% - 10%);
}
.property-page .containermain{
max-width:calc(100% - 2%);
}
}
/* For Tablet Devices */
@media screen and (min-width: 768px) and (max-width: 1024px){
.starter-page .container{
max-width:calc(100% - 10%);
}
.starter-page .search-form{
width:100%;
}
.property-page .containermain{
max-width:calc(100% - 10%);
}
}
/*--------------------------------------------------------------
# Media Query For Mobile Devices | Tablet Devices - Property Details Page
--------------------------------------------------------------*/
/* For Mobile Devices */
@media screen and (min-width: 320px) and (max-width: 480px){
.propertypage-info .container{
max-width: calc(100% - 5%) !important;
}
.propertypage-info .contentside .scrolling-wrapper img{
width:162px !important;
}
}
/* For Tablet Devices */
@media screen and (min-width: 768px) and (max-width: 1024px){
.propertypage-info .container{
max-width: calc(100% - 10%) !important;
}
.propertypage-info .contentside .scrolling-wrapper img{
width:162px !important;
}
.propertypage-info .contentside .scroll-arrow.left{
left:10px;
}
.propertypage-info .contentside .scroll-arrow.right{
right:10px;
}
}
/*--------------------------------------------------------------
# Media Query For Mobile Devices | Tablet Devices - Wishlist Page
--------------------------------------------------------------*/
/* For Mobile Devices */
@media screen and (min-width: 320px) and (max-width: 480px){
.wishlist  .container , .wishlist .wishlist-container{
max-width:calc(100% - 6%) !important;
}
}
/* For Tablet Devices */
@media screen and (min-width: 768px) and (max-width: 1024px){
.wishlist  .container{
max-width:calc(100% - 10%) !important;
}
}
/*--------------------------------------------------------------
# Media Query For Mobile Devices | Tablet Devices - Owner CTA Page
--------------------------------------------------------------*/
@media (max-width: 768px) {
#ownerCta {
padding: 60px 0;
}
.ownerCta h4 {
font-size: 1.5rem;
}
.ownerCta p,
.ownerCta span {
font-size: 0.95rem;
}
.ownerCta .btn {
padding: 10px 30px;
font-size: 0.85rem;
}
}
@media (max-width: 480px) {
.ownerCta h4 {
font-size: 1.25rem;
}
.ownerCta p,
.ownerCta span {
font-size: 0.9rem;
}
}
