<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*==============================================================
    ====================CREATRIX IDEAS========================
    =====================YON FREN CSS=========================
    ============================================================*/

@media screen and (max-width:480px) {
    body {
        font-family: 'Roboto', sans-serif;
        background-color: #e8e8e8;
    }
}

@media screen and (min-width:481px) {
    body {
        font-family: 'Roboto', sans-serif;
        background: url(../Images/General/background.jpg) no-repeat center center fixed;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }
}

.language {
    padding: 10px 5px 10px 0;
    text-align: right;
}

    .language a {
        padding-left: 5px;
        text-decoration: none;
    }

        .language a img {
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.20), 0 1px 2px rgba(0, 0, 0, 0.24);
        }

        .language a:hover {
            opacity: 0.6;
            filter: alpha(opacity=60); /* For IE8 and earlier */
        }

/* Container */
.container {
    position: relative;
    max-width: 800px;
    width: 100%;
    /*margin: 0 auto 100px;*/
    margin-top: 30px;
}

    .container.one {
        max-width: 480px;
    }


/* Card */
.card {
    position: relative;
    background: #ffffff;
    border-radius: 5px;
    padding: 30px 0 30px 0;
    box-sizing: border-box;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.24);
    -webkit-transition: .3s ease;
    transition: .3s ease;
    /* Title */
    /* Inputs */
    /* Button */
    /* Footer */
    /* Alt Card */
}



@media screen and (max-width:480px) {
    .card .in {
        border-right: none;
    }

        .card .in h1 {
            padding: 10px 30px;
            font-size: 24px;
            color: #44a0de;
            margin-top: 20px;
            text-align: center;
        }

        .card .in .content-text {
            padding: 10px 30px;
            font-size: 11px;
            color: #757575;
            text-align: justify;
            font-weight: 400;
            line-height: 22px;
        }

      /*  .card .in .member-button {
            padding: 10px;
            font-size: 16px;
            color: #212121;
            text-align: center;
            font-weight: 400;
            line-height: 22px;
        }*/
}

@media screen and (min-width:481px) {
    .card .in {
        border-right: 1px solid #e8e6e6;
    }

        .card .in h1 {
            padding: 10px 30px;
            font-size: 24px;
            color: #44a0de;
            margin-top: 20px;
        }

        .card .in .content-text {
            padding: 10px 30px;
            font-size: 11px;
            color: #757575;
            text-align: justify;
            font-weight: 400;
            line-height: 22px;
        }

       
}

.card .in .member-button {
    padding: 10px 30px;
    font-size: 16px;
    color: #FFF;
    text-align: center;
    font-weight: 400;
    line-height: 22px;
    display: inline-block;
    position: relative;
    width: 84%;
    margin: 0 8%;
    background-color: #ff0000;
}


.card .in .member-button:hover {
    background-color: #c60000;
}

.card .in .member-button a:link, .card .in .member-button a:visited, .card .in .member-button a:active {
    color: #FFF;
}


.card .title {
    position: relative;
    z-index: 1;
    /*border-left: 5px solid #44a0de;*/
    margin: 0 0 15px;
    padding: 10px 0 10px 0;
    color: #44a0de;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}

@media screen and (min-width:481px) {
    .card .input-container {
        position: relative;
        margin: 5px 40px 15px 40px;
    }
}

@media screen and (max-width:480px) {
    .card .input-container {
        position: relative;
        margin: 5px 10px 15px 10px;
    }
}


.card .input-container-text {
    position: relative;
    margin: 5px 40px 15px 40px;
    text-align: justify;
    font-size: 12px;
    line-height: 20px;
}

.card .input-container input, .card .input-container select {
    outline: none;
    z-index: 1;
    position: relative;
    background: none;
    width: 100%;
    height: 40px;
    border: 0;
    color: #212121;
    font-size: 16px;
    font-weight: 400;
}


    .card .input-container input:focus ~ label {
        color: #9d9d9d;
        -webkit-transform: translate(-12%, -50%) scale(0.75);
        transform: translate(-12%, -50%) scale(0.75);
        padding-bottom: 10px;
    }

    .card .input-container input:focus ~ .bar:before, .card .input-container input:focus ~ .bar:after {
        width: 50%;
    }

    .card .input-container input:valid ~ label {
        color: #9d9d9d;
        -webkit-transform: translate(-12%, -50%) scale(0.75);
        transform: translate(-12%, -50%) scale(0.75);
        padding-bottom:10px;
    }

.card .input-container label {
    position: absolute;
    top: 0;
    left: 0;
    color: #757575;
    font-size: 16px;
    font-weight: 300;
    line-height: 40px;
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
}

.card .input-container .bar {
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.12);
    width: 100%;
    height: 1px;
}

    .card .input-container .bar:before, .card .input-container .bar:after {
        content: '';
        position: absolute;
        background: #44a0de;
        width: 0;
        height: 2px;
        -webkit-transition: .2s ease;
        transition: .2s ease;
    }

    .card .input-container .bar:before {
        left: 50%;
    }

    .card .input-container .bar:after {
        right: 50%;
    }

.card .button-container {
    margin: 20px 60px 0 60px;
    text-align: center;
}

    .card .button-container button,
    .card .button-container input[type=submit],
    .card .button-container input[type=button] {
        outline: 0;
        cursor: pointer;
        position: relative;
        display: inline-block;
        background: #44a0de;
        max-width: 200px;
        width: 100%;
        border: 2px solid #FFF;
        padding: 10px 0;
        font-size: 16px;
        font-weight: 400;
        line-height: 1;
        text-transform: uppercase;
        overflow: hidden;
        -webkit-transition: .3s ease;
        transition: .3s ease;
        color: #FFF;
    }

        .card .button-container button span {
            position: relative;
            z-index: 1;
            -webkit-transition: .3s ease;
            transition: .3s ease;
        }

        .card .button-container button:before,
        .card .button-container input[type=submit]:before,
        .card .button-container input[type=button]:before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            display: block;
            background: #44a0de;
            width: 30px;
            height: 30px;
            border-radius: 100%;
            margin: -15px 0 0 -15px;
            opacity: 0;
            -webkit-transition: .3s ease;
            transition: .3s ease;
        }

        .card .button-container button:hover,
        .card .button-container button:active,
        .card .button-container button:focus,
        .card .button-container button:before,
        .card .button-container input[type=submit]:hover,
        .card .button-container input[type=button]:hover,
        .card .button-container button:before,
        .card .button-container input[type=submit]:active,
        .card .button-container input[type=button]:active,
        .card .button-container button:before,
        .card .button-container input[type=submit]:before,
        .card .button-container input[type=button]:before {
            border-color: #387dac;
        }

            .card .button-container button:hover span, .card .button-container button:active span, .card .button-container button:focus span {
                color: #FFF;
            }

            .card .button-container button:active span, .card .button-container button:focus span {
                color: #ffffff;
            }

            .card .button-container button:active:before, .card .button-container button:focus:before {
                opacity: 1;
                -webkit-transform: scale(10);
                transform: scale(10);
            }

            .cardcbox {
                float:left;
                padding-right:10px;
                padding-bottom:30px;
            }

.card .footer {
    margin: 40px 0 0;
    color: #9d9d9d;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
}

    .card .footer a {
        color: inherit;
        text-decoration: none;
        -webkit-transition: .3s ease;
        transition: .3s ease;
    }

        .card .footer a:hover {
            color: #bababa;
        }

.card.alt {
    position: absolute;
    top: 40px;
    right: -70px;
    z-index: 10;
    width: 140px;
    height: 140px;
    background: none;
    border-radius: 100%;
    box-shadow: none;
    padding: 0;
    -webkit-transition: .3s ease;
    transition: .3s ease;
    /* Toggle */
    /* Title */
    /* Input */
    /* Button */
}

    .card.alt .toggle {
        position: relative;
        background: #44a0de;
        width: 140px;
        height: 140px;
        border-radius: 100%;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
        color: #ffffff;
        font-size: 58px;
        line-height: 140px;
        text-align: center;
        cursor: pointer;
    }

        .card.alt .toggle:before {
            content: '\f040';
            display: inline-block;
            font: normal normal normal 14px/1 FontAwesome;
            font-size: inherit;
            text-rendering: auto;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
        }

    .card.alt .title,
    .card.alt .input-container,
    .card.alt .button-container {
        left: 100px;
        opacity: 0;
        visibility: hidden;
    }

    .card.alt .title {
        position: relative;
        border-color: #ffffff;
        color: #ffffff;
    }

        .card.alt .title .close {
            cursor: pointer;
            position: absolute;
            top: 0;
            right: 60px;
            display: inline;
            color: #ffffff;
            font-size: 58px;
            font-weight: 400;
        }

            .card.alt .title .close:before {
                content: '\00d7';
            }

    .card.alt .input-container input {
        color: #ffffff;
    }

        .card.alt .input-container input:focus ~ label {
            color: #ffffff;
        }

        .card.alt .input-container input:focus ~ .bar:before, .card.alt .input-container input:focus ~ .bar:after {
            background: #ffffff;
        }

        .card.alt .input-container input:valid ~ label {
            color: #ffffff;
        }

    .card.alt .input-container label {
        color: rgba(255, 255, 255, 0.8);
    }

    .card.alt .input-container .bar {
        background: rgba(255, 255, 255, 0.8);
    }

    .card.alt .button-container button {
        width: 100%;
        background: #ffffff;
        border-color: #ffffff;
    }

        .card.alt .button-container button span {
            color: #44a0de;
        }

        .card.alt .button-container button:hover {
            background: rgba(255, 255, 255, 0.9);
        }

        .card.alt .button-container button:active:before, .card.alt .button-container button:focus:before {
            display: none;
        }

/* Keyframes */
@-webkit-keyframes buttonFadeInUp {
    0% {
        bottom: 30px;
        opacity: 0;
    }
}

@keyframes buttonFadeInUp {
    0% {
        bottom: 30px;
        opacity: 0;
    }
}
</pre></body></html>