@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&display=swap');

*{
    -webkit-box-sizing:border-box;
            box-sizing:border-box;
}
html{
    font-size:62.5%;
}
body{
    margin:0;
    padding:0;
    font-size:1.6rem;
    font-family: 'Comfortaa', sans-serif;
    background:#fff;
    padding-top: 100px;
    color:#000;
}
*{
    font-family: 'Comfortaa', sans-serif;
}
h1,h2,h3,h4,h5,h6{
    font-family: 'Comfortaa', sans-serif!important;
}
#header img{
    display: block;
    max-width:100%!important;
    max-height: unset!important;
    height:auto!important;
    width: 220px!important;
    margin: 0;
}
#footer img{
    display: block;
    filter: grayscale(1) brightness(11.5);
    width: 140px;
    margin: 0 0 9px 0;
}
#header .sw,#footer .sw{
    max-width:1600px;
    margin:0 auto;
    padding:0 15px;
}

/*
    Navigation
*/
header {
    padding: 5px 0;
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    top: 0px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    z-index: 60;
    color: #000;
    background: #ffffff;
    border-bottom: 5px solid #7a0171;
}
header .header-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
header .header-inner .space-maker{
    display: none;
}

header .logo, header nav {
    position: relative;
    z-index: 3;
}
header .logo img {
    transition: .2s;
}
@media (min-width: 992px) {
    body.sticky-header #header .header-inner .logo img {
        width: 180px!important;
    }
    body.sticky-header header .header-inner {
        padding: 0
    }
    body.sticky-header header {
        -webkit-box-shadow: 0px 15px 20px 0px rgb(0 0 0 / 5%);
            box-shadow: 0px 15px 20px 0px rgb(0 0 0 / 5%);
    }
}
header #navigation {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
header #navigation > ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}
header #navigation > ul > li {
    list-style: none;
    margin: 0 0 0 20px;
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
}
header #navigation > ul > li > a {
    display: block;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 6rem;
    color: #000;
    text-decoration: none;
    position: relative;
}
header #navigation > ul > li > a:before{
    position: absolute;
    left: calc(50% - 15px);
    top: 45px;
    height: 3px;
    width: 30px;
    background: #7a0171;
    border-radius: 3px;
    content: '';
    opacity: 0;
    transition: 0.2s ease-in-out;
}
header #navigation > ul > li > a.active,
header #navigation > ul > li > ul > li > a.active {
    font-weight: bold;
    color: #7a0171;
}
header #navigation > ul > li > a.active:before,
header #navigation > ul > li > a:hover:before{
    opacity: 1;
}
header#navigation a:hover {
    color: #7a0171;
}
header #navigation > ul > li > ul:empty {
    display: none;
}
header #navigation > ul > li:last-child > a {
    background: transparent;
    border: 1px solid #7a0171;
    color:#7a0171;
    border-radius: 5px;
    padding: 0px 15px 2px;
    line-height: 3.8rem;
    transition: 0.2s ease-in-out;
}
header #navigation > ul > li:last-child > a:before{
    display: none;
}
header #navigation > ul > li:last-child > a:hover{
    background: #7a0171;
    color: #fff;
}
/*
    Hamburger
*/
header .hamburger {
    display: block;
    cursor: pointer;
    -webkit-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear;
    -webkit-transition-duration: .15s;
         -o-transition-duration: .15s;
            transition-duration: .15s;
    -webkit-transition-property: opacity,-webkit-filter;
    transition-property: opacity,-webkit-filter;
    -o-transition-property: opacity,filter;
    transition-property: opacity,filter;
    transition-property: opacity,filter,-webkit-filter;
    text-transform: none;
    height: 50px;
    padding: 11px 0;
    float: right;
    margin-left: 15px;
    z-index: 5;
}
header .hamburger-box {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 24px;
}
header .hamburger-inner {
    top: 50%;
    display: block;
}
header .hamburger .hamburger-inner {
    -webkit-transition-timing-function: cubic-bezier(.55,.055,.675,.19);
         -o-transition-timing-function: cubic-bezier(.55,.055,.675,.19);
            transition-timing-function: cubic-bezier(.55,.055,.675,.19);
    -webkit-transition-duration: 75ms;
         -o-transition-duration: 75ms;
            transition-duration: 75ms;
}
header .hamburger-inner,
header .hamburger-inner:after,
header .hamburger-inner:before {
    position: absolute;
    width: 30px;
    height: 3px;
    -webkit-transition-timing-function: ease;
         -o-transition-timing-function: ease;
            transition-timing-function: ease;
    -webkit-transition-duration: .15s;
         -o-transition-duration: .15s;
            transition-duration: .15s;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    border-radius: 4px;
    background-color: #000;
}
header .hamburger-inner:after,
header .hamburger-inner:before {
    display: block;
    content: "";
}
header .hamburger-inner:before {
    top: -8px;
}
header .hamburger-inner:after {
    bottom: -8px;
}
header .hamburger .hamburger-inner:before {
    -webkit-transition: top 75ms ease .12s,opacity 75ms ease;
    -o-transition: top 75ms ease .12s,opacity 75ms ease;
    transition: top 75ms ease .12s,opacity 75ms ease;
}
header .hamburger .hamburger-inner:after {
    -webkit-transition: bottom 75ms ease .12s,-webkit-transform 75ms cubic-bezier(.55,.055,.675,.19);
    transition: bottom 75ms ease .12s,-webkit-transform 75ms cubic-bezier(.55,.055,.675,.19);
    -o-transition: bottom 75ms ease .12s,transform 75ms cubic-bezier(.55,.055,.675,.19);
    transition: bottom 75ms ease .12s,transform 75ms cubic-bezier(.55,.055,.675,.19);
    transition: bottom 75ms ease .12s,transform 75ms cubic-bezier(.55,.055,.675,.19),-webkit-transform 75ms cubic-bezier(.55,.055,.675,.19);
}

/* HAMBURGER MENU OPEN */
.menu-open .hamburger .hamburger-inner {
    -webkit-transition-delay: .12s;
         -o-transition-delay: .12s;
            transition-delay: .12s;
    -webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
         -o-transition-timing-function: cubic-bezier(.215,.61,.355,1);
            transition-timing-function: cubic-bezier(.215,.61,.355,1);
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}
.menu-open .hamburger .hamburger-inner, .menu-open .hamburger .hamburger-inner:after, .menu-open .hamburger .hamburger-inner:before {
    background-color: #000;
}
.menu-open .hamburger .hamburger-inner:before {
    top: 0;
    -webkit-transition: top 75ms ease,opacity 75ms ease .12s;
    -o-transition: top 75ms ease,opacity 75ms ease .12s;
    transition: top 75ms ease,opacity 75ms ease .12s;
    opacity: 0;
}
.menu-open header  .hamburger .hamburger-inner:after {
    bottom: 0;
    -webkit-transition: bottom 75ms ease,-webkit-transform 75ms cubic-bezier(.215,.61,.355,1) .12s;
    transition: bottom 75ms ease,-webkit-transform 75ms cubic-bezier(.215,.61,.355,1) .12s;
    -o-transition: bottom 75ms ease,transform 75ms cubic-bezier(.215,.61,.355,1) .12s;
    transition: bottom 75ms ease,transform 75ms cubic-bezier(.215,.61,.355,1) .12s;
    transition: bottom 75ms ease,transform 75ms cubic-bezier(.215,.61,.355,1) .12s,-webkit-transform 75ms cubic-bezier(.215,.61,.355,1) .12s;
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
}

@media screen and (min-width: 992px) {
    header  #navigation > ul > li:hover > ul {
        opacity: 1;
        pointer-events: all;
        transform: translateX(-50%) translateY(0)
    }
    header #navigation > ul > li > ul {
        position: absolute;
        top: 100%;
        left: 50%;
        white-space: nowrap;
        transform: translateX(-50%) translateY(-10px);
        cursor: pointer;
        display: block;
        opacity: 0;
        background: #fff;
        list-style: none;
        padding: 10px 20px;
        border-radius: 5px;
        box-shadow: 0 0 10px #0000002e;
        z-index: 1;
        pointer-events: none;
        transition: .2s;
    }
    header #navigation > ul > li > ul > li {
        margin: 0;
        padding: 0;
    }
    header #navigation > ul > li > ul > li a {
        display: block;
        font-size: 1.6rem;
        line-height: 2.6rem;
        color: #0e0e0e;
        text-decoration: none;
    }
    header .hamburger {
        display: none;
    }
}

/*
    Page footer
*/
#footer footer {
    padding: 50px 0;
    position: relative;
    background-color: #7a0171;
    color: #fff;
    text-align: left;
    font-size: 1.6rem;
    line-height: 2.6rem;
    font-weight: bold;
}

#footer p{
    margin: 0 0 30px 0;
    font-size: 1.6rem;
    line-height: 2.6rem;
}
#footer p:last-child{
    margin:0;
}
#footer footer a {
    color: #fff;
    text-decoration: none;
    transition: .2s;
    display: inline-block;
    font-size: 1.6rem;
    line-height: 2.6rem;
}
#footer footer a:hover {
    transform: translateX(5px);
}
#footer footer section{
    padding:0;
}
#footer footer h3 {
    color: #7a0171;
    margin: 0 0 15px 0;
    word-break: break-word;
}
#footer footer ul li,
#footer footer ul li a {
    color: #000;
    text-decoration: none;
    display: block;
    line-height: 2.6rem;
}
#footer footer ul {
    padding: 0;
    margin: 20px 0;
}
#footer footer ul li {
    padding: 0;
    margin: 0;
    list-style: none;
}
#footer .sw > .wrap {
    position: relative;
    z-index: 3;
}
#footer footer div.col-lg-2 p {
    line-height: 3.4rem;
}
#footer footer .col-lg-3 p strong {
    display: inline-block;
    width: 40px;
}
#footer footer div.col-lg-2 p a {
    text-decoration: none;
    color: #000;
    transition: 0.2s ease-in-out;
}
#footer footer div.col-lg-2 p a:hover{
    color: #7a0171;
}
#footer footer a[href*="facebook"],#footer footer a[href*="linkedin"], #footer footer a[href*="instagram"]{
    width: 30px;
    height: 30px;
    padding: 0;
    font-size: 0;
    line-height: 0;
    margin-right: 10px;
}
#footer footer a[href*="facebook"]:hover,#footer footer a[href*="linkedin"]:hover, #footer footer a[href*="instagram"]:hover{
    transform: none;
}
#footer footer a[href*="facebook"]:before {
    content: '\f082';
    font-family: "FontAwesome";
    font-size: 30px;
    line-height: 30px;
}
#footer footer a[href*="linkedin"]:before{
    content: '\f08c';
    font-family: "FontAwesome";
    font-size: 30px;
    line-height: 30px;
}
#footer footer a[href*="instagram"]:before{
    content: '\f16d';
    font-family: "FontAwesome";
    font-size: 30px;
    line-height: 30px;
}
#footer .col-lg-4:last-child .text-inner p {
    display: flex;
    align-items: center;
}
#footer p:last-child a {
    margin-left: 15px;
}
#footer p:last-child a  + a {
    margin-left: 3px;
}


@media (max-width: 1840px) {
    header #navigation > ul > li > a{
        font-size: 1.4rem;
    }
}
/* Mobile */
@media (max-width: 991.8px) {
    header #navigation > ul > li > a:before{
        display: none;
    }
    #footer footer .col-lg-5, footer .col-lg-2{
        margin-bottom: 30px;
    }
    #footer footer .sw .row > div {
        margin-bottom: 30px;
    }
}


@media (max-width: 991.8px) {
    body{
        padding-top:114px;
    }
    #header .logo img {
        height: 80px!important;
        width: auto!important;
    }
    header {
        padding: 5px 15px;
        -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .05);
        box-shadow: 0 5px 10px rgba(0, 0, 0, .05);
    }
    header .sw {
        padding: 0;
    }
    header .header-inner{
        padding: 10px 0;
    }
    header #navigation {
        width: 100%;
        display: block;
        height: calc(100% - 114px);
        position: fixed;
        z-index: 3;
        background:#fff;
        top: 114px;
        left: 0;
        padding: 30px 30px;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: 0.2s;
        -o-transition: 0.2s;
        transition: 0.2s;
        overflow-y: auto;
    }
    body.menu-open header #navigation {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    header #navigation > ul {
        display: block;
    }
    header #navigation > ul > li {
        display: block;
        margin-left: 0;
    }
    header #navigation ul > li > ul {
        padding: 0 0 0 15px;
    }
    header #navigation > ul > li > a,
    header #navigation > ul > li > ul > li,
    header #navigation > ul > li > ul > li > a {
        list-style: none;
        text-decoration: none;
    }
    header #navigation > ul > li > a:hover,
    header #navigation > ul > li > ul > li > a:hover {
        color: #000;
    }
    header #navigation > ul > li > a {
        font-size: 1.6rem;
        line-height: 3.4rem;
    }
    header #navigation > ul > li > a:hover{
        color: #000;
    }
    header #navigation > ul > li > ul > li > a {
        display: block;
        font-size: 1.4rem;
        line-height: 2.2rem;
    }
    header #navigation > ul > li:last-child > a {
        display: inline-block;
        margin-top: 10px;
    }
}


@media (max-width: 600px) {
    #footer footer {
        padding: 30px 0 30px 0;
    }
}