.header {
    position: sticky;
    top: 0;
    z-index: 1;
    background-color: white;
}

.header-responsive-nav {
    position: fixed;
    top: 0px;
    right: -400%;
    display: block;
    background-color: rgb(255, 255, 255);
    height: 100%;
    width: 400px;
    float: right;
    z-index: 3; /* top-most */
}

.header-responsive-nav-section {
    display: flex;
    flex-direction: column;
    padding-top: 60px;
}

.header-responsive-nav-section-item {
    padding-left: 20px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px dotted grey;
    margin-right: 30px;
}

.header-header {
    width: 100%;
    height: 100px;
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    /* box-shadow: 0px 1px rgb(0 0 0 / 32%);
    margin-bottom: 30px; */
}

.header-left {
    height: 100%;
    display: flex;
    align-items: center;
}

.header-right {
    height: 100%;
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.heading-text {
    color: rgb(23,14,93);
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    text-align: center;
}


.header-navigation-text {
    display: inline-block;
    position: relative;
    color: rgb(248,165,25);
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    margin-left: 15px;
    cursor: pointer;
}
  
.header-navigation-text:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -7px;
    left: 0;
    background-color: rgb(248,165,25);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
    color: rgb(248,165,25);
}
  
.header-navigation-text:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.header-navigation-text-style {
    color: #454c4e;
    font-weight: 600;
    font-size: 17px;
}

.header-navigation-text-style:hover {
    color: rgb(248,165,25);
    -webkit-transition: color 0.35s;
    -moz-transition: color 0.35s;
    -ms-transition: color 0.35s;
    -o-transition: color 0.35s;
    transition: color 0.35s;
}


.services-list-ul {
    padding: 0px;
    border-radius: 5px;
    margin-top: 17px;
}

.services-list-li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.services-list-a {
    color: black;
    padding: 20px;
    padding: 10px 20px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: normal;
    font-size: 12px;
}

.down-arrow {
    position: absolute;
    top: 6px;
    right: -22px;
    content: '';
    width: 13px;
    height: 37px;
    background-image: url(./images/down-arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
}