@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
    font-family: "Poppins", sans-serif;
}

/* nav-section */

/* .navbar-nav .nav-link.active{
    border-bottom: 2px solid #e85d75;
    color: #e85d75;;
    font-weight: 600;
} */

.navbar-nav .nav-link:hover{
    color: #e85d75;
    border-bottom: 2px solid #e85d75;
    font-weight: 600;
}

.nav-link:hover{
    color: #e85d75;
    border-bottom: 2px solid #e85d75;
    font-weight: 600;
}

/* hero-section */

.hero-section h1{
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section{
    background-image: url('../images/sellimages/blog-img4\ 1.png');
    background-color: #1e1d1d24;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    height: 150dvh;
    padding-top: 180px; 
}
  
.hero-section select:focus,
.hero-section button:focus{
    box-shadow: none;
    outline: none;
}

.property-form-wrapper{
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-20%);
    max-width: 380px;
    width: 100%;
    z-index: 2;
}

/* sell-with-find-home-section */

.icon-wrapper{
    background-color: #fff;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
    width: 60px;
    height: 60px;
}
  
.icon-img{
    width: 100%;
    height: auto;
}

.hovering:hover{
    transform: translateY(-10px);
}

/* how-to-sell-a-property-section */

.effect-hover:hover{
    transform: skew(-0.06turn, 18deg);
}

/* footer-section */

.footer{
    background-color: #434681;
    color: white;
}

.footer a{
    color: #fff;
    text-decoration: none;
}

.footer a:hover{
    text-decoration: underline;
}
  
.footer-title{
    font-weight: 600;
    margin-bottom: 15px;
}
  
.social-icons a{
    color: #fff;
    margin-right: 12px;
    font-size: 18px;
}

.app-btn i{
    margin-right: 8px;
    font-size: 18px;
}
  
.horizontal-line{
    border-color: rgba(255,255,255,0.3);
}
  
.footer-bottom{
    text-align: center;
    padding-top: 10px;
    font-size: 14px;
}
  



/* media-queries */

@media screen and (max-width: 1199px) {
    .property-form-wrapper{
        right: 3%;
        max-width: 360px;
    }
}

@media screen and (max-width: 991px) {
    /* navbar-section */

    nav.navbar{
        border-radius: 0 !important;
        width: 100% !important;
        left: 0 !important;
        transform: none !important;
        margin-top: 0;
    }
    
    .navbar-collapse{
        background-color: white;
        border-radius: 0 0 12px 12px;
        padding: 1rem;
    }
    
    .navbar-nav{
        flex-direction: column !important;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .navbar-nav .nav-item{
        width: 100%;
    }
    
    .navbar-nav .nav-link{
        display: block;
        padding-left: 0;
        border: none;
    }
    
    .d-flex.gap-2{
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .d-flex.gap-2 a{
        width: 100%;
        text-align: center;
    }

    /* form-part */

    .property-form-wrapper{
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin-top: 2rem;
        max-width: 100%;
    }

    /* footer-section */

    .footer-title{
        font-size: 16px;
        margin-bottom: 0.5rem;
    }
    
      .footer-section .col-12{
        margin-bottom: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .property-form-wrapper{
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
}

@media screen and (max-width: 565px) {
    .property-form-wrapper{
        padding: 1rem;
    }
}

@media screen and (max-width: 320px) {
    .property-form-wrapper{
        border-radius: 1rem;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
}

@media screen and (max-width: 400px) {
    /* navbar-section */

    .navbar-nav .nav-link{
        font-size: 14px;
    }
    
    .navbar-brand img{
        max-width: 120px;
    }

    /* property-form-wrapper */

    .top-margin{
        transform: translateY(25px);
    }

    .property-form-wrapper{
        margin-bottom: 35px;
    }

    /* footer-section */

    .footer-section p{
        font-size: 14px;
        word-break: break-word;
    }
}
  
