{
  Margin:0;
  padding:0;
  font-family:'poppins', sand-serif;
}


.header {
  min-height:100vh
  width: 100%;
  min-height:100vh;
  width:100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(header.jpg);
  background-position:center;
  background-size:cover;
  position: relative;
}

.nav{ 
  display:flex;
  padding:2% 6%;
  justify-content:space-between;
  align-items:center;
  
  }
  
 .nav img {
  width: 150px;
}
.nav img {
  height: 5rem;
}
    
.menu-bar{
  flex:1;
  text-align:right;
  }
.menu-bar ul li{
  list-style: none;
  display:inline-block ;
  padding: 8px 12px;
  position: relative;
  }
  
.menu-bar ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    }


.text-box{
  width:90%;
  color:#fff;
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  text-align:center;
  }
  
.text-box h1{ 
  font-size:62px;
  color:#f7b0b9;
  }
.text-box h2{ 
  font-size:30px;
  }
.text-box p{ 
  margin:10px 0 40px;
  font-size:14px;
  color:#fff;
  }
.login{
  display:inline-block;
  text-decoration:none;
  color:#fff;
  border:1px solid #fff;
  padding: 12px 34px;
  font-size:13px;
  background:transparent;
  position:relative;
  cursor:pointer;
}

.login:hover{
  border:1px solid #f44336;
  Background:#f44336;
  transition:1s;
}


.menu-bar {
  overflow: hidden ;
  background-color: none; 
}

.menu-bar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}
.dropdown-menu {
 display:none;
}
.dropdown-menu {
  float: left;
  overflow: hidden;
}

.menu-bar a:hover.dropdown-menu {
 display:block;
  position: absolute;
  margin-top: 150px;
  margin-left:-15px;
}
.menu-bar ul li:hover.dropdown-menu ul{
  display:block;
  margin:10px;
  }

.dropdown-menu .dropdown-menubtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.menu-bar a:hover, .dropdown-menu:hover .dropdown-menubtn {
  background-color: red;
}

.dropdown-menu-content {
  display: none;
  position: absolute;
  left: 0;
  background-color: red;
  width: 100%;
  z-index: 1;
}

.dropdown-menu-content a {
  float: left;
  color: white;
  text-decoration: none;
}

.dropdown-menu-content a:hover {
  background-color: #eee;
  color: black;
}

.dropdown-menu:hover .dropdown-menu-content {
  display: block;
}





  
 .fa{ 
    display:none;
    }

  @media(max-width: 700px){
text-box h1{
    font-size:20px
    }
.menu-bar ul li{
      display:block;
    }
.menu-bar{
      position: absolute;
      background:#000;
      height:100vh;
      width:200px;
      top:0;
      right:-200px;
      text-align:left;
      z-index:2;
      transition:1s;
      }
 #header .fa{
      display:block;
      color:#fff;
      margin: 10px;
      font-size:22px;
      cursor:pointer;
      
  }
.menu-bar ul{
    padding:30px
  }
  
    

#families {
  background: #47020b;
  min-height: 100vh;
}

#families .heading h1 {
  font-size: 4rem;
  color: #000;
  padding-top: 7rem;
  margin-bottom: 2rem;
  color: #fff;
   text-align: center;
}

#families .heading h1 span {
  color: #f7b0b9;
  
}

#families .heading p {
  color: #ccc;
  font-size: 2rem;
   text-align: center;
}

#families .card-container {
  width: 95%;
  margin: 7rem auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}

#families .card-container .card {
  height: 40rem;
  width: 30rem;
  background: #fff;
  padding: 1rem;
  margin: 2rem;
  text-align: center;
}

#families .card-container .card img {
  height: 50%;
  width: 100%;
  object-fit: cover;
}

#families .card-container .card p {
  font-size: 1.4rem;
  margin: 2rem 0;
}

#families .card-container .card button {
  outline: none;
  border: none;
  border-radius: 5rem;
  color: #333;
  font-size: 1.6rem;
  font-weight: bold;
  text-transform: capitalize;
  letter-spacing: .2rem;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 3.5rem;
  width: 14rem;
  background: #333;
  color: #fff;
}

#families .card-container .card button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: #f7b0b9;
  height: 100%;
  width: 0%;
  transition: .2s;
  z-index: -1;
}

#families .card-container .card button:hover::before {
  width: 100%;
}

#families .card-container .card button:hover {
  color: #333;
}

#families .card-container .card:hover {
  transform: scale(0.9);
}



#Location {
  min-height: 100vh;
  width: 100vw;
}

#Location .heading h1 {
  font-size: 4rem;
  color: #fff;
  padding-top: 7rem;
  margin-bottom: 2rem;
   text-align: center;
}

#Location .heading h1 span {
  color: #f7b0b9;
   text-align: center;
}

#Location .box-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 1rem auto;
  width: 90%;
}

#Location .box-container .box {
  height: 20rem;
  width: 25rem;
  border-radius: .5rem;
  margin: 2rem;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 .5rem #333;
}


#Location .box-container .box .info {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(51, 51, 51, 0.6);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  color: #fff;
 transform: scale(0);
}

#Location .box-container .box .info h3 {
  font-size: 3rem;
}

#Location .box-container .box .info p {
  font-size: 1.3rem;
  border-bottom: 0.2rem solid #f7b0b9;
  border-top: 0.2rem solid #f7b0b9;
  margin: 1rem 2rem;
}

#Location .box-container .box .info button {
  outline: none;
  border: none;
  border-radius: 5rem;
  color: #333;
  font-size: 1.6rem;
  font-weight: bold;
  text-transform: capitalize;
  letter-spacing: .2rem;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 4rem;
  width: 14rem;
}

#Location .box-container .box .info button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: #f7b0b9;
  height: 100%;
  width: 0%;
  transition: .2s;
  z-index: -1;
}

#Location .box-container .box .info button:hover::before {
  width: 100%;
}

#Location .box-container .box:hover .info {
          transform: scale(1);
}

#Location {
  min-height: 100vh;
  width: 100vw;
  background-size: cover;
  background: #660000;
}

#contact .heading h1 {
  font-size: 4rem;
  color: #FFF;
  padding-top: 7rem;
  margin-bottom: 2rem;
   text-align: center;
}

#contact .heading h1 span {
  color: #f7b0b9;
   text-align: center;
}

#contact form {
  background: #f7b0b9;
  padding-top: 2rem;
  margin: 1rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 2rem #333;
  align-items: center;
  
}

#contact form .inputBox {
  position: relative;
  text-align: center;

}

#contact form .inputBox input, #contact form .inputBox textarea {
  outline: none;
  border: .2rem solid #333;
  border-radius: .2rem;
  margin: 2rem 0;
  padding: 0 1rem;
  background: none;
  height: 4rem;
  width: 90%;
  font-size: 2rem;
align-items: center;
}

#contact form .inputBox input:focus ~ h3,
#contact form .inputBox input:valid ~ h3, #contact form .inputBox textarea:focus ~ h3,
#contact form .inputBox textarea:valid ~ h3 {
  font-size: 1.6rem;
  left: 6%;
  top: -.5rem;
  color: #ff3300;
align-items: center;
}

#contact form .inputBox textarea {
  padding: 1rem;
  resize: none;
  height: 20rem;
  
}

#contact form .inputBox h3 {
  position: absolute;
  top: 3rem;
  left: 7%;
  align-items: center;
}

#contact form input[type="submit"] {
  outline: none;
  border: none;
  border-radius: 5rem;
  color: #333;
  font-size: 1.6rem;
  font-weight: bold;
  text-transform: capitalize;
  letter-spacing: .2rem;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 4rem;
  width: 12rem;
  margin-bottom: 2rem;
  margin-left: 4%;
  background: #333;
  color: #fff;
}

#contact form input[type="submit"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: #f7b0b9;
  height: 100%;
  width: 0%;
  transition: .2s;
  z-index: -1;
}

#contact form input[type="submit"]:hover::before {
  width: 100%;
}

#contact form input[type="submit"]:hover {
  color: #333;
  background: #f7b0b9;
}

#footer {
  background: #333;
}

#footer h1 {
  font-size: 2rem;
  margin: 0;
  padding: 2rem 0;
  text-align: center;
  color: #fff;
}

#footer h1 span {
  color: #f7b0b9;
}

#footer .brand {
  text-align: center;
  margin-top: 2rem;
}



#footer .brand .icons a {
  font-size: 2rem;
  margin: 2rem 1rem;
  color: #fff;
}

#footer .brand .icons a:hover {
  color: #f7b0b9;
}

#footer .footer-links {
  text-align: center;
  display: flex;
  flex-flow: column;
  margin: 1rem 0;
}

#footer .footer-links h3 {
  font-size: 2.2rem;
  color: #f7b0b9;
}

#footer .footer-links a {
  color: #fff;
  font-size: 1.7rem;
}

#footer .letter h3 {
  font-size: 2rem;
  margin: 2rem 0;
  color: #fff;
   text-align: right;
}



#footer .letter h2 {
  font-size: 2rem;
  margin: 2rem 0;
  color: #fff;
    text-align: right;

  }
  #header .logo{
    display: block;
  }
  #header nav {
    position: fixed;
    top: 0;
    left: -120%;
    height: 100vh;
    width: 35rem;
    background: #fff;
  }
  #header nav ul {
            flex-flow: column;
            justify-content: center;
    height: 100%;
  }
  #header nav ul li {
    margin: 2rem 0;
  }
  #header nav ul li a {
    font-size: 3.5rem;
    border-radius: 5rem;
  }
  #header nav ul li a:hover {
    padding: .5rem 7.5rem;
    color: #333;
    background: #f7b0b9;
    right:0px;
  }
  #header .nav x.classList.toggle {
    left: 0%;

  

/*# sourceMappingURL=style.css.map */

.fa {
  padding: 20px;
  font-size: 30px;
  width: 50px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
}

.fa:hover {
    opacity: 0.7;
}

.fa-facebook {
  background: #3B5998;
  color: white;
}

.fa-twitter {
  background: #55ACEE;
  color: white;
}

.fa-google {
  background: #dd4b39;
  color: white;
}

.fa-linkedin {
  background: #007bb5;
  color: white;
}

.fa-youtube {
  background: #bb0000;
  color: white;
}

.fa-instagram {
  background: #125688;
  color: white;
}