/* PREMIER PLUS BASIC STYLES */
/*
Premier Plus
Alexis Farfan Perez
UI Designer & Front End
@alexiscrew
*/

/* 
Fonts:
font-family: 'Montserrat', sans-serif;

Colors:
Red:    #D10024
Orange: var(--secondary)
Blue:   var(--primary)
Gris:   #423F40
Gris 2: #E6E7E8
*/

/* GENERAL */
*, html {
    font-family: 'Montserrat', sans-serif;
}
*:focus { 
    outline: none; 
} 
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary);
}
p {
    font-family: 'Montserrat', sans-serif;    
}
p, li {
    color: #423F40;
}
a {
    transition: all 0.25s ease;
    cursor: pointer;
}
a:hover {
    text-decoration: none;
}
a:focus, button:focus {
    outline: none;
}
label {
    margin-bottom: 0;
    margin-left: 2px;
    font-size: 14px;
}

/* COLORS */
.gn-color-orange {
    color: var(--secondary);
}
.gn-color-yellow {
    color: #ffc638;
}
.gn-color-blue {
    color: var(--primary);
}
.gn-color-blue-ligth {
    color: #002b49;
}
.gn-color-black {
    color: #000;
}
.gn-color-platinum {
    color: #686767;
}
.gn-color-gold {
    color: #ac803b;
}
.gn-bg-orange {
    background-color: var(--secondary);
}
.gn-bg-blue {
    background-color: var(--primary);
}
.gn-bg-blue-ligth {
    background-color: #002b49;
}
.gn-bg-color-grey {
    background-color: #F0F3F6;
}

/* TEXT */
.gn-text-small {
    font-size: 14px;
}

/* TITLES */
.gn-big-title {
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 40px;
    line-height: 110%;
}
.gn-sub-title {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 110%;
}
.gn-dual-title, .gn-dual-title-reverse {
    display: inline-block;
    border: solid 1px var(--primary);
    border-radius: 50px;
    color: var(--secondary);
    background-color: #FFF;
}
.gn-dual-title {    
    border-left: none;    
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: 4px 24px 4px 32px;
}
.gn-dual-title-reverse {
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    padding: 4px 32px 4px 24px;
}
.gn-dual-title span, .gn-dual-title-reverse span {
    color: var(--primary);
    font-weight: 800;
    transition: all 0.25s ease;
}
.gn-dual-title:hover , .gn-dual-title-reverse:hover {
    color: var(--primary);
}
.gn-dual-title:hover span, .gn-dual-title-reverse:hover span {
    color: var(--secondary);
}

/* BUTTONS */
.gn-btn-white, .gn-btn-orange, .gn-btn-line-blue, .gn-btn-line-orange {
    display: inline-block;
    min-width: 200px;
    font-size: 16px;
    color: #FFF;
    line-height: 100%;
    border-radius: 50px;
    padding: 10px 24px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
    text-align: center;
}

.gn-btn-white {
    border: solid 1px #FFF;
}

.gn-btn-white:hover {
    color: var(--secondary);
    border: solid 1px var(--secondary);
    text-decoration: none;
}

.gn-btn-orange {
    background-color: var(--secondary);
}

.gn-btn-orange:hover {
    color: #FFF;
    background-color: var(--primary);
    text-decoration: none;
}

.gn-btn-line-blue {
    border: solid 1px var(--primary);
    color: var(--primary);
}
.gn-btn-line-blue:hover {
    border: solid 1px var(--secondary);
    color: var(--secondary);
}

.gn-btn-line-orange {
    border: solid 1px var(--secondary);
    color: var(--secondary);
    background-color: #FFF;
}
.gn-btn-line-orange:hover {
    background-color: var(--secondary);
    color: #FFF;
}

/* DROPDOWNS */
.dropdown-item.active, .dropdown-item:active {
    background-color: var(--secondary);
}
.dropdown-menu-center .dropdown-menu-arrow, .dropdown-menu-right .dropdown-menu-arrow {
    top: -25px;
    width: 0;
    height: 0;
    position: relative;
    height: 0;
}
.dropdown-menu-right .dropdown-menu-arrow {
    left: calc(100% - 10px);
}
.dropdown-menu-center .dropdown-menu-arrow {
    left: 50%;
}
.dropdown-menu .dropdown-menu-arrow:before,
.dropdown-menu .dropdown-menu-arrow:after {
    content: "";
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-width: 7px 8px;
    border-style: solid;
    border-color: transparent;
    z-index: 1001;
}
.dropdown-menu .dropdown-menu-arrow:after {
    bottom: -18px;
    right: -8px;
    border-bottom-color: #fff;
}
.dropdown-menu .dropdown-menu-arrow:before {
    bottom: -17px;
    right: -8px;
    border-bottom-color: rgba(0,0,0,.15);
}
.dropdown-menu-center { /* special class*/
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: 100% !important;
}

/* FORMS */
.form-control::placeholder {
    color: #ADB5BD;
}
.form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 0;
}
.custom-control-label {
    line-height: 26px;
}
.custom-control-input:checked~.custom-control-label::before {
    border-color: var(--secondary);
    background-color: var(--secondary);
}
.custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(255, 120, 0, 0.25);
}
select.form-control {
    appearance: none;
    padding: 0.375rem 2rem 0.375rem 0.75rem;
    background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 448 512'%3e%3cpath fill='%23343a40' d='M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z'/%3e%3c/svg%3e") no-repeat right .5rem center/10px 10px;
}
select.form-control:focus, select.form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 0;
}

/* UL LIST */
.gn-ul-orange {
    list-style: none;
    padding-left: 20px;
}
.gn-ul-orange li {
    margin-bottom: 8px;
}
.gn-ul-orange li:before {
    content: "\2022";
    color: var(--secondary);
    font-weight: bold;
    display: inline-block; 
    width: 10px;
    margin-left: -10px;
}
.gn-ul-orange li:last-child {
    margin-bottom: 0;
}

/* OL LIST */
.gn-ol, .gn-ol ol  { 
    counter-reset: item;
    padding-inline-start: 0; 
}
.gn-ol ol {
    padding-inline-start: 40px;
}
.gn-ol li { 
    display: block; 
}
.gn-ol li:before { 
    content: counters(item, ".") ". ";
    counter-increment: item; 
}
.gn-ol-2 {
    font-size: 1rem;
    font-weight: 400;
    text-transform: none;
}
.gn-ol-2 li:before {
    position: absolute;
    margin-left: -40px;
}
.gn-sub-title > .gn-ol-2 {
    margin-top: 1rem;
}

/* ACCORDINS */
.accordion {
    font-size: 14px;
}
.accordion .card .card-header {
    padding: 0;
    background-color: #FEFEFE;
}
.accordion .card .card-header a {
    padding: 0.75rem 1.25rem;
    color: var(--primary);
}
.accordion .card .card-header a i {
    padding-left: 16px;
}
.accordion .card .card-header a:hover, .accordion .card .card-header a:focus, .accordion .card .card-header a:active {
    color: var(--secondary);
}

/* LINES */
.gn-orange-line {
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--secondary);
}

/* MENU NAVBAR */
.sidebar-trigger i {
    font-size: 24px;
    color: var(--primary);
}

/* RESPONSIVE */
@media only screen and (min-width: 576px) {
    .gn-big-title {
        font-size: 32px;
    }
    .gn-sub-title {
        margin-bottom: 20px;
    }
    .accordion {
        font-size: 15px;
    }
    
    .btn-icon {
        min-width: auto;
        width: auto;
    }
}

@media only screen and (min-width: 769px) {
    .gn-big-title {
        font-size: 40px;
    }
    .gn-sub-title {
        margin-bottom: 24px;
    }
    .accordion {
        font-size: 16px;
    }
}