/**
* Template Name: Day - v4.0.1
* Template URL: https://bootstrapmade.com/day-multipurpose-html-template-for-free/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html  {
  font-size: clamp(50%, 0.8rem + 2vw, 24px);
}
body {
 
  font-family: "Open Sans", sans-serif;
  color: #ffffff;
  background-color: #000000;

}

a {
  color: #00a0e3;
  text-decoration: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #00a0e3;
  width: 40px;
  height: 40px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #e72323;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #00a0e3;
  border-top-color: #efefef;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #191919;
  font-size: 15px;
  height: 40px;
  padding: 0;
  color: rgba(255, 255, 255, 0.6);
}

#topbar .contact-info a {
  line-height: 0;
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: #fff;
}

#topbar .contact-info i {
  color: #00a0e3;
  line-height: 0;
  margin-right: 5px;
}

#topbar .contact-info .phone-icon {
  margin-left: 15px;
}

#topbar .social-links a {
  color: rgba(255, 255, 255, 0.6);
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  
  background: rgba(25, 25, 25, 0.75);
  transition: all 0.5s;
  z-index: 997;
  height: 70px;
}

#header.fixed-top {
  background: #191919;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 60px;
}

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar > ul > li {
  margin-left: 5px;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 15px 24px 15px;
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar li:hover > a {
  background: #00a0e3;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  color: #191919;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #fff;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #00a0e3;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #191919;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #cc1616;
  background: none;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #00a0e3;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#totem {  
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  overflow: hidden;
  margin-left: 50vw;
  } 
  
  #totem img {  
   height: 80vh;
    } 

#hero {
  background: url("../img/bcg5.webp") top center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: nowrap;
  height: 90vh; 
}

@media (min-width: 575px) {
  #totem {
   margin-left: 30vw;  
  }
}
#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
.hero-title {
  position: absolute;
  top:  60%;
  left: 0;  
  display: flex;
  align-items: center;
  background-color:  rgba(0, 0, 0, 0.7);
  z-index: 200;
  height: clamp(58px, 12vw, 100px); 
}
.hero-title:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width:  clamp(58px, 12vw, 100px) calc( clamp(58px, 12vw, 100px) / 1.3) 0 0;
  border-color:  rgba(0, 0, 0, 0.7) transparent transparent transparent;
  position: absolute;
  top: 0;
  right: 0;
  transform:  translateX(100%);
}

#hero .hero-title h1 {
  font-size: clamp(1rem, 4vw, 1.8rem);
  font-weight: 500;
  white-space: nowrap; 
  color: #ffffff;  

  margin: 2px 50px 0;
   

  position: relative;
  z-index: 100;
  white-space: nowrap;
}


/*--------------------------------------------------------------
# Table
--------------------------------------------------------------*/
.table {
    font-size: 0.7rem;
    font-weight: 200;
     white-space: nowrap;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
#contact p {
 font-size: 0.5rem; 
 color: #666666;
}

.personal-header {
 font-size: 0.6rem; 
 font-weight: bolder;
 color: #333;
 }


.container-nopad  {
  padding: 0 0 15vh 0; 
}

.bcg-contact {
  background: url("../img2/jan-maixner-2s.webp") top right;
  background-size: cover;
  background-attachment: fixed;
  
}

.bcg-blue {
 
  background: url("../img2/bcg-b7.webp") ;
  background-repeat: repeat-x;
  background-position: center bottom; 
  background-attachment: fixed;
}

section {
  overflow: hidden;  
  position: relative;  
}

.section-title-spacer {
  height: clamp(50px, 12vw, 80px);
  margin-bottom: clamp(2px, 5vh, 20px);  
}
.section-title-spacer-2 {
  height: clamp(50px, 12vw, 80px); 
  
}
/* pro rozlozeni 2 sloupce:clanek s obrazkem, na pro sm a xsm se zmensi top margin */
.title-spacer {
  height: 1rem;  
}
  @media (min-width: 992px) {
    .title-spacer {
      height: clamp(50px, 12vw, 80px);
      margin-bottom: clamp(2px, 5vh, 20px);  
    }
}

.pos-left {
  left: 0;  
}
.pos-right {
  right: 0;  
}

.section-title:after {
  content: "";
  width:  0;
  height: 0;
  border-style: solid;
  border-width: clamp(50px, 12vw, 80px) calc( clamp(50px, 12vw, 80px) / 1.5) 0 0;
  border-color: deepskyblue transparent transparent transparent;
  position: absolute;
  top: 0;
}

.section-title.pos-left:after {    
  right: 1px;
  transform:  translateX(100%);
}

.section-title.pos-right:after {   
  left: 0;
   transform:  translateX(-100%) rotateY(180deg);  
}

.section-title {
  position: absolute;
  top:  0;
  display: flex;
  align-items: center;
  padding-top: 1.5vw;
  background-color: deepskyblue;
  z-index: 200;
  height: clamp(50px, 12vw, 80px);   
  width:60%;  

  font-weight:900;
  white-space: nowrap; 
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .section-title { 
    width:80%; 
  }
}
.section-title h2  {
  position: relative;
  z-index: 100;  
}

.about .container, 
.team .container, 
.portfolio .container-fluid
{
 padding-bottom: 8vw; 
}

.pos-left {
    padding-left:20px;
}

@media (min-width: 576px) {
  .pos-left {
    /*max-width: 540px;*/
    padding-left:calc((100vw - 540px)/2);
  }
}
@media (min-width: 768px) {
  .pos-left {
    /*max-width: 720px;*/
    padding-left:calc((100vw - 768px)/2);
  }
}
@media (min-width: 992px) {
  .pos-left {
    /*max-width: 960px;*/
    padding-left:calc((100vw - 992px)/2);
  }
}
@media (min-width: 1200px) {
  .pos-left {
   /* max-width: 1140px;*/
    padding-left:calc((100vw - 1140px)/2);
    
  }
}
@media (min-width: 1400px) {
  .pos-left {
    /*max-width: 1320px; */
    padding-left:calc((100vw - 1320px)/2);
   
  }
}


@media (min-width: 576px) {
  .pos-right {
    /*max-width: 540px;*/
    padding-right:calc((100vw - 540px)/2);
  }
}
@media (min-width: 768px) {
  .pos-right {
    /*max-width: 720px;*/
    padding-right:calc((100vw - 768px)/2);
  }
}
@media (min-width: 992px) {
  .pos-right {
    /*max-width: 960px;*/
    padding-right:calc((100vw - 992px)/2);
  }
}
@media (min-width: 1200px) {
  .pos-right {
   /* max-width: 1140px;*/
    padding-right:calc((100vw - 1140px)/2);
    
  }
}
@media (min-width: 1400px) {
  .pos-right {
    /*max-width: 1320px; */
    padding-right:calc((100vw - 1320px)/2);
   
  }
}
.nadp-long  {   
   width:70%;  
}
@media screen and (max-width: 992px) {
  .nadp-long {      
    width: 80%;
  }
}

  .nadp-short h2  {     
    font-size: clamp(16px, 6vw, 40px);
  }
  @media screen and (max-width: 992px) {
    .nadp-long h2 {      
      font-size: clamp(16px, 5vw, 40px);
    }
  }     
  @media screen and (max-width: 776px) {
    .nadp-long h2 {      
      font-size: clamp(16px, 4vw, 40px);
    }
  }  


 




section i{
    margin-right: 1vw;
} 
section li{
    font-size: 0.8rem;
    font-weight: 300;
    
        display: flex;
        justify-content: flex-start;
        align-items: top;
  
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 400;
  font-size: 1.2rem;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 0.8rem;
  font-weight: 100;
  padding-right: 4px;
  color: #00a0e3;
}
.about .content p {
  font-size: 0.7rem;
  font-weight: 100;
  
}

.about .content p:last-child {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.bcg-black {
  background: rgba(2, 2, 2, 0.5);
}

.bcg-portfolio{
    background: url("../img2/bcg-sand-2.webp") top left;  
    background-size: cover;
    background-attachment: fixed;
    
  }
.portfolio .portfolio-container{
  width:100%;
  left:18px;  
}


#portfolio-item-headline{
  position:absolute;
  top:0px;
  left:20px;
}
 

#portfolio-item-headline h4,
#portfolio-item-headline2 h4  {

  font-size: 3rem;
  font-weight: bold;
  color: rgba(188, 215, 245, 0.4)
}

#portfolio-item-headline h4:hover {
 
  color: rgba(188, 215, 245, 0.9)
}
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 0.2rem 0.6rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  font-family: "Poppins", sans-serif;
}
.bi {
  vertical-align: .125em;
  width: 1em;
 height: 1em;
}

 #footer .bi:before {  
  font-size: 1.5rem;
}
.portfolio #portfolio-flters i 
{
  color:#00a0e3;
}
.portfolio #portfolio-flters li:hover, 
.portfolio #portfolio-flters li.filter-active,
.portfolio #portfolio-flters i:hover, 
.portfolio #portfolio-flters i.filter-active
{
  color: #ff0000;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 1rem; 
 }


.portfolio .portfolio-item:hover {
 
   background-color: rgba(102, 168, 230, 0.3)
   
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
  color: #afafaf;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #4c4c4c;
  font-size: 14px;
  margin-bottom: 0;
}
 
.portfolio .portfolio-item .portfolio-info .details-link {
  margin-top:10px;
  font-size: 1rem;  
  color: #a01313;
}

.portfolio .portfolio-item .portfolio-info .preview-link  {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #333333;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover, 
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #00a0e3;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #e82d2d;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}



/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member  {
  text-align: center;
  margin-bottom: 20px;
  /*box-shadow: 0px 0px 12px 0px rgba(255, 255, 255, 0.4);*/
  padding-bottom: 20px;
  background: linear-gradient(to top,  rgba(233, 233, 233, 0.3) 0%, rgba(233, 233, 233, 0) 100%);
}

.team .member img {
  width: 100%;  
  margin: 0 0 30px 0;

}

.team .member h4 {
  color: #00a0e3;
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.team .member span {
  color: #cccccc;
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member p {
  padding: 1rem 1rem 0 1rem;
  font-size: 14px;
  font-style: italic;
  color: #ffffff;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  color: #919191;
  transition: 0.3s;
}

.team .member .social a:hover {
  color: #00a0e3;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

#team i {
  font-size: 1.2rem;
  padding: 0.2rem;
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: #00a0e3;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #f5a0a0;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input::focus, .contact .php-email-form textarea::focus {
  background-color: #00a0e3;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #00a0e3;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #e82d2d;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
 

#footer {
  background: #000000;
  padding: 0 0 30px 0;
  color:  #999;
  font-size: 14px;
} 

#social {
  border-top: 1px solid #333;   
  border-bottom: 1px solid #262626;   
}


#footer .copyright {
   
  text-align: center;
  
}


#footer .container .col a {
  font-size: 0.9rem; 
  font-weight: 500;
  
 
}

#footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 0.5rem; 
  color: #999;
}

#footer .credits a {
  color: #9233ff;
  font-weight: bold;
}

.responsive-image {
  width: 486px;//Any width you want to set the image to.
  max-width: 100%;
  height: auto;
  margin: 5vh 10vw 4vh 0;
}

.txt-pom {
  font-size: 14px;
  color: #999999;
}
.bg-dsb { 
  background-color:  deepskyblue !important; 
}
 