.mainnavdiv
{
float: left;
width:100%;
display: Flex;
align-items: center;
justify-content: center;
background-color: yellow;
padding: 10px 0px 10px 0px;

}

.logodiv
{
margin-top: 0px;
 margin-right: 15px;
 margin-left: 5px;
padding: 0px 30px 0px 5px;
}



.floatleft
{
float: left;

}

.floatright
{
float: right;

}

.home-courses-button-div
{
display:block;
align-self: end;
justify-content: center;
margin-bottom: 0px;
 margin-right: 15px;
 margin-left: 5px;
}

.button {
 display: flex;
 height: 3em;
    min-width: 125px;
    max-width: 170px;
 align-items: center;
 justify-content: center;
 background-color: #eeeeee4b;
 border-radius: 5px;
 letter-spacing: 1px;
 transition: all 0.2s linear;
 cursor: pointer;
 border: none;
 background: #fff;
float: left;
margin-left:2px;
margin-right:2px;
}

.button > svg {
 margin-right: 5px;
 margin-left: 5px;
 font-size: 2px;
 transition: all 0.4s ease-in;
}

.button:hover > svg {
 font-size: 1.2em;
 transform: translateX(-5px);
}

.button:hover, button:focus {
 box-shadow: 9px 9px 33px #d1d1d1, -9px -9px 33px #ffffff;
 transform: translateY(-2px);
border-bottom: 5px solid red;
}

.InputContainer {
  height: 40px;
  width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(255, 255, 255);
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  padding-left: 15px;
 margin-right: 5px;
 margin-left: 5px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.075);
}

.input {
  width: 350px;
  height: 100%;
  border: none;
  outline: none;
  font-size: 0.9em;
  caret-color: rgb(255, 81, 0);
}

.labelforsearch {
  cursor: text;
  padding: 0px 12px;
}

.searchIcon {
  width: 13px;
}

.border {
  height: 40%;
  width: 1.3px;
  background-color: rgb(223, 223, 223);
}

.micIcon {
  width: 12px;
}

.micButton {
  padding: 0px 15px 0px 12px;
  border: none;
  background-color: transparent;
  height: 40px;
  cursor: pointer;
  transition-duration: .3s;
}

.searchIcon path {
  fill: rgb(114, 114, 114);
}

.micIcon path {
  fill: rgb(255, 81, 0);
}

.micButton:hover {
  background-color: rgb(255, 230, 230);
  transition-duration: .3s;
}

.dropbtndiv
{
margin-top: 0px;
 margin-right: 15px;
 margin-left: 5px;
padding: 0px 30px 0px 5px;
}

.dropbtn {
  background-color: #ffffff;
  color: black;
  padding: 4px;
  font-size: 11px;
  border: 1px;
  cursor: pointer;
  align-items: center;
  display: inline-flex;
  justify-content: center;
  letter-spacing: 1px;
border-radius:5px;
height: 40px;
}

.dropbtn > svg {
 margin-right: 2px;
 margin-left: 5px;
 font-size: 2px;
 transition: all 0.4s ease-in;
}

.dropbtn:hover > svg {
 font-size: 1.2em;
 transform: translateY(5px);
}


.dropbtn:hover, .dropbtn:focus {
 border-bottom: 5px solid red;
 box-shadow: 9px 9px 33px #d1d1d1, -9px -9px 33px #ffffff;
 transform: translateY(-2px);
}

#myInput {
  box-sizing: border-box;
  background-image: url('searchicon.png');
  background-position: 14px 12px;
  background-repeat: no-repeat;
  font-size: 16px;
  padding: 14px 20px 12px 45px;
  border: none;
  border-bottom: 1px solid #ddd;
}

#myInput:focus {outline: 3px solid #ddd;}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f6f6f6;
  min-width: 230px;
  overflow: auto;
  border: 1px solid #ddd;
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: flex;
}

.dropdown a:hover {background-color: #ddd;}

.show {display: block;}




.signupBtn {
  width: 120px;
  height: 40px;
  border-radius: 10px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 20px;
  gap: 9px;
  color: white;
  background: linear-gradient(to right,rgb(128, 128, 255),rgb(183, 128, 255));
  position: relative;
  cursor: pointer;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.212);
  margin-right: 0px;
}

.arrow {
  position: absolute;
  right: 7.5px;
  background-color: rgb(255, 255, 255);
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.signupBtn:hover .arrow {
  animation: slide-in-left 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes slide-in-left {
  0% {
    transform: translateX(-10px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

