﻿@keyframes firstLoad {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

@-moz-keyframes firstLoad {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

@-webkit-keyframes firstLoad {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

.loadOverlay {
    background-color: var(--backgroundColor);
    background-image: url("/Content/Images/Background02.jpg");
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.headingImage {
    background-image: url("/Content/Images/GamesHeader.jpg");
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
}

    .headingImage.loaded {
        -moz-animation: 2s ease-in-out 0s 1 firstLoad;
        -o-animation: 2s ease-in-out 0s 1 firstLoad;
        -webkit-animation: 2s ease-in-out 0s 1 firstLoad;
        animation: 2s ease-in-out 0s 1 firstLoad;
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    .headingImage div {
        text-align: center;
        margin: auto;
    }

        .headingImage div h1 {
            left: 50%;
            margin-top: -50px;
            margin-left: -245px;
            position: absolute;
            color: var(--textColor);
            font-size: 85px;
            text-shadow: 3px 3px 5px black;
        }

            .headingImage div h1 span {
                color: var(--brightThemeColor);
                font-size: 85px;
            }

.section01 {
    background-image: url("/Content/Images/Background14.jpg");
    height: 1155px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 100px;
    padding-bottom: 100px;
}

    .section01 .container {
        width: 1230px;
        margin: 0 auto;
    }

    .section01 h3 {
        color: var(--themeColor);
    }

    .section01 p.altText {
        margin-top: 50px;
        margin-left: 30px;
        color: var(--altTextColor);
    }

    .section01 .itemGames {
        margin-top: 80px;
        margin-bottom: 100px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .section01 #item {
        position: relative;
        width: 450px;
        height: 253px;
        float: left;
        margin-bottom: 90px;
    }

        .section01 #item.itemLeft {
                margin-left: 100px;
            }

        .section01 #item img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            -moz-border-radius: 15px;
            -webkit-border-radius: 15px;
            border-radius: 15px;
            -moz-transition: top 0.3s, left 0.3s ease;
            -o-transition: top 0.3s, left 0.3s ease;
            -webkit-transition: top 0.3s, left 0.3s ease;
            transition: top 0.3s, left 0.3s ease;
            z-index: 10;
        }

        .section01 #item .top {
            -moz-box-shadow: 0px 10px 25px 0px rgba(0,0,0,0.3);
            -webkit-box-shadow: 0px 10px 25px 0px rgba(0,0,0,0.3);
            box-shadow: 0px 10px 25px 0px rgba(0,0,0,0.3);
        }

        .section01 #item .overlay {
            opacity: 0;
            top: 0px;
            left: 0px;
            background-image: url("/Content/Images/Pattern.jpg");
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            position: absolute;
            background-color: var(--altThemeColor);
            width: 100%;
            height: 100%;
            -moz-border-radius: 15px;
            -webkit-border-radius: 15px;
            border-radius: 15px;
            -moz-transition: opacity 1s, top 0.3s, left 0.3s ease;
            -o-transition: opacity 1s, top 0.3s, left 0.3s ease;
            -webkit-transition: opacity 1s, top 0.3s, left 0.3s ease;
            transition: opacity 1s, top 0.3s, left 0.3s ease;
            z-index: 15;
        }

        .section01 #item:hover .overlay {
            opacity: 0.7;
            top: -10px;
            left: -10px;
            -moz-transition: opacity 0.3s, top 0.3s, left 0.3s ease;
            -o-transition: opacity 0.3s, top 0.3s, left 0.3s ease;
            -webkit-transition: opacity 0.3s, top 0.3s, left 0.3s ease;
            transition: opacity 0.3s, top 0.3s, left 0.3s ease;
        }

        .section01 #item .bottom {
            background-image: url("/Content/Images/Pattern.jpg");
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            position: absolute;
            background-color: var(--themeColor);
            width: 100%;
            height: 100%;
            -moz-box-shadow: 0px 10px 25px 0px rgba(0,0,0,0.3);
            -webkit-box-shadow: 0px 10px 25px 0px rgba(0,0,0,0.3);
            box-shadow: 0px 10px 25px 0px rgba(0,0,0,0.3);
            -moz-border-radius: 15px;
            -webkit-border-radius: 15px;
            border-radius: 15px;
        }

        .section01 #item .content {
            position: absolute;
            width: 350px;
            height: 60%;
            top: 40%;
            left: 0;
            vertical-align: middle;
            padding-left: 50px;
            padding-right: 50px;
            opacity: 0;
            z-index: 20;
            -moz-transition: opacity 1s, top 0.3s, left 0.3s ease;
            -o-transition: opacity 1s, top 0.3s, left 0.3s ease;
            -webkit-transition: opacity 1s, top 0.3s, left 0.3s ease;
            transition: opacity 1s, top 0.3s, left 0.3s ease;
        }

        .section01 #item h3 {
            margin-bottom: 10px;
            color: var(--activeColor);
        }

        .section01 #item p {
            margin-left: 10px;
            line-height: 24px;
            color: var(--textColor);
        }

        .section01 #item:hover .top {
            top: -10px;
            left: -10px;
            -moz-transition: top 0.3s, left 0.3s ease;
            -o-transition: top 0.3s, left 0.3s ease;
            -webkit-transition: top 0.3s, left 0.3s ease;
            transition: top 0.3s, left 0.3s ease;
        }

        .section01 #item:hover .content {
            opacity: 1;
            top: 30%;
            left: -10px;
            -moz-transition: opacity 0.3s, top 0.3s, left 0.3s ease;
            -o-transition: opacity 0.3s, top 0.3s, left 0.3s ease;
            -webkit-transition: opacity 0.3s, top 0.3s, left 0.3s ease;
            transition: opacity 0.3s, top 0.3s, left 0.3s ease;
        }

.separator02 {
    background-image: url(/Content/Images/GamesSeparator.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--themeColor);
    width: 100%;
    text-align: center;
    padding-top: 250px;
    padding-bottom: 250px;
}

    .separator02 .storeButton .button {
        border: 2px solid;
        border-color: var(--backgroundColor);
        background-color: var(--altButtonColor);
        padding: 30px;
        color: var(--textColor);
        -webkit-border-bottom-right-radius: 15px;
        border-bottom-right-radius: 15px;
        -webkit-border-top-left-radius: 15px;
        border-top-left-radius: 15px;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
    }

        .separator02 .storeButton .button:hover {
            background-color: var(--backgroundColor);
            color: var(--themeColor);
            -moz-transition: all 0.3s;
            -o-transition: all 0.3s;
            -webkit-transition: all 0.3s;
            transition: all 0.3s;
        }

.section02 {
    background-image: url("/Content/Images/Background15.jpg");
    height: auto;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 100px;
    padding-bottom: 10px;
}

    .section02 .container {
        width: 1230px;
        margin: 0 auto;
    }

    .section02 h3 {
        color: var(--themeColor);
    }

    .section02 .items {
        margin-top: 50px;
        margin-bottom: 100px;
        display: flex;
        justify-content: center;
    }

        .section02 .items .item {
            width: 410px;
            height: 280px;
            text-align: center;
        }

            .section02 .items .item img {
                width: 170px;
                height: 170px;
                -moz-transition: width 0.3s, height 0.3s ease;
                -o-transition: width 0.3s, height 0.3s ease;
                -webkit-transition: width 0.3s, height 0.3s ease;
                transition: width 0.3s, height 0.3s ease;
            }

            .section02 .items .item:hover img {
                width: 180px;
                height: 180px;
                -moz-transition: width 0.2s, height 0.2s ease;
                -o-transition: width 0.2s, height 0.2s ease;
                -webkit-transition: width 0.2s, height 0.2s ease;
                transition: width 0.2s, height 0.2s ease;
            }

        .section02 .items h4 {
            margin-top: 30px;
            color: var(--altTextColor);
            -moz-transition: margin-left 0.3s, color 0.3s ease;
            -o-transition: margin-left 0.3s, color 0.3s ease;
            -webkit-transition: margin-left 0.3s, color 0.3s ease;
            transition: margin-left 0.3s, color 0.3s ease;
        }

        .section02 .items span {
            line-height: 50px;
            color: var(--altTextColor);
            -moz-transition: margin-left 1s, color 0.3s ease;
            -o-transition: margin-left 1s, color 0.3s ease;
            -webkit-transition: margin-left 1s, color 0.3s ease;
            transition: margin-left 1s, color 0.3s ease;
        }

        .section02 .items .item:hover h4 {
            margin-left: -20px;
            color: var(--themeColor);
            -moz-transition: margin-left 0.3s, color 0.3s ease;
            -o-transition: margin-left 0.3s, color 0.3s ease;
            -webkit-transition: margin-left 0.3s, color 0.3s ease;
            transition: margin-left 0.3s, color 0.3s ease;
        }

        .section02 .items .item:hover span {
            margin-left: 30px;
            color: var(--brightThemeColor);
            -moz-transition: margin-left 0.5s, color 0.5s ease;
            -o-transition: margin-left 0.5s, color 0.5s ease;
            -webkit-transition: margin-left 0.5s, color 0.5s ease;
            transition: margin-left 0.5s, color 0.5s ease;
        }

.scrollButton a p {
    margin-left: 10px;
}

@media only screen and (max-width : 700px) {
    .loadOverlay {
        background-position: 60%;
    }

    .headingImage {
        background-position: 60%;
    }

        .headingImage div h1 {
            margin-top: -25px;
            margin-left: -130px;
            font-size: 40px;
        }

            .headingImage div h1 span {
                font-size: 40px;
            }

    .section01 {
        height: auto;
        padding-top: 70px;
        padding-bottom: 30px;
        background-attachment: initial;
    }

        .section01 .container {
            width: 100%;
        }

        .section01 h3 {
            margin-left: 10px;
        }

        .section01 p {
            margin-top: 30px;
            margin-left: 15px;
            margin-right: 15px;
            font-size: 18px;
        }

        .section01 .container .features {
            display: grid;
            justify-content: center;
        }

        .section01 #item {
            width: 300px;
            height: 169px;
            margin-top: 50px;
            margin-bottom: 160px;
            margin-left: 10px;
        }

            .section01 #item.farItem {
                top: 0;
                margin-top: 50px;
            }

            .section01 #item .content {
                text-align: center;
                left: -5px;
                width: 100%;
                margin-left: 0;
                padding-top: 200px;
                padding-left: 0;
            }

                .section01 #item .content h3 {
                    margin-left: 0;
                    margin-bottom: 10px;
                }

                .section01 #item .content p {
                    margin-left: 15px;
                    line-height: 25px;
                }

    .separator02 {
        padding-top: 150px;
        padding-bottom: 150px;
        background-attachment: initial;
    }

        .separator02 .storeButton .button {
            padding: 15px;
            font-size: 18px;
        }

    .section02 {
        height: auto;
        padding-top: 70px;
        padding-bottom: 10px;
        background-attachment: initial;
    }

        .section02 .container {
            width: 100%;
        }

        .section02 h3 {
            margin-left: 10px;
        }

        .section02 .items {
            margin-top: 30px;
            margin-bottom: 40px;
            -ms-flex-flow: wrap;
            -webkit-flex-flow: wrap;
            flex-flow: wrap;
        }

            .section02 .items h4 {
                margin-top: 0;
            }

            .section02 .items .item {
                width: 100%;
                height: 250px;
            }

                .section02 .items .item img {
                    width: 150px;
                    height: 150px;
                }

        .section01 .itemGames {
            margin-top: 20px;
            margin-bottom: 40px;
            display: grid;
            -ms-flex-flow: wrap;
            -webkit-flex-flow: wrap;
            flex-flow: wrap;
        }

        .section01 .content {
            display: none;
        }

        .section01 .overlay {
            display: none;
        }

        .section01 #item {
            width: 300px;
            height: 169px;
            margin-bottom: 10px;
            margin-left: 0;
        }

            .section01 #item.itemLeft {
                margin-left: 0;
            }

            .section01 #item .content {
                width: 150px;
            }

                .section01 #item .content p {
                    display: none;
                }
}

@media only screen and (min-width : 700px) and (max-width : 1270px) {
    .loadOverlay {
        background-position: 50%;
    }

    .headingImage {
        background-position: 50%;
    }

        .headingImage div h1 {
            margin-top: -35px;
            margin-left: -180px;
            font-size: 60px;
        }

            .headingImage div h1 span {
                font-size: 60px;
            }

    .section01 {
        height: auto;
        padding-top: 70px;
        padding-bottom: 40px;
        background-attachment: initial;
    }

        .section01 .container {
            width: 100%;
        }

        .section01 h3 {
            margin-left: 20px;
        }

        .section01 .altText p {
            margin-top: 50px;
            margin-left: 30px;
            margin-right: 30px;
            font-size: 20px;
        }

        .section01 .container .features {
            display: grid;
            justify-content: center;
        }

        .section01 #item {
            width: 500px;
            height: 281px;
            margin-top: 60px;
            margin-bottom: 160px;
            margin-left: 10px;
        }

            .section01 #item.farItem {
                top: 0;
                margin-top: 40px;
            }

            .section01 #item .content {
                text-align: center;
                left: -5px;
                width: 100%;
                margin-left: 0;
                padding-top: 310px;
                padding-left: 0;
            }

                .section01 #item .content h3 {
                    margin-left: 0;
                    margin-bottom: 10px;
                }

                .section01 #item .content p {
                    margin-left: 0;
                    line-height: 25px;
                }

    .separator02 {
        padding-top: 200px;
        padding-bottom: 200px;
        background-attachment: initial;
    }

        .separator02 .storeButton .button {
            padding: 20px;
            font-size: 20px;
        }

    .section02 {
        height: auto;
        padding-top: 70px;
        padding-bottom: 10px;
        background-attachment: initial;
    }

        .section02 .container {
            width: 100%;
        }

        .section02 h3 {
            margin-left: 20px;
        }

        .section02 .items {
            margin-top: 30px;
            margin-bottom: 50px;
            -ms-flex-flow: wrap;
            -webkit-flex-flow: wrap;
            flex-flow: wrap;
        }

            .section02 .items h4 {
                margin-top: 0;
            }

            .section02 .items .item {
                width: 275px;
                height: 250px;
            }

                .section02 .items .item img {
                    width: 160px;
                    height: 160px;
                }

        .section01 .itemGames {
            margin-top: 20px;
            margin-bottom: 40px;
            display: grid;
            -ms-flex-flow: wrap;
            -webkit-flex-flow: wrap;
            flex-flow: wrap;
            display: flex;
            justify-content: space-evenly;
        }

        .section01 .content {
            display: none;
        }

        .section01 .overlay {
            display: none;
        }

        .section01 #item {
            width: 500px;
            height: 281px;
            margin-bottom: 10px;
            margin-left: 0;
        }

            .section01 #item.itemLeft {
                margin-left: 0;
            }

            .section01 #item .content {
                width: 150px;
            }

                .section01 #item .content p {
                    display: none;
                }
}
