/*
Style Guide 
1- Web font
2- General
3- Mouse scroll
4- Header 
5- Main
6- Footer
*/

/* Web Font*/

@font-face {
    font-family: '29LT-Bukra';
    src: url('../webfonts/29LTBukra-Bold.eot');
    src: url('../webfonts/29LTBukra-Bold.eot?#iefix') format('embedded-opentype'),
    url('../webfonts/29LTBukra-Bold.woff2') format('woff2'),
    url('../webfonts/29LTBukra-Bold.woff') format('woff'),
    url('../webfonts/29LTBukra-Bold.ttf') format('truetype'),
    url('../webfonts/29LTBukra-Bold.svg#29LTBukra-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
}

/* General*/
html{
    overflow-x: hidden;
}
body {
    font-family: '29LT-Bukra';
    position:relative;

}

body:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    width: 100%;
    height:1500px;
    background-image: url(../images/header-background.svg);
    background-size:cover;
    background-repeat:no-repeat;
}


p{
    margin: 0;
}


/* Header */

header{
    padding-bottom: 50px;
}

header .logo {
    position: relative;
    top: -10px;
    width: 153px;
    height: 153px;
    line-height: 153px;
    background-color: #fff;
    border-radius: 6px;
}

header .logo img {
    width: 100%;
    padding: 6px;
}

header .logo-content {
    padding-top: 30px;
    padding-right: 30px;
}

header .logo-content p {
    font-size: 14px;
    color: white;
    margin-bottom: 16px;
}

header a.contact-btn {
    text-decoration: none;
    background: #ECEBFB;
    padding: 12px 25px;
    display: block;
    color: #333;
    border-radius: 4px;
    display: inline-block;
    font-size: 12px;
    -webkit-box-shadow: 0 8px 6px -6px rgba(27, 21, 150, 67);
    -moz-box-shadow: 0 8px 6px -6px rgba(27, 21, 150, 67);
    box-shadow: 0 8px 6px -6px rgba(27, 21, 150, 67);
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

header a.contact-btn:hover {
    background: white;
}

header .header-content {
    margin-top: 120px;
}

header .header-content h2 {
    color: #FFF;
    font-size: 20px;
    margin-bottom: 40px;
}

header .header-content h1 {
    color: #FFF;
    font-size: 45px;
    line-height: 65px;
}

header .header-content a.header-eservice-btn {
    background: #fff;
    padding: 20px 40px;
    margin-top: 40px;
    display: inline-block;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
        -moz-transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

header .header-content a.header-eservice-btn:hover {
    background: #EEECFC;
}

header .header-content a.header-eservice-btn img {
    padding-right: 8px;
    position: relative;
    top: -3px;
    -moz-transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

header .header-content a.header-eservice-btn:hover img {
    top: 3px;
}

/* Main */

main{
    padding-top: 50px;
}

main article.system-box{
    position: relative;
    top: 0;
    background: white;
    display: block;
    padding: 40px 30px;
    margin-bottom: 30px;
    border-radius: 6px;
    -webkit-box-shadow:  0 0 20px -1px rgba(41, 26, 204, 0.2);
    -moz-box-shadow:  0 0 20px -1px rgba(41, 26, 204, 0.2);
    box-shadow:  0 0 20px -1px rgba(41, 26, 204, 0.2);
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

article.system-box:hover {
    position: relative;
    top: -4px;
    -webkit-box-shadow: 0 0 20px -1px rgba(41, 26, 204, 0.4);
    -moz-box-shadow: 0 0 20px -1px rgba(41, 26, 204, 0.4);
    box-shadow: 0 0 20px -1px rgba(41, 26, 204, 0.4);
}

main article.system-box h4{
    font-size: 16px;
    color:#4A4A4A;
    margin-top: 30px;
    margin-bottom: 30px;
    line-height: 26px;
}

main article.system-box a.system-btn{
    font-size: 12px;
    padding: 10px 30px;
    border-radius: 3px;
    text-decoration: none;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

main article.system-box a.system-btn:hover{
    color:#fff;
}



/* Footer */

footer section.tickets-portal{
    background: #fff;
    text-align: center;
    -webkit-box-shadow:  0 0 20px -1px rgba(41, 26, 204, 0.2);
    -moz-box-shadow:  0 0 20px -1px rgba(41, 26, 204, 0.2);
    box-shadow:  0 0 20px -1px rgba(41, 26, 204, 0.2);
    margin-top: 40px;
    margin-bottom: 60px;
    padding: 30px 0 30px 0;
}

footer section.tickets-portal h3{
    color:#4A4A4A;
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 25px;
    display: inline-block;
}

footer section.tickets-portal a{
    display: inline-block;
    color:#fff;
    font-size: 12px;
    padding: 10px 30px;
    border-radius: 3px;
    text-decoration: none;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
    border: 2px solid transparent;
}

footer section.tickets-portal a:hover{
    background:#fff;
}

footer .chamber-url{
    border-radius: 3px 3px 0 0;
    padding: 15px 20px;
    font-size: 12px;
    color:#fff;
    text-align: center;
    line-height: 26px
}

footer .chamber-url a{
    color:#ecebfc;
    text-decoration: none;
    -webkit-transition: all ease 0.2s;
    -moz-transition: all ease 0.2s;
    transition: all ease 0.2s;
    border-bottom:1px solid transparent;
}

footer .chamber-url a:hover{
    border-bottom:1px solid #fff;
}

@media only screen and (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
}


@media only screen and (max-width: 1580px) {

}

@media only screen and (max-width: 992px) {
    
    body{
        overflow-x: hidden;
    }
    body:after {
        width: 1400px;
        height: 1500px;
        background-size: contain;
    }


    header .header-content a.header-eservice-btn{
        margin-bottom: 40px;
    }
    
    header .header-content h2 {
    color: #FFF;
    margin-bottom: 30px;
}
    
    header .header-content h1{
        font-size: 30px;
        line-height: 50px;
    }
    
    header .logo {
        margin: auto;
    }
    
    header .logo-content{
        text-align: center;
        display: block;
        padding-right: 0;
        width: 100%;
    }
}


.system-image .logo {
    max-width: 170px;
}

/* COLORS */


header .header-content a.header-eservice-btn {
    color: #0084B4;
}

main article.system-box a.system-btn {
    border: 2px solid #0084B4;
    color: #0084B4;
}

    main article.system-box a.system-btn:hover {
        background: #0084B4 url(../images/button-hover-pattern.svg) no-repeat center;
    }

footer section.tickets-portal a {
    background: #0084B4 url(../images/button-hover-pattern.svg) no-repeat center;
}

    footer section.tickets-portal a:hover {
        border: 2px solid #0084B4;
        color: #0084B4;
    }

footer .chamber-url {
    background-color: #0084B4;
}



