<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Imports */
@font-face {
    font-family: 'futura_bk_btbook';
    src: url('../fonts/futuran-webfont.eot');
    src: url('../fonts/futuran-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/futuran-webfont.woff') format('woff'), url('../fonts/futuran-webfont.ttf') format('truetype'), url('../fonts/futuran-webfont.svg#futura_bk_btbook') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Futura Bold';
    src: url('../fonts/Futura_Bold.woff') format('woff');
}

@font-face {
  font-family: "FuturaBT-Medium";
  src: url("../fonts/FutuMd.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
    font-family: 'FuturaBT ExtraBlack';
    src: url('../fonts/futuraxk-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* Configs~ */
* {
    margin:0px;
    padding:0px;
}

body {
    font-family: 'futura_bk_btbook', sans-serif;
    font-size: 100%;
    background-image: url('images/bg-pattern.png');
}

:root {
    --red-font: #d0202e;
    --grey-font: #4f4f4f; 
    --white-font: #ffffff;
    --black-font: #1f1414;
    --white-bg: #ffffff;
    --grey-bg: rgba(188, 190, 192, .6); /* #bcbec0 */
    --carousel-bg: rgba(100, 100, 100, .6); /* #646464 */
}

/* General Styles */
p, h1, h2, h3 {
    margin-bottom: 20px;
}

h1, h2, h3, h4 {
    text-transform: uppercase;
    font-family: "Futura Bold", sans-serif;
    vertical-align: top;
}

h1, h2, h3 {
    color: var(--red-font);
    line-height: 1;
}

h1 {
    font-size: 3.5em;
}

h2 {
    font-size: 1.5em;
    text-align: center;
}

h3 {
    font-size: 3.5em;
}

h4 {
    font-size: 2.5em;
}

p {
    text-align: center;
    font-family: "FuturaBT-Medium", sans-serif;
    color: var(--grey-font);
}

ul {
    list-style-position: inside;
    font-family: "FuturaBT-Medium", sans-serif;
    text-align: left;
    color: var(--grey-font);
}

a {
    color: var(--red-font);
    text-decoration: none;
}

.m-0 {
    margin: 0 !important;
}

.red-text {
    color: var(--red-font);
}

.grey-text {
    color: var(--grey-font);
}

.center-text {
    text-align: center;
}

.uppercase-text {
    text-transform: uppercase;
}

.bg-grey {
    background-color: var(--grey-bg);
}

.img-container img {
    width: 100%;
}

.remove-this-class {
    height: 250px;
}

.btn-red {
    display: inline-block;
    height: 40px;
    width: 200px;
    color: var(--white-bg);
    background-image: linear-gradient(to bottom, #8e181b 25%, #e81c24);
    border: none;
    border-radius: 8px;
    text-transform: uppercase;
    -webkit-box-shadow: -8px 3px 25px 1px rgba(0,0,0,0.75);
    -moz-box-shadow: -8px 3px 25px 1px rgba(0,0,0,0.75);
    box-shadow: -8px 3px 25px 1px rgba(0,0,0,0.75);
    font-family: "FuturaBT-Medium", sans-serif;
    font-size: 1em;
}

.btn-red:before { /* S/O https://stackoverflow.com/a/24685032 */
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

/* Layout */
.col-1 {
    display: inline-block;
}

.col-1.hook {
    margin: 0;
}

.margin-top-25px {
    margin-top: 25px;
}

.margin-top-50px {
    margin-top: 50px;
}

.margin-bottom-25px {
    margin-bottom: 25px;
}

.pad-50px {
    padding: 50px;
}

.pad-vertical-50px {
    padding: 50px 0;
}

.margin-top-clear-nav { /* Standard with fixed nav */
    margin-top: 135px;
}

/* Sliding? Header */
nav {
    position: fixed;
    width: 100%;
    top: 0;
    border-bottom: 1px solid black;
    z-index: 10000;
}

.banner {
    max-width: 1920px;
    width: 100%;
    margin-top: 126px;
}

header {
    text-align: center;
}

header .seo-but-hide {
    display: none;
}

/* Navigation (also in media queries) */
#nav-links .active-link {
    color: var(--red-font);
}

/* "Our Partners" carousel */
section.our-partners-initial {
    display: none;
}

section.our-partners-show {
    position: fixed;
    background-color: var(--carousel-bg);
    z-index: 10000;
    height: 100%;
    width: 100%;
    top: 0;

    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-carousel-container {
    width: 80%;
    max-width: 1000px;
    position: absolute;
}

.partner-carousel-btn,
.slick-arrow {
    font-size: 1em !important;
    color: var(--white-font) !important;
    background-color: var(--red-font) !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 100% !important;
    border: none;
    z-index: 1000000000;
    display: inline-flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.close-partner-carousel-btn {
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: 1000000000;
}

.slick-prev:before {
    content: "" !important;
}

.slick-next:before {
    content: "" !important;
}

.partner-carousel { /* Set sizes and margins here.  JS does the actual application */
    --top-layer-font-size: 1em;
    --top-layer-z-index: 500;

    --second-layer-font-size: .8em;
    --second-layer-height: 90%;
    --second-layer-z-index: 300;
    --second-layer-inside-margin: -100px;

    --third-layer-font-size: .7em;
    --third-layer-height: 80%;
    --third-layer-z-index: 100;
    --third-layer-inside-margin: -100px;
}

.partner-carousel .img-container {
    width: 100%;
}

.partner-carousel .img-container img {
    margin: 0 auto;
    width: auto;
}

.slick-list {
    height: inherit;
}

.slick-track {
    display: flex !important;
    justify-content: center;
    align-items: center;
    height: 375px;
}

.tab {
    background-color: #000000;
    width: 375px;
    text-align: center;
    margin: auto 0;

    
    position: relative;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    border: 5px outset white;
}

.tab-content {
    margin: 10px;
}

.tab p {
    color: white;
    font-family: "FuturaBT-Medium", sans-serif;
}

.slick-current {
    min-height: 375px;
}

/* Section 1 */
section.top-marketing-hook {
    position: relative;
    border-top: solid 1px transparent;
    margin-top: -4px;
}

img#partners-img {
    position: absolute;
    right: 0;
    top: -0.5px;
    z-index: 100;
}

section.top-marketing-hook &gt; div.container {
    margin: 50px auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.hook {
    line-height: 1;
}

.hook-detail {
    font-size: 1.5em;
}

/* Section 2 */

.selling-points &gt; .container {
    padding: 10px 0;
}

section.selling-points {
    background-color: var(--grey-bg);
}

.selling-point {
    display: flex;
    justify-content: space-around;
    padding: 30px 0;
    align-items: center;
}

.selling-point h3 {
    font-family: "Futura Bold", sans-serif;
    font-weight: 900;
    text-align: center;
    margin-bottom: 0;
}

.selling-point h4 {
    color: var(--red-font);
    font-size: 1.5em;
    text-align: center;
    font-weight: 200;
    font-family: "FuturaBT-Medium";
}

.selling-point &gt; .point-detail &gt; p {
    margin-top: 10px;
}

.point-logo {
    margin: 0 auto;
}

/* Section 3 */
section.reliable-service .sub-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.img-display {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.img-display img {
    width: 250px;
}

section.reliable-service {
    margin: 50px auto;
}

/* Section 4 */
section.game-selection {
    background-color: var(--grey-bg);
    padding: 40px 0 0;
}

.game-selection .sub-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.game {
    width: 450px;
    height: 450px;
    position: relative;
    top: 0;
}

.game-detail {
    position: absolute;
    top: 0;
    text-align: center;
    width: 59%;
}

.game-detail img {
    margin-bottom: 50px;
}

.game-detail h4 {
    font-size: .95em;
    font-family: "FuturaBT-Medium", sans-serif;
}

.game &gt; .slot-img-container {
    width: 40%;
    float: right;
}

.slot-img-container &gt; img {
    width: 80%;
    float: right;
}

.game-detail &gt; h4 {
    color: var(--red-font);
    width: 100%;
    margin-top: 30px;
}

.game-detail &gt; p {
    color: var(--grey-font);
    width: 100%;
    line-height: 1.35;
}

.additional-games {
    float: right;
    text-align: center;
}

.additional-games h4 {
    font-size: 1em;
    letter-spacing: 2px;
}

.additional-games &gt; img {
    display: block;
    margin: 40px auto;
}

.casino-management-tools img {
    width: 90%;
    max-width: 550px;
}

.machine-logo {
    text-align: center;
}

.tools .col-1 {
    width: 45%
}

.tools-detail ul {
    margin: 20px;
}

/* Careers page */




@media screen and (max-width: 1449px) {
    img#partners-img {
        position: fixed;
        right: 0;
        top: 137px;
        z-index: 100;
    }
}

@media (min-width: 1100px) {

    #how-it-started {
        margin-top: -20px
    }

    .ml-50 {
        margin-left: 50px;
    }

    .container {
        width: 1100px;
        margin: 0 auto;
    }
    
    .col-2 {
        width: 500px;
    }

    /* Nav */
    nav {
        --grey-bg: #d7d8d9; 
    }

    nav * {
        text-transform: uppercase;
        font-family: "FuturaBT-Medium";
    }

    nav {
        background-color: var(--grey-bg);
    }

    #nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #nav-container img.logo {
        position: relative;
        top: 30px;
    }

    #nav-links {
        display: flex;
        width: 900px;
        justify-content: space-evenly;
        height: auto !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    #nav-links a {
        text-decoration: none;
        transition: 0.2s;
        color: var(--black-font);
        font-size: 12pt;
    }

    #nav-links a:hover,
    #nav-links a:focus,
    #nav-links a:active {
        color: var(--red-font);
        background: transparent;
    }

    .contact-us-btn {
      background: linear-gradient(#fcaf17, #f37421);
      text-decoration: none;
      color: white;
      text-transform: uppercase;
      display: block;
      padding: 10px 40px;
      box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
      border-radius: 5px;
      letter-spacing: 1px;
      transition: 0.2s;
    }

    .contact-us-btn:hover {
      box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    }

    .icon {
        display: none !important;
    }


    /* Contact-us form */
    .contact-us .sub-header {
        margin: 50px auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .contact-us ul {
        display: flex;
        list-style: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        margin: 0;
    }

    .contact-us li {
        text-align: center;
        align-self: center;
        font-size: .80em;
        font-family: "FuturaBT-Medium", sans-serif;
        color: var(--grey-font);
        margin: 0 10px;
    }

    .contact-us .sub-section {
        margin-bottom: 50px;
        width: 100%;
    }

    .contact-us form {
        width: 50%;
        margin: 0 auto;
    }

    .contact-us label,
    .contact-us input {
        display: block;
    }

    #form-name-wrapper {
        width: 100%;
        max-width: 500px;
    }

    .contact-us form div {
        display: inline-block;
    }

    .contact-us form label {
        margin-top: 25px;
        margin-bottom: 10px;
        color: var(--red-font);
        font-family: "FuturaBT-Medium", sans-serif;
        font-weight: bold;
    }

    .contact-us form .sub-label label {
        margin: 0;
        font-weight: 100;
    }

    .sub-label {
        width: 49%;
    }

    .contact-us form .first_name {
        width: 98%;
        margin-right: 2%;
    }

    .contact-us form .last_name {
        width: 100%;
    }

    .contact-us form .email, 
    .contact-us form .phone {
        width: 50%;
    }

    .contact-us form .contact-type {
        width: 75%;
    }

    .contact-us form .contact-type,
    .contact-us form .contact-type option {
        font-size: .80em;
        font-family: "FuturaBT-Medium", sans-serif;
        color: var(--grey-font);
    }

    .contact-us form .contact-type option {
        font-size: 1em;
    }

    .contact-us form .message {
        width: 100%;
        max-width: 500px;
        height: 150px;
    }

    .contact-us form p {
        margin-top: 25px;
        font-size: 1.15em;
    }

    .sub-section &gt; form &gt; p &gt; a {
        font-family: 'Futura Bold';
        text-decoration: none;
    }

    .contact-us form .submit-button {
        margin: 10px 0;
        width: 100px;
        background-color: var(--red-font);
        color: var(--white-bg);
        border: none;
        font-family: "Futura Bold", sans-serif;
        font-weight: 900;
        text-transform: uppercase;
        padding: 5px;
        font-size: .75em;
    }

    /* Footer */
    #footer {
        background: transparent;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        padding: 20px 0;
        font-size: 9pt
    }

    #footer &gt; p {
        margin: 0;
    }

    #footer-links {
        width: 350px;
        display: flex;
        justify-content: space-between;
    }

    #footer-links a {
        text-align: center;
        color: var(--grey-font);
        text-decoration: none;
        text-transform: uppercase;
        font-size: 9pt;
        font-family: "FuturaBT-Medium", sans-serif;
    }

    .red-btn {
      background: linear-gradient(#8c181a, #e51c24);
      text-decoration: none;
      color: white;
      text-transform: uppercase;
      padding: 15px 30px;
      box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
      border-radius: 5px;
      letter-spacing: 1px;
      transition: 0.2s;
      margin: 0 auto;
      display: inline-block;
    }

    .red-btn-small {
      background: linear-gradient(#8c181a, #e51c24);
      text-decoration: none;
      color: white;
      text-transform: uppercase;
      padding: 5px 10px;
      box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
      border-radius: 5px;
      letter-spacing: 1px;
      transition: 0.2s;
      margin: 0 auto;
      display: inline-block;
    }

    .red-btn:hover, .red-btn:active {
      box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    }

    /* Player Rewards */
    #pr-header &gt; .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 50px 0;
    }

    #pr-header &gt; .container &gt; .col-1 {
        text-align: left;
    }

    #pr-header &gt; .container &gt; .col-2 &gt; h2 {
        line-height: 1.2;
    }

    #rewards &gt; .container {
        padding: 40px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;

    }

    .player-rewards &gt; h3 {
        text-align: center;
        font-size: 1.5em;
        margin-bottom: 10px;
    }

    .player-rewards &gt; p {
        width: 900px;
        margin: 0 auto;
    }

    .tools {
        padding: 40px 0;
    }

    .machine-logo &gt; img {
        padding: 20px 0;
        width: 50%;
    }

    .machine-detail {
        display: flex;
        position: relative;
    }

    .tools &gt; .container &gt; .sub-section {
        display: flex;
        justify-content: space-evenly;
    }

    .machine-detail &gt; p {
        margin-left: 20px;
    }

    .abs-text {
        position: absolute;
        width: 300px;
        right: 0;
    }

    /* Careers */
    img.banner {
        width: 100%;
        max-width: 1920px;
        margin-top: 137px;
    }
    
    #careers-header &gt; .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 50px 0;
    }

    .positions {
        padding: 40px 0;
    }

    .positions h2 {
        font-size: 3em;
    }

    .position h3, .position h4, .position h5 {
        color: var(--grey-font);
    }

    .position {
        text-align: center;
        padding-bottom: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .position h3 {
        font-family: 'futura_bk_btbook';
        font-size: 1.7em;
        margin-bottom: 5px;
    }
    
    .position h4 {
        font-family: 'futura_bk_btbook';
        font-size: 1.3em;
        margin-bottom: 10px
    }

    .position h5 {
        font-size: 1em;
    }

    .position a {
        font-family: "FuturaBT-Medium", sans-serif;
        margin: 0;
    }

    .position a {
        text-transform: uppercase;
        text-decoration: none;
    }

    .position a {
        margin: 5px 0 15px;
    }

    .position-detail {
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center
    }

    .position-detail p {
        margin: 25px auto;
    }

    .position-detail button {
        margin-bottom: 25px;
    }

    .row-btn-wrapper {
        display: flex;
        width: 425px;
        justify-content: space-between;
        align-items: center;
    }

    /* Game Selection */
    .logo-text-machine-container {
        display: flex;
        justify-content: space-between;
        padding-bottom: 40px;
    }

    .ltm-wrapper {
        display: flex;
        width: 525px;
        justify-content: center;
    }

    .logo-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 270px;
    }

    .logo-text &gt; img {
        height: 95px;
        margin-bottom: 20px;
    }

    .add-games {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 500px;
    }

    .add-games &gt; p {
        font-size: 18pt;
        font-family: 'Futura Bold';
        text-transform: uppercase;
    }

    .add-games &gt; img {
        margin-bottom: 30px;
    }

    .swiper-slide {
        height: 300px !important;
        background: black;
        width: 216px !important;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border: 4px solid white;
        padding: 20px;
        transition: 0.1s;
        opacity: 1;
        margin: 0 -50px;
        z-index: 1;
        /* transform: translate3d(-175px, 0px, 0px); */
    }

    .carousel-card &gt; p {
        color: white;
    }

    .swiper {
      width: 100%;
      height: 100%;
    }

    .swiper-container {
      visibility: hidden;
      opacity: 0;
      position: fixed;
      z-index: 100000;
      width: 916px;
      margin-left: auto;
      margin-right: auto;
      left: 50%;
      top: 50%;
      transform: translate(-50%,-50%);
      transition: 0.2s;
    }

    .swiper-wrapper {
      align-items: center;
    }

    .overlay-carousel {
      visibility: hidden;
      opacity: 0;
      height: 100%;
      z-index: 1000;
      width: 100%;
      position: fixed;
      margin-left: auto;
      margin-right: auto;
      left: 50%;
      top: 50%;
      transform: translate(-50%,-50%);
      background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6));
      transition: 0.2s;
    }

    .swiper-button-next {
      background-image: url('../images/next-arrow.png');
      height: 50px !important;
      width: 50px !important;
      right: -55px !important
    }

    .swiper-button-prev {
      background-image: url('../images/prev-arrow.png');
      height: 50px !important;
      width: 50px !important;
      left: -55px !important;
    }

    .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
        display: none;
    }

    .swiper-button-next:after {
      display: none
    }

    .swiper-slide-active {
      /* margin: 0px -75px; */
      /* position: relative; */
      z-index: 1000 !important;
      height: 400px !important;
    }
    
    .swiper-slide-prev {
      /* margin-left: -100px; */
      z-index: 100 !important;
      height: 350px !important;
    }

    .swiper-slide-next {
      /* margin-right: -100px; */
      z-index: 100 !important;
      height: 350px !important;
    }

    .zindex {
      z-index: 50;
    }

    .zindex-2{
      z-index: 2;
    }

    .zindex-0 {
      z-index: 0;
    }

    /* Reliable service */
    #home-logo-slider {
        height: 525px;
        background-size: cover;
        background-position: bottom left;
        background-image: url('../images/home-slider-bg.jpg');
        margin-top:126px
    }

    .home-slider-container {
      display: flex;
      justify-content: space-between;
      padding: 50px 0;
      align-items: center;
    }

    #reliable-service &gt; .container &gt; img {
        padding-bottom: 50px;
    }

    .home-slider-left &gt; h1 {
      width: 475px;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin: 0;
    }

    .home-slider-left &gt; img {
      margin-left: 60px;
    }

    .home-slider-right {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .home-slider-right &gt; a {
      text-decoration: none;
      margin-top: 20px;
      font-family: 'Futura Bold';
      transition: 0.2s;
    }

    .home-slider-right &gt; a:hover {
      color: #636363;
    }

    .home-slider-right &gt; h2 {
      text-transform: uppercase;
      margin: 0;
    }

    .home-slider-right &gt; p {
      width: 530px;
      margin: 0 auto;
    }

    .home-slider-right &gt; p &gt; span {
      color: var(--red-font);
    }

    .grey-bg {
      background-color: var(--grey-bg);
    }

    .column-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 40px 0 0px;
    }

    .image-text-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 40px;
        width: 900px
    }

    .text-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 500px;
    }

    .text-btn &gt; h1 {
        margin: 0;
        text-transform: uppercase;
    }

    .text-btn &gt; h2 {
        margin:0;
        text-transform: uppercase;
    }

    .text-btn &gt; p {
        margin-top: 10px;
    }

    .grey-text &gt; span {
        color: var(--red-font) !important;
    }

    #rs-image-wrapper {
        display: flex;
        justify-content: space-between;
    }

    #rs-image-wrapper &gt; img {
        padding-bottom: 50px;
        width:250px;
    }

    /* About Page */

    #about-cgt-team {
        padding: 40px 0;
    }
    #about-cgt-team &gt; .container &gt; h2 {
        font-size: 3.5em;
        margin-bottom: 40px;
    }

    .about-us-page h1 {
        font-size: 2em;
        text-align: center;
    }

    .person-bio {
        display: flex;
        justify-content: space-between;
        margin: 0 auto 40px;
        width: 1073px;
    }

    .person-bio-row {
        display: flex;
        flex-direction: column;
        margin-bottom: 40px;
        align-items: center;
        width:500px;
    }

    .person-bio img{
        width: 420px;
        margin-left: 42px;
    }

    .person-bio-row img {
        width: 420px;
        margin-bottom: 15px;
    }

    .person-bio h3, .person-bio-row h3 {
        font-size: 1.75em;
        margin-bottom: 0;
    }

    .person-bio h4, .person-bio-row h4 {
        font-size: 1em;
        font-family: "FuturaBT-Medium", sans-serif;
        text-transform: uppercase;
        font-weight: 100;
        color: var(--grey-font);
        margin-top: 5px;
    }

    .person-bio p, .person-bio-row p {
        margin-top: 15px;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

    .person-bio a, .person-bio-row a {
        font-family: "FuturaBT-Medium", sans-serif;
        text-transform: uppercase;
    }

    .person-bio .read-more, .person-bio-row .read-more {
        display: none;
        text-transform: none;
    }

    .fav-quote {
        text-transform: uppercase;
    }

    .service-managers {
        display: flex;
        margin-top: 100px;
        flex-direction: column;
    }

    .service-managers &gt; .sub-header &gt; h2 {
        font-size: 2em;
        margin-bottom: 5px;
    }

    .service-managers .person-bio {
        text-align: center;
    }

    .person-bio.col-1 {
        width: 50%;
    }

    .service-managers .sub-section {
        display: flex;
        justify-content: space-between;
        width: 1070px;
        margin: 0 auto;
    }

    #sample-bio-steven, 
    #sample-bio-heidi, 
    #sample-bio-anderson, 
    #sample-bio-duvall, 
    #sample-bio-sparr, 
    #sample-bio-collete, 
    #sample-bio-razote,
    #sample-bio-waterman,
    #sample-bio-davey,
    #sample-bio-guschausky {
        display: inline;
        text-transform: none;
    }
}

@media screen and (max-width : 1099px){
    .container {
        width:100%;
    }

    .home-slider, .grey-bg, #footer {
      padding: 40px 20px 0;
    }

    .home-slider-container {
      display: flex;
      align-items: center;
      flex-direction: column;
      padding-bottom: 40px;
    }

    .home-slider-container &gt; a &gt; img {
        width: 60px;
    }

    .home-slider-left &gt; h1 {
      text-transform: uppercase;
      letter-spacing: 2px;
      text-align: center;
      font-size: 10vw;
      margin: 0;
    }

    .home-slider-left &gt; img {
      /* margin-bottom: 20px */
    }

    .home-slider-right &gt; h2 {
      text-transform: uppercase;
    }

    .home-slider-right {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .home-slider-right &gt; p {
      margin: 0 auto;
    }

    .home-slider-right &gt; p &gt; span {
      color: var(--red-font);
    }

    .home-slider-right &gt; a {
        text-decoration: none;
        margin-top: 20px;
        font-family: 'Futura Bold';
        transition: 0.2s;
    }

    .grey-bg {
      background-color: var(--grey-bg);
    }

    .column-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 40px 0 20px;
    }

    .image-text-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 40px;
    }

    .image-text-wrapper &gt; img {
        margin-bottom: 15px;
    }

    /* Layout */
    .col-1 {
        display: block;
        text-align: center;
        margin: 0 auto;
        width: auto;
        padding-bottom: 10px;
    }

    .col-2 {
        float: none;
        text-align: center;
        margin: 0 auto;
        width: auto;
    }

    .tools .col-1 {
        width: auto;
    }

     /* Nav */
    nav {
        --grey-bg: #d7d8d9; 
    }

    nav * {
        text-transform: uppercase;
        font-family: 'Futura Bold';
    }

    nav {
        background-color: var(--grey-bg);
        height: 125px;
    }

    #nav-container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

    #nav-container img.logo {
        margin-top: 20px;
        width: 95px;
        position: absolute;
        left: 12px;
    }

    #nav-links {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 0px;
        visibility: hidden;
        opacity: 0;
        margin-top: 105px;
        text-align: center;
    }

    #nav-links a {
        text-decoration: none;
        transition: 0.2s;
        color: var(--black-font);
        font-size: 16pt;
        margin-bottom: 10px;
    }

    #nav-links a:hover,
    #nav-links a:focus,
    #nav-links a:active {
        color: var(--red-font);
        background: transparent;
    }

    .sub-header {
        flex-direction: column;
    }

    .banner {
        margin-top: 126px;
    }

    img#partners-img {
        width: 18vw;
        top: 126px;
    }

    .contact-us-btn {
      background: linear-gradient(#fcaf17, #f37421);
      text-decoration: none;
      color: white;
      text-transform: uppercase;
      display: block;
      padding: 10px 40px;
      box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
      border-radius: 5px;
      letter-spacing: 1px;
      transition: 0.2s;
      margin-bottom: 20px;
    }

    a.contact-us-btn {
        display: block;
        position: absolute;
        text-align: center;
        margin-top: 40px;
        margin-bottom: 20px; 
    }

    a.contact-us-btn &gt; div {
        position: absolute;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        width: 100%;
    }

    .icon {
        position: absolute;
        top: 32px;
        right: 35px;
        font-size: 35pt;
        background: transparent;
    }

    .icon:hover, .icon:focus, .icon:active {
        background: transparent;
    }

    /* Section 1 */
    section.top-marketing-hook &gt; div.container {
        margin: 40px 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        width: auto;
    }

    .col-1.hook {
        /* margin: 0 0 20px 0; */
    }

    .hook {
        line-height: 1;
    }

    .hook-detail {
        font-size: 1.5em;
    }

    /* Section two */
    .selling-point &gt; div:nth-child(2) {
        position: relative;
    }

    .selling-point {
        text-align: center;
        display: flex;
        flex-direction: column;
    }

    .selling-point &gt; img {
        margin-bottom: 15px;
    }

    section.selling-points {
        background-color: var(--grey-bg);
        padding: 0 20px;
    }

    /* Section 3 */ 

    section.reliable-service .sub- {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
    }

    section.reliable-service {
        padding: 0 20px;
        margin: 50px auto;
    }

    .img-display {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-evenly;
    }

    .img-display img {
        width: 100%;
        max-width: 250px;
        margin-bottom: 20px;
    }

    /* Section 4 */

    section.game-selection {
        background-color: var(--grey-bg);
        padding: 40px 20px 0;
    }
    .game-selection .sub- {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
    }

    /* Break game to new line */
    div.game {
        height: auto;
        width: auto;
        padding-bottom: 50px;
    }

    .col-2.game.additional-games &gt; img:nth-child(5) {
        margin: 40px auto 0px;
    }
    
    div.game &gt; .slot-img-container {
        float: none;
    }
    
    div.game &gt; .game-detail {
        position: static;
        display: block;
        width: auto;
    }

    div.game &gt; .slot-img-container {
        width: auto;
        text-align: center;
    }

    .game-detail &gt; p {
        width: 75%;
        margin: 20px auto;
    }

    .game &gt; div.slot-img-container &gt; img {
        width: auto;
        float: none;
    }

    .additional-games {
        float: none;
    }

    .contact-us form {
        margin: 0 auto;
    }

    .footer-nav {
        display: block;
        text-align: center;
    }

    .footer-nav li {
        margin: 0 auto;
    }

    .tools-detail {
        margin-top: 10px;
    }

    .tools-detail img {
        width: 100%;
        max-width: 550px;
    }

    .machine-detail img {
        float: none;
        display: block;
        margin: auto;
    }

    .machine-logo img {
        width: 100%;
        padding: 0;
        max-width: 450px;
    }

    .person-bio.col-1 {
        width: auto;
    }

    .person-bio {
        margin-top: 25px;
    }

    #form-name-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-us .sub- {
        margin: 50px 20px 0px;
        text-align: center;
    }

    .sub- &gt; h3 {
        text-transform: uppercase;
        font-size: 10vw;
    }

    .contact-us ul {
        display: flex;
        list-style: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        margin: 0;
    }

    .contact-us li {
        text-align: center;
        align-self: center;
        font-size: .80em;
        font-family: "FuturaBT-Medium", sans-serif;
        color: var(--grey-font);
        margin: 0 10px;
    }

    .contact-us .sub-section {
        /* margin-bottom: 50px;
        width: 100%; */
    }

    .contact-us form {
        margin: 0 20px;
    }

    .contact-us label,
    .contact-us input {
        display: block;
    }

    .contact-us form div {
        display: inline-block;
    }

    #form-name-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-us form label {
        margin-top: 25px;
        margin-bottom: 10px;
        color: var(--red-font);
        font-family: "FuturaBT-Medium", sans-serif;
        font-weight: bold;
        width: 100%;
        max-width: 500px;
        margin: 25px auto 12px;
    }

    .contact-us form .sub-label label {
        margin: 0;
        font-weight: 100;
    }

    .sub-label {
        width: 49%;
    }

    .contact-us form .first_name {
        width: 98%;
        margin-right: 2%;
    }

    .contact-us form .last_name {
        width: 100%;
    }

    .contact-us form .email, 
    .contact-us form .phone {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-us form .contact-type {
        width: 75%;
    }

    .contact-us form .contact-type,
    .contact-us form .contact-type option {
        font-size: .80em;
        font-family: "FuturaBT-Medium", sans-serif;
        color: var(--grey-font);
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        text-align: cebt;
        display: block;
    }

    .contact-us form .contact-type option {
        font-size: 1em;
    }

    .contact-us form .message {
        width: 100%;
        max-width: 500px;
        height: 150px;
        margin: 0 auto;
    }

    .contact-us form p {
        margin-top: 25px;
        font-size: 1.15em;
    }

    .sub-section &gt; form &gt; p &gt; a {
        font-family: 'Futura Bold';
        text-decoration: none;
    }

    .contact-us form .submit-button {
        margin: 10px auto;
        width: 100px;
        background-color: var(--red-font);
        color: var(--white-bg);
        border: none;
        font-family: "Futura Bold", sans-serif;
        font-weight: 900;
        text-transform: uppercase;
        padding: 5px;
        font-size: .75em;
    }

    #footer {
      background: transparent;
      display: flex;
      flex-direction: column;
      justify-content: space-evenly;
      align-items: center;
      padding: 20px 0;
      font-size: 9pt
    }

    #footer &gt; p {
      margin: 0;
    }

    #footer-links {
      margin-top: 20px;
      display: flex;
      justify-content: space-between;
      width: 360px;
    }

    #footer-links a {
      text-align: center;
      color: var(--grey-font);
      text-decoration: none;
      text-transform: uppercase;
      font-size: 9pt;
      font-family: "FuturaBT-Medium", sans-serif;
    }

    .red-btn {
      background: linear-gradient(#8c181a, #e51c24);
      text-decoration: none;
      color: white;
      text-transform: uppercase;
      display: inline-block;
      padding: 10px 40px;
      box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
      border-radius: 5px;
      letter-spacing: 1px;
      transition: 0.2s;
      margin: 0 auto;
    }

    
    .red-btn-small {
      background: linear-gradient(#8c181a, #e51c24);
      text-decoration: none;
      color: white;
      text-transform: uppercase;
      display: inline-block;
      padding: 5px 10px;
      box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
      border-radius: 5px;
      letter-spacing: 1px;
      transition: 0.2s;
      margin: 0 auto;
    }


    .red-btn:hover, .red-btn:active {
      box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    }

    /* Player Rewards */


    #pr-header &gt; .container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        padding: 50px 0;
    }

    #rewards, #pr-header {
        padding: 0 20px;
    }

    #rewards &gt; .container {
        padding: 40px 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;

    }

    .player-rewards &gt; h3 {
        text-align: center;
        font-size: 1.5em;
        margin-bottom: 10px;
    }

    .tools {
        padding: 40px 20px;
    }

    .machine-logo &gt; img {
        padding: 20px 0;
        width: 100%;
        max-width: 314px;
    }

    .machine-detail {
        display: flex;
        flex-direction: column;
    }

    .player-rewards &gt; .sub-section {
        display: flex;
        justify-content: center;
    }

    .machine-detail &gt; p {
        margin: 0 20px;
    }

    /* Careers */
    .positions {
      padding: 40px 20px;
    }
    
    .txt-no-transfrom {
        text-transform: none;
    }

    img.banner {
        width: 100%;
        max-width: 1920px;
        margin-top: 126px;
    }

    .one-col-header {
        text-align: center;
        margin: 40px 0;
    }


    .position {
        text-align: center;
        margin-bottom: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .positions h2 {
        font-size: 3em;
        text-transform: uppercase;
    }

    .position h3,
    .position h4,
    .position h5 {
        color: var(--grey-font);
    }

    .position h3,
    .position h4,
    .position a {
        text-transform: uppercase;
    }

    .position a {
        text-transform: uppercase;
        text-decoration: none;
    }

    .position h3 {
        font-size: 1.7em;
        font-family: 'futura_bk_btbook';
        margin-bottom: 10px;
    }

    .position h4 {
        font-size: 1.3em;
        font-family: 'futura_bk_btbook';
        margin-bottom: 10px;
    }

    .position h5 {
        font-size: 1em;
    }

    .position a {
        margin-bottom: 25px;
    }

    .position-detail {
        display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    }

    .position-detail p {
        margin: 25px auto;
    }

    .position-detail button {
        margin-bottom: 25px;
    }

    .job-btn:nth-child(0) {
        margin-right: 10px;
    }

    .job-btn:nth-child(1) {
        margin-left: 10px;
    }

    .job-btn:nth-child(0),
    .job-btn:nth-child(1) {
      margin: 0;
    }

    .home-slider-left &gt; h1 {
      font-size: 2.75em;
    }

    .row-btn-wrapper {
        display: flex;
        justify-content: space-evenly;
        width: 100%;
        max-width: 400px;
    }

    /* Game Selection */
    .logo-text-machine-container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding-bottom: 40px;
    }

    .ltm-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom:80px;
    }

    .mb-0 {
        margin-bottom: 0 !important;
    }

    .contact-us .sub-header {
        margin: 50px 20px 0px;
        text-align: center;
    }

    .logo-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .logo-text &gt; img {
        height: 95px;
        margin-bottom: 20px;
    }

    .add-games {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .add-games &gt; p {
        font-size: 18pt;
        font-family: 'Futura Bold';
    }

    .add-games &gt; img {
        margin-bottom: 30px;
    }

    .swiper-slide {
        height: 300px !important;
        background: black;
        width: 216px !important;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border: 4px solid white;
        padding: 20px;
        transition: 0.1s;
        opacity: 1;
        margin: 0 -50px;
        z-index: 1;
        border-radius: 5px;
        /* transform: translate3d(-175px, 0px, 0px); */
    }

    .carousel-card &gt; p {
        color: white;
    }

    .swiper {
      width: 100%;
      height: 100%;
    }

    .swiper-container {
      visibility: hidden;
      opacity: 0;
      position: fixed;
      z-index: 100000;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      left: 50%;
      top: 353px;
      transform: translate(-50%,-50%);
      transition: 0.2s;
    }

    .swiper-wrapper {
      align-items: center;
    }

    .overlay-carousel {
      visibility: hidden;
      opacity: 0;
      height: 100%;
      z-index: 1000;
      width: 100%;
      position: fixed;
      margin-left: auto;
      margin-right: auto;
      left: 50%;
      top: 50%;
      transform: translate(-50%,-50%);
      background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6));
      transition: 0.2s;
    }

    .swiper-button-next {
      background-image: url('../images/next-arrow.png');
      height: 50px !important;
      width: 50px !important;
      /* right: -55px !important */
    }

    .swiper-button-prev {
      background-image: url('../images/prev-arrow.png');
      height: 50px !important;
      width: 50px !important;
      /* left: -55px !important; */
    }

    .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
        display: none;
    }

    .swiper-button-next:after {
      display: none
    }

    .swiper-slide-active {
      /* margin: 0px -75px; */
      /* position: relative; */
      z-index: 1000 !important;
      height: 400px !important;
    }
    
    .swiper-slide-prev {
      /* margin-left: -100px; */
      z-index: 100 !important;
      height: 350px !important;
    }

    .swiper-slide-next {
      /* margin-right: -100px; */
      z-index: 100 !important;
      height: 350px !important;
    }

    .zindex {
      z-index: 50;
    }

    .zindex-2{
      z-index: 2;
    }

    .zindex-0 {
      z-index: 0;
    }

    /* About Page */

    #about-cgt-team {
        padding: 40px 20px;
    }

    #about-cgt-team &gt; .container &gt; h2 {
        font-size: 3.5em;
        margin-bottom: 40px;
    }

    .about-us-page h1 {
        font-size: 2em;
        text-align: center;
    }

    .person-bio {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin: 0 auto 40px;
    }

    .person-bio-row {
        display: flex;
        flex-direction: column;
        margin-bottom: 40px;
        align-items: center;
    }

    .person-bio img{
        width: 100%;
        max-width: 420px;
    }

    .person-bio-row img {
        width: 100%;
        max-width: 420px;
        margin-bottom: 10px
    }

    .person-bio h3, .person-bio-row h3 {
        font-size: 1.75em;
        margin-bottom: 0;
    }

    .person-bio h4, .person-bio-row h4 {
        font-size: 1em;
        font-family: "FuturaBT-Medium", sans-serif;
        text-transform: uppercase;
        font-weight: 100;
        color: var(--grey-font);
        margin-top: 5px;
    }

    .person-bio p, .person-bio-row p {
        margin-top: 15px;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

    .person-bio a, .person-bio-row a {
        font-family: "FuturaBT-Medium", sans-serif;
        text-transform: uppercase;
    }

    .person-bio .read-more, .person-bio-row .read-more {
        display: none;
        text-transform: none;
    }

    .fav-quote {
        text-transform: uppercase;
    }

    .service-managers {
        display: flex;
        flex-direction: column;
    }

    .service-managers &gt; .sub-header &gt; h2 {
        font-size: 2em;
    }

    .service-managers .person-bio {
        text-align: center;
    }

    .person-bio.col-1 {
        width: 50%;
    }

    .service-managers .sub-section {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin: 0 auto;
    }   

    #sample-bio-steven, 
    #sample-bio-heidi, 
    #sample-bio-anderson, 
    #sample-bio-duvall, 
    #sample-bio-sparr, 
    #sample-bio-collete, 
    #sample-bio-razote,
    #sample-bio-waterman,
    #sample-bio-davey,
    #sample-bio-guschausky {
        display: inline;
        text-transform: none;
    }

    /* Reliable Service */
    #reliable-service {
        padding: 40px 20px 20px;
    }
    
    #rs-image-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
        align-items: center;
    }

    #rs-image-wrapper &gt; img {
        margin-bottom: 20px;
    }

    #how-it-started {
        padding: 0 20px;
        margin-top: -20px
    }
}

@media screen and (max-width : 550px) {
    h3 {
        font-size: 2.75em;
    }

    .sub-header h3 {
        padding-bottom: 20px;
        font-size: 2.5em;
    }

    .selling-point .point-logo img {
        width: 100%;
        max-width: 200px;
    }

    .partner-carousel-container {
        width: auto;
    }

    .partner-carousel-container button.close-partner-carousel-btn {
        right: 0;
        top: 0;
    }

    .position-detail button:nth-child(2) {
        margin-right: 0;
    }
    
    .position-detail button:nth-child(3) {
        margin-left: 0;
    }
}</pre></body></html>