/*==================== General Settings ====================*/
@font-face {
  src: url(./fonts/graphik/Graphik-Semibold.ttf);
  font-family: graphik-semibold;
}
@font-face {
  src: url(./fonts/graphik/Graphik-Regular.ttf);
  font-family: graphik-regular;
}
@font-face {
  src: url(./fonts/baloo/balooregular.ttf);
  font-family: logo;
}/*======================================================================*/

html, body {
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
}/*======================================================================*/

/* -- Overlay -- */
.overlay {
  height: 0%;
  width: 100%;
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  background-color: white;
  overflow-y: hidden;
  transition: 0.4s;
}
.overlay-content {
  font-family: graphik-semibold;
  font-size: 6vh;
  position: relative;
  top: 30%;
  width: 100%;
  text-align: center;
}
.overlay a {
  padding: 8px;
  text-decoration: none;
  color: black;
  display: block;
  transition: 0.3s;
}
.overlay a:hover, .overlay a:focus {
  color: grey;
}
.overlay .closebtn {
  position: absolute;
  color: black;
  font-size: 4vw;
  top: 1%;
  left: 93.5%;
}
#burger_menu{
  position: absolute;
  cursor: pointer;
  font-size: 5vh;
  top: 0.5%;
  left: 90%;
  color: black;
  display: none;
}/*======================================================================*/
/*======================================================================*/
/*============================== (Header) ==============================*/

.header{
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.header li{
  float: right;
  font-family: graphik-semibold;
  font-size: 18px;
}
.header li a{
  display: block;
  color: black;
  text-align: center;
  padding: 25px 25px;
  text-decoration: none;
}
.header li a:hover{
  color: grey;
}
#logo{
  float: left;
  font-family: logo;
  font-size: 40px;
  padding-left: 40px;
}
#logo a{
  text-decoration: none;
}
#logo a:link{
  color: black
}
#logo a:visited{
  color: black
}
#logo a:hover{
  color: black;
}
#logo a:active{
  color: black
}
#burger-logo{
  color: black;
  position: absolute;
  float: left;
  font-family: logo;
  font-size: 40px;
  padding-left: 32px;
}/*======================================================================*/

.hero {
  width: 100vw;
  height: 70vh;
  overflow: hidden;
  position: relative;
}
#nav-section{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 2;
}
#hero-text{
  width: 100%;
  max-width: 70%;
  height: inherit;
  position: absolute;
  top: 25%;
  left: 5%;
  z-index: 2;
  font-family: graphik-semibold;
  color: black;
  font-size: 6vw;
}


@media (max-width: 1000px) {
  #hero-text{
    left: 15%;
    font-size: 6.5vw;
    top: 30%;
  }
}/*======================================================================*/
@media (orientation: portrait){
  #hero-text{
    left: 10%;
    font-size: 6.5vh;
    max-width: 80%;
  }
  #logo{
    padding-left: 20px;
  }
}/*======================================================================*/
@media (max-width: 780px){
  .header{
    display: none;
  }
  #burger_menu{
    display: block;
  }
  .overlay .closebtn {
  font-size: 5vh;
  top: 0.4%;
  left: 90%;
  }
}/*======================================================================*/
@media (max-width: 400px){
  .hero {
    height: 70vh;
  }
  #burger_menu{
    font-size: 5vh;
    top: 0.4%;
    left: 86%;
  }
  .overlay .closebtn {
  font-size: 5vh;
  top: 0.4%;
  left: 86%;
  }
  #hero-text{
    top: 20%;
  }
}
/*======================================================================*/
/*======================================================================*/
/*=============================== (Row 1) ==============================*/

.row1{
  width: 100vw;
  height: 40vh;
  position: relative;
}
.row1-left{
  position: relative;
  width: 50%;
  height: 100%;
  float: left;
}
.row1-right{
  position: relative;
  width: 50%;
  height: 100%;
  float: right;
}
.row1-left-container{
  position: absolute;
  width: 90%;
  height: 90%;
  top: 5%;
  bottom: 5%;
  right: 2.5%;
  left: 7.5%;
  border-style: solid;
  border-width: 1.5px;
  border-radius: 5px;
  overflow: hidden;
}
.row1-left-container:hover{
  border-color: rgba(0, 0, 0, 0.2);
  color: rgba(0, 0, 0, 0.8);
  transition: 0.2s;
}
.row1-right-container{
  position: absolute;
  width: 90%;
  height: 90%;
  top: 5%;
  bottom: 5%;
  right: 7.5%;
  left: 2.5%;
  border-style: solid;
  border-width: 1.5px;
  border-radius: 5px;
  overflow: hidden;
}
.row1-right-container:hover{
  border-color: rgba(0, 0, 0, 0.2);
  color: rgba(0, 0, 0, 0.8);
  transition: 0.2s;
}

.row1 a{
}
.row1 a:link{
  color: black;
}
.row1 a:hover{
  color: black;
}
.row1 a:visited{
  color: black;
}
.row1 a:active{
  color:black;
}

.service-title{
  font-family: graphik-semibold;
  font-size: 2.5vw;
  position: relative;
  left: 5%;
  top: 8%;
  margin: 0;
  max-width: 80%;
}
.service-description{
  font-family: graphik-regular;
  position: relative;
  left: 5%;
  top: 8%;
  max-width: 80%;
  line-height: 1.3;
}

@media (orientation: portrait){
  .row1{
    width: 100vw;
    height: 80vh;
    position: relative;
  }
  .row1-left{
    position: relative;
    width: 100%;
    height: 50%;
    float: left;
  }
  .row1-right{
    position: relative;
    width: 100%;
    height: 50%;
    float: left;
  }
  .service-title{
    font-size: 3vh;
    left: 5%;
    top: 5%;
    margin: 0;
    max-width: 80%;
  }
  .service-description{
    left: 5%;
    top: 5%;
    max-width: 80%;
  }
  .row1-left-container{
    right: 5%;
    left: 5%;
  }
  .row1-right-container{
    right: 5%;
    left: 5%;
  }
}
@media (max-width: 500px){
  .row1{
    width: 100vw;
    height: 80vh;
    position: relative;
  }
  .row1-left{
    position: relative;
    width: 100%;
    height: 50%;
    float: left;
  }
  .row1-right{
    position: relative;
    width: 100%;
    height: 50%;
    float: left;
  }
  .service-title{
    font-size: 3.5vh;
    left: 5%;
    top: 5%;
    margin: 0;
    max-width: 80%;
  }
  .service-description{
    left: 5%;
    top: 5%;
    max-width: 80%;
  }
}

/*======================================================================*/
/*======================================================================*/
/*=============================== (Row 2) ==============================*/

.row2{
  width: 100vw;
  height: 40vh;
  position: relative;
  padding-bottom: 2%;
}
.row2-left{
  position: relative;
  width: 50%;
  height: 100%;
  float: left;
}
.row2-right{
  position: relative;
  width: 50%;
  height: 100%;
  float: right;
}
.row2-left-container{
  position: absolute;
  width: 90%;
  height: 90%;
  top: 5%;
  bottom: 5%;
  right: 2.5%;
  left: 7.5%;
  border-style: solid;
  border-width: 1.5px;
  border-radius: 5px;
  overflow: hidden;
}
.row2-left-container:hover{
  border-color: rgba(0, 0, 0, 0.2);
  color: rgba(0, 0, 0, 0.8);
  transition: 0.2s;
}
.row2-right-container{
  position: absolute;
  width: 90%;
  height: 90%;
  top: 5%;
  bottom: 5%;
  right: 7.5%;
  left: 2.5%;
  border-style: solid;
  border-width: 1.5px;
  border-radius: 5px;
  overflow: hidden;
}
.row2-right-container:hover{
  border-color: rgba(0, 0, 0, 0.2);
  color: rgba(0, 0, 0, 0.8);
  transition: 0.2s;
}

.row2 a{
}
.row2 a:link{
  color: black;
}
.row2 a:hover{
  color: black;
}
.row2 a:visited{
  color: black;
}
.row2 a:active{
  color:black;
}

@media (orientation: portrait){
  .row2{
    width: 100vw;
    height: 80vh;
    position: relative;
  }
  .row2-left{
    position: relative;
    width: 100%;
    height: 50%;
    float: left;
  }
  .row2-right{
    position: relative;
    width: 100%;
    height: 50%;
    float: right;
  }
  .service-title{
    font-size: 3.5vh;
    left: 5%;
    top: 5%;
    margin: 0;
    max-width: 80%;
  }
  .service-description{
    left: 5%;
    top: 5%;
    max-width: 80%;
  }
  .row2-left-container{
    right: 5%;
    left: 5%;
  }
  .row2-right-container{
    right: 5%;
    left: 5%;
  }
}
@media (max-width: 500px){
  .row2{
    width: 100vw;
    height: 80vh;
    position: relative;
  }
  .row2-left{
    position: relative;
    width: 100%;
    height: 50%;
    float: left;
  }
  .row2-right{
    position: relative;
    width: 100%;
    height: 50%;
    float: right;
  }
  .service-title{
    font-size: 3.5vh;
    left: 5%;
    top: 5%;
    margin: 0;
    max-width: 80%;
  }
  .service-description{
    left: 5%;
    top: 5%;
    max-width: 80%;
  }
}

/*======================================================================*/
/*======================================================================*/
/*=============================== (Row 3) ==============================*/

.row3{
  width: 100vw;
  height: 40vh;
  position: relative;
}
.row3-left{
  position: relative;
  width: 50%;
  height: 100%;
  float: left;
}
.row3-right{
  position: relative;
  width: 50%;
  height: 100%;
  float: right;
}
.row3-left-container{
  position: absolute;
  width: 90%;
  height: 90%;
  top: 5%;
  bottom: 5%;
  right: 2.5%;
  left: 7.5%;
  border-style: solid;
  border-width: 1.5px;
  border-radius: 5px;
  overflow: hidden;
}
.row3-left-container:hover{
  border-color: rgba(0, 0, 0, 0.2);
  color: rgba(0, 0, 0, 0.8);
  transition: 0.2s;
}
.row3-right-container{
  position: absolute;
  width: 90%;
  height: 90%;
  top: 5%;
  bottom: 5%;
  right: 7.5%;
  left: 2.5%;
  border-style: solid;
  border-width: 1.5px;
  border-radius: 5px;
  overflow: hidden;
}
.row3-right-container:hover{
  border-color: rgba(0, 0, 0, 0.2);
  color: rgba(0, 0, 0, 0.8);
  transition: 0.2s;
}

.row3 a{
}
.row3 a:link{
  color: black;
}
.row3 a:hover{
  color: black;
}
.row3 a:visited{
  color: black;
}
.row3 a:active{
  color:black;
}

@media (orientation: portrait){
  .row3{
    width: 100vw;
    height: 80vh;
    position: relative;
  }
  .row3-left{
    position: relative;
    width: 100%;
    height: 50%;
    float: left;
  }
  .row3-right{
    position: relative;
    width: 100%;
    height: 50%;
    float: right;
  }
  .service-description{
    left: 5%;
    top: 5%;
    max-width: 80%;
  }
  .row3-left-container{
    right: 5%;
    left: 5%;
  }
  .row3-right-container{
    right: 5%;
    left: 5%;
  }
}
@media (max-width: 500px){
  .row3{
    width: 100vw;
    height: 80vh;
    position: relative;
  }
  .row3-left{
    position: relative;
    width: 100%;
    height: 50%;
    float: left;
  }
  .row3-right{
    position: relative;
    width: 100%;
    height: 50%;
    float: right;
  }
  .service-title{
    font-size: 3.5vh;
    left: 5%;
    top: 5%;
    margin: 0;
    max-width: 80%;
  }
  .service-description{
    left: 5%;
    top: 5%;
    max-width: 80%;
  }
}
/*======================================================================*/
/*======================================================================*/
/*=============================== (Row 4) ==============================*/

.row4{
  width: 100vw;
  height: 40vh;
  position: relative;
  padding-bottom: 2%;
}
.row4-left{
  position: relative;
  width: 50%;
  height: 100%;
  float: left;
}
.row4-right{
  position: relative;
  width: 50%;
  height: 100%;
  float: right;
}
.row4-left-container{
  position: absolute;
  width: 90%;
  height: 90%;
  top: 5%;
  bottom: 5%;
  right: 2.5%;
  left: 7.5%;
  border-style: solid;
  border-width: 1.5px;
  border-radius: 5px;
  overflow: hidden;
}
.row4-left-container:hover{
  border-color: rgba(0, 0, 0, 0.2);
  color: rgba(0, 0, 0, 0.8);
  transition: 0.2s;
}
.row4-right-container{
  position: absolute;
  width: 90%;
  height: 90%;
  top: 5%;
  bottom: 5%;
  right: 7.5%;
  left: 2.5%;
  border-style: solid;
  border-width: 1.5px;
  border-radius: 5px;
  overflow: hidden;
}
.row4-right-container:hover{
  border-color: rgba(0, 0, 0, 0.2);
  color: rgba(0, 0, 0, 0.8);
  transition: 0.2s;
}

.row4 a{
}
.row4 a:link{
  color: black;
}
.row4 a:hover{
  color: black;
}
.row4 a:visited{
  color: black;
}
.row4 a:active{
  color:black;
}

@media (orientation: portrait){
  .row4{
    width: 100vw;
    height: 80vh;
    position: relative;
  }
  .row4-left{
    position: relative;
    width: 100%;
    height: 50%;
    float: left;
  }
  .row4-right{
    position: relative;
    width: 100%;
    height: 50%;
    float: right;
  }
  .service-title{
    font-size: 3.5vh;
    left: 5%;
    top: 5%;
    margin: 0;
    max-width: 80%;
  }
  .service-description{
    left: 5%;
    top: 5%;
    max-width: 80%;
  }
  .row4-left-container{
    right: 5%;
    left: 5%;
  }
  .row4-right-container{
    right: 5%;
    left: 5%;
  }
}
@media (max-width: 500px){
  .row4{
    width: 100vw;
    height: 80vh;
    position: relative;
  }
  .row4-left{
    position: relative;
    width: 100%;
    height: 50%;
    float: left;
  }
  .row4-right{
    position: relative;
    width: 100%;
    height: 50%;
    float: right;
  }
  .service-title{
    font-size: 3.5vh;
    left: 5%;
    top: 5%;
    margin: 0;
    max-width: 80%;
  }
  .service-description{
    left: 5%;
    top: 5%;
    max-width: 80%;
  }
}

/*======================================================================*/
/*======================================================================*/
/*============================== Section 2 =============================*/

.section2{
  width: 100vw;
  height: 60vh;
  float: left;
  overflow: hidden;
  position: relative;
  background-color: #F6F6F6;
}
.sec2-container{
  width: 80%;
  height: 80%;
  position: absolute;
  left: 10%;
  right: 10%;
  top: 10%;
  bottom: 10%;
  font-family: graphik-semibold;
  text-align: center;
}
#sec2-title{
  padding-top: 1%;
  font-size: 5vw;
  margin-bottom: 0;
  position: relative;
}
#sec2-subtitle{
  font-size: 1.5vw;
  padding-right: 15%;
  padding-left: 15%;
  position: relative;
}
#sec2-button{
  background-color: black;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-family: graphik-semibold;
  font-size: 1.2vw;
  transition-duration: 0.2s;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  margin-top: 2.5%;
}
#sec2-button:hover{
  background-color: #939393;
  color: white;
}
@media (orientation: portrait){
  .section2{
    height: 50vh;
  }
  #sec2-title{
    padding-top: 0%;
    font-size: 4.2vh;
    top: -10%;
  }
  #sec2-subtitle{
    padding-top: 0%;
    top: -7%;
    font-size: 2.5vh;
  }
  #sec2-button{
    font-size: 2vh;
    margin-top: 0%;
  }

  .sec2-container{
    width: 90%;
    height: 80%;
    position: absolute;
    left: 5%;
    right: 5%;
  }
}
/*======================================================================*/
/*======================================================================*/
/*=============================== Footer ===============================*/

.footer{
  width: 100vw;
  height: 40vh;
  float: left;
  background-color: black;
  overflow: hidden;
  position: relative;
}

.footer-logo{
  font-family: logo;
  float: left;
  position: relative;
  width: 20%;
  height: 70%;
}

#footer-logo{
  color: white;
  font-size: 4vw;
  margin: 0;
  position: relative;
  left: 15%;
}

.footer-links{
  font-family: logo;
  float: right;
  position: relative;
  width: 80%;
  height: 70%;
}
.footer-links a{
  text-decoration: none;
}
.footer-links a:link{
  color: white;
}
.footer-links a:visited{
  color: white;
}
.footer-links a:hover{
  text-decoration: underline;
}
.footer-links a:active{
  color: black;
}
#footer-links{
  color: white;
  text-align: right;
  font-family: graphik-regular;
  position: relative;
  line-height: 35px;
  top: 10%;
  right: 6%;
}

.footer-copy{
  float: left;
  position: relative;
  width: 100%;
  height: 30%;
}
#footer-copy{
  color: grey;
  font-size: 1vw;
  margin-left: 5%;
  text-align: right;
  font-family: graphik-regular;
  position: relative;
  right: 5%;
}
@media (orientation: portrait){
  #footer-logo{
    font-size: 5vh;
    position: relative;
    left: 25%;
  }
  #footer-copy{
    font-size: 1.7vh;
  }
}
