/** Fonts **/

@import url("assets/fonts/fonts.css");
@import url('https://fonts.googleapis.com/css?family=Kanit:300,300i,400,400i,500,500i,600,700,800,900&display=swap');


html, body{
    margin:0;
    padding:0;
    scroll-behavior: smooth;
}

h1,h2 {
    font-family: 'Microgramma Com Bold Extended';
    text-transform:uppercase;
    margin:0px;
}

.container {
    max-width:1280px;
    width:100%;
    margin:auto;
    height:100%
}

header{
    width:100%;
    height:100vh;
    background-size:cover !important;
    background-repeat:no-repeat !important;
    background: -webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.55)),to(rgba(0,0,0,0)));
    background: -webkit-linear-gradient(top,rgba(0,0,0,.55),rgba(0,0,0,0));
    background: -o-linear-gradient(top,rgba(0,0,0,.55) 0,rgba(0,0,0,0) 100%);
    background: linear-gradient(180deg,rgba(0,0,0,.55) 0,rgba(0,0,0,0));
}

header nav{
    display:flex;
    padding:1em 0;
}

header nav .logo{
    width:10%;
}

header nav .nav-items{
    width:90%;
    display:flex;
    justify-content:flex-end;
    align-items:center;
}

header nav .nav-items ul{
    margin:0;
    padding:0;
    display:flex;
    justify-content:flex-end;
}

header nav .nav-items ul li{
    list-style-type:none;
    margin-left:2.5em;
}

header nav .nav-items ul li a{
    text-decoration:none;
    color:#fff;
    font-family: 'Microgramma Com Bold Extended';
}

header nav .nav-items ul:last-child{
    margin-left:2.5em;
}

header nav .nav-items ul:last-child li{
    list-style-type:none;
    margin-left:0.7em;
}

header nav .nav-items ul:last-child li img {
    width:20px;
}

header nav .nav-items ul:last-child li:first-child img {
    width:18px;
}

header h2 {
    color: #fff;
    font-size: 2.5em;
}

.btn {
    text-decoration:none;
    font-family: 'Microgramma Com Bold Extended';
    font-size:1.7em;
    color:#d30d0a;
    display:flex;
    text-transform:uppercase;
}

.btn span:first-child{
    border:6px solid #d30d0a;
    border-right:0px;
    margin-right:6px;
    width:12px;
}

.btn span:nth-child(2){
    border-top:6px solid #d30d0a;
    border-bottom:6px solid #d30d0a;
}

.btn span:last-child{
    border:6px solid #d30d0a;
    border-left:0px;
    width:18px;
}

.btn:hover span{
    background:#d30d0a;
    color:#fff;
    -webkit-transition: all 0.3s ease;                  
    -moz-transition: all 0.3s ease;                 
    -o-transition: all 0.3s ease;   
    -ms-transition: all 0.3s ease;          
    transition: all 0.3s ease;
}

.btn:hover span:first-child{
    margin-right:0px;
    width:18px;
    -webkit-transition: all 0.3s ease;                  
    -moz-transition: all 0.3s ease;                 
    -o-transition: all 0.3s ease;   
    -ms-transition: all 0.3s ease;          
    transition: all 0.3s ease;
}

/** Home Header Content **/

.home-center {
    height:100%;
}

.home-header-content{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction: column;
    height:90%;
}

.home-header-content .inner {
    width:50%;
    flex-direction: column;
    display: flex;
    margin-bottom:5em;
}

.home-header-content img {
    width:100%
}

.home-header-content .inner img:last-child{
    width:50%;
    margin:auto;
}

.home-header-content .ctas{
    display:flex;
}

.home-header-content .ctas a {
    margin:1em;
}

/** Home Trailer Section **/

.trailer-section{
    width:100%;
    height:100vh;
    background-size:cover !important;
    background-repeat:no-repeat !important;
}

.trailer-section h1 {
    margin:0;
    font-size:3em;
    color:#454040;
}

.trailer-section .text-top {
    padding:3em 0;
    height:50%;
}

.trailer-section h3 {
    font-family: 'Microgramma Com Medium Extended';
    font-size: 1.3em;
    line-height: 30px;
    margin-top:10px;
    color:#454040;
    text-transform:uppercase;
    margin-bottom:30px;
}

.trailer-section .text-bottom {
    padding:3em 0;
    height:27%;
    width:100%;
}

.trailer-section .text-bottom h2 {
    color:#fff;
    text-align:right;
}

.trailer-section .text-bottom h2 span{
    display:block;
    line-height:40px;
}

.trailer-section .text-bottom h2 span:first-child{
    font-size:2em;
    margin-right: 25%;
}

.trailer-section .text-bottom h2 span:nth-child(2){
    font-size: 1.3em;
    margin-right: 18%;
}

.trailer-section .text-bottom h2 span:nth-child(3){
    font-size: 2em;
    margin-right: 0%;
}

.trailer-section .text-bottom h2 span:last-child{
    font-size: 1.3em;
}

/** More info **/

.nemesis-section, .f1-section {
    height:50vh;
    background-size:cover !important;
    background-repeat:no-repeat !important;
}

.nemesis-section h2, .f1-section h2 {
    color:#d30d0a;
    font-size:2em;
    font-size: 2em;
    line-height: 1em;
}

.nemesis-section .btn, .f1-section .btn{
    margin-top:1.5em;
}

.nemesis-section p, .f1-section p {
   font-family: 'Kanit', sans-serif;
    color: #fff;
    line-height: 24px;
    font-weight: 300;
    font-size: 18px;
}

.nemesis-section .content, .f1-section .content{
    width:50%;
}

.nemesis-section .container, .f1-section .container{
    display:flex;
    align-items: center;
}

.f1-section .container {
    justify-content:flex-end;
}

/** Footer **/

footer {
    background:#000;
    padding-bottom:1em;
}

footer .codemasters {
    text-align:center;
    padding:1.5em 0;
    margin-bottom:2em;
}

footer .container {
    display:flex;
}

footer .copyright, .footer .footer-platforms {
    width:50%;
    display:flex;
}

footer ul {
    display:flex;
    padding:0;
}

footer ul li{
   padding:0 10px;
    border-right:1px solid #fff;
    line-height:7px;
}

footer ul li:first-child{
    padding-left:0px
}

footer ul li:last-child{
  border-right:0px
}

footer ul li a {
    font-family: 'Verdana';
    color: #fff;
    font-size:8px;
    text-decoration:none;
}

footer .pegi {
    margin-right:1em;
}

footer p{
    font-family: 'Verdana';
    color: #fff;
    line-height: 12px;
    font-size: 8px;
    margin-top: 0px;
}

footer .footer-platforms ul li {
    border:0px;
    width:15%;
}

footer .footer-platforms ul {
    justify-content:flex-end;
}

footer .footer-platforms ul li img {
    width:100%;
}

/** Platform Specifics **/

.platform-page header .text-top{
    width:55%;
}

.platform-page header h1 {
    color:#fff;
    line-height:50px;
}

.platform-page header h3 {
    font-family: 'Kanit', sans-serif;
    color: #fff;
    line-height: 24px;
    font-weight: 300;
    font-size: 18px;
    text-transform:none;
}

.cta-master {
    display:flex;
}

.cta-master a {
    margin-right:1em;
}

.three-columns {
    width:100%;
    min-height:50vh;
    background-size:cover !important;
    background-repeat:no-repeat !important;
}

.three-columns .container{
    display:flex;
    justify-content:space-between;
}

.three-columns .col {
    width:32%;
    margin:3em 0;
}

.three-columns .col h2{
    background:#d30d0a;
    text-align:center;
    color:#fff;
    font-family: 'Microgramma Com Medium Extended';
    line-height: 24px;
    min-height:3em;
    display:flex;
    align-items:center;
    justify-content:center;
}

.three-columns .col img {
    width:100%;
}

.three-columns .col p {
    font-family: 'Kanit', sans-serif;
    color: #fff;
    line-height: 24px;
    font-weight: 300;
    font-size: 18px;
}

.platform-page .f1-section, .platform-page .nemesis-section{
    height:80vh
}

#detailed-ban {
    height:75vh;
}

.information {
    font-family: 'Kanit', sans-serif;
    color: #fff;
    line-height: 24px;
    font-weight: 300;
    font-size: 18px;
    padding-top:2em;
}

.information .column-i{
    width:50%;
    padding:2em;
}

.addon-title {
    color: #d30d0a;
    text-align:center;
    font-size:20px;
   justify-content:center !important;
}

.addoncolumns .col {
    padding:10px;
}

.addoncolumns .col h2 {
    font-size:18px !important;
    padding:10px !important;
}

/** Mobile Responsiveness **/

@media(max-width:1280px){
    .container {
        max-width:calc(100% - 4em);
        padding:2em;
    }
    header nav {
        padding:1em;
    }
    .home-header-content .inner {
        width: 70%;
    }  
    .trailer-section {
        height:50vh;
    }  
    .trailer-section .text-bottom {
        padding: 0em 0;
        height: auto;
    }
    .nemesis-section, .f1-section, .three-columns, .platform-page .f1-section, .platform-page .nemesis-section {
        height:auto;
        min-height:auto;
        padding:2em 0
    }
    .nemesis-section p, .f1-section p {
        line-height: 25px;
        font-size: 1.5em;
    }
    .nemesis-section .content, .f1-section .content, .platform-page header .text-top{
        width:100%;
    }
}


@media(max-width:768px){
    .nav-items ul:first-child{
        display:none;
    }
    header nav .logo {
        width: 20%;
    }
    .trailer-section {
        height:auto;
    }
    .trailer-section h1 {
        line-height:44px;
    }
    .trailer-section .text-bottom h2 {
        text-align:left;
    }
    .trailer-section .text-bottom span {
        margin-right:0px !important;
    }
    .trailer-section .text-bottom h2 span{
        font-size: 1.5em !important;
    }
    .nemesis-section .content, .f1-section .content {
        width:100%;
    }
    .trailer-section h1 {
        font-size:2em;
    }
    .platform-page header .text-top {
        width: 100%;
    }
    
    footer .container {
        display:block;
    }
    footer .footer-platforms ul {
        justify-content:flex-start;
    }
    footer .copyright, .footer .footer-platforms {
        width:100%;
    }
    footer .codemasters {
        margin-bottom:0px;
    }
    #platform video{
        display:none;
    }
    #platform {
        background-image:url(assets/img/aa.jpg);
    }
    .addoncolumns{
        flex-wrap:wrap;
    }
    
    .addoncolumns .col {
        width:45%;
    }
}

@media(max-width:400px){
    .home-header-content .ctas{
        display: flex;
    flex-direction: column;
    align-items: center;
    }
    .container {
    max-width: calc(100% - 2em);
    padding: 2em 1em;
}
.home-header-content{
    justify-content:start;
    margin-top:2em;
}
.home-header-content .inner{
    margin-bottom:2em;
}
    
    .home-header-content .inner, .platform-page header .text-top {
        width:100%;
    }
    header h2 {
        font-size:18px;
    }
    .home-header-content .ctas a {
        margin: 8px;
    }
    .trailer-section .text-bottom h2 span {
        font-size: 19px !important;
        line-height: 24px;
    }
    .btn {
        font-size:1em;
    }

    .platform-page header h1 {
        color: #fff;
        line-height: 29px;
        font-size: 20px;
    }
    .cta-master {
        display:flex;
        flex-direction:column
    }

    .trailer-section .text-top {
        padding:0px;
    }
    
    .cta-master a {
        margin-right:0;
        margin-bottom:20px;
    }
    .three-columns .container {
        flex-direction:column;
    }
    .three-columns .col {
        width:100%;
    }
    .three-columns .col h2 {
        font-size:20px;
    }
    .three-columns .col {
        margin:0px;
        margin-bottom:20px;
    }
    .information .column-i {
        width:100%;
        padding:0px;
    }
    footer .footer-platforms ul {
        justify-content: center;
    }
    footer .container {
        padding-bottom:0px;
    }
}