@import url('https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i');
.flex-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start;
    -webkit-align-content: flex-start;
    -moz-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between
}

.flex-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex
}

.align-items-stretch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    align-items: stretch
}

.align-items-flex-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start
}

.align-items-flex-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    align-items: flex-end
}

.align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center
}

.align-items-baseline {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    -webkit-align-items: baseline;
    -moz-align-items: baseline;
    align-items: baseline
}

.align-content-stretch {
    -webkit-align-content: stretch;
    -moz-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch
}

.align-content-flex-start {
    -webkit-align-content: flex-start;
    -moz-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start
}

.align-content-flex-end {
    -webkit-align-content: flex-end;
    -moz-align-content: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end
}

.align-content-center {
    -webkit-align-content: center;
    -moz-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center
}

.align-content-space-between {
    -webkit-align-content: space-between;
    -moz-align-content: space-between;
    -ms-flex-line-pack: space-between;
    align-content: space-between
}

.align-content-space-around {
    -webkit-align-content: space-around;
    -moz-align-content: space-around;
    -ms-flex-line-pack: space-around;
    align-content: space-around
}

.flex-direction-row {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row
}

.flex-direction-row-reverse {
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.flex-direction-column {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.flex-direction-column-reverse {
    -webkit-box-direction: reverse;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column-reverse;
    -moz-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse
}

.flex-wrap {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.flex-nowrap {
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap
}

.flex-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse;
    -moz-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse
}

.justify-content-flex-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start
}

.justify-content-flex-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end
}

.justify-content-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center
}

.justify-content-space-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between
}

.justify-content-space-around {
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around
}

.flex {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.align-self-flex-end {
    -webkit-align-self: flex-end;
    -moz-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end
}

.align-self-flex-start {
    -webkit-align-self: flex-start;
    -moz-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start
}

.align-self-stretch {
    -webkit-align-self: stretch;
    -moz-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch
}

.align-self-auto {
    -webkit-align-self: auto;
    -moz-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto
}

.flex-cols-two-thirds {
    width: 66.666%
}

.flex-cols-one-third {
    width: 33.333%
}

.flex-cols-one {
    width: 100%
}

.flex-cols-two {
    width: 50%
}

.flex-cols-three {
    width: 33.333%
}

.flex-cols-four {
    width: 25%
}

.flex-cols-five {
    width: 20%
}

.flex-cols-six {
    width: 16.6666%
}

.flex-cols-seven {
    width: 14.2857%
}

.flex-cols-eight {
    width: 12.5%
}

.flex-cols-nine {
    width: 11.1111%
}

.flex-cols-ten {
    width: 10%
}

.flex-cols-eleven {
    width: 9.0909%
}

.flex-cols-twelve {
    width: 8.3333%
}

.fixed-header .site-nav {
    text-shadow: none
}

.mobile-hide {
    display: block
}

.mobile-show {
    display: none
}

section.home-section-1 {
    background-color: transparent !important
}

section#awards .flex > div {
    width: 24%
}

section#home .home-container.page_container {
    width: 100%;
    background: rgba(0, 39, 12, 0.10);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-content: flex-end;
    -moz-align-content: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end;
    -webkit-align-content: flex-end;
    -moz-align-content: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

section#home {
    height: 500px
}

section#home .home-container .section-banner-icon {
    max-width: 100%;
    width: 25%;
    height: auto;
    position: relative !important;
    z-index: 9999;
    margin-top: 521px;
    margin-left: 48%;
}

section#home .home-container .section-banner-text {
    max-width: 100%;
    width: 80%;
    height: auto;
    margin: 0 auto;
    display: block;
}


.section-title-wrapper {
    -webkit-align-self: flex-end;
    -moz-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end
}

h1.magee-heading {
    display: none
}

iframe#okplayer_mobile {
    margin: 0 auto;
    width: 800px;
    max-width: 100%;
    height: 450px;
    max-height: 100%;
    vertical-align: middle
}

div#trailer-holder {
    display: none;
    color: #fff;
    text-align: center;
    width: 850px;
    margin: 0 auto;
    position: relative;
    max-width: 100%
}

button.mfp-close {
    color: #fff !important;
    opacity: 1;
    top: -50px;
    right: -15px
}

.mfp-close:active {
    top: -50px
}

.mfp-content div#trailer-holder {
    display: block
}

a.mpopup_div.magee-btn-normal.btn-lg.btn-line.btn-light {
    background: rgba(0, 0, 0, 0.51);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5) 1px 2px #ccc;
    -moz-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5) 1px 2px #ccc;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5) 1px 2px #ccc;
    font-weight: bold;
    border-width: 2px
}

a.mpopup_div.magee-btn-normal.btn-lg.btn-line.btn-light:hover {
    background: rgba(16, 16, 16, 0.70)
}

.safari .section-title-container {
    width: 100%;
    text-align: center
}

.safari .section-title-wrapper {
    width: 100%
}

.banner-sns {
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.68)
}

.header-wrap.overlay {
    z-index: 1040
}

ul.onetone-dots.main-nav {
    z-index: 1040
}

.homepage section .cover-image div * {
    text-shadow: 1px 1px 7px #000, 0 0 5px #000
}

.homepage section .cover-image:before {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    margin-top: 0;
    top: 0;
    left: 0
}
.trailer-div{background: rgba(255,255,255,0.3) !important;padding:20px 0;width: 100%;}
.slider{background: rgba(255,255,255,0.7) !important;}
.trailer-div .section-title {color: #1b0919 !important;}
.buy-first {margin: 0px;}
.buy-first h3 {font-size: 36px;font-weight: bold;color: #fff;text-transform: capitalize;}
.buy-first ul {width: 46%;margin: 30px auto;text-align: center;}
.buy-first ul li {float: left;display: block;}
.buy-first ul li img {float: left;display: block;border: solid 2px #ff9500;border-radius: 10px; margin-left: 10px;}


.buy-bottom {margin: 0px;}
.buy-bottom h3 {font-size: 36px;font-weight: bold;color: #fff;text-transform: capitalize;}
.buy-bottom ul {width: 22%; margin: 30px auto;}
.buy-bottom ul li {float: left; display: block;}
.buy-bottom ul li img {float: left;display: block;border: solid 2px #ff9500;border-radius: 10px; margin-left: 10px;}

.homepage section .cover-image {
    position: relative
}
span.bor {
    margin-top: 150px;
    height: 3px;
    display: block;
    margin-bottom: 60px;
}

.first-cont {
    background: rgba(0, 0, 0, 0.3) !important;
    width: 100%;
    border: solid 2px #483d45;
    border-radius: 20px; padding:10px 15px;    margin-bottom: 20px;
    text-align:left;}
.first-cont h5 {color:#fff; margin:0px 0 10px 0; font-size:19px;    text-transform: uppercase;}
.first-cont p {font-size:16px; color:#fff;    margin-bottom: 0px;}
.first-cont p span {font-style: italic;color: #dac935;}

.screeinging ul li a {color: #dac935;}
.screeinging ul li a:hover {color: #fff;}

.site-nav > ul > li > a,
.fxd-header .site-nav > ul > li > a {
    font-weight: normal;
    font-size: 14px
}

.site-nav.style3 > ul > li.current > a > span,
.site-nav.style3 > ul > li > a:hover > span {
    font-weight: normal
}

h2.trailer-header {
    color: #fff
}

.trailer-coming-soon {
    padding: 50px;
    background-color: #000
}

#trailer-holder-wrap {
    display: none
}

section.home-section-2 .home-section-content {
    text-align: center;
    color: #ccc !important
}

.contact-form {margin:0px;}
.contact-form ul li {display:block;}
.contact-form ul li input.form-control {background:rgba(0, 0, 0, 0.3); border: solid 2px #483d45; border-radius: 20px;padding: 24px 15px;margin-bottom:20px;}
.contact-form ul li textarea.form-control {background:rgba(0, 0, 0, 0.3); border: solid 2px #483d45; border-radius: 20px;padding: 24px 15px;height: 121px;margin-bottom:20px;}
.contact-form ul li button.btn-submit {background: #cecdcd;
                                       border: solid 2px #3b054f;
                                       border-radius: 17px;
                                       padding: 14px 47px;
                                       color: #3b054f;
                                       float: left;
                                       font-size: 22px;
                                       font-weight: normal;}

@media (max-width:479px) {
    .homepage section .cover-image {
        background-size: auto 100%;
        background-attachment: scroll;
        background-position: right bottom
    }
    header.header-wrap.logo-left.home-header.overlay {
        background-color: #074461
    }
    .logo-box img {
        margin: 10px 0
    }
    ul.onetone-dots {
        opacity: 0.5;
        top: 50%
    }
    .mobile-hide {
        display: none
    }
    .mobile-show {
        display: block
    }
    section.home-section-1 {
        min-height: 565px !important;
        max-height: 556px
    }
    section#awards img {
        margin: 10px auto;
        max-width: 100%;
        height: 120px;
        width: auto
    }
    section#awards .flex-wrap div {
        text-align: center;
        width: 100%
    }
    section.home-section-1 {
        /*background-color: rgba(0, 0, 0, 0.37) !important*/
    }
    body {
        background-position: 56% top !important
    }
    section.home-section-9 {
        background-position: 56% center !important
    }
    header.header-wrap.logo-left.home-header.overlay {
        position: fixed !important;
        background: transparent !important
    }
    .logo-left .site-nav {
        text-shadow: none
    }
}
.magee-icon-list li {
    padding-bottom: 0em !important; padding-left:0px;
}
@media (min-width:920px) {
    .site-nav > ul > li {
        float: none;
        position: relative;
        display: inline-block
    }
    .site-nav > ul {
        text-align: center;
        margin: 0 auto;
        width: 100%;
        float: none
    }
    .logo-left .site-nav {
        text-align: center;
        margin: 0 auto;
        float: none;
        width: 100%
    }
    .home-section-1 .section-title-container {
        padding: 20px !important
    }
}

.section-title-container h2 {  
color: #00ffff;
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    text-align: center;
    margin: 82px 0 0 250px;
    font-family: 'Roboto', sans-serif;
    line-height: 37px;
    text-shadow: 1px 2px #000;
}

