@font-face {
    font-family: 'fa-regular-400';
    src: url('fonts/fa-regular-400.eot');
    src: url('fonts/fa-regular-400.eot?#iefix') format('embedded-opentype'), url('fonts/fa-regular-400.woff') format('woff'), url('fonts/fa-regular-400.ttf') format('truetype'), url('fonts/fa-regular-400.svg#flexslider-icon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-family: 'fa-solid-900';
    src: url('../fonts/fa-solid-900.eot');
    src: url('../fonts/fa-solid-900.eot?#iefix') format('embedded-opentype'), url('../fonts/fa-solid-900.woff') format('woff'), url('../fonts/fa-solid-900.ttf') format('truetype'), url('../fonts/fa-solid-900.svg#flexslider-icon') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face{
    font-family: 'Saira-Regular';
    src: url('../fonts/Saira-Regular.eot');
    src: url('../fonts/Saira-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Saira-Regular.woff') format('woff'), url('../fonts/Saira-Regular.ttf') format('truetype'), url('../fonts/Saira-Regular.svg#flexslider-icon') format('svg');
    font-weight: normal;
    font-style: normal;
}
html{
    background-color: #414042;
}

body{
    font-family: "Saira-Regular";
}

a{
    text-decoration: none;
    color: white;
}

a:hover{
    text-decoration: none;
    color: #00aeef;
}

.text-center{
    margin: 0 auto;
}

.width-100{
    padding-left: 0px;
    padding-right: 0px;
}


.header{
    position: fixed;
    z-index: 99;
}


.section1{
    background: url(../images/bg-section-1.jpg);
    background-attachment: fixed;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 300px;
    padding-bottom: 40px;
    padding-top: 40px;
    color: white;
}


.nav-center{
    margin: 0 auto;
}



.navbar {
    background-color: white !important;
    padding: 0.4rem 1rem 0.4rem 1rem;
    border-bottom: solid 1px #299ad4;
}



.presentation{
    padding: 20px;  
}

.presentation p{
    font-size: 18px;
}

.max-1200{
    max-width: 1200px;
    margin: 0 auto;
}

.intro{
    font-size: 24px;    
}

.navbar a{
    font-size: 1.2em;
}

.logo{
    margin-top: -1px;
    z-index: 99;
    display: none;
}


.section2{
    background-color: #dcddde;
}

.last-reviews{
    background-color:#414042;
    max-width: 1168px;
    padding: 20px;
    color: white;
    background-image: url(../images/bg-lastreviews.png);
    background-position: center;
    margin: 0 auto;

}

.card-title{
    border-bottom: solid 1px #dcddde;
    color: #00aeef;
    font-size: 30px;
}

.btn-outline-primary {
    color: #00aeef;
    background-color: transparent;
    background-image: none;
    border-color: #00aeef;
}

.btn-outline-primary:hover {
    color: white;
    background-color: #00aeef;
    background-image: none;
    border-color: #00aeef;
}

.footer{
    background-color: #414042;
    padding: 20px;
}

.footer ul{
    list-style: none;
    padding-inline-start:0px;
}

.footer ul li a{
    color: white;
    text-decoration: none;
    font-size: 11px;
    font-family: sans-serif;
}

.footer ul li a:hover{
    color: #00aeef;
}

.copyright{
    padding-top: 10px;
    font-family: sans-serif;
    color: #bcbec0;
    font-size: 12px;
    border-top: solid 1px #bcbec0;
}


/***********************************BACK TO TOP BOUTON*************************************/

#scroll {
    z-index: 99;
    position:fixed;
    right:10px;
    bottom:10px;
    cursor:pointer;
    width:50px;
    height:50px;
    background-color:#00aeef;
    text-indent:-9999px;
    display:none;
    -webkit-border-radius:60px;
    -moz-border-radius:60px;
    border-radius:60px
}
#scroll span {
    position:absolute;
    top:50%;
    left:50%;
    margin-left:-8px;
    margin-top:-12px;
    height:0;
    width:0;
    border:8px solid transparent;
    border-bottom-color:#ffffff;
}
#scroll:hover {
    background-color:rgba(0.0.0.0);
    border: 1px solid #00aeef;
    opacity:1;filter:"alpha(opacity=100)";
    -ms-filter:"alpha(opacity=100)";
}





/*******************************************************BOUTONS***********************************************************/




.button {
    display: inline-block;
    font-family: "Saira-Regular";
    -webkit-font-smoothing: antialiased;
    position: relative;
    padding: 0.8em 1em;
    padding-right: 4.7em;
    background-color: #00aeef;
    border: none;
    color: white;
    transition: 0.2s;
    cursor: pointer;
}
.button:before,
.button:after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding-top: inherit;
    padding-bottom: inherit;
    width: 2.8em;
    content: "\00a0";
    font-family: "fa-solid-900";
    font-size: 1.2em;
    text-align: center;
    transition: 0.2s;
    transform-origin: 50% 60%;
}
.button:before {
    background: rgba(0, 0, 0, 0.1);
}
.button:hover {
    background: #0079a5;
}
.button:active,
.button:focus {
    background: #002e3f;
    outline: none;
}

.arrow {
    background: #00aeef;
}
.arrow:hover {
    background: #009cd7;
}
.arrow:active,
.arrow:focus {
    background: #009cd7;
}
.arrow:after {
    content: "\F054";
}
.arrow:hover:after {
    -webkit-animation: bounceright 0.3s alternate ease infinite;
    animation: bounceright 0.3s alternate ease infinite;
}

@-webkit-keyframes bounceright {
    from {
        -webkit-transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(3px);
    }
}
@-webkit-keyframes wiggle {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(30deg);
    }
}
@keyframes bounceright {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(3px);
    }
}
@keyframes wiggle {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(30deg);
    }
}




/***********************************MEDIA QUERIES*************************************************************/


@media (min-width: 992px){
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 4rem !important;
        padding-left: 4rem !important;
    }
    .logo{

        z-index: 99;
        display: block;
        margin: 0 auto;
        margin-top: -1px;
    }

    .review-title{
        background-color:#414042;
        max-width: 1200px;
        padding: 20px;
        color: #1aabe3;
        background-image: url(../images/bg-review-title.png);
        background-position: center;
        margin: 0 auto;

    }



}






/*********************************REVIEW PAGE****************************************************/
.dfo-review{
    background: url(../images/dfo-review-bg.jpg);
    background-attachment: fixed;
    padding-top: 100px;
}

.c9-review{
    background: url(../images/c9-review-bg.jpg);
    background-attachment: fixed;
    padding-top: 100px;
}

.black-desert-review{
    background: url(../images/blackdesert-review-bg.jpg);
    background-attachment: fixed;
    padding-top: 100px;
}


.dragon-nest-review{
    background: url(../images/dragon-nest-review-bg.jpg);
    background-attachment: fixed;
    padding-top: 100px;
}

.review-title{
    background-color:#414042;
    max-width: 1200px;
    padding: 20px;
    color: #1aabe3;
    background-position: center;
    margin: 0 auto;

}


.review-box{
    background-color: rgba(255,255,255,0.8);
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 20px;
}

.video-box{
    padding: 10px;

}

.article-main{
    padding: 10px;
    border-left: solid 1px #bcbec0;
}

.article-main p:first-of-type:first-letter {
    float: left; 
    font-size: 5em;  
    line-height: 80%; 
    margin:-.1em 0px;
    padding-right: .1em
}


.grade-box{
    background-color: lightgrey;
    border: solid 1px grey;
    padding: 10px;
    max-width: 500px;
    margin: 0 auto;
    margin-top: 20px;
}

i{
    margin-right: 5px;
}

.padding-10{padding: 10px;}

.play-button{
    border: solid 1px #00aeef;
    border-radius: 5px;
    font-size: 20px;
    padding: 10px;
    cursor: pointer;
    color: #00aeef;
}

.play-button:hover{
    background-color:#00aeef; 
    color: white;
}

.border-top{
    border-top: solid 1px rgba(0,0,0,0.2) !important;
}

.mmorpg{
    background-color: #f1f2f2;
}
.margin-header{
    padding-top: 100px;
}

.btn-primary:hover{
    background-color: #00aeef;
}

.btn-primary{
    background-color: rgba(0,0,0,0);
    border: solid 1px #00aeef;
    color: #00aeef;
}

h1{
    color: #00aeef;
}

.card{
    margin: 0 auto;
    margin-bottom: 20px;
}