﻿
.waviy {
    position: relative;
}

    .waviy span {
        position: relative;
        display: inline-block;
        /*font-size: 40px;*/
        /*color: #000;*/
        /*text-transform: uppercase;*/
        animation: flip 2s infinite;
        animation-delay: calc(.2s * var(--i))
    }

@keyframes flip {
    0%,80% {
        transform: rotateY(360deg)
    }
}


.title-word {
    animation: color-animation 4s linear infinite;
}

.title-word-1 {
    --color-1: #863F19;
    --color-2: #285B71;
    --color-3: #942F2E;
}
/*
.title-word-1 {
    --color-1: #DF8453;
    --color-2: #285B71;
    --color-3: #942F2E;
}*/

.title-word-2 {
    --color-1: #6F5316;
    --color-2: #3C6862;
    --color-3: #17494D;
}

.title-word-3 {
    --color-1: #3C6862;
    --color-2: #942F2E;
    --color-3: #365E59;
}

.title-word-4 {
    --color-1: #3D8DAE;
    --color-2: #DF8453;
    --color-3: #942F2E;
}

@keyframes color-animation {
    0% {
        color: var(--color-1)
    }

    32% {
        color: var(--color-1)
    }

    33% {
        color: var(--color-2)
    }

    65% {
        color: var(--color-2)
    }

    66% {
        color: var(--color-3)
    }

    99% {
        color: var(--color-3)
    }

    100% {
        color: var(--color-1)
    }
}

/* Here are just some visual styles. 🖌 */
/*
.container {
    display: grid;
    place-items: center;
    text-align: center;
    height: 100vh
}

.title {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 8.5vw;
    text-transform: uppercase;
}*/

/** {
    margin: 0;
    font-family: 'Source Sans Pro', sans-serif;
}*/

a {
    text-decoration: none;
}

#popUp {
    position: fixed;
    z-index: 9999;
    max-width: 350px;
    /*height: 225px;*/
    height:185px;
    /*background: rgba(236, 240, 241, 1);*/
    background: #fff;
    border: 1px solid #464646;
    border-radius:5px;
    bottom: 0;
    margin-left: 0;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

#new span {
    background: #fff;
    position: absolute;
    color: #003a70;
    padding: 4px 10px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: -5px;
}

#popUp .close {
    color: #464646;
    right: 8px;
    top: 0px;
    position: absolute;
    font-size: 20px;
    cursor: pointer;
}

#popUp h2 {
    font-size: 17px;
    color: #464646;
    line-height: 24px;
    font-weight: 400;
    text-align: center;
    margin-top: 20px;
    padding: 0 20px;
}



a.button {
    margin: 0 auto;
    text-align: center;
    right: 0;
    left: 0;
    position: absolute;
    width: 120px;
    font-size: 15px;
    color: #fff;
    border-bottom: 2px solid #18729f;
    background: #003a70;
    border-radius: 4px;
    padding: 8px 0;
}

#plus {
    position: fixed;
    color: #fff;
    bottom: 40%;
    font-size: 15px;
    /*margin-left: -425px;*/
    margin-right: -425px;
    -webkit-transition: all 1.25s ease;
    -moz-transition: all 1.25s ease;
    -o-transition: all 1.25s ease;
    transition: all 1.25s ease;
    cursor: pointer;
    /*text-align: left;*/
    text-align: right;
    letter-spacing: 1px;
}

    #plus span {
        position: absolute;
        margin-top: 38px;
        /*left: 4px;*/
        right: 4px;
    }

    #plus::after {
        content: '';
        display: block;
        display: relative;
        /* border-top: 55px solid transparent;
        border-bottom: 55px solid transparent;*/
        border-top: 55px solid #003a70;
        border-bottom: 55px solid #003a70;
        /*border-left: 55px solid #003a70;*/
        border-right: 65px solid #003a70;
        border-radius: 90px;
        border-bottom-right-radius: 0;
        border-top-right-radius: 0;
    }

@media all and (max-width: 900px) {
    #popUp {
        /*margin-left: -425px;*/
        margin-right: -425px;
    }

    #plus {
        /*margin-left: 0px;*/
        margin-right: 0px;
    }
} 