
.pd-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    z-index: 10;
    position: absolute;
    width: 100%;
    left: 0;
}
.header__area-2 {
    height: 100vh;
    z-index: 1;
    background-color: var(--black-5);
}

.header__area-2 form {
    position: relative;
}
.header__area-2 .icon-search {
    color: var(--gray);
    position: absolute;
    right: 0;
    top: 5px;
}
.header__area-2 .copyright {
    padding-top: 100px;
}
@media only screen and (max-width: 1919px) {
    .header__area-2 .copyright {
        padding-top: 90px;
    }
}
@media only screen and (max-width: 1399px) {
    .header__area-2 .copyright {
        padding-top: 55px;
    }
}
@media only screen and (max-width: 767px) {
    .header__area-2 .copyright {
        padding-top: 60px;
    }
}

.header__navicon-2 {
    display: none;
}

.header__navicon-2 .close {
    position: absolute;
    right: 10px;
    top: 40px;
    width: 30px;
    height: 30px;
    color: var(--white);
    font-size: 20px;
}

.header__logo-2 {
    padding-bottom: 90px;
}

.header__logo-2 img {
    max-height: 45px;
}

.header__area-2 .sidebar-menu li {
    display: block;
    padding-bottom: 15px;
}
.header__area-2 .sidebar-menu li a {
    display: flex;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
    color: var(--white);
    padding: 10px 0;
    text-transform: uppercase;
}
.header__area-2 .sidebar-menu li a i,
.header__area-2 .sidebar-menu li a svg{
    fill:var(--white);
    width: 25px;
}
.header__area-2 .header__search-2 {
    padding-top: 50px;
}
.header__area-2 form {
    position: relative;
}

.header__search-2 input{
    font-weight: 400;
    font-size: 14px;
    width: 100%;
    line-height: 1.6;
    color: var(--gray);
    background-color: transparent;
    border: none;
    outline: none;
    padding: 6px 30px 6px 0;
    text-transform: capitalize;
    border-bottom: 1px solid var(--gray-6);
}

.header__area-2 .icon-search {
    color: var(--gray);
    position: absolute;
    right: 0;
    top: 5px;
}

.header__area-2 .copyright {
    padding-top: 100px;
}
.header__area-2 p {
    padding: 0;
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
    font-size: 16px;
    color: var(--gray-4);
}
.copyright p a {
    color: var(--white);
}

.pd-header a img {
    max-width: 160px;
}
.header__navicon-2 .icon {
    width: 24px;
}

/* Layout Resume */

.header__area-2.layout-2 .header__area-2.layout-2{
    padding: 42px 15px 0px 15px;
}

.resume-header__logo {
    width: 100%;
    aspect-ratio: 100/100;
    border-bottom: 1px solid #30406A;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.resume-menu li {
    position: relative;
}
.resume-menu li a {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    flex-direction: column;
    gap: 7px;
    position: relative;
    padding: 14px 5px;
    display: flex;
    align-items: center;
    line-height: 1;
    color: var(--white);
}

.resume-menu li a:before, .resume-menu li a:after {
    position: absolute;
    content: "";
    background: linear-gradient(90deg, #31426C 0%, #617198 51.56%, #31426C 100%);
    width: 100%;
    height: 1px;
    top: 0;
    inset-inline-start: 0;
    transition: all 0.5s;
    opacity: 0;
}

.resume-menu li a.active:before, .resume-menu li a.active:after {
    opacity: 1;
}
.resume-menu li a:after {
    bottom: 0;
    top: auto;
}

.resume-header__hire-btn {
    padding: 17px 10px 13px;
    background-color: #16254C;
    text-align: center;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--white);
    margin: 20px;
    margin-top: auto;
}

.resume-header__hire-btn .icon-img {
    width: 40px;
    height: 40px;
    background: #FFDAA2;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.resume-header__hire-btn .icon-img img {
    transform: rotate(-45deg);
}

.layout-2 .header__inner-2{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.header__inner-2{
    padding: 80px 50px;
}

@media only screen and (max-width: 1200px){

    .header__area-2 {
        position: fixed;
        height: 100vh;
        top: 0;
        z-index: 999;
        transition: all 0.5s;
    }
    .header__area-2.left {
        left:-100%;
    }
    .header__area-2.right {
        right:-100%;
    }
    .pd-header {
        display: flex;
    }

    .header__navicon-2 {
        display: block;
    }

    .header__area-2.active.left {
        left:0;
    }

    .header__area-2.active.right {
        right:0;
    }

    .header__area-2.layout-2{
        padding: 70px 15px 0px 15px;
    }
    .layout-2 .header__navicon-2 .close {
        right: 5px;
        top: 4px;
    }
}
