/*
|--------------------------------------------------------------------------
| Layout
|--------------------------------------------------------------------------
*/

body {
    margin: 0;
    background: #f4f7fb;
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
}

header {
    height: 180px;
    background: #062b67;
}

.cms-box {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

/*
|--------------------------------------------------------------------------
| Header
|--------------------------------------------------------------------------
*/

.site-header {
    border-bottom: 1px solid #e9ecef;
}

.site-header .container {
    max-width: 1100px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

    height: 90px;
}

.site-header .logo img {
    display: block;
    height: 52px;
    width: auto;
}

.header-nav {
    display: flex;
    gap: 24px;
}

.header-nav a {

    color: rgba(255,255,255,.85);
    text-decoration: none;
    font-weight: 500;

    transition:
        color .2s ease,
        border-color .2s ease;

    border-bottom: 2px solid transparent;
    padding-bottom: 4px;

}

.header-nav a:hover {

    color: #fff;
    border-bottom-color: rgba(255,255,255,.5);

}

.header-nav a.active {

    color: #fff;
    font-weight: 600;
    border-bottom-color: #fff;

}
/*
|--------------------------------------------------------------------------
| Flyer
|--------------------------------------------------------------------------
*/

.flyer {
    margin-top: -90px;
    margin-bottom: 70px;
    text-align: center;
}

.flyer-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 1100px;
}

.flyer img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,.20);
    transition: all .3s ease;
}

.flyer img:hover {
    transform: translateY(0);
    box-shadow: 0 30px 70px rgba(0,0,0,.25);
}

.flyer-mail {
    position: absolute;
    left: 18%;
    top: 22%;
    width: 28%;
    height: 12%;
    display: block;
    cursor: pointer;
}

/*
|--------------------------------------------------------------------------
| Button
|--------------------------------------------------------------------------
*/

.btn-nx {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 300px;
    padding: 18px 42px;
    background: linear-gradient(135deg,#062b67,#0b4ea2);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
    transition: all .25s ease;
}

.btn-nx:hover {
    background: linear-gradient(135deg,#041d47,#083a7c);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,.22);
}

.btn-nx:active {
    transform: translateY(-1px);
}

.btn-nx i {
    font-size: 1.1rem;
}

.btn.active {
    background: #062b67;
}
.btn:hover {
    background: #0b4ea2;
}


/*
|--------------------------------------------------------------------------
| Content Pages
|--------------------------------------------------------------------------
*/

.document{

    max-width:1100px;

    margin:0 auto;

    padding:50px;

    background:#fff;

    border:1px solid #e5e7eb;

    border-radius:12px;

    box-shadow:0 8px 30px rgba(0,0,0,.05);

    text-align:left;

}

.document h1{

    margin-bottom:0;

    text-align:center;

    font-size:2.4rem;

    font-weight:700;

}

.document .text-muted{

    text-align:center;

    color:#6c757d;

    margin-bottom:0px;

}

.document h2{

    margin-top:35px;

    margin-bottom:15px;

    font-size:2rem;

}

.document h3{

    margin-top:20px;

    margin-bottom:10px;

    font-size:1.35rem;

}

.document p{

    margin-bottom:18px;

    line-height:1.5;

}

.document ul{

    margin-bottom:25px;

    padding-left:22px;

}

.document li{

    margin-bottom:0px;

    line-height:1.5;

}

.document-subtitle{

    margin:0 0 20px;

    text-align:center;

    font-size:1.15rem;

    color:#495057;

}

.document-meta{

    margin-bottom:40px;

    text-align:center;

    color:#6c757d;

    font-size:.95rem;

}

/*
|--------------------------------------------------------------------------
| Pricing
|--------------------------------------------------------------------------
*/

.pricing {
    padding: 100px 0;
}

.pricing-switch {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.pricing-switch .btn-group {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.pricing-switch .btn {
    min-width: 150px;
    padding: 14px 28px;
    font-weight: 600;
}

.pricing-card {

    height: 100%;

    border: 0;

    border-radius: 20px;

    overflow: hidden;

    transition: .25s;

    box-shadow: 0 20px 40px rgba(0,0,0,.08);

}

.pricing-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 30px 60px rgba(0,0,0,.12);

}

.pricing-badge {

    display: inline-block;

    margin-bottom: 20px;

    padding: 8px 18px;

    border-radius: 30px;

    background: var(--bs-primary);

    color: #fff;

    font-size: .85rem;

    font-weight: 600;

}

.pricing-title {

    margin-bottom: 8px;

    font-size: 2rem;

    font-weight: 700;

}

.pricing-description {

    margin-bottom: 30px;

    color: #6c757d;

}

.pricing-price {

    font-size: 3.2rem;

    font-weight: 700;

    line-height: 1;

    color: var(--bs-primary);

}

.pricing-period {

    margin-top: 8px;

    margin-bottom: 35px;

    color: #6c757d;

}

.pricing-list {

    margin: 0;

    padding: 0;

    list-style: none;

}

.pricing-list li {

    padding: 10px 0;

    border-bottom: 1px solid #ececec;

}

.pricing-list li:last-child {

    border-bottom: none;

}

.pricing-note {

    margin-top: 60px;

}

.pricing-note ul {

    margin: 0;

}

.pricing-note li {

    padding: 6px 0;

}

.pricing-spacer {
    height: 5px;
}

.service-features {
    margin: 25px 0;
}

.service-features .feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 16px;
	text-align: left;
}

.service-features .fa-check {
    color: #198754;
    width: 18px;
}

.service-features .bi {
    color: #0b4ea2;
}

@media (max-width:991px){

    .pricing {

        padding:60px 0;

    }

    .pricing-switch .btn{

        min-width:auto;

        padding:12px 18px;

    }

}

/*
|--------------------------------------------------------------------------
| Kontakt
|--------------------------------------------------------------------------
*/

.contact-item{
    display:flex;
    align-items:center;
    gap:20px;
}

.contact-icon{
    color:var(--bs-primary);
    font-size:2rem;
    line-height:1;
    flex-shrink:0;
}

.contact-link{
    display:block;
    color:#212529;
    font-size:1.35rem;
    font-weight:600;
    text-decoration:none;
}

.contact-link:hover{
    color:var(--bs-primary);
}

.contact-note{
    margin-top:4px;
    color:#6c757d;
    font-size:.95rem;
}
.document.contact h2 {
	margin-top: 0;
	font-size: 1.5rem;
}
.document .card{
    border:1px solid #e9ecef !important;
    border-radius:16px;
    transition:all .25s ease;
}

.document .card:hover{
    transform:translateY(-2px);
    box-shadow:0 .75rem 1.5rem rgba(0,0,0,.08)!important;
}

.document .card-body{
    padding:1.5rem;
}

.document hr {
    margin: 0.8rem 0;
    opacity: .15;
}
/*
|--------------------------------------------------------------------------
| Kontakt - tlačítka
|--------------------------------------------------------------------------
*/

.contact-buttons{
    display:flex;
    gap:14px;
    margin-top:1.5rem;
}

.contact-buttons .btn{
    flex:1;
    padding:.75rem 1rem;
    font-weight:600;
    border-radius:10px;
}
.contact-buttons .btn.btn-primary{
	background: linear-gradient(135deg,#062b67,#0b4ea2);
}

.contact-buttons .btn i{
    margin-right:.45rem;
}

.contact-buttons .btn.btn-primary:hover {
    background: linear-gradient(135deg,#041d47,#083a7c);
}

/*
|--------------------------------------------------------------------------
| Footer
|--------------------------------------------------------------------------
*/

.footer{
    padding:70px 0 25px;
    background:#062b67;
    color:#fff;
}
.footer .container {
    max-width: 1100px;
    margin: 0 auto;
}
.footer h5{
    margin-bottom:20px;
    font-size:1.5rem;
    font-weight:700;
}

.footer h6{
    margin-bottom:18px;
    font-size:1rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.05em;
    color:rgba(255,255,255,.75);
}

.footer p{
    margin-bottom:12px;
    line-height:1.8;
    color:rgba(255,255,255,.85);
}

.footer .col-lg-4 p{
	width: 80%;
	color:rgba(255,255,255,.65);
}

.footer a{
    color:rgba(255,255,255,.9);
    text-decoration:none;
    transition:color .2s;
}

.footer a:hover{
    color:#fff;
}

.footer-links{
    margin:0;
    padding:0;
    list-style:none;
}

.footer-links li{
    display:flex;
    align-items:center;
    margin-bottom:10px;
    font-size:.95rem;
}

.footer-links i{
    width:14px;
    margin-right:10px;
    color:rgba(255,255,255,.45);
    font-size:.75rem;
    flex-shrink:0;
}

.footer-links a{
    color:rgba(255,255,255,.9);
}

.footer-links a:hover{
    color:#fff;
}

.footer small{
    display:block;
    margin-left:24px;
    font-size:.85rem;
    color:rgba(255,255,255,.65);
}

.footer hr{
    margin:45px 0 20px;
    border-color:rgba(255,255,255,.15);
    opacity:1;
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:.9rem;
    color:rgba(255,255,255,.65);
}

.footer-bottom a{
    color:rgba(255,255,255,.75);
}

.footer-bottom a:hover{
    color:#fff;
}

.footer p i{
    display:inline-block;
    width:22px;
    margin-right:5px;
    text-align:center;
    color:rgba(255,255,255,.85);
}

.footer p small{
    display:block;
    margin-left:34px;
    margin-top:2px;
    font-size:.85rem;
    color:rgba(255,255,255,.6);
}

@media (max-width:991px){

    .footer{
        text-align:center;
    }

    .footer-bottom{
        flex-direction:column;
        gap:10px;
    }

}