

@import url('https://fonts.googlwapis.com/css?family=poppins:300,400,500,600,700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@400;500;600;700;800&family=Tajawal:wght@200;300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
body {
    background-color: #1f1f22;
    font-family: 'Poppins', sans-serif;
}

.clear {
    clear: both;
}

@keyframes swiperSlide {
    0%   {transform: scale(1)}
    25%  {transform: scale(1.15)}
    50%  {transform: scale(0.95)}
    75%  {transform: scale(1.125)}
    100% {transform: scale(1.1)}
}


.swiperSlideCurrent {
    animation-name: swiperSlide;
    animation-duration: 0.7s;
    animation-fill-mode: forwards;
}


/*#region NAVIGATION*/

#fixed-nav {
    position: absolute;
    background-color: transparent;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 100;
}

#logo {
    max-width: 170px;
    float: left;
    margin-top: 15px;
}

.desktop-navigation {
    float: right;
    padding: 0;
    margin: 0;
}

.desktop-navigation .nav-item {
    display: inline-block;
    list-style: none;
}

.desktop-navigation .nav-item>a {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    padding: 20px 30px;
    font-weight: 600;
    text-transform: uppercase;
}

.desktop-navigation .nav-item:hover a {
    color: #fff;
}

#mobile-burger-menu {
    position: relative;
    float: right;
    color: #fff;
    font-size: 30px;
    margin-top: 15px;
    z-index: 20;
}

.mobile-navigation {
    transition: max-height 0.3s;
    max-height: 0px;
    padding: 0;
    position: fixed;
    width: 100%;
    overflow: hidden;
    height: auto;
    background-color: #ffcf2a;
    top: 0px;
    z-index: 1;
}
.mobile-navigation .nav-item {
    display: block;
    width: 100%;
    text-align: center;
}

.mobile-navigation .nav-item a {
    display: block;
    width: 100%;
    padding: 15px 0px;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    margin: 10px 0px;
    font-size: 20px;
}

.mobile-navigation .nav-item a:hover {
    background-color: #ffcf2a;
    color: #000;
}
/*#endregion*/

/*#region HEADER*/

#homepage-header {
    position: relative;
    background: linear-gradient(rgb(0 0 0 / 63%), rgb(32 28 2 / 86%)), url('/assets/images/header_BG.jpg');
    background-repeat: no-repeat;
    background-size: auto;
    width: 100%;
    height: 600px;
    background-position: center;
}

#homepage-header>img {
    width: 100%;
    min-height: 400px;
}

.header-image {
    width: 100%;
    min-height: 600px;
    background: linear-gradient(rgb(0 0 0 / 63%), rgb(32 28 2 / 86%)), url('/assets/images/header_BG.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.header-content {
    position: absolute;
    top: 40%;
    width: 80%;
    text-align: center;
    right: 50%;
    transform: translateX(50%);
    font-size: 4vw;
    color: #fff;
    font-weight: 700;
}

/*#endregion*/

/*#region NUMBERS_PANEL*/

#numbers-panel {
    padding: 90px 0px 90px 0px;
    background-color: #252528;
}

#numbers-panel h1 {
    color: #ffcf2a;
    text-transform: uppercase;
    text-align: center;
    font-size: 50px;
    letter-spacing: 10px;
    margin-bottom: 50px;
}

.numbers-single-component {
    width: 100%;
    color: #ffcf2a;
    text-align: center;
    text-transform: uppercase;
    margin-top: 40px;
}

.numbers-single-component>img {
    display: block;
    margin: auto;
    width: 50%;
}

.numbers-single-component>.value {
    font-size: 64px;
    font-weight: 600;
    margin: 32px 0px;
    color: #ffffff;
}

.numbers-single-component>.title {
    line-height: 1;
    font-size: 20px;
    font-weight: bold;
}

/*#endregion*/

/*#region OUR_GAMES*/

#our-games {
    padding: 60px 0px 60px 0px;
    margin-bottom: 90px;
}

#our-games h1 {
    color: #fff;
    text-align: center;
    font-size: 34px;
    margin: 72px 0px;
    font-weight: bold;
}

.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-wrapper {
    margin-bottom: 60px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
}

.swiper-slide .swiper-content {
    transition: opacity 0.4s;
    opacity: 0;
}

.swiper-slide .swiper-content .description {
    color: #ffffffb3;
    font-size: 16px;
}

.swiper-slide-active .swiper-content {
    opacity: 1;
}

.swiper-slide img {
    display: block;
    margin: auto;
    width: 70%;
    border-radius: 10px;
    user-drag: none;  
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.swiper-slide .swiper-content {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.gamesTitles {
    display: inline-block;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    margin-top: 15px;
}

.gamesTitles:hover {
    color: #fff;
}


.swiper-pagination-bullet {
    background-color: #ffffff !important;
}

/*#endregion*/


/*#region parallax main*/

#parallax_main {
    position: relative;
    width: 100%;
    height: 300px;
    background: linear-gradient(rgb(0 0 0 / 63%), rgb(32 28 2 / 86%)), url('/assets/images/highway_drifter_wallpaper.png');
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
}

/*#endregion*/

/*#region LATEST_UPDATES*/

#latest-updates, #about-us {
    padding: 0px 0px 50px 0px;
    margin-bottom: 90px;
}

#latest-updates h1, #about-us h1 {
    color: #fff;
    text-align: center;
    font-size: 45px;
    margin-bottom: 20px;
    margin-top: 140px;
    font-weight: 700;
}

.latest-update-single, .team-member-single {
    border: 2px solid #ffcf2a;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 20px 20px 50px 20px;
    background-color: #ffcf2a0f;
    width: 85%;
    margin: 90px auto 0px auto;
}

.latest-update-single img{
    border-radius: 10px;
    position: relative;
    width: 150%;
    transform: translateX(-30%);
    box-shadow: 0.5rem 0.5rem 2rem 1px rgb(0 0 0 / 30%);
}
.latest-update-single .meta {
    color: #afafaf;
    line-height: 1;
}

.latest-update-single .title, .team-member-single .title {
    font-size: 1.4rem;
    color: #ffffff;
    font-weight: 700;
    margin: 20px 0px;
    line-height: 1;
    text-shadow: 0px 5px 10px rgba(0,0,0,0.2);
}

.latest-update-single p {
    color: #fff;
}

.latest-update-single a {
    color: #fff;
    text-shadow: 0px 5px 10px rgba(0,0,0,0.1);
    text-decoration: none;
}

.thumbnail-wrapper {
    position: relative;
    display: table;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.thumbnail-wrapper .centered {
    position: relative;
    display: table-cell;
    vertical-align: middle;
}

/*#endregion*/

/*#region FOOTER*/

footer {
    background-color: #252528;
    color: #fff;
    box-sizing: border-box;
}

.footer-header {
    position: relative;
    border-bottom: 2px solid #484848;
    padding: 25px 0px 15px 0px;
}

.footer-header::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 0px;
    width: 20%;
    border-bottom: 2px solid #818181;
}

.footer-header > div {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
}

.footer-box {
    margin-top: 30px;
}

.footer-box a {
    color: #555555;
}

.address-element {
    margin-bottom: 10px;
}

.address-element .icon-wrapper {
    display: inline-block;
    width: 30px;
}

#footer-social-wrapper {
    margin-top: 80px;
    text-align: center;
}.social-single {
    display: inline-block;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #3a3a3a;
    color: #ffffff;
    text-align: center;
    margin-right: 10px;
    line-height: 2.3;
}

.social-single:hover {
    background-color: #d3a409;
    color: #000;
}

footer #links {
    margin-top: 15px;
    text-align: center;
}

footer #links a {
    font-size: 12px;
    color: #bbb;
}

footer #copyrights {
    font-size: 13px;
    text-align: center;
}

.seperator {
    display: inline-block;
    margin: 0px 10px;
}
/*#endregion*/.privacy-policy {
    font-family: 'Tajawal';
}

.privacy-policy a {
    color: #ffcf2a;
}