/********** Template CSS **********/
:root {
    --primary: #647fac;
    --secondary: #d70a32;
    --light: #EFFDF5;
    --dark: #002566;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

    #spinner.show {
        transition: opacity .5s ease-out, visibility 0s linear 0s;
        visibility: visible;
        opacity: 1;
    }


/*** Button ***/
.btn {
    transition: .5s;
}

    .btn.btn-primary,
    .btn.btn-secondary {
        color: #FFFFFF;
    }

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.nav-bar {
    position: relative;
    margin-top: 0px;
    padding: 0 0rem;
    transition: .5s;
    z-index: 9999;
}

    .nav-bar.sticky-top {
        position: sticky;
        padding: 0;
        z-index: 9999;
    }

.navbar {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

    .navbar .dropdown-toggle::after {
        border: none;
        content: "\f107";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        vertical-align: middle;
        margin-left: 5px;
        transition: .5s;
    }

    .navbar .dropdown-toggle[aria-expanded=true]::after {
        transform: rotate(-180deg);
    }

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 15px 0;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    outline: none;
}

    .navbar-light .navbar-nav .nav-link:checked,
    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: #ffec8f;
    }

@media (max-width: 991.98px) {
    .nav-bar {
        margin: 0;
        padding: 0;
    }

    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand {
    max-width: 28vw; /* find suitable value for you */
    display: block;
    width: 100%;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: 100%;
        margin-top: 0;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
@media (min-width: 992px) {
    .header {
        margin-top: -120px;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        margin: 7px 0;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFFFFF;
        background: var(--primary);
        border-radius: 40px;
        font-size: 20px;
        transition: .5s;
    }

        .header-carousel .owl-nav .owl-prev:hover,
        .header-carousel .owl-nav .owl-next:hover {
            background: var(--dark);
        }

@media (max-width: 768px) {
    .header-carousel .owl-nav {
        left: 25px;
    }
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #DDDDDD;
}


/*** Icon ***/
.icon {
    padding: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF !important;
    border-radius: 50px;
    border: 1px dashed var(--primary) !important;
}


/*** About ***/
.about-img img {
    position: relative;
    z-index: 2;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: skew(20deg);
    z-index: 1;
}


/*** About ***/
.diretoria-img {
    position: relative;
    z-index: 2;
    height: 320px !important;
}

    .diretoria-img::before {
        position: absolute;
        content: "";
        top: 0;
        left: -30%;
        width: 100%;
        height: 100%;
        background: var(--primary);
        transform: skew(35deg);
        z-index: 1;
    }

.diretoria-integrante h2 {
    margin-left: 30px;
}

.diretoria-integrante p {
    margin-bottom: 0px !important;
}

.diretoria-integrante .par1 {
    margin-left: 60px;
}

.diretoria-integrante .par2 {
    margin-left: 90px;
}

.diretoria-integrante .par3 {
    margin-left: 120px;
}

    .diretoria-integrante .par1 span,
    .diretoria-integrante .par2 span,
    .diretoria-integrante .par3 span {
        display: block;
        position: relative;
        top: -24px;
        margin-left: 23px;
    }

.diretoria-anterior-buttons {
    text-align: right;
    margin-top: 0px;
    position: relative;
    top: -60px;
    height: 0px;
    z-index: 999;
}

/*** Category ***/
.cat-item div {
    background: #FFFFFF;
    border: 1px dashed rgba(0, 185, 142, .3);
    transition: .5s;
}

.cat-item:hover div {
    background: var(--primary);
    border-color: transparent;
}

.cat-item div * {
    transition: .5s;
}

.cat-item:hover div * {
    color: #FFFFFF !important;
}


/*** Property List ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

    .nav-pills .nav-item .btn:hover,
    .nav-pills .nav-item .btn.active {
        color: #FFFFFF;
    }

.property-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

    .property-item img {
        transition: .5s;
    }

    .property-item:hover img {
        transform: scale(1.1);
    }

    .property-item .border-top {
        border-top: 1px dashed rgba(0, 185, 142, .3) !important;
    }

    .property-item .border-end {
        border-right: 1px dashed rgba(0, 185, 142, .3) !important;
    }


/*** Team ***/
.team-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    transition: .5s;
}

    .team-item .btn {
        color: var(--primary);
        background: #FFFFFF;
        box-shadow: 0 0 30px rgba(0, 0, 0, .15);
    }

        .team-item .btn:hover {
            color: #FFFFFF;
            background: var(--primary);
        }

    .team-item:hover {
        border-color: var(--secondary) !important;
    }

        .team-item:hover .bg-primary {
            background: var(--secondary) !important;
        }

            .team-item:hover .bg-primary i {
                color: var(--secondary) !important;
            }


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(0, 185, 142, .3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

    .testimonial-carousel .owl-nav .owl-prev,
    .testimonial-carousel .owl-nav .owl-next {
        position: relative;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFFFFF;
        background: var(--primary);
        border-radius: 40px;
        font-size: 20px;
        transition: .5s;
    }

        .testimonial-carousel .owl-nav .owl-prev:hover,
        .testimonial-carousel .owl-nav .owl-next:hover {
            background: var(--dark);
        }


/*** Footer ***/
.navbar-right .btn.btn-social,
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 35px;
    transition: .3s;
}

    .footer .btn.btn-social:hover {
        color: var(--primary);
        border-color: var(--light);
    }

.navbar-right .btn.btn-social {
    color: #003f60;
    border: 1px solid #003f60;
    margin-right: 12px;
    width: 25px;
    height: 25px;
    border-radius: 25px;
}


.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

    .footer .btn.btn-link::before {
        position: relative;
        content: "\f105";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin-right: 10px;
    }

    .footer .btn.btn-link:hover {
        letter-spacing: 1px;
        box-shadow: none;
    }

.footer .form-control {
    border-color: rgba(255,255,255,0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

    .footer .copyright a {
        color: var(--light);
    }

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

    .footer .footer-menu a:last-child {
        margin-right: 0;
        padding-right: 0;
        border-right: none;
    }

/*---------------------------------------------------------------------- /
SECTIONS
----------------------------------------------------------------------- */

.section-cards {
    z-index: 3;
    position: relative;
}

.section-gray {
    background: #E5E5E5;
    padding: 60px 0 30px 0;
}


/*---------------------------------------------------------------------- /
CARDS
----------------------------------------------------------------------- */

.card {
    display: inline-block;
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    border-radius: 6px;
    color: rgba(0, 0, 0, 0.87);
    background: #fff;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

    .card .card-image {
        height: 60%;
        position: relative;
        overflow: hidden;
        margin-left: 15px;
        margin-right: 15px;
        margin-top: -30px;
        margin-bottom: 55px;
        border-radius: 6px;
        box-shadow: 0 16px 38px -12px rgba(0, 0, 0, 0.56), 0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
    }

        .card .card-image img {
            width: 100%;
            height: 100%;
            border-radius: 6px;
            pointer-events: auto;
        }

        .card .card-image .card-caption {
            position: absolute;
            bottom: 15px;
            left: 15px;
            color: #fff;
            font-size: 1.3em;
            text-shadow: 0 2px 5px rgba(33, 33, 33, 0.5);
        }

    .card img {
        width: 100%;
        height: auto;
    }

.img-raised {
    box-shadow: 0 16px 38px -12px rgba(0, 0, 0, 0.56), 0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}

.card .ftr {
    margin-top: 15px;
}

    .card .ftr div {
        display: inline-block;
    }

    .card .ftr .author {
        color: #888;
    }

    .card .ftr .stats {
        float: right;
        line-height: 30px;
    }

    .card .ftr .stats {
        position: relative;
        top: 1px;
        font-size: 14px;
    }


/* ============ Card Table ============ */

.table {
    margin-bottom: 0px;
}

.card .table {
    padding: 15px 30px;
}

.card .table-primary {
    background: linear-gradient(60deg, #ab47bc, #7b1fa2);
}

.card .table-info {
    background: linear-gradient(60deg, #26c6da, #0097a7);
}

.card .table-success {
    background: linear-gradient(60deg, #647fac, #647fac);
}

.card .table-warning {
    background: linear-gradient(60deg, #ffa726, #f57c00);
}

.card .table-danger {
    background: linear-gradient(60deg, #ef5350, #d32f2f);
}

.card .table-rose {
    background: linear-gradient(60deg, #ec407a, #c2185b);
}

.card [class*="table-"] {
    color: #FFFFFF;
    border-radius: 6px;
}

    .card [class*="table-"] .card-caption a,
    .card [class*="table-"] .card-caption,
    .card [class*="table-"] .icon i {
        color: #FFFFFF;
    }

    .card [class*="table-"] .icon i {
        border-color: rgba(255, 255, 255, 0.25);
    }

    .card [class*="table-"] .author a,
    .card [class*="table-"] .ftr .stats,
    .card [class*="table-"] .category,
    .card [class*="table-"] .card-description {
        color: rgba(255, 255, 255, 0.8);
    }

        .card [class*="table-"] .author a:hover,
        .card [class*="table-"] .author a:focus,
        .card [class*="table-"] .author a:active {
            color: #FFFFFF;
        }

    .card [class*="table-"] h1 small,
    .card [class*="table-"] h2 small,
    .card [class*="table-"] h3 small {
        color: rgba(255, 255, 255, 0.8);
    }


/* ============ Card Blog ============ */

.card-blog {
    margin-top: 30px;
    min-height: 600px !important;
}

    .card-blog .card-caption {
        margin-top: 5px;
    }

    .card-blog .card-image + .category {
        margin-top: 20px;
    }

.card-raised {
    box-shadow: 0 16px 38px -12px rgba(0, 0, 0, 0.56), 0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}

/*******************************/
/********** Video CSS **********/
/*******************************/
.video {
    position: relative;
    margin: 45px 0;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(3, 15, 39, .9), rgba(3, 15, 39, .9)), url(../img/carousel-1.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

    .video .btn-play {
        position: absolute;
        z-index: 1;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
        box-sizing: content-box;
        display: block;
        width: 32px;
        height: 44px;
        border-radius: 50%;
        border: none;
        outline: none;
        padding: 18px 20px 18px 28px;
    }

        .video .btn-play:before {
            content: "";
            position: absolute;
            z-index: 0;
            left: 50%;
            top: 50%;
            transform: translateX(-50%) translateY(-50%);
            display: block;
            width: 100px;
            height: 100px;
            background: #fdbe33;
            border-radius: 50%;
            animation: pulse-border 1500ms ease-out infinite;
        }

        .video .btn-play:after {
            content: "";
            position: absolute;
            z-index: 1;
            left: 50%;
            top: 50%;
            transform: translateX(-50%) translateY(-50%);
            display: block;
            width: 100px;
            height: 100px;
            background: #fdbe33;
            border-radius: 50%;
            transition: all 200ms;
        }

        .video .btn-play:hover:after {
            background-color: darken(#fdbe33, 10%);
        }

        .video .btn-play img {
            position: relative;
            z-index: 3;
            max-width: 100%;
            width: auto;
            height: auto;
        }

        .video .btn-play span {
            display: block;
            position: relative;
            z-index: 3;
            width: 0;
            height: 0;
            border-left: 32px solid #030f27;
            border-top: 22px solid transparent;
            border-bottom: 22px solid transparent;
        }

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}

/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

    .contact .col-md-6 {
        padding-top: 30px;
        padding-bottom: 30px;
    }

        .contact .col-md-6:first-child {
            background: #030f27;
        }

        .contact .col-md-6:last-child {
            background: #7f868d;
        }

    .contact .contact-info {
        position: relative;
        width: 100%;
        padding: 0 15px;
    }

    .contact .contact-item {
        position: relative;
        margin-bottom: 30px;
        padding: 30px;
        display: flex;
        align-items: flex-start;
        flex-direction: row;
        border: 1px solid rgba(256, 256, 256, .2);
    }

        .contact .contact-item [class^="flaticon-"]::before {
            margin: 0;
            color: #7f868d;
            font-size: 40px;
        }

    .contact .contact-text {
        position: relative;
        width: auto;
        padding-left: 20px;
    }

        .contact .contact-text h2 {
            color: #7f868d;
            font-size: 20px;
            font-weight: 600;
        }

        .contact .contact-text p {
            margin: 0;
            color: #ffffff;
            font-size: 16px;
        }

    .contact .contact-item:last-child {
        margin-bottom: 0;
    }

    .contact .contact-form {
        position: relative;
        padding: 0 15px;
    }

        .contact .contact-form input {
            color: #ffffff;
            height: 40px;
            border-radius: 0;
            border-width: 1px;
            border-color: rgba(256, 256, 256, .4);
            background: transparent;
        }

        .contact .contact-form textarea {
            color: #ffffff;
            height: 185px;
            border-radius: 0;
            border-width: 1px;
            border-color: rgba(256, 256, 256, .4);
            background: transparent;
        }

        .contact .contact-form input:focus,
        .contact .contact-form textarea {
            box-shadow: none;
        }

        .contact .contact-form .form-control::placeholder {
            color: #ffffff;
            opacity: 1;
        }

        .contact .contact-form .form-control::-ms-input-placeholder {
            color: #ffffff;
        }

        .contact .contact-form .form-control::-ms-input-placeholder {
            color: #ffffff;
        }

        .contact .contact-form .btn {
            padding: 16px 30px;
            font-size: 16px;
            font-weight: 600;
            color: #7f868d;
            background: #002566;
            border: none;
            border-radius: 0;
            transition: .3s;
        }

            .contact .contact-form .btn:hover {
                color: #030f27;
                background: #ffffff;
            }

    .contact .help-block ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
    }

/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

    .blog .blog-carousel {
        position: relative;
        width: calc(100% + 30px);
        left: -15px;
        right: -15px;
    }

    .blog .blog-item {
        position: relative;
        margin: 0 30px;
        background: rgba(29, 36, 52, .04);
        overflow: hidden;
    }

    .blog .blog-page .blog-item {
        margin: 0 0 30px 0;
    }

    .blog .blog-img {
        position: relative;
        width: 100%;
    }

        .blog .blog-img::after {
            position: absolute;
            content: "";
            top: 15px;
            right: 15px;
            bottom: 15px;
            left: 15px;
            background: transparent;
            border: 1px solid #ffffff;
            z-index: 1;
        }

        .blog .blog-img img {
            width: 100%;
        }

    .blog .blog-meta {
        position: relative;
        padding: 20px 30px 12px 30px;
    }

        .blog .blog-meta * {
            display: inline-block;
            margin: 0;
            padding: 0;
            font-size: 14px;
            font-weight: 300;
            color: #797979;
        }

        .blog .blog-meta i {
            margin: 0 2px 0 10px;
        }

            .blog .blog-meta i:first-child {
                margin-left: 0;
            }

    .blog .blog-text {
        position: relative;
        padding: 0 30px 30px 30px;
        min-height: 280px;
    }

        .blog .blog-text h2 {
            font-size: 18px;
            font-weight: 600;
        }

        .blog .blog-text p {
            margin-bottom: 10px;
        }

    .blog .blog-item a.btn {
        padding: 0;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        color: #1d2434;
        transition: .3s;
    }

        .blog .blog-item a.btn i {
            margin-left: 5px;
        }

        .blog .blog-item a.btn:hover {
            color: #002566;
        }

    .blog .owl-nav {
        width: 150px;
        margin: 32px auto 0 auto;
        display: flex;
    }

        .blog .owl-nav .owl-prev,
        .blog .owl-nav .owl-next {
            margin-left: 15px;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #c8d3e5;
            background: #003f60;
            font-size: 22px;
            transition: .3s;
        }

            .blog .owl-nav .owl-prev:hover,
            .blog .owl-nav .owl-next:hover {
                color: #1d2434;
                background: #647fac;
            }

    .blog .pagination .page-link {
        color: #1d2434;
        border-radius: 0;
        border-color: #1d2434;
    }

        .blog .pagination .page-link:hover,
        .blog .pagination .page-item.active .page-link {
            color: #647fac;
            background: #1d2434;
        }

    .blog .pagination .disabled .page-link {
        color: #999999;
    }

/* ============ Text Color ============ */

.text-warning {
    color: #ff9800;
}

.text-primary {
    color: #9c27b0;
}

.text-danger {
    color: #f44336;
}

.text-success {
    color: #4caf50;
}

.text-info {
    color: #0e3506;
}

.text-rose {
    color: #e91e63;
}

.text-gray {
    color: #7f868d;
}

.bi {
    cursor: pointer;
    font-size: 20pt;
    font-weight: bold !important;
}

.directorship-carousel-buttons {
    text-align: right;
    position: relative;
    top: 2px;
    padding-right: 13px;
    height: 0px;
    z-index: 99;
}


.directorship-carousel-title {
    text-align: center;
    position: relative;
    height: 0;
}

.content-layout {
    border: 1px solid rgba(0, 37, 102, 1)
}

    .content-layout.destaque {
        min-height: 775px;
    }


.sac-area-associado {
    height: 660px;
}

    .sac-area-associado .sac {
        background-color: #e4e8e6;
        padding: 2.0rem !important;
        padding-top: 120px !important;
    }

    .sac-area-associado .associado {
        padding: 2.0rem !important;
    }

@media (max-width: 1200px) {
    .navbar-right {
        display: none;
    }

    .botao-destaque {
        display: none;
    }

    .sac-area-associado {
        display: none;
    }
}

.navbar-right {
    position: absolute;
    width: 400px;
    height: 100px;
    top: 0;
    right: 0;
    padding: 25px;
    text-align: right;
    display: block;
}


.form-group label {
    font-weight: bold;
}

.input-group .dropdown-toggle {
    border-radius: 5px !important;
    border: 1px solid #ced4da;
    border-left: hidden;
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
    appearance: none;
    transition: border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out
}


.input-group .form-control {
    border-right: hidden;
    border-top-left-radius: 5px !important;
    border-bottom-left-radius: 5px !important;
}

.webinar-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    background-color: white !important;
    padding: 30px 10px 20px 10px;
    border-radius: 10px;
    margin-bottom: 30px;
}

    .webinar-item img {
        height: 150px !important;
    }

    .webinar-item .equipe {
        min-height: 76px;
        margin-top: 10px;
        margin-left: 15px;
    }

    .webinar-item .assistir {
        text-align: right;
        margin-top: 10px;
    }


    input[type=text],
    textarea
    {
        text-transform:uppercase;
    }