@charset "utf-8";

*{

	font-family: 'Open Sans' , sans-serif;
}

* { padding: 0; margin: 0; }

html {
	
	background-color:whitesmoke; 
	
	
  	-webkit-background-size: cover;
 	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
	
	
}

html, body {
  height: 100%;
	
	
}


.clear::before, .clear::after {
    content: "";
    display: table;
}
.clear::after {
    clear: both;
}

.container {

margin: auto;
min-height: 100%;

}


.min-container {

min-width: 320px;
	

}



a:link {
    color: white;
	text-decoration: none;
}

a:visited {
    color: white;
	text-decoration: none;
}


a:hover {
    color: #f9d210;
	text-decoration: none;
}

a:active {
    color: #8ca2af;
	text-decoration: none;
}


h1 {
	
	text-align: center;
	color: dimgray;
	font-weight: bold;
	
}


header {
	
	
	
	
	
}

.logo {
	
	
	margin: auto;
	
		
			
}

.links-logo-container {
	
	margin-top: 10px;
	padding-top: 50px;
	padding-bottom: 50px;	
	height: 150px;
	background-image: url("../img/id-logo.jpg"); 
  	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	
		
}



.menu-container {
	
	background-color: #797979;
	
	
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	flex-direction: row;
	
}
	@media screen and (max-width: 768px) {
    .menu-container {
        flex-direction: column;
    }


}

.menu-button {
	
	font-size: 26px;
	font-weight: bold;
	padding-top: 10px;
	padding-bottom: 10px;
	white-space: nowrap;
	flex:1;
	margin-left: 50px;
	margin-right: 50px;
	text-align: center;
	
	
	
}


.camera-container {
	
	  overflow-x: hidden;
  /* Enable scrolling on the page. */
  overflow-y: auto;
  /* Set the perspective to 2px. This is essentailly the simulated distance from the viewport to transformed objects.*/
  perspective: 2px;
	
}



.camera {
	
 position: relative;
  /* The height of the container. Must be set, but it doesn't really matter what the value is. */
  height: 100vh;

  /* For text formatting. */
  display: flex;
  align-items: center;
  justify-content: center;
	
	background-image: url("../img/camera.jpg");
	background-size:cover;
	height: 400px;
	
	
	
}

.parallax-window {
    min-height: 300px;
    background: transparent;
	padding-top: 0;
}


.horizontal-line {
	
	width: 100%;
	height: 20px;
	margin-bottom: 30px;
	background-color: #797979; 
	
	
}


.content {
	
	margin-top: 20px;
	margin-bottom: 50px;
	text-align: center;
	font-size: 18px;
	color: dimgray; 
	line-height: 1.4;
	padding-left: 10%;
	padding-right: 10%;
	
	
}

@media screen and (max-width: 768px) {
    .content {
        padding-left: 3%;
        padding-right: 3%;
    }
}

.content-container {
	
	margin-top: 20px;
	display: flex;
	color: dimgray;
	flex-wrap: wrap;
	justify-content: center;
	margin-left: 10%;
	margin-right: 10%;
	margin-bottom: 15px;
	
}

.video-container {
	
	margin-left: 5%;
	margin-right: 5%;
	
}

.video-block {
	
	
	flex: 0 auto;
	flex-wrap: wrap;
	min-width: 500px;
	margin-bottom: 10px;
	border: 0;
	
	
}

.cena-block h2 {
	
	color:#EBC704;
	font-size: 20px;
	margin-bottom: 10px;
	
	
}

.cena-block {
    text-align: center;
    font-size: 18px;
    margin-top: 15px;
    padding-top: 10px;
    padding-bottom: 20px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}



.contacts {
    padding-top: 40px;
    background-color: #626262;
    color: white;
    padding-bottom: 50px;
    text-align: center;
}

.contact-details-container {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

 .icon-details-container-left {
        width: 100%;
        text-align: center; 
        margin-right: 0; 
        margin-bottom: 15px; 
    }


.contact-details {
    margin-top: 5px;
}

.phone-icon, .email-icon {
    width: 50px;
    height: 50px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 10px; 
}

.phone-icon {
    background-image: url("../img/phone.png");
}

.email-icon {
    background-image: url("../img/email.png");
}

.social-block {
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.social-icons {
    display: flex;
    align-items: center;  
    gap: 20px;  
}

.social-container {
    display: flex;
    align-items: center;  
	margin-bottom: 20px;
}


.icon-details-container-left:last-child {
    margin-right: 0;
}

@media only screen and (max-width: 600px) {
    .contact-details-container {
        flex-direction: column;
        align-items: center;
    }
	
	