// header styles
.pp-header-area {
.header-top-area {
padding: 12px 0;
background-color: var(--primary-color);
.contact-wrapper {
display: flex;
gap: 32px;
a {
color: var(--white-2);
font-family: var(--font-jakarta);
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 28px;
display: flex;
align-items: center;
gap: 8px;
@include screen-1200 {
font-size: 16px;
}
@include screen-992 {
font-size: 14px;
}
}
@include screen-992 {
gap: 16px;
}
@include screen-576 {
flex-wrap: wrap;
gap: 8px;
justify-content: center;
// flex-direction: column;
// align-items: center;
// gap: 0px;
}
}
}
.header-btm-area {
position: relative;
padding: 28px 0px;
transition: var(--transition);
&.sticky-header {
padding: 10px 0px;
position: fixed;
top: 0;
left: 0;
width: 100%;
background-color: var(--white-color);
z-index: 50;
box-shadow: 0px 0px 30px 4px rgba(8, 92, 68, 0.15);
}
@include screen-992 {
padding: 14px 0px;
}
.mobile-menu-toggle {
svg {
fill: var(--paragraph-color);
@include screen-768 {
width: 40px;
height: 40px;
}
}
}
}
}
.social-icons-wraper {
display: flex;
align-items: center;
gap: 12px;
a.social-icon-link {
width: 24px;
height: 24px;
display: flex;
justify-content: center;
align-items: center;
background: var(--white-color);
border-radius: 50%;
color: var(--primary-color);
}
}
.logo {
object-fit: contain;
width: 153px !important;
height: 38px;
flex-shrink: 0;
@include screen-768 {
height: 40px;
}
@include screen-576 {
max-width: 150px;
}
}
.bn-header-select {
background-color: transparent;
border: 1px solid var(--white-2);
color: var(--white-2);
option {
color: var(--paragraph-color);
}
}