/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

@font-face {
  font-family: Montserrat-Regular;
  src: url('../fonts/montserrat/Montserrat-Regular.ttf'); 
}

@font-face {
  font-family: Montserrat-Bold;
  src: url('../fonts/montserrat/Montserrat-Bold.ttf'); 
}

@font-face {
  font-family: Montserrat-ExtraBold;
  src: url('../fonts/montserrat/Montserrat-ExtraBold.ttf'); 
}

@font-face {
  font-family: Montserrat-Medium;
  src: url('../fonts/montserrat/Montserrat-Medium.ttf'); 
}


/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;
}

body, html {
	height: 100%;
	font-family: Montserrat-Regular, sans-serif;
}

/*---------------------------------------------*/
a {
	font-family: Montserrat-Regular;
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

a:focus {
	outline: none !important;
}

a:hover {
  color: #fff;
	text-decoration: none;
}

/*---------------------------------------------*/
h1,h2,h3,h4,h5,h6 {
	margin: 0px;
}

p {
	font-family: Montserrat-Regular;
	font-size: 15px;
	/* line-height: 1.7; */
	color: #666666;
	margin: 0px;
  margin-top: 0.5rem;
}

.success {
  font-size: 26px;
}

.success-second {
  font-size: 18px;
}

ul, li {
	margin: 0px;
	list-style-type: none;
}

.pic_icon {
  color: #666666;
  width: 25px;
  height: 25px;
}

/* Mark input boxes that gets an error on validation: */
input.invalid {
  background-color: #ffdddd;
}

.tab {
  display: none;
}

input {
	outline: none;
	border: none;
}

textarea {
  outline: none;
  border: none;
}

textarea:focus, input:focus {
  border-color: transparent !important;
}

input::-webkit-input-placeholder { color: #999999; }
input:-moz-placeholder { color: #999999; }
input::-moz-placeholder { color: #999999; }
input:-ms-input-placeholder { color: #999999; }

textarea::-webkit-input-placeholder { color: #999999; }
textarea:-moz-placeholder { color: #999999; }
textarea::-moz-placeholder { color: #999999; }
textarea:-ms-input-placeholder { color: #999999; }

/*---------------------------------------------*/
button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

iframe {
	border: none !important;
}


/*//////////////////////////////////////////////////////////////////
[ Dropdown button ]*/
.dropdown {
  position: relative;
  font-size: 14px;
  color: #333;

  .dropdown-list {
    padding: 12px;
    background: #fff;
    position: absolute;
    top: 30px;
    left: 2px;
    right: 1px;
    box-shadow: 0 1px 2px 1px rgba(0, 0, 0, .15);
    transform-origin: 50% 0;
    transform: scale(1, 0);
    transition: transform .15s ease-in-out .15s;
    max-height: 66vh;
    overflow-y: scroll;
  }
  
  .dropdown-option {
    display: block;
    padding: 8px 12px;
    opacity: 0;
    transition: opacity .15s ease-in-out;
  }

  .dropdown-option:hover {
    color: #333;
  }
  
  .dropdown-label {
    display: block;
    height: 30px;
    background: #fff;
    border: 1px solid #ccc;
    padding: 6px 12px;
    line-height: 1;
    cursor: pointer;
    
    &:before {
      content: '▼';
      float: right;
    }
  }
  
  &.on {
   .dropdown-list {
      transform: scale(1, 1);
      transition-delay: 0s;
      
      .dropdown-option {
        opacity: 1;
        transition-delay: .2s;
      }
    }
    
    .dropdown-label:before {
      content: '▲';
    }
  }
  
  [type="checkbox"] {
    position: relative;
    top: -1px;
    margin-right: 4px;
  }
}

/* /////////////////////////////////////////////////////////////////
[ Contact-form ] */
.home1 {
  display: flex;
  flex-direction: column;
  width: 100%;
  /* min-height: 100%; */
  padding: 15px;
  background: #ffe5b6;
  align-items: center;
}

.home-pic {
  width: 250px;
  margin: 1rem;
}

.hometitle {
  margin-top: 3rem;
  margin-left: 2rem;
  color: #fff;
  text-align: left;
  width: 60%;
}

.hometext {
  margin-left: 2rem;
  font-family: Montserrat-Medium;
  color: #fff;
  text-align: left;
  font-size: medium;
  width: 70%;
}

.home-orange {
  background: #ff9500f1;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 15px 15px 0 0;
  position: relative;
  z-index: 1;
}

.picture-home {
  position: absolute;
  right: -12%;
  top: 10%;
  width: 60%;
  height: 100vh;
  z-index: 2;
  margin-left: 2rem;
}

.picture-home img {
  width: 75%;
  margin: 1rem;
}

.container-home {
  width: 95%;
  background-color: #ffffffd8;;
  border-radius: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/*---------------------------------------------*/
/* Logo's section */
.logo-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 1rem;
}

.logo {
  max-width: 12%;
  height: auto;
  flex-basis: 12%;
}

/*---------------------------------------------*/
/* Style buttons */
.btn {
  background-color: #fc8709;
  border: none;
  color: white;
  padding: 15px 13px;
  font-size: 15px;
  cursor: pointer;
  width: 220px;
  height: 3.9rem;
}

.btn:hover {
  background-color: #588c28;
}

.home_buttons {
  position: absolute;
  bottom: 35vh;
  margin-left: 3vw;
}

.btn1, .btn3, .btn5 {
  margin-right: 85px;
}

/* .btn2, .btn4, .btn6 {
  margin-left: 3px;
} */

.btn1, .btn2{
  margin-bottom: 20px;
}

.btn3, .btn4{
  margin-bottom: 20px;
}

/*//////////////////////////////////////////////////////////////////
[ Contact 1 ]*/
.contact1 {
  width: 100%;
  min-height: 100%;
  padding: 15px;

  background: #ffe5b6;
  background: -webkit-linear-gradient(left, #ffe5b6, #ffe5b6);
  background: -o-linear-gradient(left, #ffe5b6, #ffe5b6);
  background: -moz-linear-gradient(left, #ffe5b6, #ffe5b6);
  background: linear-gradient(left, #ffe5b6, #ffe5b6);

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.contact1.zonnepanelen{
  background-image: url('../images/zonnepanelen-unsplash-scaled.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact1.laadpaal{
  background-image: url('../images/Hoe-laadstations-voor-autos-installeren.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact1.warmtepomp{
  background-image: url('../images/header-warmtepompboiler-module-scaled-1.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact1.batterijen{
  background-image: url('../images/WK-Regie-over-je-eigen-energie-Landingspagina-header.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact1.groepenkast{
  background-image: url('../images/groepenkast.jpg');
  background-size: cover;
  background-repeat: no-repeat;
}

.contact1.airco{
  background-image: url('../images/ftxm-r-1-1-1a.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.container-contact1 {
  width: 95%;
  background: #ffffffd8;
  border-radius: 15px;
  overflow: hidden;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;

  padding: 90px 130px 88px 148px;
}

.container-contact2 {
  width: 90%;
  background: #ffffffd8;
  border-radius: 15px;
  align-items: center;
  padding: 90px 130px 90px 130px;
}

.container-contact1.home {
  background-image: url('../images/design/Home.png');
  background-repeat: no-repeat;
  background-size: 98vw 98vh;
}

/* Make circles that indicate the steps of the form: */
.step {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbbbbb;
  border: none;  
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
}

step.active {
  opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
  background-color: #0c823f;
}


/*------------------------------------------------------------------
[  ]*/
.contact1-pic {
  width: 296px;
}

.contact1-pic img, .home-pic img{
  max-width: 100%;
}

.contact1-pic.js-tilt.success {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.5rem;
  width: 35%;
}


/*------------------------------------------------------------------
[  ]*/
.contact1-form {
  width: 100vw;
  height: 60vh;
}

.contact1-form-title {
  display: block;
  font-family: Montserrat-ExtraBold;
  font-size: 24px;
  color: #333333;
  line-height: 1.2;
  text-align: center;
  padding-bottom: 44px;
}

.contact1-form-successtitle {
  font-family: Montserrat-Bold;
  font-size: 25px;
  color: #333333;
  line-height: 1.2;
  justify-content: center;
  text-align: center;
  padding-bottom: 44px;
}

.contact1-form-question {
  display: block;
  font-family: Montserrat-Bold;
  font-size: 20px;
  color: #333333;
  line-height: 1.2;
  text-align: left;
  padding-bottom: 40px;
}

input.input1 {
  height: 50px;
  border-radius: 25px;
  padding: 0 30px;
}

input.input1 + .shadow-input1 {
  border-radius: 25px;
}

input.input2 {
  height: 50px;
  border-radius: 25px;
  padding: 10px 10px;
}

input.input2 + .shadow-input2 {
  border-radius: 25px;
}

textarea.input1 {
  min-height: 150px;
  border-radius: 25px;
  padding: 12px 30px;
}

textarea.input1 + .shadow-input1 {
  border-radius: 25px;
}

button.input1 {
  height: 50px;
  border-radius: 25px;
  padding: 0 30px;
  margin-bottom: 10px;
}

button.input1 + .shadow-input1 {
  border-radius: 25px;
}

/*---------------------------------------------*/
.wrap-input1 {
  position: relative;
  width: 100%;
  z-index: 1;
  margin-bottom: 20px;
}

.wrap-input2 {
  position: relative;
  width: 100%;
  z-index: 1;
  margin-bottom: 20px;
}

.input1 {
  height: 50px;
  border-radius: 25px;
  padding: 0 30px;
  display: block;
  width: 100%;
  background: #e6e6e6;
  font-family: Montserrat-Bold;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.5;
  color: #666666;
}

.input2 {
  height: 50px;
  border-radius: 25px;
  padding: 10px 10px;
  display: block;
  width: 100%;
  background: #e6e6e6;
  font-family: Montserrat-Bold;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.5;
  color: #666666;
}

.shadow-input1 {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 0px 0px;
  color: rgba(87,184,70, 0.5);
}

.shadow-input2 {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 0px 0px;
  color: rgba(87,184,70, 0.5);
}

.input1:focus + .shadow-input1 {
  -webkit-animation: anim-shadow 0.5s ease-in-out forwards;
  animation: anim-shadow 0.5s ease-in-out forwards;
}

.input2:focus + .shadow-input2 {
  -webkit-animation: anim-shadow 0.5s ease-in-out forwards;
  animation: anim-shadow 0.5s ease-in-out forwards;
}

@-webkit-keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 80px 30px;
    opacity: 0;
  }
}

@keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 80px 30px;
    opacity: 0;
  }
}

/*---------------------------------------------*/
.container-contact1-form-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
}

.contact1-form-btn {
  min-width: 193px;
  height: 50px;
  border-radius: 25px;
  background: #FF9500;
  font-family: Montserrat-Bold;
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.contact1-form-btn i {
  margin-left: 7px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.contact1-form-btn:hover {
  background: #4A8144;
}

.contact1-form-btn:hover i {
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -ms-transform: translateX(10px);
  -o-transform: translateX(10px);
  transform: translateX(10px);
}

/*---------------------------------------------*/

.contact1-form-btn1, .contact1-form-btn1-terug, .contact1-form-btn1-terug1 {
  min-width: 193px;
  height: 50px;
  border-radius: 25px;
  background: #FF9500;
  font-family: Montserrat-Bold;
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.contact1-form-btn1, .contact1-form-btn1-terug1 {
  margin-right: 1rem;
}

.contact1-form-btn1-terug {
  margin-bottom: 1rem;
}

.contact1-form-btn1 i {
  margin-right: 7px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.contact1-form-btn1:hover, .contact1-form-btn1-terug:hover, .contact1-form-btn1-terug1:hover {
  background: #4A8144;
}

.contact1-form-btn1:hover i {
  -webkit-transform: translateX(-10px);
  -moz-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  -o-transform: translateX(-10px);
  transform: translateX(-10px);
}



/*------------------------------------------------------------------
[ Responsive ]*/

@media only screen and (min-width: 991px) {
  .container-contact1 {
    padding: 90px 80px 88px 90px;
  }

  .contact1-pic {
    width: 28%;
  }

  .contact1-form {
    width: 55%;
  }

  /* .contact1-pic {
    position: relative;
    margin-top: -3rem;
    margin-bottom: 2rem;
    margin-left: -4rem;
  } */
  
  .btn {
    font-size: 1.3vw;
    width: 150px;
    height: 2rem;
  }

  .btn1, .btn3, .btn5 {
    margin-right: 25px;
  }
  
  .btn2, .btn4, .btn6 {
    margin-left: 0px;
  }
  
  .btn1, .btn2{
    margin-bottom: 18px;
  }
  
  .btn3, .btn4{
    margin-bottom: 15px;
  }
}

@media only screen and (min-width: 767px) {
  .container-contact1 {
    padding: 90px 80px 88px 80px;
  }

  .contact1-pic {
    width: 23%;
  }

  .contact1-form {
    width: 100%;
  }

  .contact1-pic {
    position: relative;
    margin-top: -3rem;
    margin-bottom: 2rem;
    margin-left: -4rem;
  }

  .btn {
    font-size: 1.3vw;
    width: 19vw;
    height: 9vh;
  }

  .btn1, .btn3, .btn5 {
    margin-right: 10px;
  }
  
  .btn2, .btn4, .btn6 {
    margin-left: 0px;
  }
  
  .btn1, .btn2{
    margin-bottom: 18px;
  }
  
  .btn3, .btn4{
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .container-contact1 {
    padding: 90px 15px 88px 15px;
  }

  .logo1 {
    max-width: 25%;
    height: auto;
  }
  
  .logo2 {
    display: none;
  }

  .picture-home {
    display: none;
  }

  .contact1-pic {
    width: 32vw;
    margin-top: -3rem;
    margin-bottom: 2rem;
  }

  .fa-solar-panel, .fa-fire, .fa-charging-station, .fa-car-battery, .fa-up-right-and-down-left-from-center,
  .fa-snowflake, .fa-wind, .fa-long-arrow-left, .fa-long-arrow-right {
    display: none;
  }

  .btn {
    font-size: 2vw;
    width: 25vw;
    height: 9vh;
  }

  .btn1, .btn3, .btn5 {
    margin-right: 10px;
  }
  
  .btn2, .btn4, .btn6 {
    margin-left: 0px;
  }
  
  .btn1, .btn2{
    margin-bottom: 18px;
  }
  
  .btn3, .btn4{
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 585px) {
  .container-contact1 {
    padding: 90px 15px 88px 15px;
  }

  .home-orange {
    background: #ff95008a;
  }

  .home1 {
    background: url('../images/homepage-pic/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .logo-container {
    justify-content: space-around;
  }

  .logo {
    max-width: 25%;
    flex-basis: 25%;
    margin-bottom: 2rem;
  }

  .logo:nth-child(4) {
    order: 1;
  }

  .logo:nth-child(5) {
    order: 2;
  }

  .logo:nth-child(6) {
    order: 3;
  }

  .logo:nth-child(7) {
    order: 4;
  }

  .btn {
    font-size: 3.5vw;
    width: 35vw;
    height: 8vh;
  }

  .btn1, .btn3, .btn5 {
    margin-right: 15px;
  }
  
  .btn2, .btn4, .btn6 {
    margin-left: 0px;
  }
  
  .btn1, .btn2{
    margin-bottom: 18px;
  }
  
  .btn3, .btn4{
    margin-bottom: 15px;
  }
}


/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: white;
  border: 1px solid #c80000;
  border-radius: 13px;
  padding: 4px 25px 4px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 8px;
  pointer-events: none;

  font-family: Montserrat-Medium;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f06a";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 13px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}
