@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');

@font-face {
    font-family: 'bloody';
    src: url('../fonts/bloody/bloody.woff2') format('woff2'),
         url('../fonts/bloody/bloody.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

:root {
  --yellow: #d4af37;
  --white: #ffffff;
  --light-grey: #f5f5f5;
  --dark-grey: #333;
}

.font-bloody {
    font-family: 'bloody';
}


body {
    background-color:var(--white);
    font: 400 14px/1.8 "Open Sans", sans-serif;
    color: #333333;
    font-size: 15px;
    letter-spacing: 0.045em;
}

/************* START COMMON CSS *************/

a:hover {
    text-decoration: none;
}

h1,h2 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}

h1 {
    font-size:3rem;
}

.content {
    padding:100px 0px;
}

.btn {
    border-radius: 0px;
}

.btn-primary {
    background-color:var(--yellow);
    border-color:var(--yellow);
}

.btn-secondary {
    background-color:var(--dark-grey);
    border-color:var(--dark-grey);
    color:var(--white);
}

/************* END COMMON CSS *************/

/************* START POPUP *************/
#popup-modal .modal-button a {
    color:var(--white);
    padding:10px 15px;
    background-color:var(--yellow);
}
#popup-modal .modal-text {
    color: #fff;
} 

/************* END POPUP *************/

/************* START HEADER CSS *************/
header {
    position:fixed;
    width: 100%;
    top:0px;
    left:0px;
    right:0px;
    color:#fff;
    background-color: rgba(255, 255, 255, 1);
    border-bottom: 1px solid rgba(180, 180, 180, .2);
    border-top: 1px solid rgba(180, 180, 180, .2);
    z-index:99;
    font-family: 'Quicksand', sans-serif; 
}

header .sub-header {
    padding: 10px 13px;
    text-transform: uppercase;
    color: var(--dark-grey);
    font-weight: 600;
    border-bottom: 1px solid rgba(180, 180, 180, .2);
    display: flex;
    justify-content: space-between;
    padding: 0px 50px;
    height: 80px;
    align-items: center;
    display: grid;
    grid-template-columns: 40% 20% 40%;
}

header .sub-header div a {
    padding: 10px 20px;
    color:var(--dark-grey);
    font-size:12px;
}

header .master-header {
    height:50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding:0px 70px 0px 50px;
}

header .master-header .nav {
    display: flex;
    height: inherit;
    align-items: center;
}

header .master-header .nav a {
    color:var(--dark-grey);
    text-transform: uppercase;
    height: inherit;
    display: flex;
    align-items: center;
    padding:0px 20px;
    font-weight: 700;
    font-size:13px;
    height:40px;
}

body.dark header {
    background-color: rgba(31, 34, 37, 1);
    border-bottom: 1px solid rgba(180, 180, 180, .2);
    border-top: 1px solid rgba(180, 180, 180, .2);
}

body.dark header .sub-header div a {
    color:var(--light-grey);
}
body.dark header .master-header .nav a {
    color:var(--light-grey);   
}

.break-nav {
    height:130px;
}

/************* END HEADER CSS *************/


/************* START SEARCH CSS *************/
.search {
    margin-top:130px;
    height:550px;
    max-height: 100vh;
    width: 100%;
    padding:0px 50px;
    color:var(--white);
    background-color:var(--yellow);
    border:solid 1px var(--light-grey);
}

.search-small {
    margin-top:130px;
    height:180px;
    max-height: 100vh;
    width: 100%;
    padding:0px 50px;
    color:var(--white);
    background-color:var(--yellow);
    border:solid 1px var(--light-grey);
}

.search form {
    width: 100%;
    margin-top:50px;
    display: flex;
    z-index: 1;
    border: solid 1px #ccc;
    background-color:var(--white);
    color:var(--dark-grey);
}

.search-small form {
    margin-top:0px;
}

.search form .input-group {
    display:flex;
    flex-direction: column;
    border-right:solid 1px #ccc;
    padding:0px 30px;
    margin:20px 0px;
}

.search form .input-group.last-input-group {
    border-right:none;
}

.search form select {
    outline: none;
    border:none;
    -webkit-appearance: none;
    width: 100%;
}

.search form .choose-option {
    position: relative;
}

.search form .choose-option i {
    position: absolute;
    right: 25px;
    top: 3px;
    pointer-events: none;
    z-index:1;
}

.search form button {
    background-color:transparent;
    border: none;
    color: white;
    padding:34px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    outline: none;
}

.search form .search-icon {
    color:#fff;
    display:flex;
    align-items: center;
    justify-content: center;
    background-color:var(--white);
}

.search form .search-icon i {
    font-size:24px;
    color:var(--dark-grey);
}
/************* END SEARCH CSS *************/

/************* START CIRCLE SEARCH CSS *************/
.btn-cirle-searchable {
	position: fixed;
    bottom: 10px;
    right: 10px;
    display: flex;
    height: 70px;
    width: 70px;
    background-color: var(--yellow);
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    z-index: 9998;
    cursor:pointer;
}

.search-collapsable-overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.4);
    z-index: 100;
    display: none;
    transition: all 300ms ease-in-out;
}
.search-collapsable-overlay.show {display: block;}

.search-collapsable {
    display: none;
	max-height: none;
    height: auto;
    margin: 0px;
    position: fixed;
    bottom: -110px;
    padding: 0px;
    z-index:9999;
    transition: bottom 10s ease-in-out;
    border:none;
}

.search-collapsable.show {
    display: block;
    bottom: 0px;
}

.search-collapsable form {
	margin-top:10px;
    margin-bottom:10px;
}

/************* END CIRCLE SEARCH CSS *************/


/************* START GAMES CSS *************/
.games {
    background-color:var(--light-grey);
}

.games .choose-amount {
    position: relative;
}

.games .choose-amount i {
    position: absolute;
    right: 25px;
    top: 15px;
    pointer-events: none;
}

.games .choose-amount select[name="amount"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border:solid 1px #ccc;
    padding:11px 16px;
    width:130px;
    border-radius: 0px;
    cursor: pointer;
    height:50px;
    outline: none;
    margin-right:10px;
}

.games .choose-game {
    position: relative;
}

.games .choose-game i {    
    position: absolute;
    right: 25px;
    top: 15px;
    pointer-events: none;
}

.games .choose-game select[name="games"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border:solid 1px #ccc;
    padding:11px 30px;
    width:200px;
    border-radius: 0px;
    cursor: pointer;
    height:50px;
    outline: none;
}

.games .choose-game select[name="games"] option {
    padding:5px;
}

.games .prev-next-games {
    width:50px;
    height:50px;
    display: flex;
    align-items:center;
    justify-content: center;
    border:solid 1px #ccc;
    border-radius: 0px;
    margin-left:10px;
    cursor:pointer;
    background-color:#fff;
}

.games .prev-next-games i {
    color:#333;
}

.games .prev-next-games:hover {
    border-color:#d4af37; 
    transition: all 0.5s;
}

.games .prev-next-games:hover i {
    color:#d4af37;
    transition: all 0.5s;
}

.games-container {
    /*padding-left: calc(50vw - (1140px / 2) + 5px);*/
    overflow: hidden;
    padding-right:0px;
}

.games-container .element-item {
    height:550px;
    width:100%;
    margin-bottom:20px;
    border-radius: 10px;
    margin-right:15px;
}

.games-container .element-item .game {
    height:inherit;
    width: inherit;
    border-radius: 0px;
    cursor:pointer;
    position: relative;
}

.games-container .element-item .game > div {
    position: absolute;
    bottom:0px;
    background-color:var(--yellow);
    width: 100%;
    /*border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;*/
    border-radius: 0px;
    color:#fff;
    font-weight: 400;
    font-size:1.2rem;
    height:100%;
    align-items: center;
    padding: 10px 30px;
    transition: all 0.5s;
    display: flex;
    opacity: 0;
}

.games-container .element-item .game:hover > div { 
    opacity: 1;
}

/************* END GAMES CSS *************/


/************* START ESCAPE ROOM GAME CSS *************/
#escape-room.header {
    background-color:var(--yellow);
    height:400px;
    width: 100%;
    display: flex;
}
#escape-room.header > div {
    width: 50%;
}

#escape-room.header .header-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color:var(--white);
    height: 100%;
}

#escape-room.header .header-img img {
    object-fit: cover;
    width: 100%;
    height: 400px;
    object-position:left
}

.next-prev-game {
    display: flex;
}

.next-prev-game > div {
    width:50%;
    padding:15px;
}

.next-prev-game .next {
    text-align: right;
}

.next-prev-game .prev-next a {
    color:var(--dark-grey);
    font-weight: bold;
    font-family: 'Quicksand', sans-serif; 
}

.next-prev-game .prev-next span {
    padding:0px 15px;
}

/************* END ESCAPE ROOM GAME CSS *************/


/************* START FEATURE CSS *************/
.features .feature-items {
    display: grid;
    grid-template-columns: repeat(2,50%);
    grid-gap: 30px;
    margin-bottom: 70px;
}

.features .feature-items .feature-item a {
    display: block;
    padding:45px;
}

.features .feature-items .feature-item.bg-light-grey {
    background-color:var(--light-grey);
}

.features .feature-items .feature-item.bg-light-grey a {
    color:var(--dark-grey);
}

.features .feature-items .feature-item.bg-yellow {
    background-color:var(--yellow);
    color:var(--white);
}
.features .feature-items .feature-item.bg-yellow a {
    color:var(--white);
}

.features .feature-items .feature-item.bg-dark-grey {
    background-color:var(--dark-grey);
    color:var(--white);
}

.features .feature-items .feature-item.bg-dark-grey a {
    color:var(--white);
}

.features .feature-items .feature-item .feature-icon {
    display: grid;
    grid-template-columns: 100px 1fr;
    margin-bottom:20px;
    align-items: center;
}

.features .feature-items .feature-item .feature-icon span {
    font-size: 60px;
    margin-right:30px;
}

.features .feature-items .feature-item .feature-icon h3 {
    margin-bottom:0px;
    font-weight: 300;
    font-family: 'Quicksand', sans-serif; 
}
/************* END FEATURE CSS *************/

/************* START GIFTVOUCHER CSS *************/
.gift-voucher {
    padding:20px;
    background-color:var(--yellow);
    color:var(--white);
}

.gift-voucher a {
    color:var(--white);
}
/************* END GIFTVOUCHER CSS *************/


/************* START REVIEWS CSS *************/
.reviews .review-items {
    display: grid;
    grid-template-columns: 400px 1fr;
    grid-gap: 30px;
}

.reviews .review-items .review-slider {
    display: grid;
    grid-template-rows: repeat(3,200px);
}

.reviews .review-items .review-slider .review-item {
    padding:15px;
    color:var(--dark-grey);
    cursor: pointer;
    margin-bottom:10px;
} 

.reviews .review-items .review-slider .review-item .review-title {
    display: grid;
    grid-template-columns: 1fr 85px;
}

.reviews .review-items .review-slider .review-item .review-title h4 {
    font-family: 'Quicksand', sans-serif; 
    font-size:1.1rem;
}

.reviews .review-items .review-slider .review-item .review-title h4 a {
    color:var(--yellow);
    font-weight: 900;
}

.reviews .review-items .review-slider .review-item .review-title .rating {
    font-size: 0.7rem;    
}

.reviews .review-items .review-slider .review-item span.review-info {
    font-size:0.9rem;
    display: block;
    padding:10px; 
    font-style: italic;
}

.reviews .review-items .review-slider .review-item.active,.reviews .review-items .review-slider .review-item:hover {
    background-color:var(--yellow);
    color:var(--white);
    padding:15px;
}  

.reviews .review-items .review-slider .review-item.active .review-title a,.reviews .review-items .review-slider .review-item:hover .review-title a {
    color:var(--dark-grey);
}

.reviews .review-items .review-images {
    max-height: 590px;
    overflow: hidden;
    height:590px;
}

.reviews .review-items .review-images .review-img {
    display: none;
    height: inherit;
}

.reviews .review-items .review-images .review-img img {
    object-fit: cover;
    height: 100%;
}

.reviews .review-items .review-images .review-img.show {
    display: block;
}

.reviews .review-items .review-images .review-img.show img {
    max-width: 100%;
}

/************* END REVIEWS CSS *************/

/************* START TEDOENIN CSS *************/
.tedoenin .review-items {
    display: grid;
    grid-template-columns: 400px 1fr;
    grid-gap: 30px;
}

.tedoenin .review-items .review-slider {
    display: grid;
    grid-template-rows: repeat(4,100px);
}

.tedoenin .review-items .review-slider .review-item {
    padding:15px;
    color:var(--dark-grey);
    cursor: pointer;
    margin-bottom:0px;
    height: calc(100% - 10px);
    display: flex;
    align-items: center;
} 

.tedoenin .review-items .review-slider .review-item .review-title {
    display: grid;
    grid-template-columns: 1fr 85px;
}

.tedoenin .review-items .review-slider .review-item .review-title h4 {
    font-family: 'Quicksand', sans-serif; 
    font-size:1.1rem;
    margin-bottom:0px;
}

.tedoenin .review-items .review-slider .review-item .review-title h4 a {
    color:var(--yellow);
    font-weight: 900;
}

.tedoenin .review-items .review-slider .review-item .review-title .rating {
    font-size: 0.7rem;    
}

.tedoenin .review-items .review-slider .review-item span.review-info {
    font-size:0.9rem;
    display: block;
    padding:10px; 
    font-style: italic;
}

.tedoenin .review-items .review-slider .review-item.active,.tedoenin .review-items .review-slider .review-item:hover {
    background-color:var(--yellow);
    color:var(--white);
    padding:15px;
}  

.tedoenin .review-items .review-slider .review-item.active .review-title a,.tedoenin .review-items .review-slider .review-item:hover .review-title a {
    color:var(--dark-grey);
}

.tedoenin .review-items .review-images {
    max-height: 590px;
    overflow: hidden;
}

.tedoenin .review-items .review-images .review-img {
    display: none;
}

.tedoenin .review-items .review-images .review-img.show {
    display: block;
}

.tedoenin .review-items .review-images .review-img.show img {
    max-width: 100%;
}

/************* END TEDOENIN CSS *************/


/************* START TEAMBUILDING CSS *************/
#teambuilding.full-header {
    background-image:url('../images/teambuilding2.jpg');
    background-size:cover;
    background-position: center center;
    height:800px;
    width: 100%;
}

#teambuilding.full-header .full-header-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color:var(--yellow);
    width: 100%;
    height: 100%;
    background-color:rgba(51, 51, 51,0.6);
}

#teambuilding-steps .steps {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
} 

#teambuilding-steps .steps a {
    border-bottom:solid 6px var(--light-grey);
    font-family: 'Quicksand', sans-serif;
    font-size:18px;
}

#teambuilding-steps .steps a.checked,#teambuilding-steps .steps a.active {
    cursor:pointer;
    border-bottom-color: var(--yellow);
}

#teambuilding-steps .steps-info .steps-info-item {
    display: none;
}

#teambuilding-steps .steps-info .steps-info-item.active {
    display: block;
}

#teambuilding-steps .steps-info .steps-info-item .steps-title {
    margin-top:18px;
    padding-right:40px;
}

#teambuilding-steps .steps-info .steps-info-item .steps-title h3 {
    font-family: 'Quicksand', sans-serif;
}

#teambuilding-steps .steps-info #step-1 .games {
    padding:20px;
    padding-bottom:10px;
}

#teambuilding-steps .steps-info #step-1 .games .game-item {
    display: flex;
    justify-content: space-between;
    margin-bottom:10px;
    align-items: center;
}

#teambuilding-steps .steps-info #step-1 .games .game-item .amount_players  {
    position: relative;
}

#teambuilding-steps .steps-info #step-1 .games .game-item .amount_players i {
    position: absolute;
    right: 25px;
    top: 11px;
    pointer-events: none;
}

#teambuilding-steps .steps-info #step-1 .games .game-item .amount_players select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border:solid 1px #ccc;
    padding:5px 16px;
    width:130px;
    border-radius: 0px;
    cursor: pointer;
    height:42px;
    outline: none;
    margin-right:10px;
}

/************* END TEAMBUILDING CSS *************/

/************* START ESCAPE-GAME CSS *************/

h1.room-title {
    font-size: 8em;
    color: #f00;
    letter-spacing: 10px;
}

#escape-room-game .game-row {
    display: grid;
    grid-template-columns: 50% 50%;
}

#escape-room-game .game-row .game-block-text {
    display: flex;
    justify-content: center;
    align-items: center;
}

#escape-room-game .game-row .game-block-text .game-ratings { 
    display: grid;
    grid-template-columns: 33% 33% 33%;
    width: 100%;
    margin-bottom:30px;
}

#escape-room-game .game-row .game-block-text .game-info {
    max-width: 600px;
    min-width: 450px;
    text-align: center;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
}

#escape-room-game .game-row .game-block-text .game-info h2 {
    font-size:5rem;
    margin-bottom:25px;
}

#escape-room-game .game-row .game-block-text .game-info-specs {
    margin-top:70px;
    display: grid;
    grid-template-columns: 33% 33% 33%;
}

#escape-room-game .game-row .game-block-text .game-info-specs .game-info-spec {
    display: flex;
    flex-direction: column;
}

#escape-room-game .game-row .game-block-text .game-info-specs .game-info-spec i {
    text-align: center;
}

#escape-room-game .game-row .game-block-images {
    display: grid; 
    grid-template-columns: repeat(2,50%);
    grid-template-rows: 50% 50%;
}

#escape-room-game .game-row .game-block-images .game-block-image {
    height:25vw;
    width:100%;
}

#escape-room-game .game-row .game-block-images .game-block-image img {
    object-fit: cover;
    width:100%;
    height: 100%;
}

#escape-room-game .game-row .game-block-image.image-1 {
    border-bottom:solid 4px #fff;
    border-right:solid 4px #fff;
}

#escape-room-game .game-row .game-block-image.image-2 {
    border-bottom:solid 4px #fff;
}

#escape-room-game .game-row .game-block-image.image-3 {
    border-right:solid 4px #fff;
}

#escape-room-game .game-row .game-block-full-image {
    width:100%;
    height:50vw;
}

#escape-room-game .game-row .game-block-full-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}


/****************** FULL PAGE EXAMPLE ******************/

#fullpage .escape-room-game .game-row {
    display: grid;
    grid-template-columns: 50% 50%;
}

#fullpage .escape-room-game .game-row .game-block-text {
    display: flex;
    justify-content: center;
    align-items: center;
}

#fullpage .escape-room-game .game-row .game-block-text .game-ratings { 
    display: grid;
    grid-template-columns: 33% 33% 33%;
    width: 100%;
    margin-bottom:30px;
}

#fullpage .escape-room-game .game-row .game-block-text .game-info {
    max-width: 600px;
    min-width: 450px;
    text-align: center;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
}

#fullpage .escape-room-game .game-row .game-block-text .game-info h2 {
    font-size:5rem;
    margin-bottom:25px;
}

#fullpage .escape-room-game .game-row .game-block-text .game-info-specs {
    margin-top:70px;
    display: grid;
    grid-template-columns: 33% 33% 33%;
}

#fullpage .escape-room-game .game-row .game-block-text .game-info-specs .game-info-spec {
    display: flex;
    flex-direction: column;
}

#fullpage .escape-room-game .game-row .game-block-text .game-info-specs .game-info-spec i {
    text-align: center;
}

#fullpage .escape-room-game .game-row .game-block-images {
    display: grid; 
    grid-template-columns: repeat(2,50%);
    grid-template-rows: 50% 50%;
}

#fullpage .escape-room-game .game-row .game-block-images .game-block-image {
    height:25vw;
    width:100%;
}

#fullpage .escape-room-game .game-row .game-block-images .game-block-image img {
    object-fit: cover;
    width:100%;
    height: 100%;
}

#fullpage .escape-room-game .game-row .game-block-image.image-1 {
    border-bottom:solid 4px #fff;
    border-right:solid 4px #fff;
}

#fullpage .escape-room-game .game-row .game-block-image.image-2 {
    border-bottom:solid 4px #fff;
}

#fullpage .escape-room-game .game-row .game-block-image.image-3 {
    border-right:solid 4px #fff;
}

#fullpage .escape-room-game .game-row .game-block-full-image {
    width:100%;
    height:50vw;
}

#fullpage .escape-room-game .game-row .game-block-full-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}


/************* END ESCAPE-GAME CSS *************/

/************* START VR-GAME CSS *************/

.vr-game {
    background-color:var(--yellow);
    color:#fff;
}

.vr-game .grid .grid-row {
    display: flex;
    /*grid-template-columns: 50% 50%;*/
    margin:130px 0px;
}

.vr-game .grid .grid-row > div {
    width:50%;
}

.vr-game .grid .grid-row .grid-row-img img {
    width:400px;
    height:300px;
    object-fit: cover;
    margin:0px 80px;
}

.vr-game .grid .grid-row .grid-row-exp {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vr-game .grid .grid-row.grid-img-right .grid-row-exp {
    align-items: flex-end;
    text-align: right;
}

.vr-game .grid .grid-row .grid-row-exp > * {
    max-width: 50%
}

/************* END VR-GAME CSS *************/

#newsletter {
    background-color: var(--dark-grey);
    color: var(--white);
    padding: 15px 0px;
}

#newsletter .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#newsletter .container .newsletter-input {
    position: relative;
}

#newsletter .container .newsletter-input input[name='newsletter-email'] {
    width: 300px;
    padding: 3px 35px 3px 5px;
}

#newsletter .container .newsletter-input i {
    position: absolute;
    right: 0px;
    color: var(--dark-grey);
    font-size: 25px;
    padding: 4px 14px;
    cursor: pointer;
}

footer {
    text-align: center;
    background-color:var(--white);
    color:var(--dark-grey);
}