﻿body {
    font-family: 'Rubik', sans-serif; /*test*/
    font-size: 14px;
    color: black;
    background-image: url(img/bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    padding-bottom: 50px;
}
#sib-container {
    font-family: 'Rubik', sans-serif !important;
    font-size: 14px;
}
*:hover {
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}
a:link {
    color: #8383d4;
    text-decoration: none;
}
.content {
    padding:0 20px;
}
.header-main {
    position: relative;
}
.top-h {
    padding-top: 10px;
    padding-bottom: 10px;
    background: white;
    border-bottom: 2px solid #dedede;
}
    .top-h span {
        float:right;
        display:none;
    }
        .top-h span.menu-sw {
            vertical-align: top;
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 28px;
        }
    .top-h .log {
        font-family: 'Playfair Display', serif;
        color: black;
        font-size: 24px;
        text-decoration: none !important;
        line-height: 22px;
        opacity: 1;
        width: 100%;
        max-width: 320px;
        display: block;
    }
    .top-h .log:hover {
        opacity: 0.7;
    }
        .top-h .log img {
            width: 100%;
        }
.top-b {
    background: #f2f2f2;
    border-bottom: 1px solid #505050;
    text-align:center;
}
ul.menu-main {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    text-align: center;
    display: inline-flex;
}
    ul.menu-main li {
        display: inline-block;
    }
        ul.menu-main li a {
            color: black;
            font-size:16px;
            text-decoration: none;
            padding: 10px 15px;
            display: inline-block;
            text-transform: uppercase;
            border-left: 1px solid #dedede;
            background: transparent;
            opacity:1;
        }
        ul.menu-main li:last-of-type a {
            border-right: 1px solid #dedede;
        }
        ul.menu-main li a:hover {
            opacity: 0.5;
        }
        ul.menu-main li.current a {
            background: #8383d4;
            color: white;
        }
            ul.menu-main li.current a:hover {
                opacity: 1 !important;
            }
.banner {
    background-color: rgba(0,0,0,0.5);
    text-transform: uppercase;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 16px;
}
footer.footer {
    background: black;
    color: white;
    text-align: center;
    padding: 10px;
    width: 100%;
    margin-top: 20px;
}
.fixed-botton {
    position:absolute;
    bottom:initial;
}
.main-content {
    text-align: center;
    filter: blur(0);   
}
.blured {
    filter: blur(30px);
}
.main-box {
    background: white;
    border-radius: 5px;
    width: 100%;
    max-width: 1350px;
    margin: 5px auto;
    padding: 10px 40px;
    -webkit-box-shadow: 0px 2px 3px -1px rgb(0 0 0 / 30%);
    box-shadow: 0px 2px 3px -1px rgb(0 0 0 / 30%);
    display: inline-flex;
}
    .main-box.main-box-normal {
        display: inherit;
    }
    .main-box p {
        text-align: justify;
    }
.one-half {
    float: left;
    width: 59.6666%;
    text-align: left;
    /*padding-right: 20px;*/
}

.two-third {
    float: left;
    width: 80%;
    text-align: left;
    /*padding-right: 20px;*/
}

.one-third {
    float: left;
    width: 40%;
    text-align: left;
    /*padding-right: 20px;*/
}

ul.chess-list {
    padding: 0;    
    list-style: none;
    /* max-width: 500px;*/
    width: 100%;
    margin-bottom: 5px;
    margin-top: 0px;
}
    ul.chess-list li {
        position: relative;
        padding-left: 30px;
        padding-right: 30px;
        margin-bottom: 15px;
    }
        ul.chess-list li i.fas {
            position: absolute;
            left: 0;
            top: 2px;
            width: 20px;
            text-align: center;
            font-size: 16px;
        }
    ul.chess-list.front-list li {
        font-size: 16px;
    }
.newsletter-bn {
    display: block;
    text-decoration: none;
    background: #8383d4;
    color: white !important;
    text-align: center;
    font-size: 15px;
    padding: 15px 0;
    max-width: 500px;
    width: 100%;
    font-weight: 300;
    margin-top: 30px;
}
    .newsletter-bn:hover {
        background: #5454b0;
    }
    .newsletter-bn i {
        margin-right: 10px;
    }
.members-list {
    padding: 0;
    list-style: none;
    width: 100%;
    display: block;
}
    .members-list li {
        display: inline-block;
        padding: 12px 15px;
        background: whitesmoke;
        border: 1px solid #ececec;
        border-radius: 5px;
        margin: 10px;
        position: relative;
        min-width: 256px;
    }
        .members-list li:hover {
            background: white;
        }
        .members-list li a:after {
            content: "";
            background: url(img/expand-alt-solid.svg) rgba(0,0,0,0.5);
            background-size: 22px !important;
            background-repeat: no-repeat !important;
            background-position: center !important;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 99;
            color: white;
            width: 100%;
            height: 100%;
            text-align: center;
            vertical-align: middle;
            border-radius: 4px;
            font-size: 22px;
            opacity: 0;
            -webkit-transition: all 250ms ease-in-out;
            -moz-transition: all 250ms ease-in-out;
            -ms-transition: all 250ms ease-in-out;
            -o-transition: all 250ms ease-in-out;
            transition: all 250ms ease-in-out;
        }
        .members-list li:hover a:after {
            opacity: 1;
        }
    .members-list img {
        width: 100%;
        max-width: 160px;
    }
    .members-list a {
        color: black;
        text-decoration: none;
    }
.tittle-main {
    font-family: 'Playfair Display', serif;
    font-size: 25px;
    border-bottom: 1px solid lightgray;
    padding-bottom: 10px;
    max-width: 1150px;
    width: 100%;
    margin: 0 auto 10px auto;
    position: relative;
    text-transform: uppercase;
}

.tittle-main-specialManual {
    font-family: 'Playfair Display', serif;
    font-size: 25px;
    border-bottom: 1px solid lightgray;
    padding-bottom: 10px;
    max-width: 1150px;
    width: 100%;
    margin: 0 auto 10px auto;
    position: initial;
    text-transform: uppercase;
}
.tittle-modal {
    font-family: 'Playfair Display', serif;
    font-size: 22px !important;
    padding-bottom: 0;
    margin: 0 !important;
    position: relative;
    text-transform: uppercase;
    display: inline-block;
    width: 100%;
    text-align: center;
}

button.close {
    position: absolute;
    top: 7px;
    right: 15px;
    z-index: 9999;
}
.members-list div {
    margin-top: 10px;
}
.bio-img {
    display: block;
    padding: 12px 15px;
    background: whitesmoke;
    border: 1px solid #ececec;
    border-radius: 5px;
    margin: 0 auto;
    position: relative;
    max-width: 230px;
    text-align: center;
    width: 100%;
}
    .bio-img img {
        width: 100%;
    }
.bio-pop-head {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 10px;
    border-bottom: 1px solid black;
    padding-bottom: 10px;
}
.bio-pop-head b {
    font-size: 20px;
}
.bio-content {
    padding-right:30px;
}
    .bio-content p {
        text-align: justify;
    }
.logo-car {
    text-align: center;
}
    .logo-car img {
        height: 135px !important;
        margin-right: 30px;
        vertical-align: middle;
    }
.separator {
    border-bottom: 1px solid lightgray;
    max-width: 1150px;
    width: 100%;
    margin: 20px auto 30px auto;
    position: relative;
}

.normal-list {
    text-align: left;
    max-width: 100% !important;
    margin-left: 20px
}
.text-center p {
    text-align: center;
}
    .text-center p .newsletter-bn {
        margin: 0 auto 30px auto;
    }
.text-left {
    text-align: left;
}
a.newsletter-bn.contact-bn {
    background: #5454b0;
}
    a.newsletter-bn.contact-bn:hover {
        background: #47479a;
    }
.modal-content .tittle-main {
    font-size: 20px;
    margin-bottom: 20px;
}
.normal-form label {
    font-weight: 400;
    text-transform: uppercase;
}
.normal-form input[type=text],
.normal-form input[type=email],
.normal-form textarea {
    border: 1px solid #dadada;
    padding: 6px 12px;
    border-radius: 3px;
    width: 100%;
    max-width: 380px;
    text-align: center;
    margin-bottom: 10px;
}
.normal-form textarea {
    min-height: 70px;
    resize: inherit;
}
.send-bn {
    display: block;
    text-decoration: none;
    background: #8383d4;
    color: white !important;
    text-align: center;
    font-size: 15px;
    padding: 15px 0;
    max-width: 380px;
    width: 100%;
    font-weight: 300;
    margin: 10px auto 30px;
    border: none;
    text-transform: uppercase;
}
    .send-bn:hover {
        background: #5454b0;
    }
    .send-bn i {
        margin-right: 10px;
    }
.normal-form .separator {
    margin: 0 0 20px 0;
}
.terms-sw {
    background: #eaeaea;
    border-radius: 99px;
    padding: 5px 15px;
    max-width: 380px;
    display: inline-block;
    opacity:1;
    cursor:pointer
}
    .terms-sw:hover {
        opacity:0.7;
    }
.deployed {
    color: #8383d4;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}
.open-menu {
    display: block !important;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
    opacity:1 !important;
}
.img-lk {
    opacity:1;
}
    .img-lk:hover {
        opacity: 0.8;
    }
.no-scroll {
    overflow:hidden;
}
#error_message, #success_message {
    background: #f5f5f5;
    text-transform: uppercase;
    height: auto !important;
    padding: 0 !important;
    max-width: 380px;
    margin: 0 auto;
    border-radius: 99px;
}
    #error_message div, #success_message div {
        padding: 5px;
    }
        #error_message div i, #success_message div i {
            margin-right: 5px;
        }
#error_message {
    color:red;
}

.error {
    color: red;
}

.messageError {
    color: red;
}

div.form-group > label {
    text-transform: uppercase;
    font-family:"Helvetica", sans-serif; color:#3c4858;
}

#success_message {
    color: #8383d4
}
span#formSus, span#formCon {
    position: relative;
    top: -10px;
    margin-bottom: 10px;
    display: block;
}
.logo-car a:hover {
    opacity: 0.5;
}

a.img-lk img {
    max-height: initial;
}
.modal-header {
    position: relative;
    z-index: 99999;
}
.one-quarter {
    width: 48.333%;
    height: 180px;
    display: inline-block;
    position: relative;
    background: black;
    overflow: hidden;
    margin: 0 auto;
}
    .one-quarter iframe {
        height: auto;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
    }

.normalText {
    text-align: left;
    font-size: 16px;
    padding-bottom: 5px;
    padding-top: 5px;
    padding-right: 30px;
}

.normalList {
    padding-bottom: 10px;
}

.main-box-new {
    background: white;
    border-radius: 5px;
    width: 100%;
    max-width: 1350px;
    margin: 5px auto;
    padding: 10px 40px;
    -webkit-box-shadow: 0px 2px 3px -1px rgb(0 0 0 / 30%);
    box-shadow: 0px 2px 3px -1px rgb(0 0 0 / 30%);    
}

.listItem-new {
    list-style-type: none;
}

.normalTable {
    
}

.table6on10 {
    width: 60%;
}

.table4on10 {
    width: 40%;
}

.table7on10 {
    width: 70%;
    vertical-align: top;
}

.table3on10 {
    width: 30%;
    padding-left: 20px;
    vertical-align: top;
}

.reCenter {
    padding-right: 40px;
}

.videoDisplay {
    width: 426px ;
    height: 240px;
}



/*ANIMATIONS*/
.slide-in-top {
    -webkit-animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.fade-in {
    -webkit-animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
@-webkit-keyframes slide-in-top {
    0% {
        -webkit-transform: translateY(-1000px);
        transform: translateY(-1000px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes slide-in-top {
    0% {
        -webkit-transform: translateY(-1000px);
        transform: translateY(-1000px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}
@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/*RESPONSIVE*/
@media (max-width: 1024px) {
    .top-h.content {
        position: relative;
        z-index: 999;
    }
    .main-box {
        display: block;
        padding: 25px 25px;
    }

    .main-box-new {
        display: block;
        padding: 25px 25px;
    }

    .table6on10 {
        width: 100%;
    }

    .table4on10 {
        width: 100%;
    }


    .table7on10 {
        width: 100%;
    }

    .table3on10 {
        width: 100%;
        padding-left: 0px;
    }

    .normalTable {
        display: block;
    }

    .videoDisplay {
        width: 256px;
        height: 144px;
    }

    .one-half {
        float: none !important;
        width: 100%;
        max-width: 500px;
        margin: 0px auto 20px auto;
    }
    .main-box {
        max-width: 650px;
    }

    .main-box-new {
        max-width: 650px;
    }

    .main-table {
        max-width: 650px;
    }
    .top-b {
        display: none;
        position: absolute;
        z-index: 99;
        width: 100%;
        max-width: 500px;
        -webkit-box-shadow: 0px 4px 7px -2px rgb(0 0 0 / 40%);
        box-shadow: 0px 4px 7px -2px rgb(0 0 0 / 40%);
        opacity: 0;
        left: 0;
        top: 73px;
    }
    .top-h span {
        display:block;
    }
    .newsletter-bn {
        padding: 15px;
    }
    .banner {
        padding: 15px;
    }
    ul.chess-list {
        margin-top:0;
    }
    ul.menu-main {
        display: block;
    }
        ul.menu-main li {
            display: block;
            width: 100%;
        }
            ul.menu-main li a {
                border-left: none;
                border-right: none !important;
                border-bottom: 1px solid #dedede;
                width: 100%;
                padding: 15px;
            }
    .bio-content {
        padding: 20px 10px;
    }
    footer.footer.fixed-botton.res-foot {
        position: absolute;
    }
}
/*@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape) {
    .fixed-botton {
        position: relative;
    }
}*/
@media (max-width: 767px) {
    span#formSus, span#formCon {
        margin-left: -30px;
        margin-right: -30px;
    }
    .fixed-botton {
        bottom:initial;
    }
    .one-half iframe {
        height: inherit;
    }
    .bio-content {
        padding: 20px 10px;
    }
    .logo-car img:first-of-type {
        width:100%;
        height:auto !important;
    }
    .logo-car img {
        margin: 10px auto;
        max-height: 105px;
        display: block;
    }
    .logo-car a {
        opacity:1;
    }
    .one-quarter {
        width: 100%;
        height: 250px;
    }
}