/*
 * Jodecoba Custom Styles
 * Other Alias Ltd
*/

/* ---------------------------------------------- */
/* GENERAL



/* ---------------------------------------------- */

body {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: #ffffff;
    background-color: #ffffff;
}

a {
    color: #000000;
    text-decoration: underline;
}

.no-underline {
    text-decoration: none;
}

a:focus, a:hover {
    color: #999999;
    text-decoration: none;
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

::selection {
    background: #999999; /* WebKit/Blink Browsers */
    color: #ffffff;
}
::-moz-selection {
    background: #999999; /* Gecko Browsers */
    color: #ffffff;
}

/* ---------------------------------------------- */
/* 100% HEIGHT INTRO
/* ---------------------------------------------- */

body,html {
    height: 100%;
}

.wide {
    width:100%;
    height:100%;
    height:calc(100% - 0px);
}

.container-flex-vertical {
    min-height: 100%;  /* Fallback for browsers do NOT support vh unit */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-flex-vertical-ops {
    min-height: 80%;  /* Fallback for browsers do NOT support vh unit */
    min-height: 80vh;
}

/* ---------------------------------------------- */
/* BACKGROUND COLOURS
/* ---------------------------------------------- */

.bg-light-grey
{
    background: #f2f2f2;
}

.bg-mid-grey
{
    background: #dddddd;
}

.bg-white
{
    background: #ffffff;
}

.bg-black
{
    background: #000000;
}

.bg-off-black
{
    background: #333333;
}

.bg-black-opaque
{
    background: rgba(0,0,0,0.87);
}


/* ---------------------------------------------- */
/* TYPOGRAPHY
/* ---------------------------------------------- */

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 400;
    margin-bottom: 20px;
}

h1 {
    font-size: 50px;
}

h2 {
    font-size: 38px;
}

h3 {
    font-size: 24px;
    line-height: 30px;
}

p {
    font-family: Helvetica, Arial, sans-serif;
    line-height: 24px;
    margin: 0 0 16px;
    font-weight: 400;
}

b, strong {
    font-weight: bold
}

@media (max-width: 767px){
    h1 {
        font-size: 30px;
        line-height: 34px;
    }

    h2 {
        font-size: 26px;
        line-height: 32px;
    }

    h3 {
        font-size: 18px;
        line-height: 26px;
    }

}

/* ---------------------------------------------- */
/* BUTTONS
/* ---------------------------------------------- */

.btn-outline
{
    background-color: #ffffff;
    color: #000000;
    border-radius: 0px;
    border: solid 1px #000000;
    padding: 9px 23px 12px 23px;
    letter-spacing: 3px;
    text-decoration: none;
}

.btn-outline:hover {
    color: #ffffff;
    background-color: #000000;
    border: solid 1px #000000;
}


.btn.focus, .btn:focus {
    color: #000000;
    background-color: #ffffff;
    text-decoration: none;
}

.btn-default {
    background-color: #000000;
    color: #ffffff;
    border-radius: 0px;
    border: none;
    padding: 9px 23px 9px 23px;
    letter-spacing: 3px;
}

.btn-default:hover
{
    color: #ffffff;
    background-color: #666666;
    border: none;
}

.btn {
    font-size: 14px;
}

.btn-default:focus, .btn-default.focus {
    color: #fff;
    background-color: #333;
    border-color: none;
    outline: none;
}

.btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default {
    color: #fff;
    background-color: #333;
    border-color: none;
}

.btn-default:active:hover, .btn-default.active:hover, .open > .dropdown-toggle.btn-default:hover, .btn-default:active:focus, .btn-default.active:focus, .open > .dropdown-toggle.btn-default:focus, .btn-default:active.focus, .btn-default.active.focus, .open > .dropdown-toggle.btn-default.focus {
    color: #fff;
    background-color: #333;
    border-color: none;
    outline: none;
}

a.btn.btn-default {
    text-decoration: none;
}

.btn-primary {
    color: #000000;
    background-color: transparent;
    border-color: #000000;
    border-radius: 0px;
    padding: 10px 14px;
}

.btn-primary:hover, .btn-primary:active, .btn-primary:active:hover {
    color: #fff;
    background-color: #000000;
}

/* ---------------------------------------------- */
/* TEXT COLOURS
/* ---------------------------------------------- */

.text-light-grey
{
    color: #f5f5f5;
}

.text-mid-grey
{
    color: #bbbbbb;
}

.text-grey
{
    color: #888888;
}

.text-white
{
    color: #ffffff;
}

.text-black
{
    color: #000000;
}

.text-off-black
{
    color: #333333;
}

/* ---------------------------------------------- */
/* LAYOUT - PADDING
/* ---------------------------------------------- */

.padding-top-6x {
    padding-top: 120px;
}
.padding-top-5x {
    padding-top: 100px;
}
.padding-top-4x {
    padding-top: 80px;
}
.padding-top-3x {
    padding-top: 60px;
}
.padding-top-2x {
    padding-top: 40px;
}
.padding-top-1x {
    padding-top: 20px;
}
.padding-bottom-6x {
    padding-bottom: 120px;
}
.padding-bottom-5x {
    padding-bottom: 100px;
}
.padding-bottom-4x {
    padding-bottom: 80px;
}
.padding-bottom-3x {
    padding-bottom: 60px;
}
.padding-bottom-2x {
    padding-bottom: 40px;
}
.padding-bottom-1x {
    padding-bottom: 20px;
}
.padding-side-none {
    padding-left: 0px;
    padding-right: 0px;
}
.padding-side-1x {
    padding-left: 10px;
    padding-right: 10px;
}
.padding-side-2x {
    padding-left: 20px;
    padding-right: 20px;
}
.padding-side-3x {
    padding-left: 40px;
    padding-right: 40px;
}
.padding-left-none {
    padding-left: 0px;
}
.padding-right-none {
    padding-right: 0px;
}

/* ---------------------------------------------- */
/* SMALLER DEVICES
/* ---------------------------------------------- */

@media (max-width: 767px){

    .padding-top-6x {
        padding-top: 60px;
    }
    .padding-top-5x {
        padding-top: 50px;
    }
    .padding-top-4x {
        padding-top: 40px;
    }
    .padding-top-3x {
        padding-top: 30px;
    }
    .padding-top-2x {
        padding-top: 20px;
    }
    .padding-top-1x {
        padding-top: 10px;
    }
    .padding-bottom-6x {
        padding-bottom: 60px;
    }
    .padding-bottom-5x {
        padding-bottom: 50px;
    }
    .padding-bottom-4x {
        padding-bottom: 40px;
    }
    .padding-bottom-3x {
        padding-bottom: 30px;
    }
    .padding-bottom-2x {
        padding-bottom: 20px;
    }
    .padding-bottom-1x {
        padding-bottom: 10px;
    }
    .text-mobile-center {
        text-align: center;
    }
    .text-mobile-left {
        text-align: left;
    }
    .text-mobile-right {
        text-align: right;
    }
    .padding-side-mobile {
        padding-left: 40px;
        padding-right: 40px;
    }

}