@import url('https://fonts.googleapis.com/css?family=Poppins:400,700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Courgette&display=swap');
@import url('https://fonts.googleapis.com/css?family=IM+Fell+Double+Pica:400i&display=swap');


*{
    box-sizing: border-box;
    margin:0;
    padding:0;
    font-family: 'Poppins',sans-serif;
  }
  a,button{
    text-decoration: none
  }
  
  .header{
    position: fixed;
    top: 0;
    left:0;
    width: 100%;
    height:13vh;
    background-color:#5ac0a9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0 15px 5%;
    z-index: 8555;
  }
  .header .logo{
    width: 70px;
    border-radius: 10px;
    height: auto;
    cursor: pointer;
    font-family: 'Poppins';
    font-size: 25px;
    }
  .header ul{
    margin:0px;
    padding: 0px;
    list-style: none;
        }
  .header li{
    font-weight:500;
    font-size:15px;
    color:#edf0f1;
    text-decoration: none;
  }
  nav{
    margin-right: 15%;
  }
  @media(max-width:900px){
    nav{
      display:none;
    }
  }
  .navlinks{
    list-style: none;
  }
  .navlinks li{
    cursor: pointer;
    position: relative;
    float: left;
    width:90px;
    height:40px;
    line-height: 40px;
    text-align: center;
    font-size: 20px;
    margin-right:10px;
    z-index: 5;
    color: black;
  }
  .nav-scrolled{
    background-color: white;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
  }
  .navlinks li a{
    color:black;
    font-size: 20px;
  }
  .navlinks li ul li a{
    color:black;
  }
  ul li ul li{
    display : none;
  }
  ul li:hover ul li{
    background-color: white;
    width:180px;
    display:block;
  }
  ul li ul li:hover{
      background-color: #92dbca;
  }
  .sidebar {
    height: 100%;
    width: 0;
    position:fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: 60px;
  }
  .sidebar a{
    padding: 8px 8px 8px 32px;
    font-size: 25px;
    text-decoration: none;
    color: #818181;
    display: block;
    transition: 0.3s;
  }
  .sidebar a:hover {
    color: #f1f1f1;
  }
  .sidebar .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
  }
  .openbtn {
    font-size: 20px;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 50%;
    border: none;
  }
  .openbtn:hover{
    background-color: #444;
    border-radius: 50%;
  }
  .openbtn:visited{
    background-color: #FFFFFF;
    border-radius: 50%;
  }
  #main {
    padding: 16px;
    display: none;
  }
  @media(max-width:900px) {
    #main{
      display: block;
    }
  }
  

  .feel-container{
    padding-top: 30px;
  }
  .feel-container{
    background-color: #edffea;
    width: 100%;
    height: auto;
    text-align: center;
    padding-bottom: 20px;
  }
  .feel-container h1{
    padding-top: 20px;
  }
  .feel-container .secondary_heading {
    /* margin-left: 100px; */
    justify-content: center;
    align-items: center;
    font-family: Courgette;
    font-weight: 300;
    font-size: 20px;
    color: red;
    }
  .feel-container h3{
    margin-top: 20px;
    font-size: 20px;
    margin-bottom: 15px;
  }
  .feel-container p{
    margin-bottom: 15px;
  }
  .two_image{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .two_image h3{
    display: block;
    text-align: center;
  }
  .feel_image{
    width: 30%;
    height: auto;
    margin-right: 20px;
  }
  .feel_image img{
    width: 100%;
    height: 300px;
  }
  .arr{
    width: 3%;
    height: auto;
    margin-right: 1%;
    text-align: center;
  }
  @media(max-width:800px){
  .two_image{
    display: block;
  }
  .feel_image{
    text-align: center;
    width: 80%;
    margin: auto;
  }
  .feel-container h3{
    font-size: 20px;
    text-align: center;
    }
  .arr{
    display: none;
  }
  }
  