/* ? imports */

@import url(bootstrap.min.css);

/* ? fonts */

/* poppins-300 - latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  src: url("/fonts/poppins-v15-latin-300.woff2") format("woff2"),
  url("/fonts/poppins-v15-latin-300.woff") format("woff");
}

/* poppins-regular - latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/poppins-v15-latin-regular.woff2") format("woff2"),
  url("/fonts/poppins-v15-latin-regular.woff") format("woff");
}

/* poppins-500 - latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: url("/fonts/poppins-v15-latin-500.woff2") format("woff2"),
  url("/fonts/poppins-v15-latin-500.woff") format("woff");
}

/* poppins-600 - latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  src: url("/fonts/poppins-v15-latin-600.woff2") format("woff2"),
  url("/fonts/poppins-v15-latin-600.woff") format("woff");
}

/* ? global */

* {
  margin: 0;
  padding: 0;
  caret-color: transparent;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: #777;
}

.all-area {
  overflow: hidden;
}

section,
.section {
  position: relative;
}

.container {
  width: 100%;
  margin: 0 auto;
}

.container-fluid {
  padding: 0 5%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  color: #444;
  margin-bottom: 0;
}

h1 {
  font-size: 4em;
  font-weight: 600;
  line-height: 1.2;
}

:where(h1) {
  margin-block: 0.67em;
  font-size: 4em;
}

h2 {
  font-size: 40px;
  line-height: 1.2;
}

h3 {
  font-size: 20px;
  line-height: 1.2;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
  font-weight: 400;
}

p {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #777;
  margin-bottom: 0;
}

a {
  color: #444;
}

a:hover {
  color: #00cff2;
}

a,
a:hover,
a:focus,
.btn:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

ol,
ul {
  margin: 0;
  padding: 0;
}

ol li,
ul li {
  list-style: none;
}

img {
  height: auto;
  max-width: 100%;
}

/* ? common */

.fw-3 {
  font-weight: 300;
}

.fw-4 {
  font-weight: 400;
}

.fw-5 {
  font-weight: 500;
}

.fw-6 {
  font-weight: 600;
}

.op-5 {
  opacity: 0.5;
}

.avatar-sm {
  height: 3rem;
  width: 3rem;
}

.avatar-md {
  height: 4rem;
  width: 4rem;
}

.avatar-lg {
  height: 5rem;
  width: 5rem;
}

.h-100vh {
  height: 100vh;
}

.h-50vh {
  height: 50vh;
}

.radius-100 {
  border-radius: 100px !important;
}

.bg-img {
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}

.dsp-tc {
  display: table-cell;
  vertical-align: middle;
}

.owl-carousel .owl-item img {
  width: auto;
}

.owl-prev:focus,
.owl-next:focus {
  outline: none;
}

.tooltip > .tooltip-inner {
  background-color: #00cff2;
  padding: 6px;
}

.tooltip-arrow,
.tooltip.top .tooltip-arrow {
  border-top-color: #00cff2;
}

.inner-wrapper {
  min-height: 100vh;
  width: 100%;
}

/*SECTION HEADING*/
.section-heading {
  margin-bottom: 80px;
}

.section-heading > h2 {
  position: relative;
}

.section-heading > h2::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 70px;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/*HEADINGS*/
.headings span {
  color: #444;
  font-weight: 500;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  letter-spacing: 1px;
  margin-left: -30px;
}

/*SECTION PADDING*/
.pt_0 {
  padding-top: 0;
}

.ptb_15 {
  padding: 15px 0;
}

.ptb_20 {
  padding: 20px 0;
}

.ptb_40 {
  padding: 40px 0;
}

.ptb_50 {
  padding: 50px 0;
}

.ptb_100 {
  padding: 100px 0;
}

.ptb_150 {
  padding: 150px 0;
}

.ptb_180 {
  padding: 180px 0;
}

/*BUTTONS*/
.btn {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  text-align: center;
  padding: 14px 30px;
  border: 0 none;
  border-radius: 100px;
  outline: 0 none;
  position: relative;
  z-index: 1;
}

.btn:hover,
.btn:focus,
.btn:active {
  color: #fff;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn.btn-bordered {
  background: transparent none repeat scroll 0 0;
  color: #444;
}

.btn.btn-bordered:hover,
.btn.btn-bordered:focus {
  color: #fff;
}

.btn.btn-bordered:before,
.btn.btn-bordered-white:after {
  position: absolute;
  content: "";
  height: calc(100% + 4px);
  width: calc(100% + 4px);
  top: -2px;
  left: -2px;
  border-radius: 100px;
}

.btn.btn-bordered:before {
  z-index: -2;
}

.btn.btn-bordered:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  border-radius: 100px;
  background: #fff none repeat scroll 0 0;
  z-index: -1;
}

.btn.btn-bordered:hover:after,
.btn.btn-bordered:focus:after {
  opacity: 0;
  filter: none;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.btn.btn-bordered-white {
  background: transparent none repeat scroll 0 0;
  border: 2px solid #fff;
}

.btn.btn-bordered-white:hover,
.btn.btn-bordered-white:focus {
  border-color: transparent;
  outline: 0 none;
}

.btn.btn-bordered-white:after {
  opacity: 0;
  filter: none;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  z-index: -1;
}

.btn.btn-bordered-white:hover:after,
.btn.btn-bordered-white:focus:after {
  opacity: 1;
  filter: none;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.btn.btn-primary {
  background: #007bff !important;
  border-radius: 5px;
  padding: 18px 34px;
}

.button-group {
  margin-top: 30px;
}

.button-group a {
  margin-right: 10px;
}

.button-group a:last-child {
  margin-right: 0;
}

.store-buttons a {
  text-align: left;
}

.store-buttons a p {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  color: inherit;
}

.store-buttons i {
  font-size: 24px;
  padding-right: 10px;
}

.store-buttons span {
  font-size: 16px;
  font-weight: 600;
}

/*TRANSITIONS*/
.team-photo:before,
.team-photo:after {
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
.btn.btn-bordered:before,
.btn.btn-bordered:after,
.btn.btn-bordered-white:after,
#scrollUp,
.header-items .nav-link,
.dropdown-item,
.navbar-sticky,
.play-btn,
.play-btn > i,
.benefits-item,
.benefits-item:after,
.single-work::after,
.single-work > h3,
.features-menu .single-features,
.features-menu .single-features::after,
.screenshots-overlay,
.price-plan-wrapper,
.thumb-prev,
.thumb-next,
.single-team,
.team-name,
.single-blog,
.tokyo .play-text {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.featured-items ul li,
.slick-dots li button,
.testimonial-area .owl-carousel button.owl-dot {
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

/*BG SHAPE*/
.shapes-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.shape {
  position: relative;
}

.bg-shape {
  height: 720px;
  width: 1200px;
  border-radius: 120px;
  background-image: linear-gradient(35deg, #fff 0, #f6f9fe 100%);
  top: 0;
  left: 0;
  -webkit-transform: translate3d(-25%, 20%, 0) rotate(-30deg);
  transform: translate3d(-25%, 20%, 0) rotate(-30deg);
  z-index: 0;
}

.shape-1 {
  position: relative;
}

.shape-1:before {
  content: "";
  position: absolute;
  display: block;
  width: 88rem;
  height: 35rem;
  top: 17rem;
  left: -53rem;
  border-radius: 25rem;
  -webkit-transform: rotate(-44deg);
  transform: rotate(-44deg);
  background-color: #f6f9fe;
}

.shape-2 {
  position: absolute;
  height: 25px;
  width: 25px;
  border: 5px solid #0086f7;
  opacity: 0.5;
  border-radius: 50%;
  top: 15%;
  left: 25%;
  -webkit-animation: bounceShapeOne 8s ease infinite;
  animation: bounceShapeOne 8s ease infinite;
}

.shape-3 {
  position: absolute;
  height: 50px;
  width: 50px;
  border: 8px solid #0086f7;
  opacity: 0.5;
  border-radius: 50%;
  top: 18%;
  left: 26%;
  -webkit-animation: bounceShapeTwo 6s ease infinite;
  animation: bounceShapeTwo 6s ease infinite;
}

@-webkit-keyframes bounceShapeOne {
  0% {
    top: 12%;
  }

  50% {
    top: 16%;
  }

  100% {
    top: 12%;
  }
}

@keyframes bounceShapeOne {
  0% {
    top: 12%;
  }

  50% {
    top: 16%;
  }

  100% {
    top: 12%;
  }
}

@-webkit-keyframes bounceShapeTwo {
  0% {
    top: 12%;
  }

  50% {
    top: 18%;
  }

  100% {
    top: 12%;
  }
}

@keyframes bounceShapeTwo {
  0% {
    top: 12%;
  }

  50% {
    top: 18%;
  }

  100% {
    top: 12%;
  }
}

/*BORDER RADIUS*/
.single-testimonial img,
.single-testimonial-thumb img,
.team-photo,
.team-photo img,
.team-photo::before,
.team-photo::after {
  border-radius: 100% 50% 50% 100% / 75% 69% 69% 75%;
}

/*BACKGROUND OVERLAY*/
.bg-overlay,
.overlay-primary,
.overlay-dark {
  position: relative;
  z-index: 0;
}

.bg-overlay::after,
.overlay-primary:after,
.overlay-dark:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.bg-overlay::after {
  opacity: 0.9;
  z-index: -1;
}

.overlay-primary:after {
  background-image: linear-gradient(-47deg, #8731e8 0%, #4528dc 100%);
  opacity: 0.85;
  filter: none;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
  z-index: -1;
}

.overlay-dark:after {
  background-color: rgba(39, 45, 58, 1);
  opacity: 0.85;
  filter: none;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
  z-index: -1;
}

.bg-wrapper {
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}

/*BACKGROUND COLORS*/
.bg-dark {
  background-color: #1b1a1e !important;
}

.footer-bg {
  background-color: #131418 !important;
}

.bg-gray {
  background-color: #f6f9fe;
}

.bg-inherit {
  background: inherit !important;
}

.btn,
.btn:active,
.btn.btn-bordered:before,
.btn.btn-bordered-white:after,
.section-heading h2::after,
.bg-overlay::after,
.benefits-item:after,
.single-work:after,
.single-faq::after {
  background: rgba(0, 0, 0, 0) -webkit-gradient(
      linear,
      left top,
      right top,
      from(#00e4e2),
      to(#81ee8e)
    ) repeat scroll 0 0;
  background: rgba(0, 0, 0, 0)
    linear-gradient(to right, #00e4e2 0%, #81ee8e 100%) repeat scroll 0 0;
}

.pagination > li:hover a,
.pagination > li:focus a,
.pagination > li.active a,
.blockquote::after {
  background-color: #00cff2;
  color: #fff;
}

.pagination > li:hover a,
.pagination > li:focus a,
.pagination > li.active a {
  border: 1px solid #00cff2;
}

/*SOCIAL ICONS*/
.social-icons > a {
  margin: 5px;
  width: 45px;
  height: 45px;
  font-size: 20px;
  color: #fff;
  border-radius: 3px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.social-icons svg {
  display: block;
  height: 100%;
  line-height: 45px;
  margin: 0 auto;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.social-icons > a:hover svg:first-child {
  margin-top: -45px;
}

.social-icons > a.facebook {
  background-color: #3b5999 !important;
}

.social-icons > a.twitter {
  background-color: #55acee !important;
}

.social-icons > a.google-plus {
  background-color: #dd4b39 !important;
}

.social-icons > a.vine {
  background-color: #00b489 !important;
}

/*TYPED*/
.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}

.cd-words-wrapper b {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
  color: #28a745;
}

.cd-words-wrapper b.is-visible {
  position: relative;
}

.no-js .cd-words-wrapper b {
  opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

.cd-headline.clip span {
  display: inline-block;
  padding: 0.2em 0;
}

.cd-headline.clip .cd-words-wrapper {
  overflow: hidden;
  vertical-align: top;
}

.cd-headline.clip .cd-words-wrapper::after {
  /* line */
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background-color: #aebcb9;
}

.cd-headline.clip b {
  opacity: 0;
}

.cd-headline.clip b.is-visible {
  opacity: 1;
}

/* ? preloader area */

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 99999999999;
}

.spinner {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 50%;
  left: 50%;
  margin-left: -40px;
  margin-top: -40px;
  -webkit-animation: rotatee 2s infinite linear;
  animation: rotatee 2s infinite linear;
}

.dot1,
.dot2 {
  width: 60%;
  height: 60%;
  background-color: #2b2b35;
  display: inline-block;
  position: absolute;
  top: 0;
  border-radius: 100%;
  -webkit-animation: bouncee 2s infinite ease-in-out;
  animation: bouncee 2s infinite ease-in-out;
}

.dot2 {
  top: auto;
  bottom: 0px;
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

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

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

@-webkit-keyframes bouncee {
  0%,
  100% {
    -webkit-transform: scale(0);
  }

  50% {
    -webkit-transform: scale(1);
  }
}

@keyframes bouncee {
  0%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }

  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

/* ? scroll up to top */

#scrollUp {
  position: fixed;
  right: 1%;
  bottom: 3%;
  height: 40px;
  width: 40px;
  border-radius: 3px;
  background-color: #00cff2;
  text-align: center;
  cursor: pointer;
  z-index: 500;
  display: none;
}

#scrollUp > i {
  font-size: 24px;
  line-height: 38px;
  display: block;
  color: #fff;
}

#scrollUp:hover {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

/* ? header area */

.header-area {
  position: absolute;
  height: auto;
  width: 100%;
  background-color: transparent;
  z-index: 999;
}

.main-header-area {
  position: absolute;
  height: 90px;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}

.header-area .navbar {
  padding: 0;
}

.header-items .nav-link {
  color: #666;
}

.header-items .nav-item:hover .nav-link,
.header-items .nav-item:focus .nav-link,
.header-items .nav-item.active .nav-link {
  color: #444;
}

.navbar-toggler:focus {
  outline: none;
}

.navbar-light .navbar-toggler {
  border: none;
}

.mega-menu {
  width: 900px;
  margin: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  overflow: hidden;
}

.mega-menu.blog-menu {
  width: 250px;
}

.dropdown:hover .mega-menu {
  display: block;
  -webkit-animation: dropdownAnimation 0.3s ease-in-out;
  animation: dropdownAnimation 0.3s ease-in-out;
}

@-webkit-keyframes dropdownAnimation {
  0% {
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(20px);
    transform: translateX(-50%) translateY(20px);
    visibility: hidden;
    opacity: 0;
  }

  100% {
    visibility: visible;
    opacity: 1;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(0);
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes dropdownAnimation {
  0% {
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(20px);
    transform: translateX(-50%) translateY(20px);
    visibility: hidden;
    opacity: 0;
  }

  100% {
    visibility: visible;
    opacity: 1;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(0);
    transform: translateX(-50%) translateY(0);
  }
}

.dropdown-headings span {
  font-size: 18px;
  line-height: 1;
}

.dropdown-headings .slag {
  font-size: 13px;
}

.dropdown-btn .btn {
  font-size: 14px;
  padding: 12px 16px;
}

.dropdown-item {
  font-size: 15px;
  color: #777;
  padding: 0.25rem 0;
}

.dropdown-item:focus,
.dropdown-item:hover {
  color: #444;
  background-color: inherit;
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
}

.single-menu .page-title {
  font-size: 15px;
  font-weight: 500;
  color: #444;
}

.mega-menu .shape-1::before {
  width: 19rem;
  height: 15rem;
  top: 0;
  left: -4rem;
  -webkit-transform: rotate(44deg);
  transform: rotate(44deg);
}

.blog .navbar-sticky {
  background: rgb(39, 45, 58) repeat scroll 0 0;
}

/* ? welcome area */

.welcome-intro > h3 {
  font-size: 30px;
}

.miami .welcome-thumb {
  max-width: 350px;
  padding-top: 70px;
  margin: 0;
}

.welcome-area .video-icon {
  position: absolute;
  top: 50%;
  left: 70%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.play-btn {
  position: relative;
  height: 80px;
  width: 80px;
  display: inline-block;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.39);
  text-align: center;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.play-btn::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  border: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-animation: grow 2s ease infinite;
  animation: grow 2s ease infinite;
}

.play-btn > i {
  line-height: 80px;
  color: #fff;
  font-size: 20px;
}

@-webkit-keyframes grow {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }

  25% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0.5;
  }

  50% {
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes grow {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }

  25% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0.5;
  }

  50% {
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* ? benefits area */

.benefits-item:after {
  position: absolute;
  content: "";
  height: 2px;
  width: 100%;
  bottom: 0;
  left: 0;
  opacity: 0;
}

.benefits-item:hover {
  background-color: #fff;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

.benefits-item:hover:after {
  opacity: 1;
}

/* ? about area */

.about-text p {
  line-height: 1.8;
}

.about-app-area .btn.store-btn::after {
  background: #f5f7fb none repeat scroll 0 0;
}

/* ? work */

.work-area {
  z-index: 1;
}

.work-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.work-slider-wrapper {
  padding: 70px 24px 90px 27px;
  background-size: 100%;
  max-width: 293px;
  margin: 0 auto;
  margin-top: 0;
}

.single-work {
  margin-top: 50px;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  position: relative;
}

.single-work::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 0;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  visibility: hidden;
  opacity: 0;
}

.work-content .active .single-work {
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.work-content .active .single-work:after {
  width: 100%;
  visibility: visible;
  opacity: 1;
}

.work-content .active .single-work > h3 {
  color: #00cff2;
}

/* ? features */

.counter-list ul li {
  display: inline-block;
}

.counter-icon > i {
  font-size: 34px;
  color: #00cff2;
}

.counter-text > span {
  font-size: 24px;
  font-weight: 600;
  color: #444;
}

.counter-text h5 {
  font-size: 18px;
  color: #444;
}

.features-menu .single-features {
  position: relative;
}

.features-menu .single-features::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 100%;
  bottom: 0;
  left: 0;
  opacity: 0;
}

.features-menu .single-features:hover {
  background-color: #fff;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

.features-menu .single-features:hover::after {
  opacity: 1;
}

.featured-items ul {
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.featured-items ul li {
  position: absolute;
  cursor: pointer;
  border-radius: 10px;
  border-bottom: 4px solid rgba(0, 0, 0, 0.1);
  -webkit-transform: rotateY(-26deg) rotateX(13deg);
  transform: rotateY(-26deg) rotateX(13deg);
  mix-blend-mode: multiply;
}

.featured-items ul li:nth-child(1) {
  background-color: rgba(36, 198, 88, 0.2);
  top: -210px;
  z-index: 2;
}

.featured-items ul li:nth-child(2) {
  background-color: rgba(0, 207, 242, 0.2);
  top: -105px;
  z-index: 2;
}

.featured-items ul li:nth-child(3) {
  background-color: rgba(255, 69, 196, 0.2);
  top: 0;
  z-index: 2;
}

.featured-items ul li:nth-child(4) {
  background-color: rgba(255, 157, 69, 0.2);
  top: 105px;
}

.featured-items ul li:hover {
  -webkit-transform: rotateY(-22deg) rotateX(7deg) scale(1.03);
  transform: rotateY(-22deg) rotateX(7deg) scale(1.03);
  z-index: 3;
  mix-blend-mode: normal;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.features-title img {
  width: 60px;
}

.features-text > p {
  line-height: 1.8;
}

/* ? team area */

.single-team {
  background-color: #fff;
  -webkit-box-shadow: 0 0 5px -2px hsla(0, 0%, 0%, 0.15);
  box-shadow: 0 0 5px -2px hsla(0, 0%, 0%, 0.15);
  border-radius: 10px;
  margin-top: 60px !important;
}

.team-photo {
  position: relative;
  height: 120px;
  width: 120px;
  margin-top: -60px;
  border: 3px solid #fff;
  -webkit-box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.15);
}

.team-photo:before,
.team-photo:after {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}

.team-photo:before {
  content: "";
  top: 0;
  width: 114px;
  height: 114px;
  opacity: 0;
  -webkit-box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.15);
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}

.team-photo:after {
  content: "";
  top: 5px;
  width: 104px;
  height: 104px;
  background-color: rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 0 0 0 transparent;
  box-shadow: 0 0 0 0 transparent;
}

.team-photo img {
  height: 104px;
  width: 104px;
  margin: 5px;
}

.team-name {
  font-size: 18px;
}

.single-team:hover .team-name {
  color: #00cff2;
}

.team-post {
  font-size: 15px;
  font-weight: 400;
}

.team-media > a {
  font-size: 16px;
  display: inline-block;
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
}

.single-team:hover {
  -webkit-box-shadow: 0 1px 8px -2px hsla(0, 0%, 0%, 0.15);
  box-shadow: 0 1px 8px -2px hsla(0, 0%, 0%, 0.15);
}

.single-team:hover .team-photo:before {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.single-team:hover .team-photo:after {
  height: 124px;
  width: 124px;
  top: -5px;
  left: -5px;
  background-color: transparent;
  -webkit-box-shadow: 0 5px 10px rgba(0, 207, 242, 0.2);
  box-shadow: 0 5px 10px rgba(0, 207, 242, 0.2);
}

/* ? start free area */

.start-free-area {
  padding-top: 50px;
  padding-bottom: 50px;
  z-index: 1;
}

.start-free-content {
  padding: 5rem;
  border-radius: 10px;
  background-color: #fff;
}

.start-free-text > h2 {
  font-size: 2.5em;
}

.start-free-text span {
  font-size: 16px;
}

.start-free-btn .btn {
  font-size: 16px;
  padding: 18px 50px;
}

/* ? blog area */

.blog-area {
  z-index: 1;
}

.single-blog {
  background-color: #fff;
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}

.blog-thumb img {
  display: block;
  width: 100%;
  border-radius: 6px;
}

.blog-content > p {
  line-height: 1.8;
}

.blog-btn {
  position: relative;
  display: inline-block;
}

.blog-btn::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 100%;
  background-color: #00cff2;
  border-radius: 4px;
  bottom: 0;
  left: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-transition: -webkit-transform 0.3s ease-in 0s;
  transition: -webkit-transform 0.3s ease-in 0s;
  transition: transform 0.3s ease-in 0s;
  transition: transform 0.3s ease-in 0s, -webkit-transform 0.3s ease-in 0s;
}

.blog-btn:hover::after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: left;
  transform-origin: left;
}

.single-blog:hover {
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
}

/* ? breadcrumb area */

.breadcrumb-area {
  height: 350px;
  z-index: 1;
}

.breadcrumb-content > h3 {
  font-size: 38px;
}

.breadcrumb {
  background-color: transparent;
  margin: 0;
}

.blog .breadcrumb-item > a,
.blog .breadcrumb-item,
.blog .breadcrumb-item::before,
.blog .breadcrumb-item.active {
  color: #fff;
}

/* ? blog area */

.blog .navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.blog .single-blog {
  margin-bottom: 45px;
}

.pagination > li > a {
  font-size: 14px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  display: inline-block;
  border: 1px solid #444;
  color: #444;
  text-align: center;
}

.pagination li:first-child a,
.pagination li:last-child a {
  display: block;
  border: none;
  position: relative;
}

.pagination li:first-child:hover a,
.pagination li:last-child:hover a {
  background: none;
  color: inherit;
  border: none;
}

.pagination li:first-child:hover a {
  -webkit-transform: translateX(-4px);
  transform: translateX(-4px);
}

.pagination li:last-child:hover a {
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
}

/* ? contact area */

.contact-box .form-group input,
.contact-box .form-group textarea {
  font-size: 14px;
  height: 50px;
  padding: 0 15px;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.contact-box .form-group textarea {
  height: 200px;
  padding: 15px;
}

.contact-box .form-group input::-webkit-input-placeholder,
.contact-box .form-group textarea::-webkit-input-placeholder {
  color: rgba(68, 68, 68, 0.6);
}

.contact-box .form-group input:-ms-input-placeholder,
.contact-box .form-group textarea:-ms-input-placeholder {
  color: rgba(68, 68, 68, 0.6);
}

.contact-box .form-group input::placeholder,
.contact-box .form-group textarea::placeholder {
  color: rgba(68, 68, 68, 0.6);
}

.contact-box input:focus,
.contact-box textarea:focus,
.contact-box select:focus {
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.contact-box button {
  padding: 12px 26px;
}

/*Map Area*/
.map-area {
  height: 550px;
  width: 100%;
}

.map-area iframe {
  height: 100%;
  width: 100%;
}

@media (max-width: 575px) {
  .map-area {
    height: 450px;
  }
}

/* ? footer */

.footer-area .social-icons > a {
  width: 40px;
  height: 40px;
  font-size: 18px;
}

.footer-area .social-icons > a:hover svg:first-child {
  margin-top: -40px;
}

.copyright-area {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
}

.footer-area .footer-items a:hover,
.footer-area .footer-items a:focus,
.footer-area .copyright-area a:hover,
.footer-area .copyright-area a:focus {
  color: #00cff2 !important;
}

.footer-area .social-icons > a:hover,
.footer-area .social-icons > a:focus {
  color: #fff !important;
}

/* ? FAQ */

.single-faq {
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 45px;
  position: relative;
}

.faq-area .col-12:last-child .single-faq {
  margin-bottom: 0;
}

.single-faq::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 100%;
  left: 0;
  bottom: 0;
}

.single-faq > h5 {
  font-size: 15px;
}

/* ? login area */

.login-area .btn.btn-bordered:before,
.login-area .btn.btn-bordered-white:after {
  background: rgba(0, 0, 0, 0) -webkit-gradient(
      linear,
      left top,
      right top,
      from(#4e4376),
      to(#2b5876)
    ) repeat scroll 0 0;
  background: rgba(0, 0, 0, 0)
    linear-gradient(to right, #4e4376 0%, #2b5876 100%) repeat scroll 0 0;
}

.appo-modal .modal-header .nav-link {
  font-size: 17px;
  font-weight: 500;
  color: #444;
  padding: 1rem 2.5rem;
  -webkit-box-shadow: inset 0 0 30px rgba(3, 37, 51, 0.1);
  box-shadow: inset 0 0 30px rgba(3, 37, 51, 0.1);
  background-color: rgba(3, 37, 51, 0.05);
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
  background-color: #fff;
}

.login-form .profile-login {
  position: relative;
}

.profile-login::before,
.profile-login span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.profile-login span {
  font-size: 15px;
}

.login-form .profile-login::before {
  content: "";
  height: 1px;
  width: 100%;
  background-color: #eee;
}

.login-form input {
  font-size: 15px;
  height: 45px;
  border: 1px solid #eee;
  padding: 0 15px;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: 1s;
  transition: 1s;
}

.login-form input::-webkit-input-placeholder {
  color: rgba(68, 68, 68, 0.3);
}

.login-form input:-ms-input-placeholder {
  color: rgba(68, 68, 68, 0.3);
}

.login-form input::placeholder {
  color: rgba(68, 68, 68, 0.3);
}

.input-group-text {
  background-color: #fff;
  border: 1px solid #eee;
}

.login-form input:focus {
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.login-form .custom-control .custom-control-label {
  color: #444;
}

/* ? download area */

.download-page-area h2 {
  color: #0433b5;
}

.download-page-area h6 {
  line-height: 1.8;
}

.download-page-area h6 > a {
  text-decoration: underline;
}

/* ? forgot area */

.reset-password button {
  height: 50px;
  border-radius: 0;
}

/* ? newsletter area */

.form-control {
  font-size: 15px;
  height: 50px;
  border: none;
  outline: none;
  padding-left: 20px;
  border-radius: 0;
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.form-control:focus {
  border: none;
  outline: none;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.newsletter-area button {
  height: 50px;
  border-radius: 0;
}

/* !  -------------------- RESPONSIVE --------------------  */

/* ? global */

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ptb_180 {
    padding: 130px 0;
  }

  .ptb_150 {
    padding: 100px 0;
  }

  .ptb_100 {
    padding: 70px 0;
  }
}

@media (max-width: 991px) {
  .res-margin {
    margin-bottom: 45px;
  }
}

@media (max-width: 767px) {
  .inner-wrapper h1,
  .inner-wrapper h2 {
    font-size: 30px;
  }

  .ptb_180 {
    padding: 130px 0;
  }

  .ptb_150,
  .ptb_100 {
    padding: 50px 0;
  }

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

@media (max-width: 575px) {
  .inner-wrapper h1,
  .inner-wrapper h2 {
    font-size: 24px;
  }

  .avatar-lg {
    height: 4rem;
    width: 4rem;
  }

  .container-fluid {
    padding: 0 3%;
  }

  .ptb_180 {
    padding: 80px 0;
  }

  .ptb_150,
  .ptb_100 {
    padding: 30px 0;
  }
}

/*SECTION HEADING*/
@media (max-width: 991px) {
  h1 {
    font-size: 3em;
  }

  h2 {
    font-size: 36px;
  }

  .section-heading {
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 2.8em;
  }

  h2 {
    font-size: 30px;
    line-height: 1.4;
  }
}

@media (max-width: 575px) {
  h1 {
    font-size: 2em;
    line-height: 1.4;
  }

  h2 {
    font-size: 24px;
    line-height: 1.4;
  }

  h3 {
    font-size: 18px;
    line-height: 1.4;
  }

  p {
    line-height: 26px;
  }

  .headings > h2,
  .section-heading > h2 {
    line-height: 1.5;
  }
}

/*BUTTONS*/
@media (max-width: 575px) {
  .button-group a {
    margin-top: 0;
    margin-right: 5px;
  }

  .button-group .btn {
    padding: 12px 20px;
  }

  .store-buttons i {
    font-size: 22px;
    padding-right: 8px;
  }

  .store-buttons a p {
    font-size: 12px;
    line-height: 1.4;
  }

  .store-buttons span {
    font-size: 15px;
  }

  .forgot-area .input-group .btn.btn-primary,
  .newsletter-area .input-group .btn.btn-primary {
    border-radius: 5px !important;
  }
}

/*SHAPES*/
@media (max-width: 991px) {
  .shape-2 {
    left: 16%;
  }

  .shape-3 {
    left: 18%;
  }
}

@media (max-width: 767px) {
  .bg-shape {
    width: 580px;
    top: -10%;
    left: 0;
  }
}

@media (max-width: 575px) {
  .bg-shape {
    width: 320px;
    height: 550px;
  }

  .shape-1::before {
    height: 25rem;
    width: 75rem;
  }
}

/*TYPED*/
@media (max-width: 767px) {
  .cd-headline {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .cd-headline {
    font-size: 20px;
  }
}

/* ? header area */

@media (max-width: 991px) {
  .mega-menu {
    width: 590px;
  }
}

@media (min-width: 768px) {
  .nav-white .header-items .nav-link,
  .nav-white .header-items .nav-item:hover .nav-link,
  .nav-white .header-items .nav-item:focus .nav-link,
  .nav-white .header-items .nav-item.active .nav-link {
    color: #fff;
  }
}

@media (max-width: 767px) {
  .dropdown-item {
    padding: 0.5rem 0;
  }

  .dropdown:hover .mega-menu {
    display: none;
    -webkit-animation: none;
    animation: none;
  }

  .dropdown-menu.show {
    display: block !important;
  }

  .dropdown-toggle::after {
    position: -webkit-sticky;
    position: sticky;
    left: 100%;
  }

  .mega-menu {
    width: 100%;
    left: auto;
    -webkit-transform: inherit;
    transform: inherit;
    background-color: transparent;
    border: none;
    padding: 0;
  }

  .mega-menu .single-menu {
    margin-bottom: 1rem;
  }

  .mega-menu .col-12:last-child .single-menu {
    margin-bottom: 0;
  }

  .dropdown-item:focus,
  .dropdown-item:hover {
    -webkit-transform: inherit;
    transform: inherit;
  }
}

/* ? welcome area */

@media (max-width: 991px) {
  .welcome-area {
    height: 700px;
  }

  .welcome-intro > h3 {
    font-size: 28px;
  }

  .miami .welcome-thumb {
    padding-top: 0;
  }
}

@media (max-width: 767px) {
  .welcome-area {
    height: 100%;
    padding-top: 90px;
  }

  .welcome-intro {
    margin-top: 30px;
  }

  .welcome-intro > h3 {
    font-size: 26px;
  }

  .welcome-thumb {
    margin: 0 !important;
  }
}

@media (max-width: 575px) {
  .welcome-intro {
    margin-top: 0;
  }

  .welcome-intro > h3 {
    font-size: 22px;
  }

  .miami .welcome-thumb {
    max-width: 250px;
    margin: 0 auto !important;
  }
}

/* ? benefits area */

@media (max-width: 767px) {
  .benefits-item {
    text-align: center;
  }
}

/* ? about area */

@media (max-width: 575px) {
  .about-text p {
    line-height: 26px;
  }
}

/* ? work area */

@media (min-width: 992px) {
  .work-content .col-12:nth-child(2n + 1) .single-work {
    margin-right: 180px;
  }

  .work-content .col-12:nth-child(2n) .single-work {
    margin-left: 180px;
  }
}

@media (max-width: 991px) {
  .work-wrapper {
    position: inherit;
    -webkit-transform: inherit;
    transform: inherit;
    top: auto;
    left: auto;
  }

  .single-work {
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .single-work {
    margin-top: 20px;
  }

  .work-content .col-sm-6:first-child .single-work {
    margin-top: 0;
  }
}

/* ? features area */

@media (max-width: 991px) {
  .counter-list ul li {
    width: 49%;
  }

  .counter-text > span {
    font-size: 26px;
  }

  .counter-text h5 {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .featured-items {
    margin-top: 4rem;
  }

  .featured-items ul {
    -webkit-perspective: inherit;
    perspective: inherit;
  }

  .featured-items ul li,
  .moscow .featured-items ul li {
    position: inherit;
    mix-blend-mode: inherit;
    -webkit-transform: inherit;
    transform: inherit;
  }

  .features-text > h3 {
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 575px) {
  .featured-items {
    margin-top: 3rem;
  }

  .featured-items ul li:hover {
    -webkit-transform: inherit;
    transform: inherit;
  }

  .features-text > p {
    line-height: 26px;
  }
}

/* ? download area */

@media (max-width: 767px) {
  .download-text > h2 {
    font-size: 2.5em;
  }
}

@media (max-width: 575px) {
  .download-text > h2 {
    font-size: 2em;
  }

  .button-group a:nth-child(2) {
    margin-right: 0;
  }
}

/* ? breadcrumb area */

@media (max-width: 991px) {
  .breadcrumb-content > h3 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .breadcrumb-area {
    height: 300px;
  }

  .breadcrumb-content > h3 {
    font-size: 24px;
  }
}

/* ? blog page area */

@media (max-width: 991px) {
  .sidebar .single-widget:last-child {
    margin-bottom: 35px;
  }

  .blog-right .sidebar .single-widget:first-child {
    margin-top: 35px;
  }

  .blog-right .sidebar .single-widget:last-child {
    margin-bottom: 0;
  }

  .post-content h6 {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .post-content h6 {
    font-size: 16px;
  }

  .appo-blog .blog-details .blog-title > a {
    font-size: 22px;
  }

  .admin-name {
    font-size: 18px;
  }

  .comments,
  .blog-contact {
    margin-left: 100px;
  }

  .comments-content a:last-child {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .appo-blog .blog-details .blog-title > a {
    font-size: 20px;
    line-height: 1.5;
  }

  .meta-info {
    font-size: 13px;
  }

  .comments,
  .blog-contact {
    margin-left: 0;
  }
}

/* ? footer area */

@media only screen and (min-width: 576px) and (max-width: 991px) {
  .footer-items {
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .footer-items {
    margin-bottom: 30px;
  }

  .footer-area .col-12:last-of-type .footer-items {
    margin-bottom: 0;
  }
}

/* !  -------------------- ADJUSTMENTS --------------------  */

/* ? changes  */

/* in in :: 2.0 IMPORT ALL CSS */

/*
    - removed @import url(/web/20220706215124cs_/https://georglauterbach.de/assets/css/owl.carousel.min.css);
*/

/* in :: 3.0 GLOBAL CSS */

h1,
h2,
h3,
h4,
h5,
h6 {
  pointer-events: none;
  outline: none;
  cursor: none;
}

h1:focus,
h2:focus,
h3:focus,
h4:focus,
h5:focus,
h6:focus {
  outline: none;
}

/* in :: 4.0 COMMON CSS */

/*
    - removed all BACKGROUND IMAGES
*/

.ptb_100 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

@media (max-width: 767px) {
  .ptb_100 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
    /* margin-top: 20px !important; */
  }
}

/* in :: 7.0 HEADER AREA CSS */

.main-header-area {
  height: 44px;
  background-color: #1b1a1e;
}

.navbar-brand .logo {
  max-height: 30px;
}

/*
    - removed text-transform: uppercase; in .header-items .nav-link
*/

.header-items .nav-link {
  font-size: 14px;
  font-weight: 300;
}

.single-menu .page-title {
  color: #777;
}

/* removed

.navbar-sticky {
    position: fixed;
    width: 100%;
    height: 60px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 30px 1px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 30px 1px rgba(0, 0, 0, 0.15);
    border-bottom: none;
    z-index: 1000 !important;
}

.navbar-sticky.hide {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}

*/

/* in :: 17.0 START FREE AREA CSS */

@media (min-width: 768px) {
  .start-free-area {
    padding-top: 150px;
    padding-bottom: 0px;
  }
}

.start-free-area {
  padding-bottom: 150px;
  z-index: 1;
}

/* in :: 38.0 COMING SOON AREA CSS */

.countdown-container .countdown-heading {
  color: white;
}

.countdown-container .countdown-value {
  color: white;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
}

/* in :: 2.0 HEADER AREA CSS */

@media (min-width: 768px) {
  .nav-white .header-items .nav-link,
  .nav-white .header-items .nav-item .nav-link,
  .nav-white .header-items .nav-item:link .nav-link,
  .nav-white .header-items .nav-item:visited .nav-link {
    color: #bbb;
  }

  .nav-white .header-items .nav-item:hover .nav-link {
    color: #fff;
  }

  .navbar-collapse .header-items {
    display: inline-flex;
    justify-content: space-between;
  }

  .main-header-area .align-center {
    display: flex;
    justify-content: center;
  }

  .nav-item a {
    text-align: center;
  }
}

/*
  - removed #appo-menu
*/

.main-header-area .align-center .navbar {
  display: flex;
  justify-content: space-between;
}

/* ? custom additions */

/* color themes */

:root {
  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  .background {
    background-color: #1b1a1e !important;
  }

  .theme .bg-shape,
  .theme .shape-1::before,
  .theme .navbar-sticky,
  .theme .single-work,
  .theme .featured-items ul li,
  .theme .single-team,
  .theme .start-free-content,
  .theme .single-blog,
  .theme .contact-box .form-group input,
  .theme .contact-box .form-group textarea {
    background: #30353c !important;
  }

  .theme .navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

  .theme .btn.btn-bordered::after {
    background: #30353c none repeat scroll 0 0;
  }

  .theme .btn,
  .theme .btn:active,
  .theme .btn.btn-bordered:before,
  .theme .btn.btn-bordered-white:after,
  .theme .section-heading h2::after,
  .theme .bg-overlay::after,
  .theme .benefits-item:after,
  .theme .single-work:after,
  .theme .single-faq::after {
    background: rgba(0, 0, 0, 0) -webkit-gradient(
        linear,
        left top,
        right top,
        from(#e49b91),
        to(#f8d9af)
      ) repeat scroll 0 0;
    background: rgba(0, 0, 0, 0)
      linear-gradient(to left, #e49b91 0%, #f8d9af 100%) repeat scroll 0 0;
  }

  .theme .benefits-item:hover {
    background-color: transparent;
  }

  .theme .benefits-item:hover:after {
    display: none;
  }

  .theme .contact-box .form-group input,
  .theme .contact-box .form-group textarea {
    color: #fff;
  }

  .theme .contact-box .form-group input::-webkit-input-placeholder,
  .theme .contact-box .form-group textarea::-webkit-input-placeholder {
    color: #fff;
  }

  .theme .contact-box .form-group input:-ms-input-placeholder,
  .theme .contact-box .form-group textarea:-ms-input-placeholder {
    color: #fff;
  }

  .theme .contact-box .form-group input::placeholder,
  .theme .contact-box .form-group textarea::placeholder {
    color: #fff;
  }

  .theme .btn.btn-bordered.contact-special:before {
    background: rgba(0, 0, 0, 0)
      linear-gradient(to right, #e49b91 0%, #f8d9af 100%) repeat scroll 0 0;
  }

  .theme .btn.btn-bordered.contact-special:after {
    background: rgba(0, 0, 0, 0)
      linear-gradient(to right, #e49b91 0%, #f8d9af 100%) repeat scroll 0 0;
  }

  .theme .bg-shape,
  .theme .shape-1::before,
  .theme .navbar-sticky,
  .theme .single-work,
  .theme .featured-items ul li,
  .theme .single-team,
  .theme .start-free-content,
  .theme .single-blog,
  .theme .contact-box .form-group input,
  .theme .contact-box .form-group textarea {
    background: #1b1a1e !important;
  }

  .theme .btn.btn-bordered::after {
    background: #1b1a1e none repeat scroll 0 0;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  a,
  li,
  button,
  a.btn span {
    color: #ffffff !important;
  }

  a:hover {
    color: #0dcaf0 !important;
  }

  a span:hover {
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    color: #444;
  }
}

@media (prefers-color-scheme: light) {
  .background {
    background-color: #ffffff;
  }

  .theme .btn,
  .theme .btn:active,
  .theme .btn.btn-bordered:before,
  .theme .btn.btn-bordered-white:after,
  .theme .section-heading h2::after,
  .theme .bg-overlay::after,
  .theme .benefits-item:after,
  .theme .single-work:after,
  .theme .single-faq::after {
    background: rgba(0, 0, 0, 0) -webkit-gradient(
        linear,
        left top,
        right top,
        from(#cb88d2),
        to(#7c75f0)
      ) repeat scroll 0 0;
    background: rgba(0, 0, 0, 0)
      linear-gradient(to right, #cb88d2 0%, #7c75f0 100%) repeat scroll 0 0;
  }

  .theme .btn.btn-bordered.contact-special {
    color: #fff;
  }

  .theme .btn.btn-bordered.contact-special:after {
    background: rgba(0, 0, 0, 0) -webkit-gradient(
        linear,
        left top,
        right top,
        from(#cb88d2),
        to(#7c75f0)
      ) repeat scroll 0 0;
    background: rgba(0, 0, 0, 0)
      linear-gradient(to left, #cb88d2 0%, #7c75f0 100%) repeat scroll 0 0;
  }

  .theme .btn.btn-bordered.contact-special:before {
    background: rgba(0, 0, 0, 0) -webkit-gradient(
        linear,
        left top,
        right top,
        from(#cb88d2),
        to(#7c75f0)
      ) repeat scroll 0 0;
    background: linear-gradient(to left, #cb88d2 0%, #7c75f0 100%) repeat scroll
      0 0;
  }

  .theme .btn.btn-bordered.contact-special:hover,
  .theme .btn.btn-bordered.contact-special:focus,
  .theme .btn.btn-bordered.contact-special:active {
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    color: #444;
  }

  /* burger menu RIGA */

  .theme .navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

  .text-theme {
    color: #444444;
  }
}

/* navbar */

nav {
  width: 100%;
  justify-content: center;
  position: fixed !important;
  background-color: #131418 !important;
  opacity: 97% !important;
}

nav .collapse {
  flex-grow: unset;
}

.navbar > .container,
.navbar > .container-fluid {
  justify-content: center;
}

.navbar-brand {
  padding-right: 55px;
  margin-right: 0px;
}

.white-bg {
  background-color: white;
}

@media (max-width: 767px) {
  .navbar-brand {
    padding-left: 10px;
  }

  .navbar-collapse {
    border-color: #131418;
    background-color: #131418 !important;
    transition: ease-in-out 0.4s !important;
  }

  .navbar-collapse .header-items {
    max-height: 100% !important;
    height: calc(100vh - 22px);
    min-height: calc(100vh - 22px);
  }

  .navbar-collapse .header-items a {
    text-align: center;
    color: white !important;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .navbar-collapse .header-items:first-child {
    padding-top: 15px;
  }

  .navbar > .container,
  .navbar > .container-fluid {
    justify-content: space-between;
  }
}

/* link hover effect for logo brand in nav */

.brand-container a img {
  opacity: 70%;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

.brand-container:hover a img {
  opacity: 100%;
}

@media (max-width: 767px) {
  .welcome-intro {
    text-align: center;
  }
}

/* heading */

@media (min-width: 768px) {
  .two-button-spacing-left {
    margin-left: 0.5em;
  }

  .two-button-spacing-right {
    margin-right: 0.5em;
  }

  .mobile-br {
    display: none;
  }
}

/* forms */

.form-group {
  background: #444;
}

.form-control {
  caret-color: #444;
  background: rgb(250, 245, 250);
}

/* section heading padding */

.section-top-space {
  margin-top: 50px;
}

.section-heading-space {
  padding-top: 100px;
  padding-bottom: 20px;
}

/* footer */

.footer-padding {
  padding-bottom: 130px;
}

.footer-no-link {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* imprint */

.legal-text {
  font-size: 16px;
  font-weight: 300;
  padding-bottom: 15px;
  pointer-events: none;
  outline: none;
  cursor: none;
}

/* privacy */

.privacy-section {
  padding-top: 50px;
  padding-bottom: 20px;
}

/* !  -------------------- TEXTS --------------------  */

/* disables caret and cursor interaction */
.no-interaction {
  -webkit-user-select: none; /* Chrome all / Safari all */
  -moz-user-select: none; /* Firefox all */
  -ms-user-select: none; /* IE 10+ */
  user-select: none;
}

.company-name::after {
  content: "IT-Dienstleister Georg Lauterbach";
}

/* index */

.index-heading::after {
  line-height: 1.5em !important;
  content: "IT-Consulting, Support und Dienstleistungen\A für Unternehmen";
  white-space: pre-line;
}

.index-about::after {
  content: "Résumé";
}

.index-services::after {
  content: "Dienstleistungen";
}

.index-contact::after {
  content: "Kontakt aufnehmen";
}

/* legal */

.adresse-strasse::after {
  content: "Altenzeller Straße 15A";
  white-space: pre;
}

.adresse-stadt::after {
  content: "01069 Dresden";
}

/* imprint */

.imprint-heading::after {
  content: "Impressum";
}

.imprint-about::after {
  content: "Angaben gemäß § 5 TMG";
}

/* privacy */

.privacy-heading::after {
  content: "Datenschutzrichtlinie";
}

/* errors */

.error-404-heading::after {
  content: "Leider wurde die gewünschte Seite nicht gefunden.";
}

/* !  -------------------- TIMELINE --------------------  */

.timeline {
  height: auto;
  max-width: 800px;
  margin: auto auto;
  position: relative;
  text-align: left;
}

.timeline ul {
  list-style: none;
}

.timeline ul li {
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.timeline ul li:last-child {
  margin-bottom: 0;
}

.timeline-content .date {
  margin-bottom: 15px;
}

@media (prefers-color-scheme: dark) {
  .timeline ul li {
  background-color: #262729;
  }
}

@media (prefers-color-scheme: light) {
  .timeline ul li {
  background-color: #eeeeee;
  }
}

@media only screen and (min-width: 768px) {
  .timeline:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
  }
  .timeline ul li {
    width: 50%;
    position: relative;
    margin-bottom: 50px;
  }

  .timeline ul li:nth-child(odd) {
    float: left;
    clear: right;
    transform: translateX(-30px);
    border-radius: 20px 0px 20px 20px;
  }

  .timeline ul li:nth-child(even) {
    float: right;
    clear: left;
    transform: translateX(30px);
    border-radius: 0px 20px 20px 20px;
  }

  .timeline ul li::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    top: 0px;
  }

  .timeline ul li:nth-child(odd)::before {
    transform: translate(50%, -50%);
    right: -30px;
  }

  .timeline ul li:nth-child(even)::before {
    transform: translate(-50%, -50%);
    left: -30px;
  }

  .timeline-content .date {
    position: absolute;
    top: -35px;
  }
}

/* !  -------------------- COOKIES --------------------  */

.cookie-consent-banner {
  position: absolute;
  z-index: 1;
  display: none;
}

.cookie-consent-accept {
  font-size: 14px;
  padding: 5px 10px;
  margin-left: 15px;
}

/* !  -------------------- CUSTOM --------------------  */

.text-white {
  color: white;
}

.text-no-pointer-nor-cursor {
  pointer-events: none;
  cursor: none";
}

.text-pointer-initial {
  pointer-events: initial;
}

.text-kontakt {
  font-size: 16px;
  font-weight: 300;
  padding-bottom: 15px;
}

.pl_40 {
  padding-left: 40px;
}

.list-style-decimal {
  list-style: decimal;
}

.list-style-upper-roman {
  list-style: upper-roman;
}

.section-privacy-overview {
  padding-left: 25px;
  font-size: 15px;
  font-weight: 300;
}
