@import url("https://fonts.googleapis.com/css2?family=PT+Sans+Caption:wght@400;700&display=swap");

body {
  height: 100vh;
}

.header-color {
  color: #87aade; /* rgba(174, 198, 232, 162); /* rgb(162, 174, 180); */
}

.body {
  font-family: "PT Sans Caption", sans-serif;
  background-image: linear-gradient(
    to right,
    rgb(256, 256, 256),
    rgb(220, 229, 245) /*rgb(256, 256, 256) */ /* rgb(249, 234, 230) */
  );
}

header {
  height: 100vh;
  background-color: white;
}

.logo-red {
  color: rgba(210, 18, 65, 255);
}

.logo-blue {
  color: #063970;
}

.in-minutes {
  font-family: "Caveat", cursive;
  letter-spacing: 6px;
  color: rgba(210, 18, 65, 255);
  transform: rotate(-30deg);
  font-size: 55px;
  position: relative;
  font-weight: 500;
  left: 4em;
  bottom: 150px;
}
.compare {
  font-family: "Frank Ruhl Libre", serif;
  color: #063970;
  font-weight: bolder;
  font-size: 50px;
}

.button3 {
  display: inline-block;
  padding: 0.4em 1em;
  border-radius: 0.7em;
  border: 1px solid #2596be;
  font-weight: bold;
  width: 100%;
  height: 100%;
  text-decoration: none;
  background: #2596be;
  color: #eee;
  transition: all 0.3s;
  vertical-align: center;
  align-items: center;
  text-justify: auto;
}
.button3:hover {
  background: #a8d5e5;
  color: #165a72;
  transform: translateY(-3px);
}
@media all and (max-width: 30em) {
  .button3 {
    display: block;
  }
}

.qna-button {
  display: inline-block;
  padding: 0.4em 1em;
  border: 1px solid #2596be;
  width: 100%;
  height: 100%;
  text-decoration: none;
  background: #2596be;
  color: #eee;
  transition: all 0.3s;
  text-align: left;
  font-size: 1.2rem;
  
}
.qna-button:hover {
  background: #a8d5e5;
  color: #165a72;
  transform: translateY(-3px);
}
@media all and (max-width: 30em) {
  .qna-button {
    display: block;
  }
}

.nav-menu {
  background: linear-gradient(
    rgba(256, 256, 256, 0.3),
    rgba(220, 229, 245, 0.5)
  );

  padding: 2px;
  transition: all 0.7s;
}

.menu-item {
  font-size: 16px;
  letter-spacing: 1px;
  color: #8b9eba;
  transition: color 0.5s;
  padding-top: 0%;
}

.menu-item:hover {
  color: #576374; /* #2596be; */
}

.nav-active {
  color: #70aed2;
}

.line1,
.line2,
.line3 {
  width: 23px;
  height: 3px;
  margin: 5px;
  background-color: #8b9eba;
  transition: all 0.4s;
}

.change .line1 {
  color: #576374;
  transform: rotate(-45deg) translate(-5px, 6px);
}

.change .line2 {
  opacity: 0;
}

.change .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

.custom-navbar {
  padding: 5px 30px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
}
/* end of navbar */

@keyframes anim {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.input {
  background: transparent;
  border-color: transparent;
  border-bottom: 2px solid #87aade; /* #101010;*/
  border-radius: 10px;
  transition: all 0.8s;
}

.input:focus {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  color: gray;
  border-bottom: 2px solid gray;
}

.button-style {
  background: #e4eeee;
  color: #165a72;
  border-radius: 12px;
  transition: all 0.3s;
}

.button-style:hover {
  background: #a8d5e5;
  color: #165a72;
  transform: translateY(-3px);
}
/***************/
.radio-button-style input[type="radio"] {
  background-color: #e4eeee;
  display: none;
  border: 1px solid gray;
  border-radius: 6px;
}

.radio-button-style label:hover {
  background-color: #a8d5e5;
  color: #165a72;
  transform: translateY(-3px);
}

.radio-button-style label {
  display: inline-block;
  border: 1px solid #666;
  border-radius: 12px;
  padding: 10px;
  width: 350px;
  text-align: center;
  margin: 12px;
  font-size: 22px;
  cursor: pointer;
}

.radio-button-style input[type="radio"]:checked + label {
  background-color: #a8d5e5;
  font-weight: bolder;
  border: 3px solid #18678d;
}
/***************/

/***************************/
.stepper {
  width: 700px;
  margin: 0 auto;
  display: flex;
  padding-bottom: 10px;
}

li {
  display: inline-block;
  position: relative;
  margin-top: 32px;
}
.stepper li + li {
  flex-grow: 1;
  display: flex;
  flex-direction: row;
}
li + li::before {
  display: block;
  position: absolute;
  left: -10%;
  top: -16px;
  content: "";
  width: 100%;
  height: 4px;
}

.item {
  position: relative;
  margin-left: auto;
  margin-right: 0;
  padding-top: 8px;
  z-index: 1;

  text-align: center;
}

.item::before {
  width: 32px;
  height: 32px;
  position: absolute;
  content: "";
  top: -32px;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 50%;
  box-sizing: border-box;
}

.ready::before {
  background-color: #8b9eba;
}
.ready > .item::before {
  background-color: #8b9eba;
}

.wip::before {
  background-color: yellowgreen;
}
.wip > .item::before {
  border: solid 8px yellowgreen;
  background-color: white;
}

.done::before {
  background-color: yellowgreen;
}
.done > .item::before {
  background-color: yellowgreen;
  content: "\2713";
  color: white;
  padding-top: 4px;
}

ul,
li {
  padding: 0;
  list-style: none;
}

/***************************/
.submit-button {
  background: #2596be;
  color: #eee;
  border-radius: 0.7em;
  transition: all 0.3s;
}

.submit-button:hover {
  background: #a8d5e5;
  color: #165a72;
  transform: translateY(-3px);
}

.label {
  color: #777;
  display: block;
  margin-top: -70px;
  margin-left: 4px;
  font-size: 13px;
  transition: all 0.3s;
}

.input:placeholder-shown + .label {
  transform: translate(20px, 20px);
  opacity: 0;
  visibility: hidden;
}

.underline {
  width: 150px;
  border: 3px solid rgb(79, 78, 78);
  margin: auto;
}

.meet-the-team-button {
  background: #2596be;
  color: #eee;
  width: 160px;
  border-radius: 25px;
  box-shadow: 5px 8px 18px #000;
  transition: all 0.2s;
}

.meet-the-team-button:hover {
  background: #a8d5e5;
  color: #165a72;
  transform: translateY(-2px);
}

.fromLeft {
  animation-name: fromLeft;
  animation-duration: 3s;
}

.fromRight {
  animation-name: fromRight;
  animation-duration: 3s;
}

@keyframes fromLeft {
  0% {
    transform: translateX(-120px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fromRight {
  0% {
    transform: translateX(30px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Team Card */

.team-card {
  width:80%;  
  height: 60%;
  border: none;
  box-shadow: 0 3rem 6rem rgba(0, 0, 0, .8);
}

.team-card-btn {
  width: 60%;
  padding: 0.75rem 0.3rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  color: #b85d1c;
  background-color: transparent;
  border: .1rem solid #b85d1c;
  border-radius: 10rem;
  outline: none;
  cursor: pointer;
  margin-top: 0.5;
}

.team-card-btn:hover {
  color: #ddd;
  background-color: #b85d1c;
}

.team-card-body {
  color: #ddd;
  background-color: #15141b;
}

.team-card-heading {
  margin: 0;
  font-size: 1.5rem;
  height: 3rem;
  font-weight: 300;
}

.team-card-paragraph {
  font-size: 0.9rem;
  /* color: #777; */
  margin: 0;
  text-align: left;
}

.rank {
  font-size: 1rem;
  font-weight: 100;
  margin-bottom: 0.6rem;
  padding: 0;
}

.team-card-img-top {
  width: 70%;
  height: auto;
}

a:link { 
  text-decoration: none; 
} 
a:visited { 
  text-decoration: none; 
} 
a:hover { 
  text-decoration: none; 
} 
a:active { 
  text-decoration: none; 
}
/* end of team card */

/* Team Card */
/*
.team-card {
  background: linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.25)),
    url("./../images/city-background.png") no-repeat center center / cover;
  background-repeat: no-repeat;
  box-shadow: 7px 18px 50px #555;
  max-width: 400px;
  background-position: left;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-align: center;
}


.team-card .profile {
  background-color: white;
  position: absolute;
  top: 0;
  left: 0;
  color: black;
  -webkit-transition: all 300ms ease-out;
  -moz-transition: all 300ms ease-out;
  -o-transition: all 300ms ease-out;
  -ms-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  opacity: 0;
  padding: 20px 70px;
}
.team-card:hover .profile {
  opacity: 0.6;
}
.team-card .text {
  -webkit-transition: all 300ms ease-out;
  -moz-transition: all 300ms ease-out;
  -o-transition: all 300ms ease-out;
  -ms-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  transform: translateY(30px);
  -webkit-transform: translateY(30px);
}
.team-card .profile {
  text-transform: uppercase;
  opacity: 0;
  transition-delay: 0.2s;
  transition-duration: 0.3s;
}
.team-card:hover .profile,
.team-card:focus .profile {
  opacity: .5;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
}
*/
/* Cards */
.card-1,
.card-2,
.card-3 {
  background: linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.25)),
    url("./../images/city-background.png") no-repeat center center / cover;
  background-repeat: no-repeat;
  box-shadow: 7px 18px 50px #555;
  max-width: 400px;
}

.card-1 {
  background-position: left;
}
.card-2 {
  background-position: center;
}
.card-3 {
  background-position: right;
}

.card-list-item {
  border-bottom: 1px groove rgb(30, 29, 29);
  width: 55%;
  margin: auto;
}

.price-card-button {
  background: #2596be;
  color: #eee;
  width: 130px;
  border-radius: 25px;
  box-shadow: 5px 8px 18px #000;
  transition: all 0.2s;
}

.price-card-button:hover {
  background: #a8d5e5;
  color: #165a72;
  transform: translateY(-2px);
}

.moveFromLeft {
  animation-name: moveFromLeft;
  animation-duration: 2s;
}
.moveFromRight {
  animation-name: moveFromRight;
  animation-duration: 2s;
}
.moveFromBottom {
  animation-name: moveFromBottom;
  animation-duration: 2s;
}

@keyframes moveFromLeft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes moveFromRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes moveFromBottom {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/*  end of cards */


.carousel #stove-top{
  background: linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.35)),
    url("./../images/stovetop.png") no-repeat center center / cover;
  height: 50vh;
  background-repeat: no-repeat;
}

.carousel #single-home{
  background: linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.35)),
    url("./../images/SingleHome.png") no-repeat center center / cover;
  height: 50vh;
  background-repeat: no-repeat;
}

/* footer */
.footer-link {
  color: #eee;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-link:hover {
  color: #70aed2;
  text-decoration: none;
}

input:valid {
  color: green;
}
input:invalid {
  color: red;
}

.hidden_fields {
  display: none;
}

.hidden_long_term {
  display: none;
}

.hidden_short_term {
  display: none;
}

.hidden_cosmetic {
  display: none;
}

.hidden_structural {
  display: none;
}

.hidden_groundup {
  display: none;
}

.hidden_income {
  display: none;
}


/* this is to remove google logo from places API */

.pac-container:after {
  background-image: none !important;
  height: 0px;
}

.info-style {
  color: #576374; /* #2596be; */
  border-radius: 25px;
  background-color: antiquewhite;
}

.not-visible{
  display: none;
}

.claim-table tr:nth-child(odd) {
  background-color: #dae6f3;
  font-weight: bold;
}

/* styling the banner for cookies disclosure */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 15px;
  display: none;  /* Initially hidden */
  z-index: 1000;
}