
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Zen+Antique&display=swap");
 
* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}
.container {
    height: 100vh;
    width: 100%;
    background-image: url("./images/image.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
  }

  .navbar {
    width: 88%;
    margin: auto;
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
   
  .logo-wrap {
    /* display: flex; */
    align-items: center;
  }
   
  .logo {
    width: 64px;
    margin-right: 10px;
    cursor: pointer;
  }
   
  .logo-wrap h3 {
    font-weight: 400;
    font-size: 1.2rem;
    color: rgb(56, 61, 65);
  }
   
  .navbar ul li {
    list-style: none;
    display: inline-block;
    margin: 0 15px;
  }
   
  .navbar ul li a {
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: black;
  }
  .content {
    width: 100%;
    position: absolute;
    top: 30%;
  }
   
  .left-col {
    margin-left: 6%;
    display: inline-block;
  }
   
  .left-col h1 {
    font-size: 90px;
    color: white;
    line-height: 110px;
    float: left;
    text-shadow: 0px 5px 7px rgb(0, 0, 0, 0.6);
  }

  .left-col h4 {
    font-size: 1.8rem;
    line-height: 110px;
    /* color: white; */
    font-weight: bold;
    /* text-shadow: 0px 5px 7px rgb(0, 0, 0, 0.6); */
  }
   
  .right-col {
    margin-left: 6%;
    /* float: right; */
    /* margin-right: 23%; */
    margin-top: 10px;
    display: flex;
    align-items: center;
  }
   
  .right-col p {
    font-size: 18px;
    color: #000000;
    font-weight: 700;
    margin-right: 15px;
  }
   
  #icon {
    cursor: pointer;
    width: 80px;
  }

  
  @media (max-width: 520px) {

    .navbar ul {
      display: -webkit-inline-box;
    }

    .navbar ul li {
      float: left;
      padding: 0 0 0 20px;
      list-style: none;
      display: -webkit-inline-box;
      margin: 0;
    }


    .container {
        height: 100vh;
        width: 100%;
        background-image: url("./images/sp2-bg.jpg");
        background-size: cover;
        background-position: center;
        background:#ddd url("./images/sp2-bg.jpg") no-repeat center center;
        position: relative;
        background-size: cover;
      }
      
      body {
        content: "";
        width: 100vw;
        height: 100vh;
        /* background-color: blue; */
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: fixed;
        top: 0px;
        left: 0px;
        z-index: -1;
    }

    .content {
      width: 100%;
      position: absolute;
      top: 16%;
  }

  .left-col h1 {
    font-size: 65px;
    color: white;
    line-height: 70px;
    float: left;
    text-shadow: 0px 5px 7px rgb(0, 0, 0, 0.6);
}

.left-col h4 {
  font-size: 1.4rem;
  /* line-height: 110px; */
  /* color: white; */
  font-weight: bold;
  /* text-shadow: 0px 5px 7px rgb(0, 0, 0, 0.6); */
}

.right-col {
  margin-left: 6%;
  /* float: right; */
  /* margin-right: 23%; */
  /* margin-top: 10px; */
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin-top: 100px;
}

.logo-wrap h3 {
  font-weight: 400;
  font-size: 1rem;
  color: rgb(56, 61, 65);
}
}