/*
Theme Name: Kalikow
Author: Linkweb
Description: Custom Theme for Kalikow
Version: 1.0
*/

pre {
    font-family: Menlo,Monaco,Consolas,"Courier New",monospace;
    background-color: #1D1F21;
    color: #F0C674 !important;
    padding: 30px;
    margin: 15px;
    border-radius: 8px;
    word-break: break-all;
    word-wrap: break-word;
    overflow: auto;
}

* { scroll-behavior: smooth; box-sizing: border-box; }

html, body {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
}

.main-body {
    overflow: hidden;
}

@media (min-width: 992px) {
    .container, .container-lg, .container-md, .container-sm {
/*        max-width: 1020px;*/
    }
}

/*Colors*/
:root {
    --burgundy: #4a0019;
    --gold: #947e49;
    --black: #363636;
    --light-grey: #e7e7e7;
}

h1, h2, h3, h4 ,h5 ,h6 {
    text-transform: uppercase;
    font-weight: 300;
    color: var(--burgundy);
}

h1 { font-size: 3em; }
h2 { font-size: 2.75em; }
h3 { font-size: 2.25em; }
h4 { font-size: 2em; }
h5 { font-size: 1.75em; }
h6 { font-size: 1.25em; }

.btn,
.btn:hover {
    font-size: 1.125em;
    text-transform: uppercase;
    border: 1px solid var(--burgundy);
    background-color: var(--light-grey);
    border-radius: 0;
}

.btn.lrg {
    padding: 22px 48px;
}

.btn:hover {
    color: var(--burgundy);
}

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

p {
    color: var(--black);
    line-height: 1.5;
}

img {
    max-width: 100%;
    width: auto;
    height: auto;
}

/*Responsive Videos*/
iframe[src*="youtu.be"],
iframe[src*="youtube"],
iframe[src*="vimeo"],
video {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}

video {
    background-color: var(--black);
}


header {
    background-color: var(--burgundy);
}

header .logo {
    padding: 13px 0 7px;
}

body.home header .logo {
    opacity: 0;
    pointer-events: none;
    width: 0;
}

body.home header .nav {
    margin: 0 auto;
}

header .logo img {
    height: 35px;
}

header .inner {
    display: flex;
    justify-content: space-between;
}

header .nav {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

header .nav li {
    position: relative;
}

header .nav > li {
    padding: 14px 13px 0;
}

header .nav > li:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: calc(100% - 20px);
    background-color: #fff;
}

header .nav > li:first-of-type:after {
    display: none;
}

header .nav li a {
    display: inline-block;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    height: 100%;
}

header .nav li.active a {
    font-weight: 600;
    color: var(--gold);
}

header .nav li a.dropdown-toggle:after {
    display: none;
}

header .nav li.dropdown > ul {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 100%;
    padding: 8px 13px;
    opacity: 0;
    pointer-events: none;
    background-color: rgba(231, 231, 231, 0.9);
    border: none;
    border-radius: 0;
    z-index: 2;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
}

header .nav li.dropdown:hover > ul {
    opacity: 1;
    pointer-events: all;
}

/*header .nav li.dropdown > ul:before {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 5px;
    height: calc(100% + 5px);
    background-color: rgba(216, 216, 216, 0.9);
    z-index: 1;
}

header .nav li.dropdown > ul:after {
    content: "";
    position: absolute;
    top: 100%;
    right: 0;
    width: calc(100% - 5px);
    height: 5px;
    background-color: rgba(216, 216, 216, 0.9);
    z-index: 1;
}*/

header .nav li.dropdown ul a {
    line-height: 1.8;
    font-size: 0.75em;
    color: #85878b;
}

header .nav li.dropdown ul li.active a {
    font-weight: 700;
    color: var(--burgundy);
}

footer {
    padding: 50px 0 88px;
    background-color: var(--black);
}

footer .about {
    font-size: 1.4em;
    line-height: 1.3;
    color: #fff;
    margin: 0 0 30px;
}

footer .logo {
    display: inline-block;
    margin: 0 0 20px;
}

footer .logo img {
    max-height: 48px;
}

footer .address {
    line-height: 1.5;
    color: #fff;
    margin: 0;
}

footer .social {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 20px 0 34px;
}

footer .social li {
    padding: 0 5px;
}
footer .social li:first-of-type { padding-left: 0; }
footer .social li:last-of-type { padding-right: 0; }

footer .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #fff;
    border-radius: 6px;
}

footer .social a svg {
    fill: var(--black);
    width: 18px;
    height: auto;
    max-height: 21px;
}

footer .nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .nav li {
    position: relative;
    padding: 0 13px;
}
footer .nav li:first-of-type { padding-left: 0; }
footer .nav li:last-of-type { padding-right: 0; }

footer .nav li:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background-color: #fff;
}
footer .nav li:last-of-type:after { display: none; }

footer .nav li a {
    text-decoration: none;
    color: #fff;
}

footer .left-side .nav {
	justify-content: flex-start;
}



.slick-dots {
    display: flex;
    position: absolute;
    justify-content: center;
    left: 0;
    bottom: 15px;
    width: 100%;
    list-style: none;
    padding: 0;
}

.slick-dots li {
    display: block;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    margin: 0 10px 0 0;
    background-color: rgba(98, 98, 98, 0.6);
}

.slick-dots li:last-of-type {
    margin: 0;
}

.slick-dots li.slick-active {
    border-color: rgba(255, 255, 255, 1);
    background-color: var(--burgundy);
}

.slick-dots li button {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.slick-dots-below {
    margin-bottom: 35px;
}

.slick-dots-below .slick-dots {
    bottom: -35px;
}


.page-content {
	padding: 60px 0;
}
