/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

a {
  color: var(--color-links);
  text-decoration: none;
}

a:hover {
  color: var(--color-links-hover);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
}

h2 {
  color: #1F2C34;
  font-weight: 700;
}

.br {
  display: block;
}

.subpage-holder #main {
  padding-top: 20px;
}
.subpage-holder .header {
  background: var(--color-white);
}

.form-control.has-error {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.form-control.has-error:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.form-control.has-error {
  border-color: #dc3545;
}

.noBorder {
  border: none;
}

.hiddenContent {
  display: none;
}

.bigger-text {
  font-size: 24px;
  line-height: 34px;
}

.silver-box {
  display: block;
  width: 100%;
  padding: 30px;
  background: #f5f5f5;
  border-radius: 12px;
}

.num-box {
  text-align: center;
  margin-bottom: 20px;
}

.num-box.text-left {
  text-align: left !important;
}

.num-box strong {
  display: block;
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 10px;
}

.num-box span {
  display: inline-block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  color: #fff;
  background: #000;
  border-radius: 50%;
  margin-bottom: 10px;
}

.white-text-box {
  display: inline-block;
  max-width: 300px;
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 20px 16px;
  color: #000;
  background: #fff;
  border-radius: 12px;
}

@media (max-width: 1208px) {
  .white-text-box {
    max-width: 500px;
  }
}

@media (max-width: 991px) {
  .white-text-box {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    max-width: 100%;
    padding: 0;
    margin-top: 16px;
  }
}

.p-relative {
  position: relative;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--color-white);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}
#preloader:before, #preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
#preloader:after {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

@-webkit-keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }
  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }
  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
}
.section-header h2 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--color-secondary);
}
.section-header p {
  margin: 0 auto;
  color: var(--color-secondary-light);
}
@media (min-width: 1280px) {
  .section-header p {
    max-width: 80%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: rgba(var(--color-secondary-rgb), 0.05);
  min-height: 40px;
  margin-top: 76px;
}
.breadcrumbs h2 {
  font-size: 30px;
  font-weight: 300;
  margin: 0;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-secondary-light);
  content: "/";
}
@media (max-width: 992px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs h2 {
    margin-bottom: 10px;
    font-size: 24px;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 995;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: var(--color-white);
  line-height: 0;
}
.scroll-top:hover {
  background: rgba(var(--color-primary-rgb), 0.85);
  color: var(--color-white);
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  padding: 20px 0;
  background: rgba(255,255,255,0.5);
  transition: all 0.5s;
  z-index: 997;
}
.header.sticked {
  padding: 12px 0;
  background: var(--color-white);
  box-shadow: 0px 2px 20px rgba(var(--color-secondary-rgb), 0.1);
}
.header .logo img {
  max-height: 70px;
  margin-right: 6px;
}
.header .logo h1 {
  font-size: 32px;
  font-weight: 300;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
}
.header .logo h1 span {
  color: var(--color-primary);
  font-weight: 500;
}
.btn-getstarted, .btn-getstarted:focus {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  background: var(--color-primary);
  border: none;
  padding: 12px 24px;
  border-radius: 88px;
  transition: 0.3s;
}
.btn-getstarted:hover, .btn-getstarted:focus:hover {
  color: #fff;
  background: var(--color-primary-dark);
}
@media (max-width: 1279px) {
  .header .btn-getstarted, .header .btn-getstarted:focus {
    margin-right: 50px;
  }
}

/*--------------------------------------------------------------
# Desktop Navigation 
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
    position: relative;
  }
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navbar li {
    position: relative;
  }
  .navbar > ul > li {
    white-space: nowrap;
  }
  .navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 500;
    color: rgba(var(--color-secondary-dark-rgb), 1);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }
  .navbar a i, .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  .navbar > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 10px;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    transition: all 0.3s ease-in-out 0s;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
  }
  .navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
    visibility: visible;
    transform: scaleX(0.7);
  }
  .navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
    color: var(--color-primary);
  }
  .navbar .dropdown a:hover:before, .navbar .dropdown:hover > a:before, .navbar .dropdown .active:before {
    visibility: hidden;
  }
  .navbar .dropdown a:hover, .navbar .dropdown .active, .navbar .dropdown .active:focus, .navbar .dropdown:hover > a {
    
  }
  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    margin: 0;
    padding: 0 0 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--color-secondary);
    transition: 0.3s;
  }
  .navbar .dropdown ul li {
    min-width: 200px;
  }
  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 500;
    color: rgba(var(--color-white-rgb), 0.5);
  }
  .navbar .dropdown ul a i {
    font-size: 12px;
  }
  .navbar .dropdown ul a:hover, .navbar .dropdown ul .active, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
    color: var(--color-white);
    background: var(--color-primary);
  }
  .navbar .dropdown:hover > ul {
    opacity: 1;
    visibility: visible;
  }
  .navbar .megamenu {
    position: static;
  }
  .navbar .megamenu ul {
    right: 0;
    padding: 10px;
    display: flex;
  }
  .navbar .megamenu ul li {
    flex: 1;
  }
  .navbar .megamenu ul li a, .navbar .megamenu ul li:hover > a {
    color: rgba(var(--color-white-rgb), 0.5);
    background: none;
  }
  .navbar .megamenu ul li a:hover, .navbar .megamenu ul li .active, .navbar .megamenu ul li .active:hover {
    color: var(--color-white);
    background: var(--color-primary);
  }
  .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 (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}
/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .br {
    display: none;
  }
  .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: calc(100% - 70px);
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }
  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 10px 0;
    margin: 0;
    background: rgba(var(--color-secondary-rgb), 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }
  .navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(var(--color-white-rgb), 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }
  .navbar a i, .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  .navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
    color: var(--color-white);
  }
  .navbar .dropdown ul, .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid rgba(var(--color-secondary-light-rgb), 0.3);
  }
  .navbar .dropdown > .dropdown-active, .navbar .dropdown .dropdown > .dropdown-active {
    display: block;
  }

  .mobile-nav-toggle {
    display: block !important;
    color: var(--color-secondary);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    top: 42px;
    z-index: 9999;
    right: 20px;
  }
  .mobile-nav-toggle.bi-x {
    color: var(--color-white);
  }

  .mobile-nav-active {
    overflow: hidden;
    z-index: 9995;
    position: relative;
  }
  .mobile-nav-active .navbar {
    left: 0;
  }
  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(var(--color-secondary-rgb), 0.8);
    z-index: 9996;
  }
}
/*--------------------------------------------------------------
# Index Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Animated Hero Section
--------------------------------------------------------------*/
.hero-animated {
  width: 100%;
  min-height: 50vh;
  background: url("../img/hero-bg.png") center center;
  background-size: cover;
  position: relative;
  padding: 120px 0 60px;
}
.hero-animated h2 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 300;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
}
.hero-animated h2 span {
  color: var(--color-primary);
}
.hero-animated p {
  color: rgba(var(--color-secondary-rgb), 0.8);
  margin: 0 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}
.hero-animated .animated {
  margin-bottom: 60px;
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
@media (min-width: 992px) {
  .hero-animated .animated {
    max-width: 45%;
  }
}
@media (max-width: 991px) {
  .hero-animated .animated {
    max-width: 60%;
  }
}
@media (max-width: 575px) {
  .hero-animated .animated {
    max-width: 80%;
  }
}
.hero-animated .btn-get-started {
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: var(--color-white);
  background: var(--color-primary);
  font-family: var(--font-secondary);
}
.hero-animated .btn-get-started:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
}
.hero-animated .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-family: var(--font-secondary);
  color: var(--color-secondary);
  font-weight: 600;
}
.hero-animated .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}
.hero-animated .btn-watch-video:hover {
  color: var(--color-primary);
}
.hero-animated .btn-watch-video:hover i {
  color: rgba(var(--color-primary-rgb), 0.8);
}
@media (max-width: 640px) {
  .hero-animated h2 {
    font-size: 32px;
  }
  .hero-animated p {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .hero-animated .btn-get-started, .hero-animated .btn-watch-video {
    font-size: 14px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
/*--------------------------------------------------------------
# Carousel Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  /* min-height: 60vh; */
  padding: 0;
  background: #fff;
  /* background: url("../img/hero-bg.png") center center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; */
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5px;
  margin-top: 110px;
}
@media (max-width: 640px) {
  .hero .container {
    padding: 0 60px;
  }
}
.hero h2 {
  color: var(--color-secondary);
  margin-bottom: 25px;
  font-size: 48px;
  font-weight: 300;
}
@media (max-width: 768px) {
  .hero {
    margin-top: 84px;
  }
  .hero h2 {
    font-size: 30px;
  }
  .header .logo img {
    max-height: 40px;
  }
  .mobile-nav-toggle {
    top: 28px;
  }
  .hero-fullscreen {
    min-height: 50vh !important;
  }
  .header .btn-getstarted {
    font-size: 13px;
  }
}
.hero p {
  color: var(--color-secondary-light);
  font-weight: 500;
  margin-bottom: 30px;
}
.hero .carousel-item {
  overflow: hidden;
  position: relative;
}
#hero .carousel {
  --bs-carousel-transition-duration: 1.4s;
}
#hero .carousel.carousel-fade .carousel-item {
  transition-property: opacity !important;
  transition-duration: 1.4s !important;
  transition-timing-function: cubic-bezier(.45,0,.15,1) !important;
}
#hero .carousel .carousel-item {
  will-change: opacity;
  backface-visibility: hidden;
}
#hero .carousel-item video, #hero .carousel-item img {
  width: 100%;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.hero .bannerLink {
  display: block;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.hero .img {
  display: block;
  width: 100%;
}
.hero .btn-get-started {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 5px;
  transition: 0.5s;
  -webkit-animation: fadeInUp 1s both 0.6s;
  animation: fadeInUp 1s both 0.6s;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.hero .btn-get-started:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.hero .carousel-control-prev {
  justify-content: start;
}
.hero .hero-text {
  position: absolute;
  top: 50%;
  left: 10%;
  max-width: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.hero .hero-text h1 {
  font-size: 56px;
  color: #fff !important;
  font-weight: 700;
  margin-bottom: 40px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);
}
#hero .ribbon-img {
  position: absolute;
  bottom: 20px !important;
  right: 20px !important;
  width: auto !important;
  max-width: 100% !important;
  animation: heroFade 1.2s ease both;
  transform: translateY(0) !important;
}
@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}
.hero .carousel-control-next {
  justify-content: end;
}
@media (max-width: 1400px) {
  .hero .hero-text h1 {
    font-size: 46px;
  }
}
@media (max-width: 991px) {
  .hero .hero-text h1 {
    font-size: 30px;
  }
  #hero .ribbon-img {
    display: none;
  }
}
@media (max-width: 768px) {
  .hero .hero-text {
    left: 18%;
  }
}
@media (max-width: 500px) {
  .hero .hero-text h1 {
    font-size: 22px;
    width: 100%;
    max-width: 100% !important;
    text-align: center;
  }
  .hero .hero-text {
    padding: 20px;
    left: 0px !important;
    text-align: center;
    width: 100% !important;
    max-width: 100% !important;
  }
}
@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}
.hero .carousel-control-next-icon, .hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: rgba(var(--color-secondary-rgb), 1);
  color: rgba(var(--color-white-rgb), 0.98);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 576px) {
  .hero .carousel-control-next-icon, .hero .carousel-control-prev-icon {
    display: none;
  }
}
.hero .carousel-control-next-icon {
  padding-left: 3px;
}
.hero .carousel-control-prev-icon {
  padding-right: 3px;
}
.hero .carousel-control-prev, .hero .carousel-control-next {
  width: auto !important;
  opacity: 0.2 !important;
  transition: 0.3s;
}
.hero .carousel-control-prev:focus, .hero .carousel-control-next:focus {
  opacity: 0.2 !important;
}
.hero .carousel-control-prev:hover, .hero .carousel-control-next:hover {
  opacity: 0.8 !important;
}

@keyframes heroFade {
  from { opacity: 0; transform: translateY(-20%); }
  to   { opacity: 1; transform: translateY(-50%); }
}
#hero .hero-text { opacity: 0; transform: translateY(-20%); }
#hero .active .hero-text {
  opacity: 1;
  transform: translateY(-50%);
  animation: heroFade 0.9s ease both;
}

#hero,
#hero .carousel {
  position: relative;
}
#hero .carousel-indicators {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%); /* přesně na střed */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  z-index: 10;
  transition: all 0.4s;
}
#hero .carousel-indicators [data-bs-target] {
  width: 22px;
  height: 6px;
  border: 0;
  margin: 0;
  padding: 0;
  border-radius: 999px;
  background: #fff;
  opacity: 1;
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer;
  position: relative;
  transition: all 0.4s;
}
#hero .carousel-indicators [data-bs-target]::before {
  content: "";
  position: absolute;
  inset: -10px;
}
#hero .carousel-indicators [data-bs-target]:hover {
  background: #1B5A98;
  transition: all 0.4s;
}
#hero .carousel-indicators .active {
  width: 44px;
  background: #1B5A98;
}
@media (max-width: 576px) {
  #hero .carousel-indicators {
    bottom: 14px;
    gap: 8px;
  }
  #hero .carousel-indicators [data-bs-target] {
    width: 18px;
    height: 5px;
  }
  #hero .carousel-indicators .active {
    width: 34px;
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInDownLite {
  from {
    opacity: 0;
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownLite {
  from {
    opacity: 0;
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
/*--------------------------------------------------------------
# Fullscreen Hero Section
--------------------------------------------------------------*/
.hero-fullscreen {
  width: 100%;
  min-height: 100vh;
  background: url("../img/hero-fullscreen-bg.jpg") center center;
  background-size: cover;
  position: relative;
  padding: 120px 0 60px;
}
.hero-fullscreen:before {
  content: "";
  background: rgba(var(--color-white-rgb), 0.80);
  position: absolute;
  inset: 0;
}
@media (min-width: 1365px) {
  .hero-fullscreen {
    background-attachment: fixed;
  }
}
.hero-fullscreen h2 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 300;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
}
.hero-fullscreen h2 span {
  color: var(--color-primary);
}
.hero-fullscreen p {
  color: rgba(var(--color-secondary-rgb), 0.8);
  margin: 0 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}
.hero-fullscreen .btn-get-started {
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: var(--color-white);
  background: var(--color-primary);
  font-family: var(--font-secondary);
}
.hero-fullscreen .btn-get-started:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
}
.hero-fullscreen .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-family: var(--font-secondary);
  color: var(--color-secondary);
  font-weight: 600;
}
.hero-fullscreen .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}
.hero-fullscreen .btn-watch-video:hover {
  color: var(--color-primary);
}
.hero-fullscreen .btn-watch-video:hover i {
  color: rgba(var(--color-primary-rgb), 0.8);
}
@media (max-width: 640px) {
  .hero-fullscreen h2 {
    font-size: 32px;
    text-align: center;
  }
  .hero-fullscreen p {
    font-size: 18px;
    margin-bottom: 30px;
    text-align: center;
  }
  .hero-fullscreen .btn-get-started, .hero-fullscreen .btn-watch-video {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Static Hero Section
--------------------------------------------------------------*/
.hero-static {
  width: 100%;
  min-height: 50vh;
  background: url("../img/hero-bg.png") center center;
  background-size: cover;
  position: relative;
  padding: 120px 0 60px;
}
.hero-static h2 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 300;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
}
.hero-static h2 span {
  color: var(--color-primary);
}
.hero-static p {
  color: rgba(var(--color-secondary-rgb), 0.8);
  margin: 0 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}
.hero-static .btn-get-started {
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: var(--color-white);
  background: var(--color-primary);
  font-family: var(--font-secondary);
}
.hero-static .btn-get-started:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
}
.hero-static .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-family: var(--font-secondary);
  color: var(--color-secondary);
  font-weight: 600;
}
.hero-static .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}
.hero-static .btn-watch-video:hover {
  color: var(--color-primary);
}
.hero-static .btn-watch-video:hover i {
  color: rgba(var(--color-primary-rgb), 0.8);
}
@media (max-width: 640px) {
  .hero-static h2 {
    font-size: 32px;
  }
  .hero-static p {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .hero-static .btn-get-started, .hero-static .btn-watch-video {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
@media (max-width: 575px) {
  .about .about-img {
    margin: 30px 0 0 30px;
  }
  .about .about-img:before {
    inset: -30px 0 0 -30px;
  }
}
.about h3 {
  color: var(--color-primary);
  font-family: var(--font-secondary);
  font-weight: 300;
  font-size: 32px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .about h3 {
    font-size: 28px;
  }
}
.about .nav-pills {
  border-bottom: 1px solid rgba(var(--color-secondary-rgb), 0.2);
}
.about .nav-pills li + li {
  margin-left: 40px;
}
.about .nav-link {
  background: none;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-secondary);
  padding: 12px 0;
  margin-bottom: -2px;
  border-radius: 0;
  font-family: var(--font-secondary);
}
.about .nav-link.active {
  color: var(--color-primary);
  background: none;
  border-bottom: 3px solid var(--color-primary);
}
@media (max-width: 575px) {
  .about .nav-link {
    font-size: 14px;
  }
  .about .nav-pills li + li {
    margin-left: 26px;
  }
}
.about .tab-content h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: var(--color-secondary);
}
.about .tab-content i {
  font-size: 22px;
  line-height: 0;
  margin-right: 8px;
  color: var(--color-primary);
}

.box-radius {
  overflow: hidden;
  border-radius: 12px;
}
.blue-box {
  padding: 30px;
  background: #eff7fb;
}
.blue-box h3 {
  color: #1F2C34;
  font-weight: 700;
  font-size: 28px;
}
.blue-phone .bi {
  color: #3096C8;
  font-size: 30px;
  vertical-align: -4px;
  margin-right: 2px;
}
.blue-phone a {
  color: #1F2C34;
  font-weight: 700;
  font-size: 24px;
  transition: all 0.4s;
}
.blue-phone a:hover {
  color: #3096C8;
  transition: all 0.4s;
}
.contactus-img {
  background: url("../img/contact-us.png") center center no-repeat;
  background-size: cover;
}
.about-img {
  background: url("../img/about-img.jpg") center center no-repeat;
  background-size: cover;
}
@media (min-width: 992px) {
  .about-img, .check-list {
    margin-left: 7.33333333%;
  }
}
@media (max-width: 991px) {
  .contactus-img, .about-img {
    min-height: 320px;
  }
}

.kolejnice h2 {
  color: #1F2C34;
  font-weight: 700;
  font-size: 28px;
}
.kolejnice .blue-box {
  position: relative;
  height: 100%;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 10px;
}
.benefit-icon {
  min-width: 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #3096C8;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.benefit-title {
  font-weight: 700;
  font-size: 18px;
}
.benefit-text {
  margin: 0;
}

.whyus .blue-box {
  position: relative;
  height: 100%;
}

.blog-item h3 {
  color: #1F2C34;
  font-weight: 700;
  font-size: 24px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: #1B5A98;
  color: #fff;
  padding: 60px 0;
}
.footer strong {
  font-size: 18px;
}
.footer .footer-links a {
  display: block;
  margin-bottom: 4px;
}
.footer a {
  color: #fff;
  transition: all 0.4s;
}
.footer a:hover {
  color: #3096C8;
  transition: all 0.4s;
}
.footer i.bi {
  font-size: 24px;
  color: #fff;
}
.footer i.bi:hover {
  color: #3096C8;
}
.footer .copyright {
  text-align: center;
  padding-top: 40px;
  font-size: 14px;
  font-weight: 300;
}
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }
  .footer .copyright {
    padding-top: 20px;
  }
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive::before {
  display: block;
  content: "";
}
.embed-responsive-item {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.embed-responsive-16by9 {
  padding-top: 56%;
}

.row-flex {
  display: flex;
  flex-wrap: wrap;
}