/*===Header css===*/
.main-header {
    padding: 15px 0;
    transition: .3s;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 999;
    /* background: #fff; */
    top: 0;
    /* box-shadow: 0 0 3px #acacac; */
}

.main-header .container,
.main-header .container-fluid{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 45px;
}

.main-header .logo {
    max-width: 200px;
}

.main-header .logo img {
    max-width: 100%;
    filter: invert(1) brightness(100);
}
.main-header .cp-logo img{
    max-width: 120px;
    filter: invert(1) brightness(100);
}
.menu {
    display: flex;
    align-items: center;
}

.menu > ul {
    display: flex;
    margin-bottom: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
}

.menu > ul > li {
    display: inline-flex;
    align-items: center;
    margin: 0 17px;
}

.menu > ul > li a {
    color: #ffff;
    transition: .3s;
    text-decoration: none;
    font-weight: 400;
}

.menu > ul > li a:hover {
    color: var(--mainColor);
    transition: .3s;
}

.menu > ul > li a.btn {
    color: #fff;
}

.menu > ul > li a.call-btn {
    display: inline-flex;
    align-items: center;
    margin-right: 20px;
    justify-content: center;
    border: 0;
    box-shadow: none;
    border-radius: 5px;
    padding-left: 0;
    /* background: #fff; */
    color: #000;
    line-height: 1;
    padding: 0;
    font-weight: 400;
    border: 0;
}

.menu > ul > li a.call-btn i {
    align-items: center;
    border: 1px solid var(--mainColor);
    border-radius: 100%;
    display: inline-flex;
    font-weight: 700;
    position: relative;
    transition: all .4s ease-in-out;
    color: #fff;
    font-size: 19px;
    line-height: 1;
    background: var(--mainColor);
    height: 43px;
    width: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.site-dropdown {
    border: 0;
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
    padding: 15px 10px;
    top: 10px !important;
}

.site-dropdown:before {
    content: " ";
    width: 15px;
    height: 15px;
    background: #ffff;
    position: absolute;
    top: -7.5px;
    left: 30px;
    transform: rotate(45deg);
    border: 1px solid #f2f2f2;
    border-bottom: 0;
    border-right: 0
}

.site-dropdown li {
    padding: 0 5px
}

.site-dropdown .dropdown-item {
    padding: 6px 12px;
    display: flex;
    justify-content: space-between;
    border-radius: 5px;
    color: #000;
}


.fixed-header {
    background: #fff;
    /* box-shadow: 0 0 3px #acacac; */
}

.fixed-header .menu > ul > li a {
    color: #000;
}
.fixed-header .menu > ul > li a.btn {
    /* color: #fff; */
}

.main-header .logo .color-logo {
    display: none;
}

.fixed-header .logo .white-logo {
    /* display: none; */
    filter: none;
}

.fixed-header .cp-logo img{
filter: none;

}

.fixed-header .logo .color-logo {
    display: block;
}
.mobile-menu-header {
    display: none;
}
.fixed-header .menu > ul > li a.call-btn {
    /* border-color: var(--mainColor); */
    /* color: #000; */
}

.hamburger{
    display: none;
}

/*===End Header css===*/


.sticky-menu {
    background: var(--secondColor);
    position: sticky;
    top: 73px;
    z-index: 99;
    padding: 5px 0;
}

.sticky-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}



.sticky-menu ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    display: inline-block;
    background: transparent;
    margin: 0 15px;
    border-radius: 5px;
    font-family: 'URWClassico';
    font-size: 18px;
}

.sticky-menu ul li a:hover,
.sticky-menu ul li a.active {
    background: #fff;
    color: var(--secondColor);
}