/*====================================================
  Project Name   : Bollineni Bion
  Description    : Realestate website and landing page
  Author         : Rohit Suryavanshi | https://rohitwebco.com/
  Company        : Bollineni
  Version        : 1.0.0
  Created Date   : 18 Sept 2025
  Last Updated   : 18 Sept 2025
  Copyright      : © 2025 Bollineni. All rights reserved.
  License        : 
=====================================================*/
@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');


:root {
    --primary-color: #7bb932;
    --primary-color-yelllow: #f7ff58;
    --primary-color-blue-medium: #1f82bf;
    --primary-color-blue-light: #4CC7F3;
    --primary-color-gold-dark: #977124;
    --primary-color-gold-medium: #BB9331;
    --primary-color-gold-light: #ECC962;
    --button-color: #dc3545;
    --color-white: #ffffff;
    --color-dark: #101316;
    --color-dark-medium: rgb(91, 91, 91);
    --font-primary: "Poppins", sans-serif;
    --font-size-base: 16px;
    --font-size-lg: 18px;
    --font-size-sm: 14px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    color: #333;
    margin: 0;
    padding: 0;
    /* background-color: #f4f4f4; */
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  font-family: var(--font-primary);
  font-size: 15px;
  /* line-height: 1.; */
}

a {
  text-decoration: none;
}

.section__container {
  margin: 0 auto;
}

.button {
  background-color: var(--button-color);
  padding: 12px 30px;
  border: none;
  color: var(--color-white);
  transition: ease-in-out 400ms;
  -webkit-transition: ease-in-out 400ms;
  -moz-transition: ease-in-out 400ms;
  -ms-transition: ease-in-out 400ms;
  -o-transition: ease-in-out 400ms;
  box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.3);
}

.button:hover {
  background-color: #a81a29;
  box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.0);
  color: var(--color-white);
}

/* body header */
.body__wrap {
  position: relative;
}

/* body banner */


/* main section */


@media (min-width: 1401px) {
  .section__container {
    width: 80%;
  }
  
  .header__nav ul .main__nav-list + li {
    margin-left: 40px;
  }

}

@media (min-width: 1027px) and (max-width: 1400px) {
  .section__container {
    width: 94%;
  }
  
  .header__nav ul .main__nav-list + li {
    margin-left: 25px;
  }

}

@media (min-width: 769px) and (max-width: 1026px) {
  .section__container {
    width: 94%;
  }

  .header__nav ul .main__nav-list + li {
    margin-left: 15px;
  }
}

@media (min-width: 769px) {
  .body__header-base {
    display: flex;
    justify-content: space-between;
    align-items: end;
  }

  .hamburger {
    display: none;
  }

  .header__nav ul {
    margin-bottom: 25px;
  }

  .header__nav ul .main__nav-list {
    display: inline;
  }

  .body__banner .slider.vh__100 {
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

@media screen and (max-width: 768px) {
  .section__container {
    width: 90%;
  }
  
  .hamburger {
    position: absolute;
    top: 40px;
    right: 6%;
    z-index: 9999;
  }
  
  .hamburger i {
    font-size: 30px;
  }

  .header__nav {
    display: none;
    padding-top: 10px;
  }

  .main__nav-link {
    display: block;
    padding: 10px 10px;
    color: var(--primary-color);
    border-bottom: 1px solid rgb(41, 41, 41);
  }

  .body__banner .slider.vh__100 {
    width: 100%;
    height: 80vh;
    background-repeat: no-repeat;
  }
}

@media screen and (max-width: 584px) {
  .section__container {
    width: 96%;
  }
}