* {
  font-family: "Montserrat", serif;
}

/* body { border: 1px solid red !important; } */

html, body {
  margin: 0;
  padding: 0;
}

html {
  height:100%;
}

body {
  min-height: 100%;
}

.main-container {
  height: calc(100vh - 200px);
  background-color: #000000;
}

.main-container .logo-small {
  position: absolute;
  top: 30px;
  left: 50px;
  z-index: 1000;
}

.container1 {
  position: absolute;
  background-image: url('img/decopro_001.jpg');
  display: flex;
  height: calc(100% - 200px);
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0;
  transition-property: opacity;
  transition-duration: .5s;
  transition-timing-function: ease-in-out;
}

.container1.active {
  opacity: 1;
}

.container2 {
  position: absolute;
  display: flex;
  height: calc(100% - 200px);
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0;
  transition-property: opacity;
  transition-duration: .5s;
  transition-timing-function: ease-in-out;
}

.container2.active {
  opacity: 1;
}

.footer {
  height: 200px;
  background-color: #ffffff;
  overflow: hidden;
}

.footer-table {
  display: flex;
}

.footer-col {
  box-sizing: border-box;
  height: 200px;
  padding: 60px 50px 30px 50px;
}

.footer-col1 {
  width: 40%;
}

.footer-col1 .footer-logo {
  width: 250px;
}

.footer-col2 {
  padding-top: 90px;
  text-align: center;
  width: 20%;
}

.footer-col2 .contact {
  display: inline-block;
  text-align: left;
}

.footer-col2 a {
  display: inline-block;
  clear: both;
  color: #000000;
  font-weight: 700;
  font-size: 20px;
  text-decoration: none;
}

.footer-col3 {
  padding-top: 85px;
  text-align: right;
  width: 40%;
}

.footer-col3 .footer-col-wrapper {
  display: inline-block;
  text-align: left;
}

.footer-col3 .social {
  font-size: 12px;
  font-weight: 700;
}

.footer-col3 .adres {
  margin-top: 10px;
  font-size: 10px;
}

@media (max-width: 1200px) {
  .main-container {
    height: calc(100vh - 420px);
  }

  .main-container .logo-small {
    width: 60px;
  }

  .container1 {
    height: calc(100vh - 420px);
  }

  .container2 {
    height: calc(100vh - 420px);
  }

  .footer {
    height: 420px;
  }

  .footer-table {
    display: block;
  }

  .footer-col {
    width: 100%;
    height: auto;
    text-align: center;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-col2 {
    padding-top: 10px;
  }

  .footer-col2 .contact {
    text-align: center;
  }

  .footer-col3 {
    padding-top: 10px;
  }

  .footer-col3 .footer-col-wrapper {
    text-align: center;
  }
}