/* ================ HEADER STYLES ================== */
header {
  box-shadow: 0 4px 5px #00000010;
  transition: background-color 0.3s, border 0.3s, border-radius 0.3s,
    box-shadow 0.3s;
  height: 140px;
}

.header-fixed {
  position: fixed;
  top: 0;
  z-index: 5;
  width: 100%;
}

.header-top {
	background-color: var(--header-bg);
	height: 40px;
	display: flex;
	align-items: center;
}

.header-top .content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
}

.header-top .left-side ul {
	display: flex;
	align-items: center;
	gap: 30px;
}

.header-top .left-side li {
	display: flex;
	align-items: center;
	gap: 10px;
    font-size: 14px;
}

.header-top .left-side .icon {
	transition: color .3s;
	color: #fff;
}

.header-top .left-side .mail-add {
	color: #b5b5b5;
    transition: color .3s;
}

.header-top .left-side .time {
	color: #b5b5b5;
}

.header-top .left-side li:hover :is(.mail-add, .time) {
	color: #fff;
}

.header-top .right-side {
	display: flex;
	align-items: center;
	gap: 20px;
	font-size: 14px;
}

.header-top .right-side .hire-text {
	color: #b5b5b5;
}

.header-top .right-side .hire-text a {
	color: #43baff;
}

.header-top .right-side .social-icons {
	display: flex;
	gap: 14px;
}

.header-top .right-side .social-icons a {
	color: #b5b5b5;
}

.header-top .right-side .social-icons a:hover {
	color: #fff;
}

.header-body {
  height: 100px;
  background: #fff;	
}

.header-body .container {
  height: 100%;
}

.header-body .content {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 14px;	
}

.header-body .logo-container {
  display: flex;
}

.header-body .logo-link {
  line-height: 1;
  display: flex;
}

.header-body .logo-link img {
  width: 280px;
}

.header-body .hamburger {
  color: #1b1d21;
  font-size: 26px;
  cursor: pointer;
  display: none;
}

.header-body .menu-box {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  gap: 14px;	
}

.header-body .menu-header-menu-container {
  flex: 1;
  display: flex;
  justify-content: center;
  height: 100%;
  z-index: 10;	
}

.header-body .menu {
  display: flex;
  gap: 30px;
}

.header-body .menu-item {
  font-size: 15px;
  font-weight: 700;
  list-style: none;
  position: relative;
  display: flex;
  align-items: center;
/*   overflow: hidden; */
}

.header-body .menu-item::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  height: 3px;
  width: 0;
  background-color: #43baff;
  transition: 0.3s linear;
}

.header-body .menu-item.active::after {
  width: 100%;
}

.header-body .menu > .menu-item a {
  color: #141d38;
  padding: 16px 0;
}

.header-body .menu > .menu-item a .down-arrow {
  font-size: 14px;
  margin-left: 6px;
}

.header-body > .menu-item:hover a {
  color: #43baff;
}

.header-body .menu-item:hover::after {
  left: 0;
  right: auto;
  width: 100%;
}

.header-body .sub-menu {
    position: absolute;
    top: 90%;
    left: 0;
    background-color: #43baff;
    padding: 10px 20px;
    width: 210px;
	visibility: hidden;
	opacity: 0;
    transition: 0.8s;
    box-shadow: 5px 5px 10px #00000010;
	z-index: 20;
}

.header-body .menu-item:hover .sub-menu {
	visibility: visible;
	opacity: 1;
}

.header-body .menu .sub-menu a {
	padding: 4px;
}

.header-body .menu .sub-menu a:hover {
	color: #fff;
}

.header-body .cta-icons {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #fff;
  position: relative;	
}

.header-body .cta-icons i {
  height: 25px;
  width: 25px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 20px;
}

.header-body .cta-icons i.fa-magnifying-glass {
  display: flex;
  color: #1b1d21;	
}

.header-body .cta-icons i.fa-magnifying-glass.hide {
  display: none;
}

.header-body .cta-icons i.fa-xmark {	
  display: none;
}

.header-body .cta-icons svg {
  fill: #fff;
}

/* .header-body .search-box {
  padding: 20px;
  background-color: #fff;
  position: absolute;
  top: 63px;
  right: -10px;
  display: none;
}
.header-body .search-box.show,
.header-body .cta-icons i.fa-xmark.show {
  display: flex;
  color: #1b1d21;		
}

.header-body .search-box form {
  display: flex;
}

.header-body .search-box input {
  background: #ededed;
  padding: 6px 8px;
  outline: none;
  border: none;
}

.header-body .search-box .search-icon i.fa-magnifying-glass {
  background: #ededed;
  cursor: pointer;
  height: 100%;
  padding: 6px 0;
  width: 48px;
  background-color: #43baff;
  text-align: center;
  color: #fff;
  display: flex;	
  transition: 0.3s linear;
}

.header-body .search-box .search-icon:hover {
  background: #7141b1;
} */
.close-menu-arrow {
  display: none;
}

.header-body .quest-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin: 0 15px;
	border-left: 1px solid #43baff;
	padding-left: 20px;
}

.header-body .phone-icon {
	color: #43baff;
	font-size: 22px;	
}

.header-body .phone-wrapper h6 {
	margin-bottom: 5px;
	color: #6d6d6d;
}

.header-body .phone-wrapper a {
	color: #141d38;
/*     font-family: "Montserrat", Sans-serif; */
    font-size: 16px;
    font-weight: 600;
}
}

.header-body .quote-btn {
	font-size: 20px;
}


/* ================ MEDIA QUERIES ================== */
/* 1023px to 992px screens  */
@media only screen and (max-width: 1279px) {
	.header {
		height: 180px;
	}	
	.header-top {
		height: 80px;
	}
	.header-top .left-side ul,
	.header-top .right-side {
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		gap: 5px;
	}
	
	.header-body .search-box {
		top: 80px;
	}
	
	.header-body .quest-wrapper, 
	.header-body .btn.quote-btn {
		display: none;
	} 
	
  .header-body .hamburger {
    display: block;
  }
  .header-body .cta-icons {
    margin-left: auto;
  }
  .menu-header-menu-container {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    transform: translateX(100%);
    transition: 0.3s linear;
  }
  .menu-header-menu-container.open {
    transform: translateX(0);
  }
  .header-body .menu {
    width: 360px;
    max-width: 60%;
    background-color: #fff;
    flex-direction: column;
    margin-left: auto;
    gap: 0;
    padding: 70px 24px 24px 24px;
  }
  .header-body .menu-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
	display: block;  
  }
  .header-body .menu > .menu-item a {
    color: #000000;
    width: 100%;
    display: flex;
    align-items: center;
	justify-content: space-between;  
  }
  .close-menu-arrow {
    display: block;
    width: 360px;
    max-width: 60%;
    margin-left: auto;
    z-index: 20;
    position: absolute;
    top: 20px;
    right: 0;
    font-size: 20px;
    padding-left: 24px;
    transform: translateX(100%);
    transition: 0.3s linear;
  }
  .close-menu-arrow.open {
    transform: translateX(0);
  }
	
	
    .header-body .menu-item .sub-menu {
        position: relative;
        top: -1px;
        width: 100%;
        padding: 0 20px;
        background-color: #fff;
        box-shadow: none;
        display: none;
    }	
	.header-body .menu-item .sub-menu.show {
        display: block;
        visibility: visible;
        opacity: 1;
    }
	.header-body .sub-menu .menu-item {
		border: none;
	}
}

/* 767px to 649px screens  */
@media only screen and (max-width: 767px) {
  header {
	height: 100px;
  }	
  .header-top {
    display: none;
  }
}

/* 639px to 480px screens  */
@media only screen and (max-width: 639px) {
  html {
    font-size: 12px;
  }
}

/* 479px to 320px screens  */
@media only screen and (max-width: 479px) {
}

