/* Copyright 2015 Prismatec. Todos os direitos reservados. */

/* Classes gerais */


/* Classes para conteúdo */

.box
{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.wrapper
{
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

/* Classes para fontes */

.title
{
    font-size: 48px;
    line-height: 58px;
    color: #4F4F4F;
    text-align: center;
}
.p
{
    font-size: 16px;
    line-height: 19px;
}

/* Classes para ajustes de margens */

.mt-83
{
    margin-top: 83px;
}
.mt-28
{
    margin-top: 28px;
}
.mb-42
{
    margin-bottom: 42px;
}
.ml-50
{
    margin-left: 50px;
}

/* Classes para divisão de sessões */

.line
{
    background: #EBEBEB;
    width: 100%;
    height: 1px;
}

/* Classes para elementos de navegação */

.left-nav, .left-nav-w, .right-nav, .right-nav-w
{
    position: absolute;
}
.left-nav
{
    background: url(../img/left-nav.png) no-repeat;
}
.right-nav
{
    background: url(../img/right-nav.png) no-repeat;
}
.left-nav-w
{
    background: url(../img/left-nav-w.png) no-repeat;
}
.right-nav-w
{
    background: url(../img/right-nav-w.png) no-repeat;
}

/* Classes para o botão fechar */

.close-btn, .close-btn-b
{
    background-repeat: no-repeat;
    background-size: 100%;
    width: 89px;
    height: 89px;
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 3;
}
.close-btn
{
    background-image: url(../img/close-btn.png);
    opacity: 0.6;
}
    .close-btn:hover
    {
        opacity: 1;
        cursor: pointer;
    }
.close-btn-b
{
    background-image: url(../img/close-btn-b.png);
    opacity: 0.4;
}
    .close-btn-b:hover
    {
        opacity: 0.8;
        cursor: pointer;
    }

/* Classes para animações */

.trans-06
{
    -webkit-transition:	all 0.6s linear;
    -moz-transition: all 0.6s linear;
    -o-transition: all 0.6s linear;
    transition: all 0.6s linear;
}
.trans-02
{
    -webkit-transition:	all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.trans-01
{
    -webkit-transition:	all 0.1s ease-out;
    -moz-transition: all 0.1s ease-out;
    -o-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out;
}


/* Largura máxima 1370px */

@media screen and (max-width: 1370px) {
    
    /* Classes para conteúdo */

    .wrapper
    {
        padding: 0 30px;
    }
    
    /* Classes para fontes */

    .title
    {
        font-size: 40px;
        line-height: 50px;
    }
    
    /* Classes para ajustes de margens */

    .ml-50
    {
        margin-left: 180px !important;
    }
    
}


/* Largura máxima 768px */

@media screen and (max-width: 768px) {
    
    /* Classes para o botão fechar */

    .close-btn, .close-btn-b
    {
        width: 40px;
        height: 40px;
    }
    
    /* Classes para ajustes de margens */

    .ml-50
    {
        margin-left: 130px !important;
    }
    
}


/* Largura máxima 640px */

@media screen and (max-width: 640px) {
    
    .mt-83
    {
        margin-top: 50px;
    }
    .mb-42
    {
        margin-bottom: 30px;
    }
    
    /* Classes para o botão fechar */

    .close-btn, .close-btn-b
    {
        width: 15px;
        height: 15px;
    }
    
}