

/*=== MEDIA QUERY ===*/
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;700&family=Raleway:wght@100&family=Work+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
html {
  background-color: #353b43;
  color: #737f8a;
}

body {
  background-color: #353b43;
  font-family: "Cairo", sans-serif;
  color: #737f8a;
  -webkit-font-smoothing: antialiased;
  position: relative;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  color: #afbac4;
}

p {
  font-family: "Work Sans", sans-serif;
}




::-webkit-scrollbar {
  display: none; /* hides scrollbar on webkit based browsers */
}

body {
  overflow: -webkit-hidden; /* hides scrollbar on body */
}

body:hover {
  overflow: auto; /* shows scrollbar on body when hovering */
}



/*=================================================================
  Basic Setup
==================================================================*/

.flex-box {
	display:flex; 
	justify-content: space-around;
}
.flex-box > div {
	display: flex;
	flex-direction: column;
	align-items:center;
}


#video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit:cover;
}

#overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Adjust the last value for overlay opacity */
  z-index: 0;
}

/* Add additional styling as needed for your content */
#content {
  position: relative;
  z-index: 1;
  padding: 20px;
  color: white;
}
::-moz-selection {
  /* Code for Firefox */
  color: #fff;
  background: #57cbcc;
}

::selection {
  color: #fff;
  background: #57cbcc;
}

ol,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

figure {
  margin: 0;
}

a {
  color: #fff;
  transition: all 0.3s ease-in 0s;
}

iframe {
  border: 0;
}

a,
a:focus,
a:hover {
  text-decoration: none;
  outline: 0;
}

a:focus,
a:hover {
  color: #6CB670;
}

.kill-margin-bottom {
  margin-bottom: 0 !important;
}

.padding-0 {
  padding: 0 !important;
}

.btn {
  background-color: transparent;
  color: #fff;
  padding: 10px 30px;
  border-radius: 0;
  transition: all 0.3s ease-in 0s;
}
.btn:focus {
  color: #ddd;
  box-shadow: none;
}

.btn-transparent {
  border: 1px solid #4e595f;
}
.btn-transparent:hover, .btn-transparent:focus {
  background-color: #57cbcc;
  border-color: #57cbcc !important;
  color: #fff;
}

.form-control {
  background-color: #2f383d;
  border-radius: 0;
  padding: 5px 10px;
  border: 0 none;
  color: #ddd;
}

.form-control:focus {
  box-shadow: 0 0 0;
}

.form-control::-webkit-input-placeholder {
  /*  Chrome, Safari, Opera  */
  color: #ddd;
}

.form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #ddd;
}

.form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #ddd;
}

.form-control:-ms-input-placeholder {
  /*  Internet Explorer  */
  color: #ddd;
}

.border {
  border-top: 2px solid rgba(236, 239, 241, 0.07);
  height: 1px;
  margin: 15px auto 0;
  position: relative;
  width: 30%;
}
.border:before {
  background-color: #fff;
  content: "";
  height: 6px;
  left: 50%;
  margin-left: -20px;
  position: absolute;
  top: -4px;
  width: 50px;
  background-color: #57cbcc;
}

.color {
  color: #6CB670;
}

.sub-title {
  padding: 0 0 50px;
}

.sub-title > h3 {
  border-left: 3px solid #ddd;
  border-right: 3px solid #ddd;
  display: inline-block;
  padding: 5px 25px;
  text-transform: uppercase;
}

.btn.active:focus,
.btn:active:focus,
.btn:focus {
  outline: 0;
}

.bg-one {
  background-color: #353b43;
}

.bg-dark {
  background: #242930;
}

.parallax-section {
  background-attachment: fixed !important;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.no-padding {
  padding: 0 !important;
}

.inline-block {
  display: inline-block;
}

ol,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

figure {
  margin: 0;
}

a {
  transition: all 0.2s ease-in 0s;
}

iframe {
  border: 0;
}

a,
a:focus,
a:hover {
  text-decoration: none;
  outline: 0;
}

a:focus,
a:hover {
  color: #57cbcc;
}

.btn-main {
  background: #57cbcc;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 10px 35px;
  text-transform: uppercase;
}
.btn-main:hover {
  background: #2c9091;
  color: #fff;
}

.mt-20 {
  margin-top: 20px;
}

.section {
  padding: 150px 0 100px 0;
}
@media (max-width: 480px) {
  .section {
    padding: 50px 0;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 50px 0;
  }
}

.section-sm {
  padding: 70px 0;
}

.section-xs {
  padding: 50px 0;
}

.btn:focus {
  color: #ddd;
}

#home {
  position: relative;
}

.btn.active:focus,
.btn:active:focus,
.btn:focus {
  outline: 0;
}

.parallax-section {
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.preloader {
  background: #fff;
  height: 100%;
  left: 0;
  position: fixed;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sk-cube-grid {
  width: 40px;
  height: 40px;
}

.sk-cube-grid .sk-cube {
  width: 33%;
  height: 33%;
  background-color: #57cbcc;
  float: left;
  -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
  animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
}

.sk-cube-grid .sk-cube1 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.sk-cube-grid .sk-cube2 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.sk-cube-grid .sk-cube3 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.sk-cube-grid .sk-cube4 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.sk-cube-grid .sk-cube5 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.sk-cube-grid .sk-cube6 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.sk-cube-grid .sk-cube7 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.sk-cube-grid .sk-cube8 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.sk-cube-grid .sk-cube9 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

@-webkit-keyframes sk-cubeGridScaleDelay {
  0%, 70%, 100% {
    transform: scale3D(1, 1, 1);
  }
  35% {
    transform: scale3D(0, 0, 1);
  }
}
@keyframes sk-cubeGridScaleDelay {
  0%, 70%, 100% {
    transform: scale3D(1, 1, 1);
  }
  35% {
    transform: scale3D(0, 0, 1);
  }
}
.title {
  padding-bottom: 60px;
}
.title h2 {
  text-transform: capitalize;
  font-weight: 700;
  font-size: 38px;
  color: #fff;
}
.title h2 span {
  color: #57cbcc;
}
.title p {
  color: #666;
}
.title.title-white h2 {
  color: #fff;
}

.bg-gray {
  background: #f9f9f9;
}

.section-bg {
  background: #292F36;
}

.overly {
  position: relative;
}
.overly:before {
  content: "";
  background: rgba(0, 0, 0, 0.096);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.header-bradcrumb {
  background: transparent;
}
.header-bradcrumb a,
.header-bradcrumb .active {
  color: #cfcfcf;
  font-weight: 200;
  font-family: "Quattrocento Sans", sans-serif;
}
.header-bradcrumb a:hover {
  color: #57cbcc;
}

.slick-slide {
  outline: none;
}

/* CSS mfp-with-zoom class */
.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.pagination li {
  margin: 5px;
  display: inline-block;
}
.pagination li a {
  background: #242930;
  border: 0;
  color: #fff;
  border-radius: 0 !important;
}
.pagination li a:focus, .pagination li a:hover, .pagination li a.active {
  background: #57cbcc;
  color: #fff;
  box-shadow: none;
}

.logo {
  margin-top: 10px;
  display: inline-block;
}

.single-page-header {
  background-image: url("../images/about/about-header.jpg");
  background-size: cover;
  padding: 140px 0 70px;
  text-align: center;
  color: #fff;
  position: relative;
}
.single-page-header:before {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
/*=================================================================
  Navigation
==================================================================*/

.navbar-nav .nav-link {
  padding: 10px 15px;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #57CBCC; /* Linienfarbe */
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}
.navigation {
  background-color: #1d2024;
  width: 100%;
  z-index: 99;
  margin-bottom: 0;
  padding: 5px 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
.navigation .logo {
  padding: 0;
  height: auto;
  margin-top: 0;
}
.navigation .logo img {
  height: auto;
  width: 90px;
}
.navigation .navigation-menu li a.active {
  color: #57cbcc !important;
}
.navigation .navigation-menu a {
  padding-left: 15px !important;
  padding-right: 15px !important;
  font-size: 14px;
  color: #737f8a;
}
.navigation .navigation-menu a:hover, .navigation .navigation-menu a:focus {
  background: transparent;
  color: #57cbcc !important;
}

.navbar-toggle {
  border: 1px solid #fff;
  border-radius: 0;
}
.navbar-toggle span {
  background: #fff;
}

.bg-1 {
  background-image: url("../images/backgrounds/bg-1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-2 {
  background-image: url("../images/backgrounds/bg-2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.hero-area {
  background-size: cover;
  height: 92vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.hero-area .block {
  text-align: center;
  z-index: 99;
}
.hero-area .block .video-button a {
  background: #fff;
  display: inline-block;
  height: 60px;
  width: 60px;
  border-radius: 50px;
  line-height: 60px;
  font-size: 20px;
  margin-left: 3px;
  color: #57cbcc;
}
.hero-area .block h1 {
  font-size: 90px;
  color: #fff;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .hero-area .block h1 {
    font-size: 60px;
  }
}
@media (max-width: 768px) {
  .hero-area .block h1 {
    font-size: 46px;
  }
}
.hero-area .block p {
  color: #fff;
  font-size: 20px;
  width: 70%;
  margin: 0 auto;
}
.hero-area .block .btn-transparent {
  margin-top: 40px;
  border-color: #fff;
  padding: 14px 50px;
  font-size: 18px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;
}

.hero-video {
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.overlay {
  position: relative;
}
.overlay::before {
  content: "";
  background: rgba(0, 0, 0, 0.63);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  left: 0;
}

.dark-bg {
  background: rgba(0, 0, 0, 0.7);
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
}

/*=================================================================
  About us section
==================================================================*/
/* ... (existing styles) */



.about .block {
  background: #242930;
  padding: 30px;
  border-bottom: 2px solid transparent;
  transition: 0.3s all;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.about .block:hover {
  border-bottom: 2px solid #57cbcc;
}

.about .block:hover .icon-box {
  transform: translateY(-20px);
}

.about .block .icon-box {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: transparent;
  margin-bottom: 20px;
  padding: 20px 0;
  font-size: 50px;
  transform: translateZ(0px);
  transition-duration: 0.3s;
  transition-property: transform;
}

.about .block .icon-box::before, .about .block .icon-box::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: inherit;
  left: 0;
  transform: scaleY(0.5774) rotate(-45deg);
}

.about .block .icon-box::before {
  top: -50%;
  border-top: 2px solid rgba(236, 239, 241, 0.07);
  border-right: 2px solid rgba(236, 239, 241, 0.07);
}

.about .block .icon-box::after {
  bottom: -50%;
  border-bottom: 2px solid rgba(236, 239, 241, 0.07);
  border-left: 2px solid rgba(236, 239, 241, 0.07);
}

.about .block .icon-box h3 {
  color: #afbac4;
  margin-top: 20px;
  font-size: 24px;
}

.about .block .content p {
  color: #afbac4;
}





/*=================================================================
  Portfolio section
==================================================================*/


.portfolio-filter {
  margin-bottom: 20px;
  text-align: center;
}
.portfolio-filter button {
  border: none;
  outline: none;
  border: 1px solid rgba(236, 239, 241, 0.07);
  background: transparent;
  display: inline-block;
  font-size: 16px;
  padding: 6px 20px;
  font-weight: 700;
  color: #737f8a;
  transition: 0.3s all;
}
.portfolio-filter button.active {
  border: 1px solid #57cbcc;
  color: #57cbcc;
}

.portfolio-items-wrapper .mix {
  padding: 5px;
}

.portfolio-block {
  position: relative;
  margin-top: 30px;
}

.portfolio-block img {
  width: 100%;
  height: auto;
}

.portfolio-block:hover .caption h4 {
  top: 45%;
}
.portfolio-block:hover .caption {
  opacity: 1;
  top: 50%;
}
.portfolio-block .caption {
  position: absolute;
  top: 60%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  z-index: 9;
  transition: all 0.2s ease-in-out;
  text-align: center;
  width: 80%;
}
.portfolio-block .caption h4 {
  font-size: 16px;
  font-weight: 600;
}
.portfolio-block .caption h4 a {
  color: #555;
}
.portfolio-block .caption .search-icon {
  background: #57cbcc;
  width: 45px;
  height: 45px;
  color: #fff;
  display: inline-block;
  font-size: 20px;
  border-radius: 30px;
  margin-bottom: 20px;
}
.portfolio-block .caption .search-icon i {
  line-height: 45px;
}
.portfolio-block{
  width: 300px;
}
.portfolio-block img
{
  height: 210px;
}


/*=================================================================
  Footer section
==================================================================*/
.social-icon {
  padding: 60px 0 35px;
}
.social-icon ul {
  text-align: center;
}
.social-icon ul li {
  margin-bottom: 4px;
}
.social-icon ul li:hover a {
  background-color: #57cbcc;
  transform: rotateY(0deg);
}
.social-icon ul li:hover a i {
  color: #fff;
  opacity: 1;
  filter: alpha(opacity=100);
  transform: rotateY(0deg);
}
.social-icon ul li a {
  background-color: #26292e;
  border: 1px solid transparent;
  display: block;
  height: 70px;
  width: 70px;
  transform: rotateY(180deg);
  transition: all 400ms ease-out 0s;
}
@media (max-width: 768px) {
  .social-icon ul li a {
    width: 55px;
    height: 55px;
  }
}
.social-icon ul li a i {
  color: #55606a;
  display: inline-block;
  font-size: 32px;
  line-height: 70px;
  margin: 0;
  opacity: 0.3;
  filter: alpha(opacity=30);
  transform: rotateY(180deg);
  transition: all 400ms ease-out 0s;
}
@media (max-width: 768px) {
  .social-icon ul li a i {
    line-height: 55px;
    font-size: 25px;
  }
}

.copyright {
  padding: 20px 0;
  color: #fff;
}
.copyright img {
  margin-bottom: 15px;
}
.copyright p {
  margin-top: 10px;
}

#scrollUp {
  border: 1px solid #4e595f;
  bottom: 15px;
  color: #fff;
  display: none;
  padding: 8px 12px;
  position: fixed;
  right: 20px;
  z-index: 600;
}

#scrollUp:hover {
  background-color: #57cbcc;
  border: 1px solid #57cbcc;
}







/*=================================================================
	Slidershow Section CSS
==================================================================*/




.slidershow .container .card {
  flex: 1;
  transition: all 1s ease-in-out;
  height: 70vmin;
  position: relative;
}

.slidershow .container .card .card__head {
  color: #FFFFF9;
  background: #57CACB;
  padding: 0.5em;
  transform: rotate(-90deg);
  transform-origin: 0% 0%;
  transition: all 0.5s ease-in-out;
  min-width: 100%;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 1em;
  white-space: nowrap;
}

.slidershow .container .card:hover {
  flex-grow: 10;
}

.slidershow .container .card:hover img {
  filter: grayscale(0);
}

.slidershow .container .card:hover .card__head {
  text-align: center;
  top: calc(100% - 2em);
  color: #57CBCC;
  background: rgba(0, 0, 0, 0.5);
  font-size: 2em;
  transform: rotate(0deg);
}

.slidershow .container .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s ease-in-out;
  filter: grayscale(100%);
}

.slidershow .container .card:not(:nth-child(5)) {
  margin-right: 1em;
}

/*=================================================================
	Sonstige CSS
==================================================================*/

.back-to-top {
  position: fixed;
  bottom: 5vh;
  right: 5vw;
  display: none;

  text-decoration: none;
  z-index: 200;
  text-align: center;





}

.wrapper.four {
  background: rgba(29, 32, 36, 0.5);

  font-family: "Anaheim", sans-serif;
  padding: 15px;
  height: 270px;
}

.four .type {
  padding: 2rem 1rem;
  width: auto;
  margin: auto;
}

.four h1 {
  color: #AFBAC4;
}

.four h3 {
  width: 40ch;
  border-right: 8px solid #57CBCC;
  margin: 2rem auto;
  white-space: nowrap;
  overflow: hidden;
  animation: typing 6s steps(40, end), blink-caret 0.5s step-end infinite alternate;
}

@-webkit-keyframes typing {
  from {
    width: 0;
  }
}

@-webkit-keyframes blink-caret {
  50% {
    border-color: transparent;
  }
}

@media screen and (max-width: 600px) {
  .four h3 {
    font-size: 1rem;
  }

}




@keyframes jump {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-30px);
  }

  60% {
    transform: translateY(-15px);
  }
}

.d {
  border: 2px solid #eee;
  border-radius: 50%;
  color: #eee;
  text-align: center;
  bottom: 50px;
  display: block;
  left: 50%;
  margin-left: -20px;
  position: absolute;
  height: 50px;
  line-height: 60px;
  width: 50px;
  z-index: 100;
  animation: jump 1s ease infinite;
}

.a {
  border-right: 4px solid #eee;
  border-bottom: 4px solid #eee;
  border-radius: 4px;
  color: #eee;
  display: inline-block;
  font-size: 0;
  height: 25px;
  line-height: 0;
  margin-top: -25px;
  text-align: center;
  vertical-align: middle;
  width: 25px;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(45deg);
}

.toUp {

  margin-top: 15px;
  border-left: 4px solid #57CBCC;
  border-top: 4px solid #57CBCC;
  border-radius: 4px;
  color: #57CBCC;
  display: inline-block;
  font-size: 0;
  height: 25px;
  line-height: 0;
  text-align: center;
  vertical-align: middle;
  width: 25px;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(45deg);
}

.arrow-up {
  cursor: pointer;
}

.arrow-up>div:first-child {
  padding-bottom: 15px;
}
