.section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  padding-right: 50px;
  padding-left: 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url('../images/Webbado-Banner-Website-design-in-process-background.jpg');
  background-position: 50% 0%;
  background-size: cover;
  background-repeat: no-repeat;
}

.column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.column-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.heading {
  margin-top: 100px;
  margin-bottom: 20px;
  font-family: Raleway, sans-serif;
  font-size: 100px;
  font-weight: 700;
}

.heading-2 {
  margin-top: 15px;
  font-family: Mako, sans-serif;
  font-size: 80px;
}

.image {
  width: 250px;
}

.paragraph {
  margin-top: 50px;
  margin-bottom: 25px;
  font-family: Mako, sans-serif;
  font-size: 30px;
  line-height: 40px;
  text-align: center;
}

.columns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.image-2 {
  height: 550px;
}

.button {
  border-radius: 5px;
  background-color: #0013e4;
  box-shadow: 0 0 10px 2px hsla(0, 0%, 51.1%, 0.73);
  -webkit-transition: all 475ms ease;
  transition: all 475ms ease;
  font-family: Raleway, sans-serif;
  font-weight: 600;
}

.button:hover {
  box-shadow: none;
}

@media screen and (max-width: 991px) {
  .section {
    height: auto;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .column-2 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .columns {
    display: block;
  }
  .button {
    padding-top: 25px;
    padding-bottom: 25px;
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .button {
    text-align: center;
  }
}

@media screen and (max-width: 479px) {
  .section {
    padding-bottom: 0px;
  }
  .heading {
    margin-top: 60px;
    margin-bottom: 10px;
    font-size: 60px;
  }
  .heading-2 {
    margin-top: 0px;
    font-size: 40px;
  }
  .paragraph {
    margin-top: 25px;
    font-size: 25px;
    line-height: 30px;
  }
  .image-2 {
    height: 350px;
  }
  .button {
    padding-top: 5px;
    padding-bottom: 5px;
    line-height: 25px;
  }
}

