/*Desktop header*/
.header{
    width: 100%;
    height: fit-content;
    margin:   24px 0px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
}
.headerInner{
    margin: 0px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hiLeft{
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
}
.hilImage{
    max-width: 126px;
    margin-right: 10px;
}
.hilBorder{
    width: 1px;
    height: 63px;
    background: rgba(255, 255, 255, 0.31);
    margin-left: 27px;
    margin-right: 36px;
}
.hilText{
    color: var(--white);
}
.hiCenter{
    display: flex;
    align-items: center;
}
.hilLink{
    margin-right: 35px;
    text-decoration: none;
    color: var(--white);
}
.hilLink:last-child{
    margin-right: 0px;
}
.hiRight{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hirButton{
    text-decoration: none;
    padding: 11px 29px;
    border-radius: 3px;
    color: var(--white);
    transition: .3s;
}
.hirContact{
    background: none;
    border: 1px solid var(--white);
    color: var(--white);
    margin-right: 18px;
    transition: .2s;
}
.hirContact:hover{
    background: none;
    border: 1px solid var(--white);
    color: #000000;
    background: var(--white);
}
.hirLogin{
    background: #EE252A;
    border: 2px solid #EE252A;
    color: var(--white);
    transition: .2s;
}
.hirLogin:hover{
    background: none;
    border: 2px solid #EE252A;
}
/*Desktop header END*/













/*Mobile header*/
.hiNav{
    display: none;
}
@media screen and (max-width: 1350px) {
    .header{
        margin: 10px 0px;
    }
    .hiCenter, .hiRight, .hilBorder{
        display: none;
    }
    .hiNav{
        display: flex;
    }
    .nav-open {
        position: absolute;
        right: 22px;
        top: 10px;
        display: block;
        width: 48px;
        height: 48px;
        z-index: 999;
        border-radius: 50%;
    }
    .nav-open i {
        display: block;
        width: 20px;
        height: 2px;
        background: #c7c7c7;
        border-radius: 2px;
        margin-left: 14px;
    }
    .nav-open i:nth-child(1) {
        margin-top: 16px;
    }
    .nav-open i:nth-child(2) {
        margin-top: 4px;
        opacity: 1;
    }
    .nav-open i:nth-child(3) {
        margin-top: 4px;
    }
    .hilImage{
        max-width: 110px;
    }
}
#nav:checked + .nav-open {
    transform: rotate(45deg);
}
#nav:checked + .nav-open i {
    background: #fff;
    transition: transform 0.2s ease;
}
#nav:checked + .nav-open i:nth-child(1) {
    transform: translateY(6px) rotate(180deg);
}
#nav:checked + .nav-open i:nth-child(2) {
    opacity: 0;
}
#nav:checked + .nav-open i:nth-child(3) {
    transform: translateY(-6px) rotate(90deg);
}
#nav:checked ~ .nav-container {
    z-index: 9990;
    opacity: 1;
}
#nav:checked ~ .nav-container ul li a {
    opacity: 1;
    transform: translateY(0);
}
.hidden {
    display: none;
}
.hiNavOpen{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 998;
    display: none;
    background: var(--red);
    align-items: center;
    justify-content: center;
}
.hnoInner{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.hiNavOpen a{
   margin-bottom: 25px; 
   text-decoration: none;
   text-align: right;
   font-size: 30px;
   font-weight: 600;
   color: var(--white);
   white-space: nowrap;
}
.mobileNav{
    display: flex;
}
/*Mobile header END*/










/*DropDown*/
.dropdown {
    position: relative;
    display: inline-block;
}
.ddButton {
    /* padding: 16px; */
    margin-right: 35px;
    text-decoration: none;
    color: var(--white);
    padding-bottom: 15px;
}
.ddContent {
    display: none;
    position: absolute;
    top: 30px;
    left: 0;
    background: #1a1a1a;
    /* min-width: 160px; */
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border: 1px solid var(--white);
    border-radius: 5px;
}
.dispBlock{
    display: block !important;
}
.dispNone{
    display: none !important;
}
.ddContent a {
    width: 100%;
    white-space: nowrap;
    color: var(--white);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-radius: 5px;
}
.ddContent a:hover {
    background-color: #272727;
}
.dropdown:hover .ddContent {
    display: block;
}



/*DropDown END*/











/*Dropdown header*/
:root {
    --px-dropdown-color-border: rgb(0, 0, 0);
    --px-dropdown-color-border-active: rgb(255, 195, 40);
    --px-dropdown-color-bg: rgb(10, 15, 25);
    --px-dropdown-color-panelbg: rgb(255, 255, 255);
    --px-dropdown-color-panelfont: rgb(19, 26, 41);
    --px-dropdown-color-panelhover: rgb(235, 237, 243);
  
    --px-color-font: rgb(245, 247, 250);
    --px-color-bodybg: rgb(19, 26, 41);
  
    --px-dropdown-width: 240px;
    --px-dropdown-height: 46px;
    --px-dropdown-transition-duration: 300ms;
    --px-dropdown-iconsize: 18px;
  
    --px-fontfamily: "Inter", sans-serif;
    --px-fontsize: 14px;
    --px-fontweight-normal: 400;
    --px-fontweight-bold: 600;
    --px-lineheight: 1.5;
}
.px-app,
.px-app *,
.px-app *::before,
.px-app *::after {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     outline: 0;
}

.px-dropdown {
     position: relative;
     height: 50px;
     margin-bottom: 20px;
}

.px-dropdown-input {
     width: 100%;
     height: 100%;
     /* border: 1px solid; */
     /* border-color: var(--px-dropdown-color-border); */
     border-radius: 5px;
     /* background-color: var(--px-dropdown-color-bg); */
     display: flex;
     flex-wrap: nowrap;
     align-items: center;
     justify-content: flex-start;
     cursor: pointer;
     transition: border-color var(--px-dropdown-transition-duration) ease;
     justify-content: flex-end;
     -webkit-tap-highlight-color: transparent;
     -webkit-touch-callout: none;
     -webkit-user-select: none;
     -khtml-user-select: none;
     -moz-user-select: none;
     -ms-user-select: none;
     user-select: none;
}
.px-dropdown.active .px-dropdown-input {
     border-color: var(--px-dropdown-color-border-active);
}

.px-dropdown-input input {
    flex: 0 0 auto;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 30px;
    font-weight: 600;
    color: var(--white);
    text-align: end;
}

.px-dropdown-input svg {
    font-size: var(--px-dropdown-iconsize);
    flex: 0 0 auto;
    /* width: 15%; */
    text-align: center;
    display: none;
}

.px-dropdown-panel {
    position: relative;
    width: fit-content;
    right: 0;
    top: 5px;
    top: calc(100% + 50px);
    border: 1px solid;
    border-radius: 5px;
    background-color: var(--red);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: top var(--px-dropdown-transition-duration) ease,
    opacity var(--px-dropdown-transition-duration) ease;
    margin-left: auto;
    z-index: 10;
}
.px-dropdown.active .px-dropdown-panel {
      top: 5px;
    top: calc(100% + 4px);
    top: calc(100% - 45px);
    opacity: 1;
    pointer-events: auto;
    margin-left: auto;
}

.px-dropdown-panel ul {
     list-style: none;
}
.px-dropdown-panel ul li {
    color: var(--px-dropdown-color-panelfont);
    padding: 0.7rem 1rem;
    cursor: pointer;
    transition: background-color var(--px-dropdown-transition-duration) ease;
    font-size: 30px;
    font-weight: 600;
    color: #CCD6F6;
    white-space: nowrap;
}

.px-dropdown-panel ul li:hover {
    background-color: var(--px-dropdown-color-panelhover);
}
/* .px-dropdown-panel ul li a{
    margin-bottom: 0px;
    font-size: 28px;
} */
.px-dropdown-panel ul a{
    color: var(--px-dropdown-color-panelfont);
    padding: 0.7rem 1rem;
    cursor: pointer;
    transition: background-color var(--px-dropdown-transition-duration) ease;
    font-size: 30px;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
    display: block;
    margin-bottom: 0px;
    font-size: 20px;
}
.ddButton{

}
/*Dropdown header*/