.headerDesktop{
    height: 100px;
    background: #fff;
    display: flex;
    justify-content: center;
    gap: 5%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

body:has(.headerDesktop){
	padding-top:100px;
}

.headerDesktop .logo{
    height: 100%;
    width: 25%;
    display: flex;
    overflow: hidden;
	justify-content: flex-end;
}

.headerDesktop .menuItems{
    display: flex;
    justify-content: center;
	align-items: center;
    width: 40%;
    gap: 2em;
}

.headerDesktop .menuItems div{
    font-weight: 600;
    font-size: 1.4em;
    color: var(--Main-Dark);
	height: 100%;
	align-content: center;
}

.headerDesktop .menuItems div i{
    margin-left: 5px;
}

.headerDesktop .menuItems div:not(#sectors) span:hover{
    color:  var(--Main-Orange);
}

.headerDesktop .cta{
    height: 100%;
    width: 25%;
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
}




.sectorsDrop{
    background: #fff;
    opacity: 0;
    height: 400px;
    position: fixed;
    top: -300px;
    left: 0;
    width: 100%;
    z-index: 90;
    display: flex;
    justify-content: center;
    transition: all 0.5s;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

body:has(.headerDesktop .menuItems div#sectors:hover) .sectorsDrop, .sectorsDrop:hover{
    opacity: 1;
    top: 100px;
}

.headerDesktop div#sectors:hover span, body:has(.headerDesktop .sectorsDrop:hover) div#sectors span{
	color: var(--Main-Orange)	
}




.sectorsDrop .backgroundImage1{
    width: 25%;
	display:flex;
	justify-content: flex-start;
    align-items: center;
}

.sectorsDrop .backgroundImage1 img{
    height: 90%;
    opacity: 0.1;
}

.sectorsDrop .sectors{
   	width: 60%;
    display: flex;
    justify-content: space-between;
}

.sectorsDrop .sectors .col{
    width: 45%;
    padding: 20px 0px;
}

.sectorsDrop .sectors .col .sector{
    height: 100px;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 10px 0px;
}

.sectorsDrop .sectors .col .sector .icon{
    font-size: 4em;
	width: 100px;
	text-align: center;
    color: var(--Main-Orange);
}

.sectorsDrop .sectors .col .sector .content{
    height: 100%;
    padding-right: 20px;
	align-content: center;
}

.sectorsDrop .sectors .col .sector .content .title{
    font-size: 1.5em;
    font-weight: 600;
    padding-bottom: 10px;
}

.sectorsDrop .sectors .col .sector .content .text{
    font-size: 0.95em;
	display: none;
}

.sectorsDrop .backgroundImage2{
    width: 25%;
	display:flex;
	justify-content: flex-end;
    align-items: center;
}

.sectorsDrop .backgroundImage2 img{
    height: 90%;
    opacity: 0.1;
}

.sector:hover .title{
	color: var(--Main-Orange);
}


.headerMobile{
    background: #fff;
    display: flex;
    justify-content: center;
    gap: 5%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 100;
	height:10vh;
}

body:has(.headerMobile:not(.hidden)){
	padding-top:0;
}

.headerSpacer{
	height:10vh;
}

.headerMobile .logo{
    height: 100%;
    width: 70%;
    display: flex;
    overflow: hidden;
	justify-content: center;
}

.headerMobile #hamburger{
    height: 100%;
    width: 30%;
    display: flex;
    overflow: hidden;
	justify-content: center;
	align-items: center;
	font-size: 2em;
	margin: auto;
}

#mobileDropdown{
    background: #fff;
    opacity: 0;
    position: fixed;
    top: -1000px;
    left: 0;
    width: 100vw;
    z-index: 90;
    display: flex;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    flex-direction: column;
    align-items: center;
	padding-bottom: 20px;
	gap: 10px;
}


#mobileDropdown.active{
	opacity: 1;
    top: 0px;
}


#mobileDropdown div:not(.backgroundImage1):not(.headerSpacer){
	height: 40px;
	font-size: 1.5rem;
	font-weight: 500;
	z-index: 95;
}


#mobileDropdown div#sectorsList{
	height: 0px;
	opacity: 0;
	transition: all 0.2s;
	top:-580px;
	position: relative;
}

#mobileDropdown div#sectorsList.active{
	opacity: 1;
	top:0px;
}

#mobileDropdown div:has(>#sectors){
	text-align: center;
	transition: all 0.2s;
}


#mobileDropdown div:has(>#sectors):has(div#sectorsList.active){
	height: 220px;
}


#mobileDropdown div#sectorsList span{
	display: block;	
	padding: 5px 0px;
	font-size: 0.8em;
}

#mobileDropdown .backgroundImage1{
	position: absolute;
	height: 80%;
    align-self: flex-start;
    opacity: 0.1;
	transition: all 0.5s;
	bottom: 10px;
}

#mobileDropdown .backgroundImage1 img{
	height: 100%;	
}