.header {
	position: fixed;
	/* background: rgba(212, 8, 8); */
	background: var(--primary-color);
	z-index: 80;
	width: 100%;
	transition: all .3s;
	display: inline-flex;
	align-items: center;
	padding: 22px 0;
	top: 0;
	height: 100px;
	border-bottom: 1px solid var(--primary-color);
}
.header.home-header .header-menu ul li a {
	color: #fff;
}
.header.home-header .menu-open svg {
	fill: #fff;
	stroke: #fff;
}
.header.home-header.sticky .black-logo {
	display: none;
}
.header .logo a.black-logo {
	display: none;
}
.header .header-menu ul li a {
	position: relative;
	text-transform: uppercase;
}
.header .header-menu ul li a::before {
	position: absolute;
	content: '';
	background: #fff;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	height: 2px;
	-webkit-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
	width: 0%;
}
.header .header-menu ul li a:hover:before,
.header .header-menu ul li a.active:before {
	width: 100%;
}
.header.sticky {
	background-color:var(--primary-color)
	z-index: 80;
	transition: all .3s;
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
	box-shadow: 0px 0px 6px 0px rgb(0 0 0 / 20%);
}
.header .header-block {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}
.header .container {
	max-width: 100%;
	padding-left: 20px;
	padding-right: 20px;
}
.header .logo {
	max-width: 224px;
	width: 100%;
	height: auto;
}
.header .logo a {
	display: flex;
	justify-content: center;
	align-items: center;
}
.header .header-menu ul {
	display: flex;
	align-items: center;
	gap: 60px;
	font-size: 20px;
	color: #fff;
	list-style: none;
}
.header .about-us-dropdown ul {
	padding: 0;
	width: 100%;
	flex-wrap: wrap;
}
.header .about-us-dropdown ul li {
	padding: 0;
	width: 100%;
}
.header .about-us-dropdown ul li a {
	padding: 20px;
	width: 100%;
}
.header .header-menu ul li a {
	color: #fff;
}
.header .header-menu ul li a:hover{
	opacity: 0.9;
}
.header .header-block .login-btn {
	position: relative;
}
.header.home-header .rounded-red-btn {
    background: #fff;
    color: var(--primary-color)
}
.header.home-header .rounded-red-btn:hover{
	background: rgba(9, 9, 9);
	color: #fff;
}
.header .header-menu .login-btn a:hover:before,
.header .header-menu .login-btn a.active:before {
	display: none;
}
.inner-header{
	position: unset;
}
.header.inner-header .header-menu ul li a{
    color: #000;
}
.header .rounded-red-btn {
	width: 153px;
	background: #fff;
	color: var(--primary-color)
	border:  0;
}
.about-us-dropdown {
	position: relative;
	display: flex;
	align-items: center;
	padding: 36px 0;
}
.about-us-dropdown {
	transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}
.about-us-dropdown .button-open {
	cursor: pointer;
}
.dropbtn {
	background: transparent;
	border: 0;
	color: #fff;
	display: flex;
	width: 20px;
	height: 20px;
	display: inline-block;
	position: relative;
}
.about-us-dropdown .arrow-bottom {
	width: 20px;
	height: 20px;
	z-index: 0;
	cursor: pointer;
	margin-left: 6px;
	background: url(../images/arrow-bottom.svg) center no-repeat;
}
.button-up::after, .button-down::after {
    content: "";
    position: absolute;
    left: 0px;
    z-index: 11;
    display: block;
    width: 25px;
    height: 25px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
}
.menu-open {
	padding: 0;
	border: 0;
	border-radius: 0;
	outline: none;
	background: transparent;
	height: 36px;
	width: 36px;
	cursor: pointer;
}
.menu-open svg {
    height: 36px;
    width: 36px;
    fill: #000;
    stroke: #fff;
}
.header.sticky .user-logged-in,
.header.home-header.sticky .user-logged-in {
    color: #fff;
}
.header.sticky .user-logged-in .user-icon svg,
.header.home-header.sticky .user-logged-in .user-icon svg {
    background: #fff;
}
.header.sticky .user-logged-in .user-icon svg,
.header.home-header.sticky .user-logged-in .user-icon svg{
    stroke: var(--primary-color)
}
/* CSS For Logged in User Starts  */
.user-logged-in {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: end;
	line-height: normal;
}
.user-logged-in .user-name {
   text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 18px;
    max-width: 126px;
}
.user-logged-in .user-icon svg {
    display: inline-block;
    width: 40px;
    height: 40px;
    vertical-align: middle;
    background: #fff;
    border-radius: 50px;
    margin-right: 12px;
    position: relative;
}
.user-logged-in .toggle {
	cursor: pointer;
	display: flex;
    align-items: center;
}
.user-info {
    position: absolute;
    z-index: 21;
    background: #fff;
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 10%);
    /*left: -90px;*/
    right: -10px;
    width: 218px;
    top: 69px;
    border-top: 1px solid #ebebeb;
    padding: 21px;
    border-radius: 10px;
    display: none;
}
.user-info::before, .user-info::after,
.tooltip-details::before,
.tooltip-details::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 100%;
    width: 0;
    height: 0;
    right: 10px;
}
.user-info::before, .tooltip-details::before {
    border: 16px solid transparent;
    border-bottom-color: transparent;
    border-bottom-color: #ddd;
}
.user-info::after,
.tooltip-details::after {
    border: 15px solid transparent;
    border-bottom-color: transparent;
    border-bottom-color: #fff;
}
.user-info.log-open {
    display: block;
}
.user-info ul li + li {
    margin-top: 14px;
}
.user-info ul li a,	
.header .header-menu .about-us-dropdown ul li a {
    font-size: 16px;
    color: #595959;
}
.header .header-menu .about-us-dropdown ul li a {
	color: #090909;
	font-weight: 600;
	font-size: 18px;
}
.user-info ul li a:hover {
    color: var(--primary-color)
}
.user-logged-in .user-icon svg {
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 10px;
    stroke: var(--primary-color)
}
.user-info ul li:last-child a,
.header.home-header .header-menu ul li .dropdown-content ul li a:hover,
.header .header-menu .about-us-dropdown ul li a:hover {
    color: var(--primary-color)
}
.is-active .user-info {
    display: block;
    text-align: left;
}
.header.home-header .header-menu ul li .dropdown-content ul li a {
	color: #000;
}
.dropdown {
  position: relative;
  display: flex;
}
.dropdown-content {
	top: 50px;
    /*transition: 0.5s top ease-in;*/
    transition: all 0.5s ease;
    visibility: visible;
    border-radius: 0;
    background: transparent;
    display: inline;
    border: 0;
    box-shadow: none;
    padding: 0;
    opacity: 0;
}
.dropdown-content ul {
	background: #fff;
	border-bottom: 2px solid var(--primary-color) !important;
	border: 1px solid #e6e6e6;
	display: inline-block;
	width: 218px;
	padding: 20px;
	box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 10%);
}
.about-us-dropdown.show {
	visibility: visible;
    top: 50px;
    /*transition: 0.5s top ease-in;*/
    transition: all 0.5s ease;
    padding: 0;
}
.dropdown-content::before,
.dropdown-content::after {
	display: none;
}
li.about-us-dropdown .dropdown-content {
	display: none;
}
li.about-us-dropdown:hover #about-dropdown {
	transition: all 0.5s ease;
	display: block;
	opacity: 1;
}
/*--Responsive --*/
@media (min-width: 1400px) {
	.header .container {
		width: 100%;
		max-width: 1610px;
		margin: 0 auto;
	}
}
@media (min-width: 1025px) {
    .menu-open,.responsive-logo-menu-close,
    .resposive-login {
        display:none;
    }
}
@media (max-width: 1599px) {
	.header .header-menu ul {
		gap: 40px;
	}
}
@media (max-width: 1366px) {
	.header .header-menu ul {
		gap: 30px;
		font-size: 17px;
	}
	.header .login-btn .rounded-red-btn {
    	padding: 0 10px;
    	width: 153px;
	}
	.header .logo {
    	max-width: 190px;
	}
}
@media (max-width: 1280px) {
	.header .header-menu ul {
		font-size: 18px;	
	}
	.header .header-menu ul {
		gap: 30px;
	}
	.banner-active .header {
		height: 90px;
	}
}
@media (max-width: 1180px) {
	.header .header-menu ul {
		gap: 30px;
		font-size: 16px;
	}
    .header .logo {
    	max-width: 190px;
	}
	.hero .container {
    	padding: 0 20px;
    }
}
@media (max-width: 1100px) {
	.header .header-menu ul {
	    gap: 20px;
	    font-size: 15px;
	}
}
@media (max-width: 1024px) {
	.resposive-login {
		display: inline-flex;
	}
	.header .logo {
    	max-width: 224px;
	}
	.desktop-login {
		display: none;
	}
    .header .container,
    .hero .container {
    	padding: 0 20px;
    }
    .nav__appear {
		transform: translateX(-100%);
		height: 100vh;
		width: 100%;
		position: fixed;
		top: 0;
		left: 0;
		transition: all 200ms ease-in-out;
		background: var(--primary-color);
		z-index: 99999;
		overflow-y: scroll;
	}
	.header .header-menu ul li.login-btn.resposive-login {
        position: relative;
    }
    .user-logged-in {
        color: #fff;
    }
	.user-logged-in .user-name {
		max-width: 100%;
	}
    .header.home-header .user-logged-in .user-icon svg {
        stroke: var(--primary-color);
    }
    .header.sticky .user-logged-in .user-icon svg,
    .header.home-header .user-logged-in .user-icon svg {
		background-color: #fff;
	}
	.header.home-header .user-logged-in,
	.header.sticky .user-logged-in {
		color: #fff;
	}
    .user-info {
        left: 15px;
        top: 70px;
        padding: 10px;
        margin-bottom: 20px;
    }
    .about-us-dropdown .dropdown-content {
		top: 50px;
		margin: 0;
		padding: 0;
    }
    .about-us-dropdown.show {
    	top: 50px;
    	margin: 0;
    	padding: 0;
    }
    .header .header-menu .user-info li {
        padding: 0;
        line-height: 1;
    }
    .user-info::before {
    	border: 12px solid transparent;
    	border-bottom-color: transparent;
    	border-bottom-color: #ddd;
    }
    .user-info::after{
		border: 11px solid transparent;
		border-bottom-color: transparent;
		border-bottom-color: #fff;
    }
    .user-info::before, .user-info::after {
    	left: 8px;
    }
	.header .header-menu ul {
		flex-wrap: wrap;
		gap: 0;
		font-size: 20px;
	}
	.header .header-menu ul li {
		width: 100%;
		padding: 12px 15px;
	}
	.header .header-menu ul li.about-us-dropdown {
		width: auto;
		padding-right: 0;
	}
	.header .icon__menu__close {
		position: absolute;
		top: 22px;
		right: 15px;
		cursor: pointer;
	}
	.header .icon__menu__close img {
		width: 40px;
		height: 40px;
	}
	.header .header-menu ul li a.rounded-red-btn {
		background-color: #fff;
		color: #090909;
	}
	.header .menu-open {
		position: absolute;
		right: 15px;
		top: 50%;
		transform: translateY(-50%);
		padding:0;
		width: 50px;
		height: 50px;
		display: flex !important;
		align-items: center;
		justify-content: end;
		border-radius: 50%;
	}
	.responsive-logo-menu-close {
		padding: 20px 15px;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.menu-open svg {
		stroke: #fff;
	}
	.header .header-menu .user-info li:last-child a {
		color: var(--primary-color);
	}
	.header .header-menu .user-info ul li a,
	.header .header-menu .about-us-dropdown ul li a {
        color: #595959;
    }
    .header .header-menu .user-info ul li a:hover {
        color: var(--primary-color);
    }
}
@media (max-width: 575px) {
	.header .user-info {
		left: 15px;
	}
}
@media (max-width: 300px) {
	.header .logo {
		max-width: 194px;
	}
}

.banner-active .banner {
	background: #74ee74;
    display: inline-flex;
    z-index: 100;
    position: fixed;
    width: 100%;
    top: 0;
}

.banner-active .banner .banner__content {
    padding: 12px;
    display: flex;
    align-items: center;
	justify-content: center;
	width: 100%;
}
  
.banner-active .banner .banner__text {
	line-height: 1.4;
	font-family: "Quicksand", sans-serif;
	font-size: 14px;
}
  
.banner-active .banner .banner__close {
	background: none;
	border: none;
	cursor: pointer;
}
  
.banner-active .banner .banner__text,
.banner-active .banner .banner__close > span {
	color: #000000;
}

.banner-active .banner .feeedback-text{
  color: #000000;
  text-decoration: underline;
  font-size: 14px;
}

/* .banner-active .header,
.banner-active .header.sticky {
	top: 44px;
} */

.banner-active .main-site {
	padding-top: 90px;
}
/* @media (max-width:573px){
	.banner-active .header, .banner-active .header.sticky{
		top: 63px;
	}
	.banner-active .nav__appear{
		top: 63px;
	}
} */
@media (max-width:575px){	
	.banner-active .main-site{
		padding-top: 22px;
	}
}
@media (min-width:542px){
	.banner-active .nav__appear{
		top: 44px;
	}
}