* {
  margin: 0px;
  padding: 0px;
  /* font-family: "Roboto", Arial, Tahoma, sans-serif; */
  font-family: "Spinnaker", sans-serif;
}

/* Header and Nav */
header {
  position: fixed;
  width: 100%;
  height: 160px;
  background-color: white;
}

nav {
  /* max-width: 1024px; */
  margin: 0 auto;
}

header img {
  padding: 18px 10px;
}

nav ul {
  float: right;
  list-style: none;
  text-align: center;
  vertical-align: top;
  margin: 0 10px;
}

nav li {
  list-style-type: none;
  display: inline;
}

nav li a {
  font-size: 16px;
  text-decoration: none;
  line-height: 70px;
  padding: 15px 40px;
  color: black;
  background-color: white;
  /* border: 1px solid grey; */
}

nav li a:hover {
  color: red;
  text-decoration: none;
}

/* drop menu */

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  width: 285px;
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 285px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  /* padding: 12px 16px; */
  line-height: 20px;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
  /* Smooth transition for color change */
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
  /* Background color change on hover */
  color: #ff5733;
  /* Text color change on hover */
}

.dropdown:hover .dropdown-content {
  display: block;
}


@media only screen and (max-width: 1110px) {
  .dropdown-content {
    left: 50px
  }
}

/* end drop  menu */


.ul_media li {
  display: inline;
  list-style-type: none;
}

.ul_media li a {
  text-decoration: none;
}

.footer {
  /* height: 150px; */
  background-color: black;
  color: white;
  text-align: center;
}

.footer div {
  color: white;
  font-size: 16px;
  margin: 25px 0;
}

.footer a {
  text-decoration: none;
}


/* menu mob */
.for-tab {
  display: none;
}

.for-mob {
  display: none;
}

.for-desk {
  display: block;
}

.hide-mob {
  display: block;
}

@media only screen and (max-width:1010px) {

  .for-desk {
    display: none;
  }

  .for-mob {
    display: none;
  }

  .for-tab {
    display: block;
  }

  .mainul {
    display: none;
  }
}

@media only screen and (max-width:767px) {
  .for-desk {
    display: none;
  }

  .for-tab {
    display: none;
  }

  .for-mob {
    display: block;
  }

  .hide-mob {
    display: none;
  }
}



/*CSS For Confirm Box*/
#confirmBox {
  display: none;
  background-color: #eee;
  border-radius: 5px;
  border: 1px solid #aaa;
  position: fixed;
  width: 300px;
  left: 50%;
  margin-left: -150px;
  padding: 6px 8px 8px;
  box-sizing: border-box;
  text-align: center;
  z-index: 999;
}

#confirmBox button {
  background-color: #ccc;
  display: inline-block;
  border-radius: 3px;
  border: 1px solid #aaa;
  padding: 2px;
  text-align: center;
  width: 80px;
  cursor: pointer;
}

#confirmBox button:hover {
  background-color: #ddd;
}

#confirmBox .message {
  text-align: left;
  margin-bottom: 8px;
}

/*CSS For Confirm Box End*/
.mob-mnu {
  margin: 10px 0 0 10px;
}

@media only screen and (max-width: 1010px) {
  .mob-mnu {
    float: right;
    margin: 15px 10px 0;
  }
}

.has-error {
  border: 2px solid #ff0000 !important;
}

.no-error {
  border: 2px solid #21c700 !important;
}