    /* make changes to header */

    .header-div {
        width: 100%!important;
        position: fixed;
        transition: linear .5s;
        z-index: 101;
    }
    .header-div ul, .header-div li {
        list-style-type: none;
    }
    .header-div-bg {
        top: 0;
        margin: 0;
        padding: 0;
        background-color: var(--color-lighter);
    }
    
    .header-div a svg {
        fill: var(--color-lighter);
    }
    /* end changes to header */
    
    .header-div a {
        color: var(--color-lighter);
        z-index: 2;
        font-weight: bolder;
    }
    
    .header-div a:hover {
        opacity: .75;
    }
    
    .mobile-header {
        display: none;
    }
    
    .header-div .social-contacts {
        display: flex!important;
        align-items: center;
    }
    
    .header-div .social-contacts span {
        padding: .25em 1em;
        border-right: var(--color-2) solid 2px;
        opacity: .75;
    }
    
    .header-div .social-contacts span:nth-child(5) {
        margin-left: auto!important;
    }
    
    .social-contact-bg {
        background-image: var(--primary-gradient-color);
    }
    
    .header {
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: .5em!important;
        margin: 0!important;
    }
    
    .header li {
        list-style-type: none;
        padding: .5em;
    }
    
    .header li a {
        font-weight: bold;
    }
    
    .header .header-logo a {
        display: flex;
        justify-content: center;
        align-content: center;
        align-items: center;
    }
    
    .header .header-logo a svg {
        margin: 0 -.45em;
    }
    
    .header .header-logo a img {
        width: 2.5em;
        height: 2.5em;
        border-radius: 50%;
    }
    
    .header .contact-link {
        margin-right: auto;
    }
    
    .services-container {
        background-image: linear-gradient(to left, rgb(53, 5, 97), rgb(80, 5, 151));
    }
    
    .header .container {
        border 2px solid #971ADE;
        position: relative;
    }
    
    .header .services-dropdown,
    .header .dropdown {
        display: none;
        position: absolute;
        top: 100%;
        z-index: 1;
        background-image: linear-gradient(to left, rgb(53, 5, 97), rgb(80, 5, 151));
        border-radius: 15px;
        border-top-left-radius: 0;
        margin-left: -.5em;
        padding: 0;
    }
    
    .services-dropdown li:hover,
    .dropdown li:hover {
        background-image: linear-gradient(to left, rgb(245, 245, 245, .35), rgb(245, 245, 245, .35));
        border-radius: 10px;
    }
    
    .services-dropdown li a,
    .dropdown li a {
        white-space: nowrap;
    }
    
    .services-container:hover .services-dropdown,
    .container:hover .dropdown {
        display: block;
    }
    
    .key-navs {
        display: flex;
    }
    
    .svg-icon {
        position: relative;
    }
    
    .count {
        position: absolute;
        top: -100%;
        right: 0;
        border-radius: 50%;
        width: 1em;
        height: 1em;
        padding: .35em;
        color: white;
        text-align: center;
        font-size: xx-small;
        font-weight: bolder;
        background-image: linear-gradient(to right, #971ADE, #de1aad);
    }
    
    .search-field {
        position: absolute;
        display: none;
        width: 95%;
        left: 0;
        top: 45%;
        margin: .25em;
        height: 2em;
    }
    
    .search-close-icon {
        display: none;
    }
    /* tablet and mobile devices */
    
    @media screen and (max-width: 992px) {
        .header-div {
            max-height: 100%;
        }
        .header .header-logo {
            display: none;
        }
        .mobile-header {
            position: relative;
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: .5em;
            z-index: 3;
            max-width: 100%;
        }
        .mobile-header span {
            padding-right: .5em;
        }
        .mobile-header .menu-close-icon {
            display: none;
        }
        .mobile-header span a {
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-lighter);
            font-weight: bolder;
        }
        .mobile-header span a {
            display: flex;
            align-items: center;
            justify-items: center;
        }
        .mobile-header span a svg:nth-child(1) {
            margin-right: -1.25em;
        }
        .mobile-header .search-field {
            width: 80%;
            left: 0;
            top: 0;
            margin: .25em;
            height: 2em;
        }
        .header {
            max-height: 15em;
            display: none;
            overflow-y: scroll;
            transition: linear .5s;
        }
        .services-dropdown {
            position: static;
        }
        .header .key-navs {
            display: none;
        }
    }
    
    @media screen and (max-width:600px) {
        .header-div .social-contacts {
            max-height 0;
            overflow: hidden;
            transition: .5s all linear;
        }
        .header-div .social-contacts span {
            padding: .25em .5em;
            border-right: white solid 2px;
            opacity: .75;
        }
    }