:root {
  --brand: #32dbc6;
  --brandDark: #198e80;
  --dark: #575757;
  --light: #f9f9f9;
  --text: #707070;
  --top-height: 2.5rem;
  --nav-height: 6rem;
  --transition: .3s ease all;
  --radius: 1.5rem;

  --primary: #ecf1f1;
  --secondary: #ecf1f1;
  --gray: #e3ebeb;
  --border-color: var(--gray);
  --bs-border-color: var(--border-color);
}
:root .scrolled {
  --nav-height: 5rem;
}
@media screen and (max-width: 768px) {
  :root {
    --top-height: 2rem;
  }
}

html {
  scroll-behavior: unset !important;
}

body {
  line-height: 1.7;
  color: #4d4d4d;
  font-weight: 400;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  background-color: var(--light);
  margin-top: calc(var(--nav-height) + var(--top-height));
}

::-moz-selection {
  background: #000;
  color: #fff;
}
::selection {
  background: #000;
  color: #fff;
}

h1,
h2,
h3,
h4,
h5,
.h1,
.h2,
.h3,
.h4,
.h5 {
  color: var(--dark);
  font-family: "Cabin", sans-serif;
  font-weight: 900;
}

.brand {
  color: var(--brand);
}

p, ul, li {
  color: var(--text);
}

a,
a:hover {
  text-decoration: none;
  color: var(--brand);
}
a {
  word-wrap: break-word;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
a.text-brand {
  color: var(--brand);
}
p a:hover,
li a:hover {
  opacity: 0.75;
}

li:not(.content) {
  list-style: none;
}
ul:not(.content),
ol:not(.content) {
  padding-left: 0;
}

section {
  padding: 80px 0;
}
section h3 {
  color: var(--text);
  font-size: 1.2rem;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  opacity: 0.8;
}

/* BS Resets */
.btn {
  border-radius: 100px;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
  line-height: 1.5;
  padding: 15px 30px;
  letter-spacing: 0.1em;
}
.btn:hover {
  border: 1px solid transparent !important;
}
.btn-primary {
  color: var(--dark);
  background-color: var(--brand);
}
.btn-primary:hover {
  color: #fff;
  background-color: var(--brandDark) !important;
}
.btn-secondary {
  background-color: transparent;
  border: 1px solid var(--light);
}
.cta h2 {
  color: var(--light);
}
.cta:hover .btn-secondary,
.btn-secondary:hover {
  color: var(--dark) !important;
  background-color: var(--light) !important;
}
.text-black {
  color: var(--dark) !important;
}
.bg-dark {
  background: #343a40 !important;
}
.bg-light {
  background: var(--light) !important;
}
.bg-primary {
  background-color: var(--brand) !important;
}
.top-bar {
  z-index: 1;
  height: var(--top-height);
  display: flex;
  align-items: center;
}
.top-bar a {
  color: var(--brand);
}
.social-media {
  display: flex;
}
@media screen and (max-width: 390px) {
  .social-media {
  }
}
.site-logo {
  display: flex;
  justify-content: flex-start;
  top: 0 !important;
}
.site-logo a {
  display: flex;
  align-items: center;
}
.text-muted {
  color: #aaa !important;
  font-size: 12px;
  text-transform: uppercase;
}
/* Nav */

.nav-link {
  color: #000;
  padding: 5px 20px !important;
}
.navbar img {
  max-height: 35px;
  width: 100%;
  object-fit: contain;
  width: auto;
}
.navbar {
  position: fixed;
  transition: 0.3s ease;
  z-index: 10;
  top: var(--top-height);
  height: var(--nav-height);
  display: flex;
  align-items: center;
}
.freeCreations .navbar {
  top: 0;
}
.navbar-collapse {
  flex-grow: 0;
  margin-left: auto;
  background: var(--light);
}

@media screen and (max-width: 992px) {
  .navbar-collapse {
    width: 100%;
    position: fixed;
    z-index: 9;
    display: block;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.2s;
  }
  .navbar-collapse ul.navbar-nav {
    position: absolute;
    top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .navbar-collapse ul.navbar-nav li {
    opacity: 0;
    transition: opacity 0.2s cubic-bezier(0.58, 0.3, 0.005, 1);
    padding: 0;
    margin-bottom: 20px;
  }
  .navbar-collapse ul.navbar-nav li a {
    font-size: 40px;
    padding: 0;
  }
  .navbar-collapse ul.navbar-nav li a.btn-extra {
    padding: 15px 35px !important;
  }
  .navbar-collapse.show {
    min-height: 100vh;
    visibility: visible;
    opacity: 1;
    z-index: 9;
  }
  .navbar-collapse.show ul li {
    opacity: 1;
  }
  .navbar-collapse.show ul li:nth-child(1) {
    transition-delay: 0.06s;
  }
  .navbar-collapse.show ul li:nth-child(2) {
    transition-delay: 0.12s;
  }
  .navbar-collapse.show ul li:nth-child(3) {
    transition-delay: 0.18s;
  }
  .navbar-collapse.show ul li:nth-child(4) {
    transition-delay: 0.24s;
  }
  .navbar-collapse.show ul li:nth-child(5) {
    transition-delay: 0.3s;
  }
  .navbar-collapse.show ul li:nth-child(6) {
    transition-delay: 0.36s;
  }
}

.scrolled .navbar {
  box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0px;
  height: var(--nav-height);
}
.scrolled .top-bar {
  transition: 0.3s ease;
  transition-delay: 0.2s;
  top: calc(-1 * var(--top-height));
}

.navbar-toggler {
  padding-left: 0;
  z-index: 99;
}
.navbar-toggler,
.navbar-toggler:focus {
  border: 0;
  outline: none;
  box-shadow: none;
  transform: scaleX(-1);
}
/* Define the shape and color of the hamburger lines */
.navbar-toggler span {
  display: block;
  background-color: var(--dark);
  height: 3px;
  width: 25px;
  margin-top: 5px;
  margin-bottom: 5px;
  position: relative;
  left: 0;
  opacity: 1;
  transition: all 0.35s ease-out;
  transform-origin: center left;
}
/* top line needs a little padding */
.navbar-toggler span:nth-child(1) {
  margin-top: 0.3em;
}
/**
 * Animate collapse into X.
 */
/* top line rotates 45 degrees clockwise and moves up and in a bit to close the center of the X in the center of the button */
.navbar-toggler:not(.collapsed) span:nth-child(1) {
  transform: translate(15%, -33%) rotate(45deg);
  width: auto;
}
/* center line goes transparent */
.navbar-toggler:not(.collapsed) span:nth-child(2) {
  opacity: 0;
}
/* bottom line rotates 45 degrees counter clockwise, in, and down a bit to close the center of the X in the center of the button  */
.navbar-toggler:not(.collapsed) span:nth-child(3) {
  transform: translate(15%, 33%) rotate(-45deg);
  width: auto;
}
/**
 * Animate collapse open into hamburger menu
 */
/* top line moves back to initial position and rotates back to 0 degrees */
.navbar-toggler span:nth-child(1) {
  transform: translate(0%, 0%) rotate(0deg);
  width: 80%;
}
/* middle line goes back to regular color and opacity */
.navbar-toggler span:nth-child(2) {
  opacity: 1;
}
/* bottom line goes back to initial position and rotates back to 0 degrees */
.navbar-toggler span:nth-child(3) {
  transform: translate(0%, 0%) rotate(0deg);
  width: 60%;
}
.navbar-toggler span:nth-child(4) {
  transform: translate(0%, 0%) rotate(0deg);
  visibility: hidden;
  width: 50px;
}

footer li {
  margin-bottom: 10px;
  font-weight: 100;
}
footer li a {
  color: #cfcfcf;
  display: flex;
  align-items: center;
}
footer li a:hover i {
  color: var(--brand);
}
.site-footer {
  background: #343a40;
  color: #a0a0a0;
}
.site-footer *,
.site-footer h4 {
  color: #cfcfcf;
}
.site-footer h4,
.site-footer h6 {
  font-weight: 800;
}
.site-footer a img {
  max-width: 100%;
  height: 50px;
  object-fit: contain;
}
@media screen and (max-width: 576px) {
  .scrolled .navbar {
    top: 0px;
    padding: 0.3rem;
  }
}
.hero {
  margin-top: 100px;
  z-index: 0;
  overflow-x: hidden;
}
@media screen and (min-width: 991px) {
  .hero {
    margin-top: 100px;
  }
}
@media screen and (max-width: 768px) {
  .hero {
    background-attachment: scroll !important;
  }
}
.w80 {
  max-width: 80%;
}
@media screen and (max-width: 768px) {
  .w80 {
    max-width: 100%;
  }
}
#breadcrumbs {
  padding: 5px 0;
  background: #343a40;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
}
#breadcrumbs a {
  color: var(--brand);
}
.hero,
.hero > .container > .row {
  background-attachment: fixed;
  max-height: 100vh;
}
.site-section-heading {
  text-transform: capitalize;
  font-size: 2.5rem;
}
.time-capsule hr {
  border: 0;
  border-top: 2px solid #ccc;
}
.time-capsule .downloadLinks {
  border: 2px solid #6c757d;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 10px;
}
.time-capsule .downloadLinks ul {
  padding: 0;
  list-style: none;
}
.time-capsule .downloadLinks ul li {
  padding: 5px 0;
}
.time-capsule .downloadLinks ul li br {
  display: none;
}
@media screen and (max-width: 992px) {
  .time-capsule .downloadLinks ul li br {
    display: initial;
  }
  .time-capsule .downloadLinks ul {
    padding: 0;
    margin: 0;
    margin-bottom: 25px;
    font-size: 0.85em;
  }
}
.time-capsule .downloadLinks button {
  border: none;
  background: none;
  padding: 0;
  font-weight: 500;
  width: 100%;
  text-align: left;
}
.time-capsule .downloadLinks button h6 {
  position: relative;
  width: 100%;
  font-size: 1.5rem;
  color: #676767;
}
.time-capsule .downloadLinks button h6:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f068";
  position: absolute;
  right: 0;
  height: 100%;
  opacity: 1;
  transition: 0.3s ease;
  transform: rotate(0deg);
}
.time-capsule .downloadLinks button.collapsed h6:before {
  opacity: 0;
  transform: rotate(90deg);
}
.time-capsule .downloadLinks button h6:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  height: 100%;
  content: "\f067";
  position: absolute;
  right: 0;
  opacity: 0;
  transition: 0.3s ease;
  transform: rotate(0deg);
}
.time-capsule .downloadLinks button.collapsed h6:after {
  position: absolute;
  right: 0;
  opacity: 1;
  transform: rotate(90deg);
}
.time-capsule .downloadLinks button:focus {
  outline: none;
}
.brand-color {
  color: #32dbc6;
}
.teamAccent {
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 768px) {
  .teamAccent {
    top: 165px;
  }
}
.teamAccent img {
  max-height: 50px;
  background: #fff;
  border-radius: 100px;
  box-shadow: 2px 2px 5px #bcbcbc;
  padding: 0px 15px;
}
.new {
  background-color: #4e5257;
  border-radius: 25px;
  font-size: 0.8em;
  font-weight: 600;
  color: #fff;
  padding: 2px 10px;
  vertical-align: middle;
}
.flex-fix {
  display: flex;
  flex-direction: row;
}
@media (max-width: 992px) {
  .flex-fix {
    display: flex;
    flex-direction: column;
  }
}
blockquote {
  border-left: 3px solid #32dbc6;
  padding: 0 0 0 25px;
}
#testimonials {
  background: var(--primary);
}
#projects,
#testimonials,
.owl-stage {
  overflow: hidden;
}
.testimonial {
  max-width: 900px;
}
.testimonial p a,
.testimonial p a:visited {
  color: #4e5257;
}
.testimonial blockquote {
  border: none;
  padding: 0 15px;
  font-size: 1.2rem;
}
.testimonial figure img {
  width: 100% !important;
  height: auto;
  max-width: 125px;
  max-height: 125px;
  border-radius: 3px;
  object-fit: contain;
  padding: 7px;
}

/* Slick */
/* Brand Slider */

#brands {
  background: var(--primary);
}
.slick-initialized .slick-slide {
  display: flex;
}
.singleSlide {
  display: flex;
  justify-content: center;
}
.brandSlider {
  overflow: hidden;
}
.brandSlider img {
  filter: brightness(0) grayscale(1);
  opacity: 0.65;
  max-width: 225px;
  height: auto;
  object-fit: contain;
}
@media (max-width: 991px) {
  .brandSlider img {
    max-width: 115px;
    height: auto;
  }
}
textarea.form-control {
  border-radius: 15px;
}
.btn-extra {
  padding: 9px 25px !important;
  width: fit-content;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  line-height: 1;
}

/* Owl Carousel */
.owl-carousel {
  overflow: hidden;
}
.owl-stage {
  display: flex;
  align-items: center;
}
.owl-nav {
  display: none;
}
.testimonial-slide .owl-dots {
  text-align: center;
}
.testimonial-slide .owl-dots .owl-dot {
  display: inline-block;
  margin: 4px;
  border: none;
  background: transparent;
  padding: 0;
}
.testimonial-slide .owl-dots .owl-dot span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #dee2e6;
}
.testimonial-slide .owl-dots .owl-dot.active span {
  background: #32dbc6;
}

/* Project Images */
.thumbnail {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 30px;
}
.thumbnail:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  content: "";
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
  opacity: 0;
  visibility: hidden;
}
.thumbnail img {
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.thumbnail .thumbnail-content {
  z-index: 4;
  top: 50%;
  position: absolute;
  width: 100%;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.thumbnail .thumbnail-content h2 {
  position: relative;
  color: #fff;
  font-size: 1.5rem;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  opacity: 0;
  visibility: hidden;
  bottom: -10px;
  margin-bottom: 0px;
}
.thumbnail .thumbnail-content .category {
  position: relative;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  opacity: 0;
  bottom: -10px;
  visibility: hidden;
  color: #999;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.thumbnail:hover:after {
  opacity: 1;
  visibility: visible;
}
.thumbnail:hover h2 {
  bottom: 0px;
  opacity: 1;
  visibility: visible;
}
.thumbnail:hover .category {
  opacity: 1;
  visibility: visible;
  bottom: 0px;
  -webkit-transition-delay: 0.09s;
  -o-transition-delay: 0.09s;
  transition-delay: 0.09s;
}
.thumbnail:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.thumbnail {
  border-radius: 7px;
  box-shadow: 4px 4px 7px #9a9a9a;
  aspect-ratio: 1.9;
}
.thumbnail:hover {
  box-shadow: 6px 6px 7px #9a9a9a;
}
.thumbnail img {
  object-position: top;
  height: 100%;
  width: 100%;
}

/* Blocks */
.hero {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  background-position: center center;
}
.hero.overlay {
  position: relative;
}
.hero.overlay:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.2);
}
.hero,
.hero > .container > .row {
  height: calc(100vh);
}
.hero.inner-page-cover,
.hero.inner-page-cover > .container > .row {
  height: calc(20vh);
}
.hero h1 {
  font-size: 3.5rem;
  font-weight: 400;
  color: #fff;
}
.hero h1 span {
  font-size: 160%;
  font-weight: 800;
}
.hero h3 {
  color: #fff;
}
@media (max-width: 991px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero h1 span {
    font-size: 150%;
  }
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.5rem;
  }
}
.hero p {
  color: white;
  font-size: 1.2rem;
  line-height: 1.5;
}
.hero .intro-text {
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 991.98px) {
  .hero .display-1 {
    font-size: 3rem;
  }
}

/* Our Team */
.ul-social-circle {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ul-social-circle li {
  display: inline-block;
  margin-left: 5px;
  margin-bottom: 5px;
}
.ul-social-circle li:first-child {
  margin-left: 0;
}
.ul-social-circle li span {
  width: 30px;
  height: 30px;
  background: #777;
  font-size: 13px;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  display: inline-block;
}
.ul-social-circle li a span {
  color: #fff;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.ul-social-circle li a:hover span {
  background: #2b2b2b;
  color: #fff;
}

/* Services */

#services {
  background: var(--secondary);
}

.icon {
  font-size: 3rem;
  color: var(--brand);
  display: flex;
}

.ul-check li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.ul-check li:before {
  left: 0;
  font-size: 20px;
  top: -0.3rem;
  font-family: icomoon;
  content: "\e5ca";
  position: absolute;
  color: var(--brand);
}

/* Magnific Popup */
.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-auto;
  cursor: -webkit-auto;
  cursor: auto;
}

/* Subscribe */

.subscribe {
  background-color: var(--brand);
}
.subscribe * {
  color: #fff !important;
}

input[value]:not(.btn) {
  color: #fff;
}

.inputCont {
  position: relative;
  margin: 5px 0;
}

.inputCont input {
  width: 100%;
  font-size: 1rem;
  height: 2rem;
  color: #fff;
  border: none;
  border-bottom: 2px dashed #fff;
  outline: none;
  background: transparent;
}

.inputCont label {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.2rem;
  color: #fff;
  pointer-events: none;
  transition: 0.3s ease;
}

.inputCont input:focus ~ label,
.inputCont input:valid ~ label {
  top: -1rem;
  left: 0;
  font-size: 0.75rem;
}

.subscribe .btn {
  width: 100%;
  min-width: fit-content;
  justify-content: center;
  width: min-content;
}
@media screen and (max-width: 991px) {
  .subscribe .btn {
    width: 100%;
  }
}

/* CMS */

[class*='PreviewContainer'] img {
  max-height: 450px;
  max-width: 100%;
  object-fit: contain;
}