*{

margin: 0;
padding: 0;
box-sizing: border-box;

}

body {

font-family: 'Times New Roman', Times, serif;
background-color: #EEE7D8;
font-size: 1rem;




}


video {

width: 100%;
max-width: 100%;
height: auto;
display: block;

}



.cormorant-font {
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

#nadpis {

cursor: pointer;

}

@keyframes shake {

0% { transform: translateX(0); }
15% { transform: translateX(-5px); }
30% { transform: translateX(5px); }
45% { transform: translateX(-4px); }
60% { transform: translateX(4px); }
75% { transform: translateX(-2px); }
90% { transform: translateX(2px); }
100% { transform: translateX(0); }


}

.shake {

animation: shake 0.6s;


}



ul {

list-style: none;


}

a {

text-decoration: none;
color: inherit;


}

section {

display: flex;
flex-direction: column;
align-items: center;
padding: 110px 100px;
width: 100%;
height: 100%;

}

@media (max-width: 1000px) {

    section {
        padding: 100px 50px;
    }

}
@media (max-width: 600px) {

    section {
        padding: 125px 30px;
    }

}

header {

position: absolute;
top: 0;
left: 0;
z-index: 10;
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
color: rgb(250, 240, 217);
background-color: rgb(0, 0, 0);
padding: 35px 100px 15px;
font-size: 15px;

}

header a {

text-transform: capitalize;
font-weight: 900;
text-decoration: none;

}


header h2 {

text-transform: uppercase;


}

header a:hover {

color: #b1b1b1;

}


header .nav {

display: flex;

}

header .nav li {

margin: 0 15px;

}
header .nav li:first-child {

    margin-left: 0;
    
    }

header .nav li:last-child {

    margin-right: 0;
        
    }

@media (max-width:1000px) {

    header {
        padding: 20px 50px;

    }

}
@media (max-width:700px) {

    header {
        flex-direction: column;
     
    }
    header h2 {
        margin-bottom: 15px;
    }
    header .nav li{
        margin: 0 7px;

    }

}

@media (max-width: 480px) {

.nav ul {

flex-direction: column;

}

.nav li {

margin-bottom: 10px;


}

}

@media (max-width: 768px) {

.nav {

flex-direction: column;
align-items: center;

}

.cards {

flex-direction: column;
align-items: center;

}

}





.box {

position: relative;
justify-content: center;
min-height: 100vh;
color: rgb(255, 255, 255);
box-shadow: #000;
text-align: center;

}

.box video {

position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: -1;


}

.box h1 {

margin-bottom: 15px;
font-size: 65px;
text-transform: uppercase;
text-indent: 0 2px 2px rgba(0,0,0,0.5);

}

.box h3 {

 margin-bottom: 40px;
 font-size: 25px;

}

.box a.boxBtn {

padding: 15px 35px;
background: transparent;
border-radius: 50px;
color: rgb(5, 3, 1);
text-transform: uppercase;
border: 4px solid #0c0808;  
transition: all .5s;
}

.box a.boxBtn:hover {

background: #fff;
color: #000;
border-color: #fff;

}

@media (max-width: 800px) {

    .box {
        min-height: 600px;
    }
    .box h1 {

        font-size: 32px;

    }

    .box h3 {

        font-size: 20px;

    }

    .box a.boxBtn {
        padding: 15px 40px;

    }

}



.curious1 {

text-align: center;
position: relative;
justify-content: center;
min-height: 20vh;
color: #fff;
padding-top: 50px;
background-color: #000000;
font-size: 38px;


}

.hero {

background-color: #EEE7D8;
overflow: hidden;

}

.heading h1 {

color: #0c0808;
font-size: 55px;
text-align: center;
margin-top: 35px;

}

.container {

display: flex;
justify-content: center;
align-items: center;
width: 100%;
margin: 65px auto;
padding: 2rem;


}

.hero-content {

flex: 1;
width: 600px;
margin: 0px 25px;
animation: fadeInUp 2s ease;


}

.hero-content h2 {

font-size: 38px;
margin-bottom: 50px;
color: #131313;

}

.hero-content p {

font-size: 24px;
line-height: 1.5;
margin-bottom: 40px;
color:#1f1f1f


}

.hero-content button {

display: inline-block;
background-color: transparent;
color: #000000;
border-color: #000000;
padding: 12px 24px;
border-radius: 5px;
font-size: 20px;
cursor: pointer;
transition: 0.3s ease;


}

.hero-content button:hover {

background-color: #fff;
transform: scale(1.1);
border-color: #fff;
color: #000000;




}

.hero-image {

flex: 1;
width: 600px;
margin: auto;
animation: fadeInRight 2s ease;


}

img {

width: 150%;
height: auto;
border-radius: 10px;


}

@media screen and (max-width:768px) {
    .heading h1 {
        font-size: 45px;
        margin-top: 30px;

    }
    .hero {

        margin: 0px;

    }
    .container {
        width: 100%;
        flex-direction: column;
        margin: 0px;
        padding: 0px 40px;
    }
    .hero-content {
        width: 100%;
        margin: 35px 0px;
    }
    .hero-content h2 {
        font-size: 30px;

    }
    .hero-content p {
        font-size: 18px;
        margin-bottom: 20px;

    }
    .hero-content button {
        font-size: 16px;
        padding: 8px 16px;

    }
    .hero-image {
        width: 100%;
        

    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}
@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}




.gallery {

min-height: 100vh;
background:#EEE7D8;


}

.gallery img {

filter: grayscale(100%);
transition: 1s;


}

.gallery:hover img {

filter: grayscale(0);
transform: scale(1.1);

}








.gallery .image-container {

display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;


}

.gallery .image-container .imagepick {

height: 250px;
width: 350px;
overflow: hidden;
border: 15px solid #fff;
box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
margin: 20px;
transition: 0.3s;


}

.gallery .image-container .imagepick img {

height: 100%;
width: 100%;
object-fit: cover;
transform: 0.3s;


}

.gallery .image-container .imagepick:hover img {

transform: scale(1.1);

}

.image-container img {

max-width: 100%;
height: auto;

}

.hide {

display: none;

}

.courses {

display: flex;
justify-content: center;
align-items: flex-start;
gap: 20px;
padding-top: 50px;
padding-left: 20px;
width: 100%;
height: 100vh;
flex-wrap: wrap;
box-sizing: border-box;



}


.cards {

width: 320px;
height: 520px;
border-radius: 20px;
border: 8px solid #fff;
overflow:hidden;
position: relative;
transition: transform 0.3s ease;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 2rem;
box-sizing: border-box;


}



@media (max-width: 768px) {

.cards {

flex-direction: column;  
}

.hero {

flex-direction: column;

}

.gallery .image-container a {

width: 100%;


}

h1, h2, h3 {

font-size: smaller;    
}

video, img {

max-width: 100%;
height: auto;

}

}

.cards:hover {

transform: scale(1.02);


}

.cards:hover .card-body {

right: 0;



}

.card-image {

width: 100%;
height: 100%;
border-radius: 15px;
object-fit: cover;

}

.card-body {

width: 100%;
height: 100%;
top: 0;
right: -100%;
position: absolute;
background: #cfc6b128;
backdrop-filter: blur(5px);
border-radius: 5px;
color: #fff;
padding: 30px;
display: flex;
flex-direction: column;
justify-content: center;
transition: 2s;
box-sizing: border-box;


}

.cedule {

width: 850px;
height: 450px;
display: block;
margin-left: auto;
margin-right: auto;
max-width: 100%;
height: auto;


}

.narr {


display: block;
margin-left: auto;
margin-right: auto;
max-width: 100%;
height: auto;
width: 700px;




}



.card-title {

text-transform: uppercase;
font-size: 50px;
font-weight: 500;



}

.card-sub-title {

text-transform: capitalize;
font-size: 14px;
font-weight: 300;


}

.card-info {

font-size: 16px;
line-height: 25px;
margin: 40px 0;
font-weight: 400;



}

.card-btn {

color: #131313;
background: #b1b1b1;
padding: 10px 20px;
border-radius: 5px;
text-transform: capitalize;
border: none;
outline: none;
font-weight: 500;
cursor: pointer;
width: 120px;


}

.card-btn:hover {

color:#b1b1b1;
background-color: #131313;

}

@media (max-width: 1024px) {

.cards {

width: 45%;

}


}

@media (max-width: 768px) {

.cards {

width: 100%;

}

.card-title {

font-size: 24px;

}

.card-info {

font-size: 14px;

}

}

.testimonials {

padding: 40px 0;
background: #e0d8c8;
color: #131313;
text-align: center;

}

.inner {

max-width: 1200px;
margin: auto;
overflow: hidden;
padding: 0 20px;

}

.inner h1 {

font-size: 40px;

}

.border {

width: 160px;
height: 5px;
background:#4b4b4b;
margin: 26px auto;


}

.row {

display: flex;
flex-wrap: wrap;
justify-content: center;

}

.col {

flex: 33.33%;
max-width: 33.33%;
box-sizing: border-box;
padding: 15px;

}

.testimonial {

background: #fff;
padding: 30px;

}

.testimonial img {

width: 100px;
height: 100px;
border-radius: 50%;


}

.name {

font-size: 20px;
text-transform: uppercase;
margin: 20px 0;

}


.stars {

color: #4b4b4b;
margin-bottom: 20px;


}

@media screen and (max-width:960px) {
.col {

flex: 100%;
max-width: 80%;
}
}


@media screen and (max-width:600px) {
.col {

flex: 100%;
max-width: 100%;
}
}





.clock-dial {

width: 500px;
height: 500px;
border: 20px solid #1c1c1c;
border-radius: 50%;
margin: 0 auto;
position: relative;
margin-top: 20px;
margin-bottom: 20px;


}

.point {

width: 30px;
height: 30px;
background-color: #030303;
border-radius: 50%;
position: absolute;
top: 220px;
left: 220px;


}

.hour {

font-size: 30px;
font-weight: bold;
color: #131313;
position: absolute;


}

.hour-1 {

top: 40px;
right: 130px;

}

.hour-2 {

top: 125px;
right: 45px;

}

.hour-3 {

top: 225px;
right: 30px;

}

.hour-4 {

top: 315px;
right: 65px;

}

.hour-5 {

top: 390px;
right: 130px;

}

.hour-6 {

bottom: 10px;
left: 220px;

}

.hour-7 {

top: 390px;
left: 130px;

}

.hour-8 {

top: 315px;
left: 65px;

}

.hour-9 {

top: 220px;
left: 30px;


}

.hour-10 {

top: 120px;
left: 45px;

}

.hour-11 {

top: 40px;
left: 120px;

}

.hour-12 {

top: 10px;
left: 215px;

}

.brand {

font-size: 20px;
font-weight: bold;
color: #4b4b4b;
position: absolute;
top: 90px;
left: 34.5%;

}

.minute-hand-wrapper {

width: 365px;
height: 365px;
position: absolute;
top: 45px;
left: 50px;
border-radius: 50%;


}

.minute-hand {

position: relative;

}

.minute-hand .hand {

width: 4px;
height: 195px;
background-color: #000;
position: absolute;
left: 178px;


}

.minute-hand .arrow {

font-size: 30px;
font-weight: bold;
color: #000;
transform: rotate(180deg);
position: absolute;
left: 170px;
top: -7px;
font-family: Arial, Helvetica, sans-serif;


}

.hour-hand-wrapper {

width: 300px;
height: 300px;
position: absolute;
top: 90px;
left: 80px;
border-radius: 50%;


}

.hour-hand {

position: relative;

}

.hour-hand .hand {

width: 4px;
height: 150px;
background-color: #000;
position: absolute;
left: 148px;


}

.hour-hand .arrow {

font-size: 30px;
font-weight: bold;
color: #000;
transform: rotate(180deg);
position: absolute;
left: 140px;
top: -7px;
font-family: Arial, Helvetica, sans-serif;


}

.second-hand-wrapper {

width: 350px;
height: 350px;
position: absolute;
top: 60px;
left: 75px;
border-radius: 50%;


}

.second-hand {

position: relative;

}

.second-hand .hand {

width: 50px;
height: 50px;
background-color: rgb(255, 204, 0);
clip-path: polygon(
        50% 0,
        61% 35%,
        100% 35%,
        68% 57%,
        79% 100%,
        50% 70%,
        21% 100%,
        32% 57%,
        0% 35%,
        39% 35%
);
        

}



#footer {

background: #000000;
display: block;
padding: 30px 0;
padding-top: 25px;
padding-right: 0;
padding-left: 25px;
padding-bottom: 25px;
margin: auto;
margin-top: 0;
margin-right: auto;
margin-bottom: 0;
color: #e0d8c8;

}

.kontakt img {

width: 400px;
height: 150px;
display: block;
padding-left: 25px;



}

.mapka {

width: 100%;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;



}


.closerlook {

width: 80%;
height: 500px;



}

.left {

float: left;
color: #4b4b4b;

}

.right {

float: right;
padding-right: 20px;
color: rgb(113, 0, 51);

}



.kontakt-layout {

display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 30px;
padding: 0 5vw;
flex-wrap: wrap;



}

.sipka-left {

flex: 0 0 auto;
margin-left: 40px;

}

.sipka-right {

flex: 0 0 auto;
margin-right: 40px;

}

.sipka {

width: 120px;
height: auto;
transform: rotate(0deg);

}

.kontakt-info {

max-width: 600px;
text-align: center;
flex: 1;


}

.kontakt-info h2 {

font-size: 40px;
padding-bottom: 15px;



}

.kontakt-info h3 {

color: #EEE7D8;
font-size: 24px;

}

.kontakt-info p {

color: #b1b1b1;

}

.prava-cast {

display: flex;
flex-direction: column;
text-align: right;


}

.contactus {

font-weight: bold;
color: #EEE7D8;
font-size: 24px;
margin-bottom: 10px;


}

.kont_udaje h3 {

margin: 10px 0 5px;
font-size: 18px;

}

.kont_udaje p {

margin: 0;
font-size: 16px;


}

@media (max-width: 768px) {

.kontakt_layout {

flex-direction: column;
align-items: center;
padding: 20px;

}

.sipka {

margin: 10px 0;    
}

.kontakt-info {

text-align: center;

}

}

.circle {

position: absolute;
transform: translate(-50%, -50%);
background: #000;
width: 100px;
height: 100px;
}



