
@font-face {
    font-family: 'Goldman Sans Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Goldman Sans Regular'), url('fonts/GoldmanSans_Rg.woff') format('woff');
    }
    
    @font-face {
    font-family: 'Goldman Sans Medium';
    font-style: normal;
    font-weight: normal;
    src: local('Goldman Sans Medium'), url('fonts/GoldmanSans_Md.woff') format('woff');
    }
    

    @font-face {
    font-family: 'Goldman Sans Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Goldman Sans Bold'), url('fonts/GoldmanSans_Bd.woff') format('woff');
    }
    


body {
    font-family: 'Goldman Sans Regular';
    font-size: 16px;
    color: #2d2d2d;
    background: #f1f1f1;
    margin: 0;
  }
  
  a {
    text-decoration: none !important;
    color: #1DA6DD;
  }
  
  a:focus {
    outline: inherit;
  }
  
  a:active {
    outline: inherit;
    color: #1DA6DD;
  }
  
  a:hover {
    color: #1DA6DD;
  }
  
  img {
    max-width: 100%;
    vertical-align: top;
}


.wrapper {
    margin: 0;
    padding: 0;
}

.header {
    margin: 0;
    background-color: #fff;
    padding: 10px 40px;
    box-shadow: 0 0 10px #cccccc91;
    
}
.header-inside {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    margin: 0;
    padding: 0;
    font-size: 24px;
    font-family: 'Goldman Sans Medium';
    display: flex;
    align-items: center;
}
.logo img {
    line-height: 0;
    margin-right: 10px;
}
.logo span {
    margin-top: 5px;
}
.logo-right {
    position: relative;
}
.logo-right span {
    position: absolute;
    font-size: 12px;
    right: 6px;
    top: -10px;
}


.content-part{
    margin: 0;
    padding: 60px 40px 30px;
}

.game-section {
    margin: 0 -15px;
    padding: 0;
    display: flex;
/*    justify-content: center;*/
    flex-flow: wrap;

}
.game-block {
    margin: 0;
    padding: 0 15px 30px;
/*    width: 33.33%;*/
    width: 25%;
}
.game-img {
    border-bottom: 1px solid #bfb7b7;
}
.game-block-inside {
    margin: 0;
    padding: 0;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: all ease-in-out 0.2s;
}
.game-block-inside:hover {
    box-shadow: 0 0 8px #ccc;
}
.game-title{
    text-align: center;
    font-size: 24px;
    margin: 0;
    padding: 10px  10px;
    font-family: 'Goldman Sans Medium';
    color: #2d2d2d;
    text-decoration: none;
}

@media (max-width:768px){
    .header {
        padding-left: 10px;
        padding-right: 10px;
    }
    .content-part {
        padding-left: 10px;
        padding-right: 10px;
    }
    .game-block {width: 50%;}
}