/* base styles
================================================== */
* {
    margin: 0;
    padding: 0;
    outline: 0;
}

body,
html {
    height: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #6b6b6b;
}

:focus {
    outline: 0
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    border: none;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
}

.space {
    padding: 100px 0;
}

/* typography
================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: #222;
}

h1 {
    font-size: 26px;
    line-height: 32px;
}

h2 {
    font-size: 22px;
    line-height: 28px;
}

h3 {
    font-size: 18px;
    line-height: 28px;
}

h4 {
    font-size: 18px;
    line-height: 28px;
}

h5 {
    font-size: 18px;
    line-height: 28px;
}

h6 {
    font-size: 18px;
    line-height: 28px;
}

strong {
    font-weight: 700;
}

a {

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

a:hover,
a:active,
a:focus {
    outline: 0;
    text-decoration: none;
}

p {
    color: #6b6b6b;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
}

button {
    background-color: #9C0101;
    color: #000;
    padding: 8px 20px;
    display: inline-block;
    border-radius: 3px;
    border: 0;
    text-transform: uppercase;
    font-weight: bold;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

button:hover {
    opacity: .8;
}

.form-group label {
    color: #fff;
    margin: 0 0 10px 0;
}

.form-control {
    border-radius: 2px;
}

.heading {
    font-size: 38px;
    line-height: 38px;
    color: #fff;
    text-transform: uppercase;
    background: url(../imgs/heading-bgr.png) no-repeat center center;
    text-align: center;
    background-size: 70%;
    padding: 50px 0;
    font-weight: bold;
    margin: 0 0 100px 0;
}

header {
    background-color: #6c1010;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 15;
}

header nav ul {
    text-align: center;
    padding: 8px 0;
}

header nav ul li {
    display: inline-block;
    margin: 0 25px;
    color: #fff;
    text-transform: uppercase;
}

header nav ul li a {
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}

header nav ul li a:hover {
    color: #fff;
}


.rooms {
    padding-bottom: 0;
    position: relative;
}

.rooms a img {
    display: none;

    z-index: 3;
    position: relative;
}

.rooms a .normal {
    display: block;
}

.rooms a:hover .normal {
    display: none;
}

.rooms a:hover .hover {
    display: block;
}

.rooms a .hover {
    display: none;
}

.rooms:before {
    content: "";
    background: url("../imgs/rooms-fragment.png") top center no-repeat;
    background-size: 100%;
    position: absolute;
    top: -300px;
    width: 100%;
    height: 100%;
}

.rooms a {
    position: relative;
    z-index: 2;
}

.rooms a img {
    max-height: 659px;
}


.faq {
    padding-top: 0;
    padding-bottom: 0;
    margin: -10px 0 0 0;
}

.faq .heading {
    margin-bottom: 30px;
}

.accordion-item {
    border: 1px solid #fff;
    margin: 0 0 10px 0;
}

.question {
    font-size: 16px;
    line-height: 22px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
    padding: 15px 20px;
}

.answer-content {
    color: #fff;
    margin: 5px 0 0 0;
    opacity: .8;
    padding: 0 20px 15px 20px;
}

.accordion .question:after {
    font-family: 'FontAwesome';
    content: "\f106";
    float: right;
}

.accordion .question.collapsed:after {
    content: "\f107";
}


.special {
    background: #000 url("../imgs/special-bgr.jpg") bottom center no-repeat;
    background-size: cover;
}

.special .special-intro {
    padding: 100px 0 0 0;
    margin-bottom: -200px;
}

.special-intro-img {
    margin-bottom: -200px;
}

.special-tb-img {
    margin: -270px 0 -200px;
}

.team-buildings .heading {
    margin-bottom: 50px;
}

.team-buildings {
    padding-bottom: 0;
}

.team-buildings .text {
    text-align: center;
    color: #fff;
    font-size: 22px;
    line-height: 30px;
}

.voucher {
    padding-top: 0;
    padding-bottom: 0;
}

.voucher .text {
    background: url(../imgs/special-voucher.png) center center no-repeat;
    background-size: 100%;
    min-height: 650px;
    text-align: center;
    color: #fff;
    font-size: 22px;
    line-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 300px 35px;
    margin: -100px 0 -130px;
}

.send-question h5 {
    color: #ff0000;
    font-size: 30px;
    line-height: 34px;
    text-transform: uppercase;
    text-align: center;
    margin: 30px 0;
}

.send-question button {
    margin: 30px auto 0;
    display: table;
}

.form-holder {
    background-color: #090909;
    padding: 20px 20px 5px;
    border-radius: 5px;
    max-width: 700px;
    margin: 0 auto;
    display: block;
}


.home {
    background: url("../imgs/home-bgr.jpg") bottom center no-repeat;
    background-size: cover;
}

.home .contacts {
    padding-bottom: 500px;
}

.contacts .heading {
    margin-bottom: 30px;
}

.contacts .contact-info {
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
    text-align: center;
    font-size: 22px;
    line-height: 28px;
    margin: 0 0 30px 0;
}

.contacts .contact-info ul li {
    margin: 0 0 2px 0;
}

.contacts .contact-info ul li a {
    color: #fff;
}

.contacts .contact-info ul li a:hover {
    color: #6c1010;
}

.contacts .contact-form {
    background-color: #090909;
    padding: 30px 40px;
    border-radius: 5px;
    margin: 40px 0 0 0;
}

.contacts .contact-form .button {
    margin: 0 auto;
    display: table;
}


.logo {
    max-height: 100px;
}


.it-intro {
    padding: 100px 0 0 0;
    position: relative;
}

.it {
    background: url("../imgs/it-bgr.jpg") bottom center no-repeat;
    background-size: cover;
    padding-bottom: 700px;
}

.it-intro .room-timer .time {
    width: 240px;
    display: block;
}

.it-intro .room-timer .years {
    font-size: 38px;
    color: #e10202;
    width: 240px;
    display: block;
    margin: 0 0 5px 0;
}

.it-intro .room-logo {
    margin: -50px auto 0;
    display: block;
    max-height: 250px;
}

.it .room-timer {
    font-size: 22px;
    line-height: 28px;
    color: #fff;
    text-align: center;
    font-weight: bold;
    padding: 43px 170px;
    background: url(../imgs/room-timer.png) center right no-repeat;
    width: 700px;
    height: 170px;
    position: absolute;
    bottom: -100px;
    right: 0;
    background-size: 100%;
    z-index: 5;
}

.it .prices img {
    margin-left: 40px;
}

.it .contacts {
    background-image: none;
    background-color: transparent;
    padding-bottom: 100px;
}


.salem {
    background: url("../imgs/salem-bgr.jpg") bottom center no-repeat;
    background-size: cover;
    padding-bottom: 300px;
}

.salem .reservation {
    padding-bottom: 0;
    margin: -240px 0 0 0;
    background-color: transparent;
}

.salem-intro {
    padding: 100px 0 0 0;
    position: relative;
    background-color: #000;
}

.salem-intro .room-timer .time {
    width: 240px;
    display: block;
}

.salem-intro .room-timer .years {
    font-size: 38px;
    color: #e10202;
    width: 240px;
    display: block;
    margin: 0 0 5px 0;
}

.salem-intro .room-logo {
    margin: -50px auto 0;
    display: block;
    max-height: 250px;
}

.salem-intro .room-timer {
    font-size: 22px;
    line-height: 28px;
    color: #fff;
    text-align: center;
    font-weight: bold;
    padding: 43px 170px;
    background: url(../imgs/room-timer.png) center right no-repeat;
    width: 700px;
    height: 170px;
    position: absolute;
    bottom: -200px;
    right: 0;
    background-size: 100%;
    z-index: 5;
}

.salem .prices {
    background-color: transparent;
}

.salem .prices img {
    margin: -100px auto 0;
    display: block;
}

.salem .contacts {
    background-image: none;
    background-color: transparent;
    padding-bottom: 100px;
}


footer {
    background-color: #000;
    padding: 30px 0 20px;
    text-align: center;
}

footer h3 {
    color: #fff;
    font-weight: bold;
    margin: 0 0 8px 0;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
}

footer ul li,
footer ul li a {
    color: #fff;
}

.copyright {
    color: #fff;
    margin: 20px 0 0 0;
    opacity: .7;
}


.reservation .heading {
    margin-bottom: 30px;
}

.calendar .master-table {
    margin: 0 auto;
    display: table;
}

.calendar .master-table th {
    cursor: pointer;
    border-radius: 12px;
}

.calendar .master-table th:hover {
    cursor: pointer;
    opacity: .8;
}

.calendar .master-table th.past, .calendar .master-table th.taken {
    cursor: not-allowed;
}

.thead {
    width: 7rem;
    text-align: center;
}

.table-title {
    color: #fff;
    font-weight: normal;
    text-transform: uppercase;
    font-size: 14px !important;
}

.table-title strong,
.table-title span {
    font-weight: normal;
}

.master-table {
    margin: 0 auto;
}

.tips {
    cursor: pointer;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.tips:hover {
    opacity: .8;
}

.table {
    border-collapse: separate;
    border-spacing: 5px;
}

.table td, .table th {
    border: 0;
    border-radius: 2px;
    font-size: 18px;
    padding: 7px 5px;
    font-weight: bold;
}

.free {
    background-color: #fff;
    color: #000;
}

.taken {
    background-color: #ae0505;
    color: #000;
}

.get {
    background-color: #bdbdbd;
    color: #fff;
}

.past {
    background-color: #393939;
    color: #fff;
}

.next-week.next {
    float: left;
    text-transform: uppercase;
    margin: 30px 0 15px 0;
    color: #fff;
}

.form-control:focus {
    box-shadow: none;
    border-color: #7a1212;
}

.next-week.next i {
    margin-left: 5px;
}

.next-week.previous {
    float: right;
    text-transform: uppercase;
    margin: 30px 0 15px 0;
    color: #fff;
}

.next-week.previous i {
    margin-right: 5px;
}

.text,
.text ul,
.text h1,
.text h2,
.text h3,
.text h4,
.text h5,
.text h6,
.text p {
    color: #fff;
}