/* css to reset all the designs */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,500;1,400&display=swap');
/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');



/* NAVBAR MENU */
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'poppins', sans-serif;
	color: #444;
}
body{
	align-items: center;
	justify-content: center;
}

html {
  font-size: 62.5%;
  font-family: 'Roboto', sans-serif;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

/* css to reset all the designs */

/* add styles on elements */

.header {
  border-bottom: 1px solid #00A4CC;
  background-color: #00A4CC;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.5rem;
}

.hamburger {
  display: none;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  /* background-color: #101010; */
  background-color: #fff;
}

.nav-logo {
  margin-left: 5rem;
}

.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 7rem;
  z-index: 1000;
}

.nav-item {
  margin-left: 5rem;
}

.nav-link {
  /* font-size: 1.6rem; */
  font-size: 2rem;
  font-weight: 400;
  /* color: #475569; */
  color: #ffffff;
  /* change */
}

.nav-link:hover {
  color: black;
}

.nav-logo {
  /* font-size: 2.1rem; */
  font-size: 3rem;
  font-weight: 500;
  /* color: #482ff7; */
  color: #ffffff;
}

@media only screen and (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 5rem;
    flex-direction: column;
    /* background-color: #fff; */
    background-color: #222;
    width: 100%;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
  }

  .nav-link {
    color: #fff;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 2.5rem 0;
  }

  .hamburger {
    display: block;
    cursor: pointer;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}


/* CONTACT CSS */
.container{
	background-color: white;
	border-radius: 5px;
	padding: 30px;
	width: 450px;
  align-items: center;
  margin: 0 auto;
  justify-content: center;
}
.container p{
	margin: 20px 0;
}
form div{
	display: flex;
	justify-content: space-between;
	gap: 5px;
}
span input{
	width: 100%;
	padding: 10px;
	margin: 5px 0 20px 0;
	background-color: #eee;
	border: none;
	outline: none;
}
textarea{
	width: 100%;
	padding: 10px;
	margin-top: 5px;
	background-color: #eee;
	border: none;
	outline: none;
}
button{
	background-color: #e53653;
	padding: 10px 30px;
	border-radius: 5px;
	color: white;
	border: none;
	margin-top: 20px;
}
button:hover{
	background-color: #a20d26;
	cursor: pointer;
}



/* footer */
.footer{
    background:#000;
    padding:30px 0px;
    font-family: 'Play', sans-serif;
    text-align:center;
    }
    
    .footer .row{
      width:100%;
      margin:1% 0%;
      padding:0.6% 0%;
      color:gray;
      font-size:1.5rem;
      
      }
      
      .footer .row a{
      text-decoration:none;
      color:gray;
      transition:0.5s;
      margin: 0 1rem 0 1rem;
      }
      
    .footer .row a:hover{
    color:#482ff7;
    }
    
    .footer .row ul{
    width:100%;
    }
    
    .footer .row ul li{
    display:inline-block;
    margin:0px 30px;
    }
    
    .footer .row a i{
    font-size:2em;
    margin:0% 1%;
    }
    
    @media (max-width:720px){
    .footer{
    text-align:left;
    padding:5%;
    }
    .footer .row ul li{
    display:block;
    margin:10px 0px;
    text-align:left;
    }
    .footer .row a i{
    margin:0% 3%;
    }
    }