@import url('https://fonts.googleapis.com/css2?family=Nunito&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: 'Nunito', sans-serif;
    box-sizing: border-box;
}

.top-bar {
    background: #51383847;

    color: rgb(255, 255, 255);
    padding: 10px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-size: 14px;
}
 

.new_one{
  height: 60px;
}

.container{
	max-width: 1170px;
	margin:auto;

}
ul{
	list-style: none;
	margin:0;
	padding:0;
}
a{
	text-decoration: none;
}
.header {
  background: linear-gradient(60deg, #000000 0%, #f59e0b 60%);
  border-bottom: 1px solid rgb(255, 255, 255);
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  padding: 15px;
}

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  border-radius: 4px;

}

.header .logo {
  padding: -12px 15px;
}

.header .logo a {
  font-size: 25px;
  text-transform: capitalize;
  color: #ffffff;
  font-weight: 600;
}

.header .nav-menu {
  padding: -11px 20px;
  border-radius: 0px 0px 0px 73px;
  background-color: transparent;

}

.header .menu>.menu-item {
  display: inline-block;
  margin-left: 30px;
  position: relative;
}

.header .menu>.menu-item>a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  color: #ffffff;
  text-transform: capitalize;
  font-weight: 600;
  transition: all 0.3s ease;
}

.header .menu>.menu-item>a .plus {
  display: inline-block;
  height: 12px;
  width: 12px;
  position: relative;
  margin-left: 5px;
  pointer-events: none;
}

.header .menu>.menu-item>a .plus:before,
.header .menu>.menu-item>a .plus:after {
  content: '';
  position: absolute;
  box-sizing: border-box;
  left: 50%;
  top: 50%;
  background-color: #ffffff;
  height: 2px;
  width: 100%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.header .menu>.menu-item:hover>a .plus:before,
.header .menu>.menu-item:hover>a .plus:after {
  background-color: #080606;
}

.header .menu>.menu-item>a .plus:after {
  transform: translate(-50%, -50%) rotate(-90deg);
}

.header .menu>.menu-item>.sub-menu>.menu-item>a:hover{
  color: #0731e9;
}
.header .menu>.menu-item:hover>a {
  color: #000000;
}

.header .menu>.menu-item>.sub-menu {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 280px;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #ffffff;
  padding: 10px 0;
  border-top: 3px solid #e91e63;
  transform: translateY(10px);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

@media(min-width: 992px) {
  .header .menu>.menu-item-has-children:hover>.sub-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .header .menu>.menu-item-has-children:hover>a .plus:after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

.header .menu>.menu-item>.sub-menu>.menu-item {
  display: block;
}

.header .menu>.menu-item>.sub-menu>.menu-item>a {
  display: block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  transition: all 0.3s ease;
  text-transform: capitalize;
}

.header .open-nav-menu {
  height: 34px;
  width: 40px;
  margin-right: -7px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.header .open-nav-menu span {
  display: block;
  height: 3px;
  width: 24px;
  background-color: #000000;
  position: relative;
}

.header .open-nav-menu span:before,
.header .open-nav-menu span:after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  box-sizing: border-box;
}
.header .open-nav-menu span:before {
  top: -7px;
}

.header .open-nav-menu span:after {
  top: 7px;
}

.header .close-nav-menu {
  height: 40px;
  width: 40px;
  background-color: #ffffff;
  margin: 0 0 15px 15px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}

.header .close-nav-menu img {
  width: 16px;
}

.header .menu-overlay {
  position: fixed;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

#app_button{  
  font-size: 10px;
  background: #00000075;
  border-radius: 20px;
  color: #f1f1f1;
  padding: 0.5rem 1rem;
  outline: 2px solid rgba(255, 255, 255, 0.897);
  font-weight: bold;
  cursor: pointer;
  transition: scale 0.2s ease;
  margin: 0.5rem; /* Add margin for better spacing */
  text-align: center;  
  
}
#app_button:hover{
  outline: 1px solid rgba(255, 255, 255, 0.897);
  /* background: #000000b5; */
  color: #ffffff;
  cursor: pointer;
  box-shadow: 1px 1px 4px 1px #1a0404;
  
}
/* responsive */
@media(max-width: 991px) {
  .header .menu-overlay.active {
    visibility: visible;
    opacity: 1;
 }
 .header .nav-menu {
    position: fixed;
    right: -280px;
    visibility: hidden;
    width: 280px;
    height: 100%;
    top: 0;
    overflow-y: auto;
    background: linear-gradient(60deg, #5b4014eb 0%, #f59e0b 60%);
    background-position: 56% 128%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.5s ease;
  }
  .header .nav-menu.open {
    visibility: visible;
    right: 0px;
  }
  .header .menu>.menu-item {
    display: block;
    margin: 0;
  }
  .header .menu>.menu-item-has-children>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
   }
  .header .menu>.menu-item>a {
    color: #ffffff;
    padding: 12px 15px;
    /* border-bottom: 1px solid #333333; */
  }
  .header .menu>.menu-item:first-child>a {
    border-top: 1px solid #333333;
  }
  .header .menu>.menu-item>a .plus:before,
  .header .menu>.menu-item>a .plus:after {
    background-color: #ffffff;
  }
  .header .menu>.menu-item-has-children.active>a .plus:after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .header .menu>.menu-item>.sub-menu {
    width: 100%;
    position: relative;
    opacity: 1;
    visibility: visible;
    border: none;
    background-color: transparent;
    box-shadow: none;
    transform: translateY(0px);
    padding: 0px;
    left: auto;
    top: auto;
    max-height: 0;
    overflow: hidden;
  }

  .header .menu>.menu-item>.sub-menu>.menu-item>a {
    padding: 12px 45px;
    color: #ffffff;
    /* border-bottom: 1px solid #333333; */
  }
  .header .close-nav-menu,
  .header .open-nav-menu {
    display: flex;
  }
  .header .logo a {
    font-size: 15px;
  }
  .header{
    position: absolute;
    top: -24px;
  }
}

.space{
  height: 10vh;
  background: linear-gradient(60deg, #5b4014eb 0%, #f59e0b 60%);
  box-shadow: 0px 1px 6px 0px #454840;
}






footer{
	width: 100%;
  background: linear-gradient(60deg, #5b4014eb 0%, #f59e0b 60%);
  box-shadow: 0px 1px 6px 0px #454840;
    padding: 100px 0 30px;
    font-size: 13px;
    line-height: 20px;
  }
  .footer-row{
    background: #51383847;
    box-shadow: 0px 1px 6px 0px #454840;

	width: 85%;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
  }
  .col{
	flex-basis: 25%;
	padding: 10px;
  color: white;
  }
  .logo-footer img{
	width: 80px;
	margin-bottom: 30px;
  }
  .col h3{
	width: fit-content;
	margin-bottom: 40px;
	position: relative;
  }
  .email-id{
	width: fit-content;
	border-bottom: 1px solid #ccc;
	margin: 20px 0;
  }
  ul li{
	list-style: none;
	margin-bottom: 12px;

  }
  ul li a{
	text-decoration: none;
	color: #ffffff;
  }
  .footer-one-form{
	padding-bottom: 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #ccc;
	margin-bottom: 50px;
  }
  .footer-one-form,.far{
	font-size: 18px;
	margin-right: 10px;
  }
  .footer-one-form input{
	width: 100%;
	background-color: transparent;
	color: #ccc;
	border:0;
	outline: none;
  }
  .footer-one-form button{
	background: transparent;
	border: 0;
	outline: none;
	cursor: pointer;
  }
  .footer-one-form button .fas{
	font-size: 16px;
	color: #ccc;
  }
  .social-icons .fab{
	width: 40px;
	height: 40px;
	border-radius: 50%;
	text-align: center;
	line-height: 40px;
	font-size: 20px;
	color: #000;
	background: #fff;
	margin-right: 15px;
	cursor: pointer;
  }
  .footer-hr-line{
	width: 90%;
	border: 0;
	border-bottom: 1px solid #ccc;
	margin: 20px auto;
  }
  .copyright{
	text-align: center;
}
.copyright a{
	color: #ffffff;
  }
  .underline{
	width: 100%;
	height: 5px;
	background: #767676;
	border-radius: 3px;
	position: absolute;
	top:25px;
	left: 0;
	overflow: hidden;
  }
  .underline span{
	width: 15%;
	height: 100%;
	background: #fff;
	border-radius: 3px;
	position: absolute;
	top: 0;
	left: 10px;
	animation: moving 2s linear infinite;
  }
  .col a{
	color: #ffffff;
  }
  @keyframes moving{
	0%{
		left: -20px;
	}
    100%{
		left: 100%;
	}  
}
@media(max-width:700px){
.col{
	flex-basis: 100%;
	
  }
 .col:nth-child(2), .col:nth-child(3){	
	flex-basis: 100%;
}
}
/* footer end */