   .header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	background-color:   rgb(50, 25, 175,0.8);
}
.header__container {
	padding: 0 30px;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 50px;
}
.header__logo {
	border-radius: 0%;
        position: relative;
        width: 125px;
	height: 65px;
}



.mybtn{

appearance: none;
  background:red;
    -webkit-appearance: none;
  font-family: sans-serif;
  cursor: pointer;
  color:yellow;
  padding: 15px;
  min-width: 150px;
  border: 0px;
   border-radius: 25px;
    -webkit-transition: background-color 100ms linear;
    -ms-transition: background-color 100ms linear;
     transition: background-color 100ms linear;
}
 
   .mybtn:hover {
   
  border-radius: 15px;
  background:   hsl(265, 100%, 25%,0.8);
  color: orange;
}
  

.header__menu {
}
.menu {
}
.menu__icon {
	display: none;
}
.menu__body {
}
.menu__list {
}
.menu__list > li {
	position: relative;
	margin-left: 20px;
}
.menu__link {
	color: #fff;
	font-size: 18px;
}
.menu__sub-list {
	position: absolute;
	top: 100%;
	right: 0;
	background-color: #000;
	padding: 15px;
	min-width: 200px;
}
.menu__sub-list li {
	margin-bottom: 10px;
}
.menu__sub-list li:last-child {
	margin-bottom: 0px;
}
.menu__sub-link {
	color: #fff;
}
.menu__sub-link:hover {
	text-decoration: underline;
}
.menu__arrow {
	display: none;
}
/*-------------------------*/
body._pc .menu__list > li:hover .menu__sub-list {
	opacity: 1;
	visibility: visible;
	transform: translate(0, 0);
	pointer-events: all;
}
body._touch .menu__list > li {
	display: flex;
	align-items: center;
}
body._touch .menu__link {
	flex: 1 1 auto;
}
body._touch .menu__arrow {
	display: block;
	width: 0;
	height: 0;
	margin-left: 5px;
	transition: transform 0.3s ease 0s;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 10px solid #fff;
}

body._touch .menu__list > li._active .menu__sub-list {
	opacity: 1;
	visibility: visible;
	transform: translate(0, 0);
	pointer-events: all;
}
body._touch .menu__list > li._active .menu__arrow {
	transform: rotate(180deg);
}
/*-------------------------*/
@media (min-width: 1000px) {
	.menu__list {
		display: flex;
		align-items: center;
	}
	.menu__list > li {
		/* padding from link to sub links area to avoid breaking hover on mouse move */
		padding: 10px 0;
	}
	.menu__sub-list {
		transform: translate(0, 10px);
		opacity: 0;
		visibility: hidden;
		/* to avoid mistaken hover */
		pointer-events: none;
		transition: all 0.3s ease 0s;
	}
}



@media (max-width: 1000px) {
  
 .header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	background-color: rgb(60, 25, 150,0.8) ;   

}


          .header__logo {
	border-radius: 0%;
        position: relative;
	z-index: 15;
        left: 0%;
	width: 99px;
        height: 65px;
	 
}

.header__container {
	padding: 0 30px;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 60px;
}
    
          
  


      

	.menu__icon {
		z-index: 5;
		display: block;
		position: relative;
		width: 30px;
		height: 20px;
		cursor: pointer;
	}
	.menu__icon span,
	.menu__icon::before,
	.menu__icon::after {
		left: 0;
		position: absolute;
		height: 10%;
		width: 100%;
		transition: all 0.3s ease 0s;
		background-color: #fff;
	}
	.menu__icon::before,
	.menu__icon::after {
		content: '';
	}
	.menu__icon::before {
		top: 0;
	}
	.menu__icon::after {
		bottom: 0;
	}
	.menu__icon span {
		top: 50%;
		transform: scale(1) translate(0, -50%);
	}

	.menu__icon._active span {
		transform: scale(0) translate(0, -50%);
	}
	.menu__icon._active::before {
		top: 50%;
		transform: rotate(-45deg) translate(0, -50%);
	}
	.menu__icon._active::after {
		bottom: 50%;
		transform: rotate(45deg) translate(0, 50%);
	}

	.menu__body {
		position: fixed;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background-color:   hsl(260, 75%, 25%,0.6);
		padding: 100px 30px 30px 30px;
		transition: left 0.3s ease 0s;
		/* for scroll on menu */
		overflow: auto;
                
                   
	}
	.menu__body._active {
		/* use left and not transform/translate because it scroll the .menu__body::before when u scroll menu */
		left: 0;
	}
	.menu__body::before {
		content: '';
		position: fixed;
		width: 100%;
		top: 0;
		left: 0;
		height: 65px;
		background-color: hsl(250, 75%, 25%,,0.7);
}  
		z-index: 2;
	}
	.menu__list > li {
		flex-wrap: wrap;
		margin-bottom: 30px;
	}
	.menu__list > li:last-child {
		margin-bottom: 0;
	}
	.menu__list > li._active .menu__sub-list {
		display: block;
	}
	.menu__link {
		font-size: 25px;
	}
	.menu__sub-list {
		position: relative;
		background-color: #fff;
		flex: 1 1 100%;
		margin-top: 20px;
		display: none;
	}
	.menu__sub-link {
		font-size: 25px;
		color: #000;
	}
}

/* end header */
  
 
/* ==============================
   BMT: Colorful transparent hover (Services cards)
   Applied to index.html services section images.
   ============================== */
.services .card .card-img{
  position: relative;
  overflow: hidden;
}
.services .card .card-img img{
  transition: transform 0.45s ease, filter 0.45s ease;
  will-change: transform;
}
.services .card .card-img::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(0, 255, 255, 0.22),
    rgba(255, 0, 153, 0.20),
    rgba(255, 215, 0, 0.22)
  );
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}
.services .card:hover .card-img::after{
  opacity: 1;
}
.services .card:hover .card-img img{
  transform: scale(1.06);
  filter: saturate(1.2) contrast(1.05);
}
