img {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

#whatsapp {
  position: fixed;
  width: 320px;
  bottom: 20px;
  right: 20px;
}

#whatsapp .messageBox {
  float: left;
  display: none;
  width: 100%;
  margin-bottom: 10px;
  -webkit-box-shadow: 1px 1px 5px 0px #bfbfbf;
  box-shadow: 1px 1px 5px 0px #bfbfbf;
}

#whatsapp .messageBox .header {
  float: left;
  width: 100%;
  background: #005f56;
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#whatsapp .messageBox .header img {
  float: left;
  border-radius: 50%;
  width: 30px;
  height: 30px;
}

#whatsapp .messageBox .header span.text {
  float: left;
  color: #fff;
  font-size: 16px;
  margin: 5px 0 0 10px;
}

#whatsapp .messageBox .header span.close {
  float: right;
  color: #fff;
  margin-top: 3px;
  cursor: pointer;
}

#whatsapp .messageBox .content {
  float: left;
  width: 100%;
  background-image: url("../images/whatsappBackground.jpg");
}

#whatsapp .messageBox .content .message {
  float: left;
  max-width: 80%;
  margin: 10px;
  padding: 10px;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #ded9d4;
  font-size: 16px;
}

#whatsapp .messageBox .content textarea {
  float: right;
  width: 80%;
  min-height: 50px;
  font-size: 16px;
  margin-right: 10px;
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid #ded9d4;
  outline: none;
}

#whatsapp .messageBox .content button {
  float: right;
  width: 120px;
  padding: 5px;
  margin: 10px;
  font-size: 16px;
  background-color: #25d366;
  color: #fff;
  border-radius: 5px;
  border: none;
}

#whatsapp .icon {
  float: right;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #00b752;
  color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  padding-top: 10px;
  font-size: 30px;
  cursor: pointer;
}

header .top {
  border-bottom: 1px dashed #ededed;
}

header .top .phone a {
  color: #189539;
  text-decoration: none;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  border-radius: 3px;
}

header .top .phone a i {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

header .top .phone:hover a, header .top .phone:active a {
  background-color: #5bb13c;
  color: #fff;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

header .top .social a {
  color: #9ea0a1;
  font-size: 23px;
}

header .top .social a.fb:hover, header .top .social a.fb:active {
  color: #3f5b9a;
}

header .top .social a.in:hover, header .top .social a.in:active {
  color: #bb298e;
}

header .top .social a.wp:hover, header .top .social a.wp:active {
  color: #13ae0c;
}

header .bottom .logo {
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

header .bottom .logo:active, header .bottom .logo:hover {
  padding-left: 5px;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

header .bottom nav {
  position: relative;
}

header .bottom nav ul {
  float: left;
}

header .bottom nav ul li {
  list-style: none;
  float: left;
}

header .bottom nav ul li a {
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1e1e1e;
  padding: 0 15px 20px 15px;
}

header .bottom nav ul li a:hover, header .bottom nav ul li a:active, header .bottom nav ul li a.active {
  color: #5bb13c;
  border-bottom: 3px solid #5bb13c;
}

header .bottom nav ul li a.offer {
  position: relative;
  background: #5bb13c;
  display: block;
  width: 150px;
  height: 35px;
  overflow: hidden;
  margin-left: 10px;
}

header .bottom nav ul li a.offer span {
  position: absolute;
  color: #fff;
  width: 100%;
  display: block;
  left: 0;
  text-align: center;
}

header .bottom nav ul li a.offer span:first-child {
  top: -100%;
  -webkit-animation-name: offerButtonAnimation1;
          animation-name: offerButtonAnimation1;
  -webkit-animation-duration: 8s;
          animation-duration: 8s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

header .bottom nav ul li a.offer span:last-child {
  bottom: 100%;
  -webkit-animation-name: offerButtonAnimation2;
          animation-name: offerButtonAnimation2;
  -webkit-animation-duration: 8s;
          animation-duration: 8s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

header .bottom nav ul li a.offer:hover, header .bottom nav ul li a.offer:active {
  border: none !important;
}

header .bottom nav #mobilMenu {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  font-size: 30px;
  background-color: #5bb13c;
  color: #fff;
  padding: 5px;
}

@-webkit-keyframes offerButtonAnimation1 {
  0% {
    top: -100%;
  }
  10% {
    top: 5px;
  }
  50% {
    top: 5px;
  }
  60% {
    top: -100%;
  }
  100% {
    top: -100%;
  }
}

@keyframes offerButtonAnimation1 {
  0% {
    top: -100%;
  }
  10% {
    top: 5px;
  }
  50% {
    top: 5px;
  }
  60% {
    top: -100%;
  }
  100% {
    top: -100%;
  }
}

@-webkit-keyframes offerButtonAnimation2 {
  0% {
    bottom: -100%;
  }
  50% {
    bottom: -100%;
  }
  60% {
    bottom: 5px;
  }
  90% {
    bottom: 5px;
  }
  100% {
    bottom: -100%;
  }
}

@keyframes offerButtonAnimation2 {
  0% {
    bottom: -100%;
  }
  50% {
    bottom: -100%;
  }
  60% {
    bottom: 5px;
  }
  90% {
    bottom: 5px;
  }
  100% {
    bottom: -100%;
  }
}

@media only screen and (max-width: 991px) {
  header nav ul {
    display: none;
    width: 300px;
    position: absolute;
    top: 50px;
    right: 0;
    z-index: 9999;
  }
  header nav ul li {
    width: 100%;
    background: #5bb13c;
  }
  header nav ul li a {
    text-align: right;
    width: 100%;
    display: block;
    padding: 10px 20px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6) !important;
  }
  header nav ul li a:hover, header nav ul li a:active, header nav ul li a.active {
    color: #fff !important;
    background: #189539 !important;
  }
  header nav ul li a.offer {
    width: 100% !important;
    margin-left: 0 !important;
    height: 45px !important;
  }
  header nav ul li a.offer span {
    width: initial;
    -webkit-animation: none !important;
            animation: none !important;
    display: inline-block;
    position: inherit !important;
    margin-top: 25px;
    text-align: right !important;
    color: #1e1e1e !important;
  }
  header nav ul li a.offer span:after {
    content: " AANVRAGEN";
  }
  header nav ul li a.offer span:last-child {
    display: none;
  }
}

footer {
  background: url("../images/footer-back.jpg");
  background-position: center;
}

footer .text span:first-child {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #2c3e50;
}

footer .text span:last-child {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #697886;
  text-align: justify;
}

footer .social span {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #2c3e50;
}

footer .social a {
  font-size: 30px;
  text-decoration: none;
  margin-right: 5px;
}

footer .social a.fb {
  color: #4b68b0;
}

footer .social a.in {
  color: #c22c65;
}

footer .social a.wp {
  color: #2ba53a;
}

footer .copyright span {
  font-family: "Lato", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #697886;
}

footer .copyright a {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

footer .copyright a:hover, footer .copyright a:active {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#banner {
  background: #f0f0f0;
}

#banner .content {
  max-width: 1600px;
  width: 100%;
  position: relative;
}

#banner .content .list .item {
  position: relative;
}

#banner .content .list .item .pic {
  display: block;
  width: 100%;
  overflow: hidden;
}

#banner .content .list .item .text {
  position: absolute;
  text-align: center;
  bottom: 5%;
}

#banner .content .list .item .text span:first-child {
  font-family: "Lato", sans-serif;
  font-size: 26px;
  font-weight: 300;
  color: #fff;
}

#banner .content .list .item .text span:nth-child(2) {
  font-family: "Lato", sans-serif;
  font-size: 50px;
  font-weight: 600;
  background-color: #5bb13c;
  color: #fff;
  padding: 10px 20px;
}

#banner .content .list .item .text .buttons {
  display: block;
}

#banner .content .list .item .text .buttons a {
  position: relative;
  width: 190px;
  height: 50px;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 400;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-color: #2c3e50;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  text-align: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 12px;
}

#banner .content .list .item .text .buttons a:nth-child(2) {
  margin-top: -20px;
}

#banner .content .list .item .text .buttons a i {
  width: 50px;
  height: 50px;
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  background: #fff;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  text-align: center;
  color: #21c2f8;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 15px;
  font-size: 20px;
}

#banner .content .arrows span {
  display: block;
  width: 55px;
  height: 55px;
  background: rgba(44, 62, 80, 0.8);
  color: #fff;
  position: absolute;
  text-align: center;
  font-size: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 19px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

#banner .content .arrows span:hover, #banner .content .arrows span:active {
  background: rgba(255, 255, 255, 0.8);
  color: #2c3e50;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

#banner .content .arrows span:first-child {
  top: 50%;
  left: 0;
}

#banner .content .arrows span:last-child {
  top: 50%;
  right: 0;
}

@media only screen and (max-width: 991px) {
  #banner .item a:first-child {
    overflow: hidden;
  }
  #banner .item img {
    height: 400px;
    width: auto;
    min-width: 100%;
    margin: 0 auto;
  }
  #banner .item .text span:first-child {
    font-size: 20px;
  }
  #banner .item .text span:nth-child(2) {
    font-size: 30px !important;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #banner .item img {
    height: 500px;
    width: auto;
    min-width: 100%;
  }
}

#parallax {
  background-image: url(../images/parallax-back.svg);
  height: 155px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#parallax h1 {
  font-family: "Lato", sans-serif;
  font-size: 35px;
  font-weight: 400;
  color: #fff;
}

#homeWhy {
  background: #f8f8f8;
}

#homeWhy .header {
  font-family: "Lato", sans-serif;
  font-size: 30px;
  font-weight: 400;
  color: #2c3e50;
  position: relative;
}

#homeWhy .header span {
  width: 60px;
  height: 2px;
  background: #21c2f8;
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -30px;
}

#homeWhy .list .item .content {
  background-color: #fff;
}

#homeWhy .list .item .content .icon {
  display: inline-block;
  width: 62px;
  height: 62px;
  background-color: #5bb13c;
  color: #fff;
  border-radius: 3px;
  font-size: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 15px;
}

#homeWhy .list .item .content .header {
  width: 100%;
  text-align: center;
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #2c3e50;
}

#homeWhy .list .item .content p {
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #697886;
}

#homeWhy .arrows span {
  display: inline-block;
  width: 38px;
  height: 38px;
  background-color: #c5c5c5;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 10px;
  cursor: pointer;
}

#homeWhy .arrows span:first-child {
  margin-right: 5px;
}

#homeWhy .arrows span:last-child {
  margin-left: 5px;
}

#homeServices .header {
  font-family: "Lato", sans-serif;
  font-size: 30px;
  font-weight: 400;
  color: #2c3e50;
  position: relative;
}

#homeServices .description {
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #697886;
  position: relative;
}

#homeServices .description span {
  width: 60px;
  height: 2px;
  background: #21c2f8;
  position: absolute;
  bottom: -20px;
  left: 50%;
  margin-left: -30px;
}

#homeServices .list .item .pic {
  position: relative;
  display: block;
}

#homeServices .list .item .pic:hover span, #homeServices .list .item .pic:active span {
  display: block;
}

#homeServices .list .item .pic span {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(91, 177, 60, 0.6);
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 30%;
  font-size: 30px;
}

#homeServices .list .item .link {
  font-family: "Lato", sans-serif;
  font-size: 19px;
  font-weight: 400;
  color: #252525;
  text-decoration: none;
}

#homeServices .list .item .link:hover, #homeServices .list .item .link:active {
  color: #5bb13c;
}

#homeOffer {
  background-image: url("../images/home-offer-back.jpg");
  background-size: cover;
  background-position: center;
}

#homeOffer .header {
  font-family: "Lato", sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #fff;
}

#homeOffer .description {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}

#homeOffer a {
  position: relative;
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 500;
  background-color: #189539;
  color: #fff;
  width: 240px;
  height: 50px;
  text-decoration: none;
  border-radius: 3px;
  padding: 10px 0 0 30px;
  text-align: left;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#homeOffer a:hover, #homeOffer a:active {
  background: #5bb13c;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#homeOffer a span {
  position: absolute;
  text-align: center;
  right: 0;
  top: 12px;
  background: #5bb13c;
  display: block;
  width: 50px;
  height: 50px;
  margin-top: -12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 13px;
  font-size: 22px !important;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  border-top-right-radius: 3px !important;
  border-bottom-right-radius: 3px !important;
}

#homePhone .header {
  font-family: "Lato", sans-serif;
  font-size: 30px;
  font-weight: 400;
  color: #2c3e50;
}

#homePhone .description {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #697886;
}

#homePhone .description span {
  display: inline-block;
  width: 60px;
  height: 2px;
  background: #21c2f8;
}

#homePhone .form input[type=text] {
  width: 100%;
  height: 42px;
  border: 1px solid #dad9d9;
  padding-left: 10px;
  outline: none;
}

#homePhone .form input[type=text]:focus {
  border: 1px solid #697886;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#homePhone .form button {
  width: 100%;
  height: 42px;
  border: none;
  outline: none;
  background-color: #778b9f;
  color: #fff;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#homePhone .form button:hover, #homePhone .form button:active {
  background: #2c3e50;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#about .text h2, #about .text h3, #about .text h4 {
  font-family: "Lato", sans-serif;
  font-size: 30px;
  font-weight: 400;
  color: #2c3e50;
  margin-bottom: 10px;
}

#about .text p, #about .text ul li {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #697886;
  text-align: justify;
  padding-top: 10px;
}

#about .text ul li {
  padding-bottom: 5px;
}

#servicesDetail .text h2, #servicesDetail .text h3, #servicesDetail .text h4 {
  font-family: "Lato", sans-serif;
  font-size: 30px;
  font-weight: 400;
  color: #2c3e50;
  margin-bottom: 10px;
}

#servicesDetail .text p, #servicesDetail .text ul li {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #697886;
  text-align: justify;
  padding-top: 10px;
}

#servicesDetail .text ul li {
  padding-bottom: 5px;
}

#servicesDetail .photos .header {
  font-family: "Lato", sans-serif;
  font-size: 30px;
  font-weight: 400;
  color: #2c3e50;
}

#servicesDetail .photos .list .item {
  position: relative;
}

#servicesDetail .photos .list .item:hover .hover, #servicesDetail .photos .list .item:active .hover {
  opacity: 10;
}

#servicesDetail .photos .list .item .link {
  display: block;
}

#servicesDetail .photos .list .item .link img {
  width: 100%;
}

#servicesDetail .photos .list .item .hover {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(91, 177, 60, 0.5);
  border: 1px solid rgba(91, 177, 60, 0.3);
}

#servicesDetail .photos .list .item .hover span {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 26px;
  color: #fff;
  margin-left: -13px;
  margin-top: -13px;
}

#projects .header h2 {
  font-family: "Lato", sans-serif;
  font-size: 30px;
  font-weight: 400;
  color: #2c3e50;
}

#projects .header p {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #697886;
}

#projects .list .item {
  position: relative;
}

#projects .list .item:hover .hover, #projects .list .item:active .hover {
  opacity: 10;
}

#projects .list .item .link {
  display: block;
}

#projects .list .item .link img {
  width: 100%;
}

#projects .list .item .hover {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(44, 62, 80, 0.5);
  border: 1px solid rgba(44, 62, 80, 0.3);
}

#projects .list .item .hover span {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 26px;
  color: #fff;
  margin-left: -13px;
  margin-top: -13px;
}

#services .header h2 {
  font-family: "Lato", sans-serif;
  font-size: 30px;
  font-weight: 400;
  color: #2c3e50;
}

#services .header p {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #697886;
}

#services .list .item .pic a {
  display: block;
  overflow: hidden;
}

#services .list .item .pic a img {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#services .list .item .pic a:hover img, #services .list .item .pic a:active img {
  -webkit-transform: scale(1.2) rotate(-3deg);
          transform: scale(1.2) rotate(-3deg);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#services .list .item .text {
  position: relative;
  height: 100%;
}

#services .list .item .text .content {
  position: absolute;
  bottom: 0;
  left: 10%;
}

#services .list .item .text .content a {
  text-decoration: none;
  display: block;
}

#services .list .item .text .content a:first-child {
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #2c3e50;
  display: block;
  width: 100%;
}

#services .list .item .text .content a:nth-child(2) {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #697886;
  text-align: justify;
}

#services .list .item .text .content a:nth-child(3) {
  background: #5bb13c;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  padding: 10px 20px;
  display: inline-block !important;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#services .list .item .text .content a:nth-child(3):hover, #services .list .item .text .content a:nth-child(3):active {
  background: #189539;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (max-width: 767px) {
  #services .list .item .text .content {
    position: inherit;
    left: 0 !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  #services .list .item .text .content {
    left: 5% !important;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #services .list .item .text .content {
    left: 5% !important;
  }
}

#contact .header h2 {
  font-family: "Lato", sans-serif;
  font-size: 30px;
  font-weight: 400;
  color: #2c3e50;
}

#contact .header p {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #697886;
}

#contact .info .item .icon span {
  display: inline-block;
  width: 62px;
  height: 62px;
  background-color: #189539;
  color: #fff;
  border-radius: 5px;
  font-size: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 15px;
}

#contact .info .item .header {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #2c3e50;
}

#contact .info .item .text {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #697886;
}

#contact .form input[type=text] {
  width: 100%;
  height: 44px;
  border: 1px solid #dad9d9;
  padding-left: 10px;
  outline: none;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#contact .form input[type=text]:focus {
  border: 1px solid #697886;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#contact .form textarea {
  width: 100%;
  border: 1px solid #dad9d9;
  padding: 8px;
  outline: none;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#contact .form textarea:focus {
  border: 1px solid #697886;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#contact .form button {
  width: 100%;
  height: 42px;
  border: none;
  outline: none;
  background-color: #778b9f;
  color: #fff;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#contact .form button:hover, #contact .form button:active {
  background: #2c3e50;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#offer .form .header h2 {
  font-family: "Lato", sans-serif;
  font-size: 30px;
  font-weight: 400;
  color: #2c3e50;
}

#offer .form .header p {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #697886;
}

#offer .form .item span {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #2c3e50;
  padding-top: 5px;
}

#offer .form .item input[type=text], #offer .form .item select {
  font-family: "Lato", sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #6b6969;
  height: 42px;
  outline: none;
  border: 1px solid #dad9d9;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  padding-left: 10px;
  background-color: #fff;
}

#offer .form .item input[type=text]:focus, #offer .form .item select:focus {
  border: 1px solid #697886;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#offer .form .item input[type=checkbox] {
  width: 20px;
  height: 20px;
  border: 1px solid #dad9d9 !important;
  outline: none;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-right: 10px;
}

#offer .form .item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#offer .form .item button {
  border: none;
  outline: none;
  background-color: #778b9f;
  color: #fff;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  padding: 10px 40px;
}

#offer .form .item button:hover, #offer .form .item button:active {
  background: #2c3e50;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
/*# sourceMappingURL=main.css.map */