.menu ul {
    list-style: none;
    margin: 0;
    color: white;
}

.menu ul a,
.menu ul span {
    font-size: 14pt;
    color: white;
    text-decoration: none;

    padding: 5px;
}

.menu ul a:hover {
    background-color: #ef5945;
    border-radius: 3px;
}

.with-us-sign {
    text-align: center;
    font-family: "AlexandraZeferinoThree";
    color: white;
}

.icon-rhombus {
    /**
     Before increasing fonts sizes to "14pt" rhombuses were 19px/19px
     Now I made them bigger to match size of labels - 24px/24px
     **/
    width: 24px;
    height: 24px;
    border: solid 1px white;
    border-radius: 3px;
    text-align: center;
    transform: rotate(45deg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 7px;
    margin-top: 5px;
    color: white;
    text-decoration: none;
    transition: 1s all;
    background: transparent;
    user-select: none;
}

.icon-rhombus i {
    transform: rotate(-45deg);
}


/** Arrows and circles **/
div.arrow {
    width: 3vmin;
    height: 3vmin;
    box-sizing: border-box;
    transform: rotate(-45deg);
    cursor: pointer;
    user-select: none;
}

div.arrow::before {
    content: '';
    width: 100%;
    height: 100%;
    border-width: .5vmin .5vmin 0 0;
    border-style: solid;
    border-color: #222222;
    transition: .2s ease;
    display: block;
    transform-origin: 100% 0;
    user-select: none;
}


div.arrow:after {
    content: '';
    float: left;
    position: relative;
    top: -100%;
    width: 100%;
    height: 100%;
    border-width: 0 .5vmin 0 0;
    border-style: solid;
    border-color: #222222;
    transform-origin: 100% 0;
    transition:.2s ease;
    user-select: none;
}

div.arrow-left {
    transform: rotate(-135deg);
}

div.arrow-right {
    transform: rotate(45deg);
}

div.arrow-inactive:after {
    border-color: rgba(192,192,192,0.9);
}

div.arrow-inactive:before {
    border-color: rgba(192,192,192,0.9);
}

div.circle {
    width: 15px;
    height: 15px;
    border-radius: 10px;
    background-color: #c0c0c0;
    cursor: pointer;
    user-select: none;
}

div.circle-active {
    background-color: #ef5945;
}


/** Page titles **/

.title {
    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    max-width: 70%;
    margin: auto;
}

.title img {
    width: 35px;
}

.title h2 {
    color: #ef5945;
    font-size: 2em;
    margin: 30px 15px;
}

.title.timeline-title h2 {
    font-family: Verdana;
    font-size: 2.2em;
}

.entry-content {
    margin-bottom: 50px;
}

.nowrap {
    white-space: nowrap;
}

/** Popups **/

.no-scroll {
    overflow: hidden;
}

.visible {
    opacity: 1;
    visibility: visible;
}

.hidden {
    opacity: 0;
    visibility: hidden;
}

.notify {
    display: flex;
    justify-content: center;
    position: fixed;
    width: 100%;
    top: 10%;
    z-index: 10;
    transition: .7s all;
}

.notify-success {
    color: white;
    font-weight: bold;
    font-size: 1.4em;
}

.notify > p {
    width: fit-content;
    background: #7CA821;
    border-radius: 15px;
    padding: 15px 10px;
}

@media(max-width: 600px) {

    div.arrow {
        width: 6vmin;
        height: 6vmin;
    }

    .notify-success {
        font-size: 1em;
    }

}


/** Some overwrites for "slick" **/

.slick-prev {
    left: -45px !important;
}

.slick-next {
    right: -45px !important;
}

.slick-prev,
.slick-next {
    width: 40px !important;
    height: 40px !important;

    background-color: transparent !important;
}

.slick-prev:before, .slick-next:before {
    font-size: 40px !important;
    color: #59abbf !important;
}