* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/*Navbar*/

/* Navbar container */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background:rgb(255, 255, 255);
  padding: 15px 20px;
  padding-right: 10px;
}

/* Logotext */
.logotext1,.logotext2 {
  font-size: 2rem;
  font-weight: bold;
  text-align: left;
  display: inline-block;
  position: relative;
  top:-13px;
  left:120px;
  font-family: 'Gill Sans', 'Gill Sans MT', 'Calibri', 'Trebuchet MS', sans-serif;
}
.logotext1{
  color:rgba(19, 235, 29);
}
.logotext2{
  color:rgba(34, 46, 214);
}
/* Logo image */
.logopic{
  width: 40px;
  height: 40px;
  border-radius: 30%;
  overflow:hidden ;
  position: relative;
  left:120px;
  top:2px;

}

/* Desktop menu */
.nav-links {
  list-style: none;
  display: flex;
  
 
}

.nav-links li {
  margin-left: 20px;
  position:relative;
  border-radius: 40em;
  
  
}

.nav-links a {
  color:rgb(235, 236, 241);
  text-decoration: none;
  font-size: 18px;
  right: 120px;
}

.nav-links a:hover {
  color: hsl(38, 25%, 94%);
}

/* Hamburger menu icon */
.menu-icon {
  font-size: 28px;
  color: #3f3fd4;
  cursor: pointer;
  display: none;
  top:-16px;
 
}

.search-icon{
  display: flex;
  position: absolute;
  top:30px;
  align-items:inherit;
  margin-left:80px;
  cursor: pointer;

}



/*  Responsive (Mobile)  */
@media (max-width: 768px) {

  /* hide menu (mobile view) */
  .nav-links {
    position: absolute;
    top: 85px;
    right: 100%;
    background: rgba(255, 255, 255, 1); /* transparent */
    width: 100%;
    height:100%;
    flex-direction: column;
    text-align: center;
    /*align-content: left;*/
    padding: 20px;
    transition: 0.4s ease;
  }

  .nav-links li { 
    
    margin: 15px 0;
  
  }

  .nav-links.active {
    right: 0;
  }

  /* show hamburger */
  .menu-icon {
    display: block;
  }
    
}

/*hover for navlinks*/
ul li {
  list-style: none;
  padding: 10px 15px;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.3s;
  background:linear-gradient(45deg, #546bdf, #09a538);

}

ul li:hover {
  background: #dfe1e0;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #0575E6, #00F260);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #0575E6, #00F260); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: #fff;
  border-radius: 8px;
  border-radius: 40em;
}

.nav li:hover a {
    color: #2956c6
;}

.homeimg{
  width:250px;
  height:500px;
}

/* Hide radio buttons */
input {
  display: none;
}

/* Title Buttons */
label {
  display: inline-block;
  padding: 10px 20px;
  background: #222;
  color: rgb(255, 255, 255);
  margin: 5px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 18px;
}

/* Content (hidden by default) */
.content {
  display: none;
  padding: 20px;
  margin-top: 10px;
  background: #c15a5a;
  border-radius: 10px;
  font-size: 17px;
}

/* Show LEFT content */
#left:checked ~ .leftContent {
  display: block;
  background-color: #b1d0ee;
}

/* Show RIGHT content */
#right:checked ~ .rightContent {
  display: block;
  background-color: #afd5fc;
}

box {
  width: 300px;
}

.textbox {
  width: 25%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #7e2828;
  border-radius: 5px;
  display: flex;
}
  