/* Global styles */
* {
    box-sizing: border-box;
   }
  /* Global style closed */

   /* General Styles */
   body {
    color: hsl(192, 100%, 9%);
    font-family: 'Open Sans', sans-serif;
    font-size: 1.15em;
    margin: 0;
   }
   h1,
   h2 {
    font-family: 'Poppins', sans-serif;
   }
   p {
    opacity: 0.6;
   }
   img {
    max-width: 100%;
   }
   .btn {
    border-radius: 50px;
    background-color: #fff;
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    font-size: 10px;
    font-weight: 700;
    padding: 5px 5px;
   }
   .btn-primary {
    background-color: hsl(322, 100%, 66%);
    color: #fff;
   }

   .container {
    padding: 0 2px;
    margin: 0 auto;
    max-width: 100%;
    width: 1000px;
   }
   .center {
    text-align:center;
   }
   .flex {
    display: flex;
    align-items: center;
   }
   .flex > div,
   .flex > ul {
    flex: 1;
   }
   .align-start {
    align-items: flex-start;
   }

  
  /* General styles closed */

   /* Header styles */
   header {
    background-image: url('./images/bg-hero-desktop.svg');
    background-size:contain;
    background-position: center center;
    background-color: hsl(193, 100%, 96%);
    padding: 5px 0;
   }
   nav {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
   }
   .header-img {
    margin-left: 10%;
    width: 80%;
   }
   /* Header styles closed */

   /* box styles */
   .box {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    margin: 40px 0;
    padding: 20px;
   }
    .box img {
    width: 80%;
   }

   .small-box {
    display: inline-block;
    position:relative;
    margin-bottom: -50%;
    z-index: 1;
   }
   /* box styles closed */
  
   /* Footer styles */
   footer {
    background-color: hsl(192, 100%, 9%);
    color: #fff;
    padding: 150px 0 40px;
   }
   footer ul {
    list-style-type: none;
   }
   footer ul li {
    margin-bottom: 20px;
   }
   footer .social-media {
    display: flex;
    align-items: center;
    justify-content: center;
   }
   footer .circle {
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    height: 30px;
    width: 30px;
    text-decoration: none;
   }
   footer .copyright {
    text-align: right;
   }
   .footer-img{
    margin-right: 20px;
   }
   .footer-contact{
    display: flex;
    flex-direction: column;
    margin-top: 18px;
   }

   .footer-info{
    display: flex;
    flex-direction: row;
    margin-bottom: 30px;
   }

   .footer-info .svg{
    margin-right: 40px;
   }
   /* Footer styles closed */

   /* mobile view styles */
   @media screen and (max-width: 768px) {
    body {
     text-align: center;
     font-size: 10px;
    }
   nav.flex {
     flex-direction: row;
    }
   .header-img {
     margin-top: 20px;
     margin-left: 0;
     width: 100%;
    }
   .flex {
     flex-direction: column;
    }
   .box-reverse-mobile {
     flex-direction: column-reverse;
    }
   footer ul {
     padding: 0;
     width: 100%;
    }
   footer p {
     text-align: center;
    }
  }    
  /* Mobile view styles closed */