*{
    padding:0;
    margin:0;
}

/*********************** 
*** START pseudo
***********************/

html{
    overflow-y: scroll; 
}

body{
    font-family:'Montserrat', Arial, sans-serif;
    font-size:16px;
    font-weight:400;
    color:#ffffff;
    line-height:normal;
}

h2{
    font-family:'Bangers', Arial, sans-serif;
    font-size:3rem;
    color:#ffffff;
    text-transform: uppercase;
    text-shadow: 4px 2px 0px rgba(0,0,0,1);
}

h3{
    position:absolute;
    top:0;
    left:0;
    display:flex;
    align-items: center;
    justify-content: center;
    margin:0;
    width:100%;
    height:100%;
    font-family:'Bangers', Arial, sans-serif;
    font-size:2.6rem;
    color:#ffffff;
    text-transform: uppercase;
    text-shadow: 4px 2px 0px rgba(0,0,0,1); 
}

h4{
    margin-top:1rem;
    font-size:1.1rem;
}

h5{
    font-family:'Bangers', Arial, sans-serif;
    font-size:2rem;
    color:#ffffff;
    text-transform: uppercase;
    text-shadow: 4px 2px 0px rgba(0,0,0,1);
}

h6{
    font-size:1.3rem;
}

p{
    font-size:1rem;
    line-height:1.6rem;
}

/*********************** 
*** END pseudo
***********************/

/*********************** 
*** START animations
***********************/
.fade {
    animation-name: fade;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes fade {
    from {
        display:none;
        opacity: 0;
    }
    to {
        display:block;
        opacity: 1;
    }
}
    
    /*********************** 
    *** END animations
    ***********************/

/*********************** 
*** START links
***********************/

.navbar,
.navbar--shrink{
    z-index:5;
    transition: padding 0.5s ease-in-out;
}

.navbar{
    position:sticky;
    top:0;
    background:#000000;
    padding:1.5rem 0 1rem 0;
    box-shadow: 0 0 10px 10px #000000;
}

.nav-item{
    margin-bottom:1rem;
    padding-bottom:0.15rem;
    font-family:'Bangers', Arial, sans-serif;
    font-size:1.8rem;
    font-style: normal;
    color:#ffffff;
}

.nav-item:hover{
    color:#ffffff;
}

.nav-item.pc-logo{
    width:182px;
    height:137px;
    background-image:url('../images/pc-logo.png');
    background-repeat: no-repeat;
    background-size:cover;
}

.nav-item.pc-logo:hover{
    background-image:url('../images/pc-logo.gif');
    border:0px;
}

.navbar--shrink{
    padding:0;
    padding-top:0.5rem;  
}

.navbar--shrink .nav-item{
    font-size:1.4rem;
}

.navbar--shrink .nav-item.pc-logo{
    width:120px;
    height:90px;                                                                                                                                                                                
}

.nav-item.pc-logo,
.nav-item{  
    transition: background-image 1s ease-in-out, 
        width 1s ease-in-out, height 1s ease-in-out,
        margin 1s ease-in-out, 
        font-size 1s ease-in-out;
}

.navbar-nav{
    flex-direction: column;
}

a{
    display:inline-block;
    border-bottom: 1px solid transparent;
    color:#ffffff;
}

a:hover{
    border-bottom: 1px solid #ffffff;
    color:#ffffff;
    text-decoration: none;
}

.button{
    display:inline-block;
    padding:1rem 2rem;
    border-bottom:0;
    background:#a36209;
    font-style: normal;
    color:#ffffff;
}

.button:hover,
.button:active,
.button:focus{
    background: #693f05;
    cursor: pointer;
}

button{
    display: block;
    border:0;
}

.backtotop {
    display:none;
    z-index: 1;
    cursor: pointer;
    position: fixed;
    right: 5rem;
    bottom: 6rem;
    margin: 0;
    line-height: normal;
    transform: rotateZ(90deg);
    transform-origin: 100% 100%;
}

.backtotop:hover{
    text-decoration: none;
}

.backtotop p {
    display: block;
    margin:0;
    padding: 10px 20px 15px 20px;
	background-image: linear-gradient(240deg, #e4e4c6 50%, transparent 51%);
    background-size:300% 100%;
    background-position: 0 0;
    font-size: 1.4rem;
    color: #313737;
    transition-duration: 0.6s;
    transition: background cubic-bezier(0.2, 0.5, 0.5, 0.9) 0.5s;
}

.backtotop:hover p{
    background-image: linear-gradient(-120deg, #e4e4c6 80%, transparent 81%);
    background-size:100% 250%;
}
/*********************** 
*** END links
***********************/

/*********************** 
*** START text containers
***********************/
.textbox{
    padding:2rem 3rem;
    background:rgba(65,65,65,0.85);
    box-shadow: -5px 5px 0px 7px rgba(38,38,38,0.7);
}

.textbox h2{
    margin:-75px 0 0 -70px;
}

.welcome .textbox{
    padding:3rem 2rem 2rem 4rem;
    margin-left:-3.5rem;
}

.welcome .textbox h2{
    margin-top:-75px;
}

.welcome .textbox p{
    margin-top:0.5rem;
}

.news .textbox{
    margin:8rem 0rem;
}

.news .textbox h2{
    margin-top:-60px;
}

.events .textbox{
    padding:2rem 1.5rem;
    margin-bottom:2.5rem;
}

.events .row div:last-child .textbox,
.events .row div:nth-last-child(2) .textbox,
.events .row div:nth-last-child(3) .textbox{
    margin-bottom:0;
}

/*********************** 
*** END text containers
***********************/

/*********************** 
*** START sections
***********************/
.section-break-container{
    height:0;
}

.section-break{
    position: relative;
    z-index:2;
    margin-top:-3%;
}

.section-break img{
    width:100%;
}

.welcome,
.news,
.events{
    background-position: center;
}

.welcome{
    background-image:url('../images/section1_welcome_bg.jpg');
}

.welcome img{
    width:100%;
}

.welcome__ironman{
    z-index:1;
}

.news{
    background-image:url('../images/section2_news_bg.jpg');
}

.events,
.stock,
.faqs,
.contact{
    padding:6rem 0;
}

.events{
    background-image:url('../images/section3_events_bg.jpg');
}

.stock{
    background-image:url('../images/section4_stock_bg.jpg');
}

.faqs{
    background-image:url('../images/section5_faqs_bg.jpg');
}

.contact{
    background-image:url('../images/section6_contact_bg.jpg');
    padding-bottom:3rem;
}
/*********************** 
*** END sections
***********************/

/*********************** 
*** START stock
***********************/
.stock-tab-container{
    overflow: hidden;
}

.filter-container{
    margin:0;
}

.filter{
    width:24%;
    margin:0 1%;
    padding:0.75rem 0;
    border:0;
    outline:0;
    font-size:1.1rem;
    color:#ffffff;
    background-color:#a36209;
}

.filter:hover,
.filter[class*='active']{
    cursor:pointer;
    background-color:#693f05;
}

.filter[class*='active']{
    background-color: #6a6a6a;
}


.filter:focus{
    outline:0;
}

.stock-tab {
    float:left;
    width: 16.6667%;
    padding:0.5rem 0.75rem;
    text-align: center;
}

.stock-tab .button{
    display: block;
    width:100%;
    margin-top:1rem;
    text-align: center;
}

.stock-tab img{
    width:100%;
}

/*********************** 
*** END stock
***********************/

/*********************** 
*** START faqs
***********************/
.accordion{
    padding: 0
}

.accordion {
    margin-bottom: 1.5rem
}

.accordion li {
    margin-right: -1px;
    margin-bottom: -1px;
    display: block;
    border: 0;
    list-style-type: none
}

.accordion li:nth-child(1) {
    margin-right: -1px;
    margin-top: -1px;
}

.accordion li .accordion-element-toggle {
    margin: 0.5rem 0;
    padding: 1rem 1.7rem 1rem 1rem;
    background-image: url('../images/section5_faqs_plusicon.png');
    background-repeat: no-repeat;
    background-position: 98% 47%;
    background-color:#a36209;
    font-size: 1rem;
    line-height: 1.6rem;
    text-transform: none;
}

.accordion li .accordion-element-toggle:hover {
    background-color: #693f05;
    cursor: pointer;
}

.accordion li.selected .accordion-element-toggle {
    background-image: url('../images/section5_faqs_minusicon.png');
    background-repeat: no-repeat;
    background-position: 98% 45%
}

.accordion li .accordion-element-toggle li {
    border: 0
}

.accordion li .accordion-element-content {
    padding: 1rem 1rem 0 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    display: none
}

.accordion li ul {
    margin: 0 1rem
}

.accordion li ul li,
.accordion li ul li:nth-child(1) {
    display: list-item;
    margin: .5rem 1.5rem;
    list-style-type: disc
}

/*********************** 
*** END faqs
***********************/

/*********************** 
*** START contact
***********************/
textarea.form-control{
    min-height:100px;
}

.contact img{
    border: 6px solid #960c72;
}
/*********************** 
*** END contact
***********************/

/*********************** 
*** START footer
***********************/
footer{
    padding-bottom:1rem;
    background-color:#000000;
}

footer p{
    margin:1rem 0;
    color:#ffffff;
}

footer a{
    margin:0;
    padding:0;
}

footer a.aclogo,
footer a.aclogo:hover{
    border:0px;
}

footer a.aclogo{
    overflow: hidden;
}

footer a.aclogo span{
    font-weight:600;
}

footer a.aclogo hr {
    height: 0.25rem;
    width: 100%;
    margin:0.25rem 0 0 -100%;
    background: #e4e4c6;
    border:0px;
    transition: 0.3s ease-in-out;
}

footer a.aclogo:hover hr{
    height: 0.25rem;
}

footer a:hover{
    text-decoration: none;
}

footer a:hover hr {
    margin-left: 0;
}

footer .footer__inner{
    color:#000000;
}
/*********************** 
*** END footer
***********************/

/*********************** 
*** START media queries
***********************/

@media(max-width:1199px){
    h3{
        font-size:2.2rem;
    }

    .stock-tab {
        width:25%;
    }

}

@media(max-width:991px){
    h2{
        padding-bottom: 1rem;
        margin: 0 !important;
        font-size:3rem;
    }

    .navbar{
        padding:1rem;
    }

    .navbar-nav{
        flex-direction: row;
        flex-wrap:wrap;
    }

    .nav-item{
        width:33%;
        margin-top:1rem;
        font-size:1.4rem;
        text-align:center;
    }

    .nav-item.pc-logo{
        width:120px;
        height:90px;
        margin:0;
        margin-bottom:1rem;
        order:-1;
    }

    .nav-item.pc-logo:hover{
        background-image:url('../images/pc-logo.png');
    }

    .navbar--shrink{
        padding:0.5rem;
        padding-bottom:0;
    }

    .navbar--shrink .nav-item{
        margin-top:0.5rem;
    }

    .navbar--shrink .nav-item.pc-logo{
        background-image:url('../images/pc-logo_blank.png');
    }

    .navbar--shrink .nav-item.pc-logo{
        width:60px;
        height:45px;
        margin:0.25rem 0;
    }

    .section-break-container{
        height:auto;
    }

    .section-break{
        background: #c5a42f;
        padding: 2rem 0;
        margin-top:0;
    }

    section{
        padding: 2rem 1rem 2.5rem 1.5rem;
    }

    section.welcome{
        padding-bottom:0;
        flex-direction: column-reverse;
    }

    .welcome__ironman{
        padding-top:2rem;
    }

    .textbox{
        margin:0;
    }

    .events, .stock, .faqs, .contact{
        padding:3rem 0;
    }

    .welcome .textbox{
        padding: 2rem;
        margin-left:0;
    }

    .news .textbox{
        margin: 2rem 0rem;
    }

    .filter{
        font-size:0.9rem;
    }
}

@media(max-width:850px){
    .stock-tab{
        width:49.5%;
    }   

    .events .row div:last-child .textbox, 
    .events .row div:nth-last-child(2) .textbox, 
    .events .row div:nth-last-child(3) .textbox{
        margin-bottom:2.5rem;
    }
}

@media(max-width:767px){

 
}

@media(max-width:575px){   
    .filter{
        width:100%;
        margin: 1% 0;
    }

    h2{
        font-size:2.4rem;
    }
}

@media (min-width: 768px) { 

}

@media (min-width: 992px) { 
    .backtotop{
        right: 8rem;
        bottom:14rem;
    }

    .welcome .textbox{
        margin-top: 4rem;
        margin-bottom: 6rem;
    }

    .welcome__ironman{
        align-self: flex-end;
    }
}

@media (min-width: 1200px) { 
    .backtotop{
        right: 12rem;
    }
}

/*********************** 
*** END media queries
***********************/