* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Bai Jamjuree', sans-serif;
  line-height: 2rem;
  font-size: 18px;
  text-align: center;
  color: hsl(171, 66%, 44%);
}

a {
  text-decoration: none;
  display: block;
  margin-top: 20px;
  padding: 15px;
  background: black;
  border-radius: 25px;
  color: #ffffff;
  /* box-shadow: 0px 5px 5px 0px inherit; */
}

h1 {
  font-weight: 600;
  padding-bottom: 30px;
  color:  hsl(210, 10%, 33%);
}
li { list-style: none;}
/* Buttons */
.green { 
  background: hsl(171, 66%, 44%);
  box-shadow: 0px 2px 2px 0px hsl(171, 66%, 44%);
}

.blue {  
   background: hsl(233, 100%, 69%); 
   box-shadow: 0px 2px 2px 0px hsl(233, 100%, 69%);
}
.green:hover{
  color:  hsl(171, 66%, 44%);
  background: hsl(171, 66%, 90%);
}
.blue:hover {
  color: hsl(233, 100%, 69%);
  background: hsl(233, 100%, 90%);
}

.py-1 {padding: 20px;}
.py-2 {padding-top: 25px; padding-bottom: 25px;}

.mg-1 {
  margin-top: 70px;
  margin-bottom: 100px;
}
header .logo {
   background: url(/images/bg-header-mobile.png) no-repeat 100%;
   padding: 100px;
   display: grid;
   place-items: center;  
}

header .showcase {
  margin: auto;
}

header .showcase h1 {
  font-weight: 900;
  padding-bottom: 10px;
  font-size: 3rem;
}

/* MAIN AREA */

/*  SECTION 1*/
.section-1 {
  padding-top: 70px;
}

/* SECTION 2 */
.section-2 {
  margin-top: 10px;
}

.section-2 .image img {
  width: 100%;
}

.section-2 .box {
  margin-top: 40px;
}

/* SECTION 3 */
.section-3 {
   margin-top: 40px;
} 

.section-3 img {
  width: 100%;
  margin-top: 40px;
}
/* SECTION 4 */
.boxes {
  padding-top: 40px;  
}

.boxes .box img {
  padding: 50px;
}
/* SECTION 5 */
.section-5 {
 margin: 70px; 
} 
.section-5 .box-image {
  padding-top: 70px;
}
/* SECTION 6 */
.section-6 {
  padding-top: 70px;
  padding-bottom: 120px;
}

/* FOOTER */
footer {
  background: hsl(171, 66%, 90%);
}
footer .footer {
  padding: 50px;
}
footer .images ul {  padding-top: 30px;}

footer .images ul li {
  display: inline;
  margin-right: 40px;
}
footer .images ul li:last-child {margin-right: 0;}
footer ul li {
  padding-top: 30px;
}

@media(min-width:700px) {
  header .logo {
    background: url(/images/bg-header-desktop.png) no-repeat 100%;
    background-size: cover;
    padding: 120px;
  }
  .container {
    width: 60%;
    margin: auto;
  }
  a {
    display: inline;
    padding-left: 40px;
    padding-right: 40px;
    margin-left: 15px;
  }
  header .showcase {
    padding: 50px;
    padding-top: 0px;
  }
  .section-1 {
    margin-top: 70px;
    margin-bottom: 70px;
  }
  .section-2 {
    display: flex;
    padding: 0;
    margin-left: -50px;
    margin-bottom: 150px;
  }

  .section-2 .details {
    text-align: left;
    padding-left: 100px;
    max-width: 600px;
  }
  .section-4 {
    width: 90%;
    margin: auto;
    padding: 0px;
  }

  .section-4 .boxes {
    display: flex;
    justify-content: space-between;
    
  }
  .section-4 .boxes .box {
    padding: 20px;
    /* margin: auto; */
  }
  .section-5 {
      display: flex;
     justify-content: space-around; 
     width: 90%;
     margin: auto; 
     padding-bottom: 20px;
    
  }
  
  footer .footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: auto;
    padding: 20px;
  }

  footer .list {
    display: flex;
    justify-content: space-between;
    text-align: left;

  }
 footer .list .first-list, footer .list .second-list, footer .list .third-list {
   padding-left: 40px;
 }
}