:root {
  --bg: rgb(26,26,36);
  --accent: rgb(243,112,59);
  --primary: rgb(217,217,217);
  --white: rgb(255, 255, 255);
  --fullwidth: 100%;
}

* {
        margin: 0;
        padding: 0;
        border: 0;
        outline: 0;
        font-size: 100%;
        box-sizing: border-box;
    }

html,body{
  overflow-x: hidden;
}

body{
  background-color: var(--bg);
  color: var(-accent);
  font-family: 'Roboto', sans-serif;
  line-height: 1.6rem;
  width: 100vw;
}

/*main window*/
.home_window{
  background-image: url("./media/house_1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
}

.process_window{
  background-image: url("./media/architecture-building-buy-buyer-221540.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 35%;
  height: 100vh;
}

.pricing_window{
  background-image: url("./media/pricing_2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 35%;
  height: 100vh;
}

.example_plans_window{
  background-image: url("./media/example_plans_2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
}

.contact_window{
  background-image: url("./media/contact.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  height: 100vh;
}

.careers_window{
  background-image: url("./media/careers.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
}

.about_us_window{
  background-image: url("./media/pexels-photo-277559.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
}

.covid_policy_window{
  height: 100vh;
}

.vCard_window{
  height: 100vh;
}

.filter{
  background-color: grey;
  height: inherit;
  width: 100%;
  opacity: 0.45;
  position: absolute;
  z-index: 5;
}

.window-text{
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  height: 100%;
  color: var(--accent);
  font-size: 8vw;
  z-index: 8;
  justify-content: center;
  align-items: center;
  text-shadow: 0.3rem 0.2rem rgba(51,51,51,0.70);
}

.window-text{
  font-smooth: always;
}

/*announcement*/

#announcement{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 8%;
  background-color: var(--accent);
  position: relative;
  z-index: 10;
}

#announcement_text{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin: auto;
}

#announcement_text h2, a{
  color: var(--primary);
  font-size: 1.1rem;
}


/*navbar*/

header{
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 95%;
  margin: auto;
  padding: 30px;
  position: relative;
  z-index: 10;
}

.logo_container{
  margin-right: auto;
}

#logo{
  width: 8.75rem;
}

.navbar{

}

.navbar-links{
  list-style: none;
  padding: 0;
}

.navbar li{
  display: inline-block;
  margin: 14px;
}

.navbar a{
  text-decoration: none;
  padding: 10px;
  border-style: solid;
  border-width: 2px;
  border-radius: 60px;
  border-color: var(--white);
  color: var(--white);
  font-weight: bold;
  font-size: 1.05rem;
}

.navbar li a {
  transition: all 0.3s ease 0s;
}

.navbar li a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

header .current a{
  color: var(--accent);
  border-color: var(--accent);
}


/*hamburger menu*/
.burger{
  display: none;
  cursor: pointer;
}

.burger div{
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px;
    z-index: 3;
}

#burger-menu{
  padding-top: 1rem;
  display: none;
  position: absolute;
  height: 100vh;
  width: 100%;
  background-color:rgba(55,55,76,0.95);
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.navbar-links.links-burger{
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.navbar-links li{
  margin:  3vh 0;
}

.navbar-links.links-burger a{
  font-size: 3.6vh;
  padding: 5.5px 24px;

}


/*arrow*/

.down {
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 40px solid #f3703bff;
  margin: auto;
  position: absolute;
  left: 48%;
  top: 91%;
  z-index: 10;
  animation: blinker 2s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

/*content*/

.container{
  width: 50%;
  margin: auto;
}

.container_vCard{
  width: 40%;
  margin: auto;
  height: 60vh;
}

.title h1{
  color: var(--primary);
  text-align: center;
  font-size: 3.4rem;
  margin: 2rem 0rem;
  line-height: 4rem;
}

.circle {
  height: 5px;
  background-color: var(--accent);
  border-radius: 25px;
}

.info{
  margin: 2rem 0;
  color: var(--primary);
  font-size: 1.3rem;
}


/*home*/

.appointment{
  color: var(--primary);
  width: 300px;
  margin: auto;
  margin-top: 80px;
  padding: 20px 0px;
  text-align: center;
  border-color: var(--accent);
  border-style: solid;
  border-width: 5px;
  border-radius: 25px;
}

.appointment h2{
    font-size: 40px;
    margin-bottom: 20px;
}


/*process*/

.step{
  margin: 2rem 0 0 0;
  color: var(--primary);
}

.step h1{
  display: inline;
  color: var(--accent);
  padding: 6px 10px;
  margin-right: 20px;
  border-style: solid;
  border-width: 2px;
  border-radius: 10px;
}

.step h2{
  display: inline;
  font-size: 1.5rem;
}

.step p{
  width: 70%;
  margin: auto;
  padding: 20px 0px;
}

.price-link-container{
  width: 70%;
  margin: auto;
}

.step a{
  color: var(--accent);
  padding: 4px 8px;
  border-style: solid;
  border-width: 2px;
  border-radius: 20px;
  text-decoration: none;
}


/*pricing*/

.price_button{
  width: 100%;
  margin: auto;
  margin-top: 3rem;
  text-align: center;
}

.price_button a{
  font-size: 2.0rem;
  color: var(--accent);
  padding: 6px 20px;
  border-style: solid;
  border-width: 4px;
  border-radius: 35px;
  text-decoration: none;
  /*
  padding: 20px 0;
  display: block;
  text-align: center;
  text-decoration: none;
  color: var(--primary);
  border-style: solid;
  border-width: 2px;
  border-color: var(--accent);
  border-radius: 50px;
  background-color: var(--accent);
  font-weight: bold;
  font-size: 1.5rem;
  */
}

.price_p{
  margin: 1rem 0;
}

.indent{
  margin-left: 4rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}


/*example_plans*/

.example_plans_info{
  margin: 4rem 0;
  display: block;
}

.plan{
  display: flex;
  margin-bottom: 4rem;
}

.plan img{
  width: 60%;
}

.plan_info{
  display: block;
  width: 100%;
}

.plan_name{
  height: 20%;
  text-align: center;
  padding: 10px 0 0 0;
}

.plan_button{
  margin: 40px auto;
  width: 80%;
  text-align: center;
}

.plan_button a{
  font-size: 2.2rem;
  color: var(--primary);
  padding: 6px 20px;
  border-style: solid;
  border-width: 4px;
  border-radius: 35px;
  text-decoration: none;
}

.plan_name h2{
  font-size: 2.6rem;
  color: var(--primary);
}


/*contact*/

.contact_info{
  display: flex;
  align-items: center;
  margin: 3rem 0;
}

.contact_info img{
  display: inline;
  width: 40px;
}

.contact_info p{
  display: inline;
}

.contact_type{
  margin-left: 30px;
  width: 100px;
}

.contact_content{
  margin-left: 50px;
}

.map iframe{
  display: block;
  margin: 4rem auto;
  width: 100%;
}


/*about us*/

.about_us_info{
  display: flex;
  width: 100%;
  margin-top: 2rem;
}

.about_us_info_sub{
  display: flex;
  width: 100%;
  margin-top: 4rem;
}

.person_picture{
  width: 40%;
}

.person_info{
  width: 60%;
}

.person_info h2{
  color: var(--primary);
  padding: 0.2rem;
  font-size: 1.7rem;
  margin-top: 0.8rem;
}
.person_info h4{
  color: var(--primary);
  padding: 0.2rem;
}
.person_info p{
  color: var(--primary);
  padding: 0.5rem;
}

.sub{
  width: 80%;
  margin: auto;
  margin-top: 2rem;
}

.person_picture{

}


.person_picture img{
  width: 90%;
  height: auto;
}


/*footer*/

footer{
  text-align: center;
  background-color: var(--accent);
  color: var(--primary);
  height: 80px;
  margin-top: 80px;
}

footer p{
  padding-top: 30px;
}


/*media query*/

@media (min-width: 1230px){
  #burger-menu{
    visibility: hidden;
  }
}



@media (max-width: 1230px){
   .burger{
     display: inline-block;
   }
   .window-text{
     height: 50%;
   }
   #announcement{
     height: 12%;
   }
   #announcement h2, a{
     font-size: 1rem;
   }
   .navbar-links{
     display: none;
   }
   .home_window, .process_window, .pricing_window, .example_plans_window, .contact_window, .careers_window, .about_us_window{
     height: 50vh;
     width: 100%;
     text-align: center;
     font-size: 4rem;
   }
   .container{
     width: 90%;
   }
   .down{
     display: none;
   }
   .plan{
     flex-direction: column;
     align-items: center;
   }
   #logo{
     width: 6.75rem;
   }
   .window-text{
     display: none;
   }
   .step h2{
     font-size: 1.2rem;
   }
}

@media (max-width: 700px){
  #announcement{
    height: 20%;
  }
}

.booking-button{
   font-size: 1.8rem; 
}
