/*============ 1. Body and Core Css ============*/
* {
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  font-family: "Poppins", sans-serif;
}

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

h2 {
  font-weight: 700;
}

h3,
h4,
h5,
h6 {
  font-weight: 600;
}

p {
  color: #748182;
  line-height: 28px;
}

a {
  color: #000;
}

a:hover {
  text-decoration: none;
}

a:hover,
a:focus {
  outline: none;
}

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

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

section {
  overflow: hidden;
}

/*Margins*/
.padtop-20 {
  padding-top: 20px;
}

.padtop-40 {
  padding-top: 40px;
}

.padtop-60 {
  padding-top: 60px;
}

.padtop-90 {
  padding-top: 90px;
}

.padbtm-20 {
  padding-bottom: 20px;
}

.padbtm-40 {
  padding-bottom: 40px;
}

.padbtm-60 {
  padding-bottom: 60px;
}

.padbtm-90 {
  padding-bottom: 90px;
}

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

.martop-40 {
  margin-top: 40px;
}

.martop-60 {
  margin-top: 60px;
}

.marbtm-20 {
  margin-bottom: 20px;
}

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

.marbtm-60 {
  margin-bottom: 60px;
}

.main-button {
  text-decoration: none;
  border: 1px solid #aaa;
  color: #000;
  padding: 10px 20px;
  font-size: 14px;
  text-transform: uppercase;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
  background-color: transparent;
}

.main-button:hover {
  border: 1px solid #000;
  background: #000;
  color: #fff;
  text-decoration: none;
}

.main-button:hover,
.main-button:focus {
  outline: none;
}

.main-button.success {
  border-color: #28a745;
  color: #28a745;
}

.main-button.success:hover {
  background-color: #28a745;
  color: #fff;
}

.main-button.error {
  border-color: #dc3545;
  color: #dc3545;
}

.main-button.error:hover {
  background-color: #dc3545;
  color: #fff;
}

.wave {
  position: absolute;
  width: 100%;
  height: 50px;
  bottom: -1px;
  left: 0;
  fill: #fff;
  z-index: 1;
  visibility: hidden;
}

.wave-primary {
  position: relative;
}

.wave-primary .wave {
  fill: #fff;
  display: block;
  visibility: visible;
}

.wave-secondary {
  position: relative;
}

.wave-secondary .wave {
  fill: #d3d3d3;
  visibility: visible;
}

.wave-footer {
  position: relative;
}

.wave-footer .wave {
  fill: #729dd5;
  visibility: visible;
  top: 0;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

/*============ 2. Preloader ============*/
body.loaded p {
  opacity: 1;
}

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  -webkit-transform: rotate(15deg);
  -ms-transform: rotate(15deg);
  transform: rotate(15deg);
}

#loader-wrapper .loader-section {
  position: fixed;
  top: -500%;
  width: 101%;
  height: 1000%;
  background: #111;
  z-index: 1000;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

#loader-wrapper .loader-section.section-left {
  left: -50%;
}

#loader-wrapper .loader-section.section-right {
  right: -50%;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

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

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

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

.loaded #loader-wrapper .loader-section.section-left {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.3s 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.3s 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.3s 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.3s 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded .loading {
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.loaded #loader-wrapper {
  visibility: hidden;
}

.loading {
  z-index: 1001;
  display: inline-block;
  position: fixed;
  left: 50%;
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -35px;
  margin-left: -35px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: 10px solid transparent;
  border-left: 10px solid #3c3c3c;
  border-bottom: 10px solid #3c3c3c;
  -webkit-animation: spin-one 0.6s linear infinite;
  animation: spin-one 0.6s linear infinite;
}

.loading:before,
.loading:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: 10px solid transparent;
  border-left: 10px solid #3c3c3c;
  border-bottom: 10px solid #3c3c3c;
}

.loading:before {
  -webkit-animation: spin-two 1s linear infinite;
  animation: spin-two 0.4s linear infinite;
}

.loading:after {
  -webkit-transform: scale(0.6);
  -ms-transform: scale(0.6);
  transform: scale(0.6);
}

@-webkit-keyframes spin-one {
  0% {
    -webkit-transform: rotateX(0) rotateY(0) rotateZ(0);
    transform: rotateX(0) rotateY(0) rotateZ(0);
  }

  100% {
    -webkit-transform: rotateX(0) rotateY(0) rotateZ(360deg);
    transform: rotateX(0) rotateY(0) rotateZ(360deg);
  }
}

@keyframes spin-one {
  0% {
    -webkit-transform: rotateX(0) rotateY(0) rotateZ(0);
    transform: rotateX(0) rotateY(0) rotateZ(0);
  }

  100% {
    -webkit-transform: rotateX(0) rotateY(0) rotateZ(360deg);
    transform: rotateX(0) rotateY(0) rotateZ(360deg);
  }
}

@-webkit-keyframes spin-two {
  0% {
    -webkit-transform: rotateZ(0);
    transform: rotateZ(0);
  }

  100% {
    -webkit-transform: rotateZ(-360deg);
    transform: rotateZ(-360deg);
  }
}

@keyframes spin-two {
  0% {
    -webkit-transform: rotateZ(0);
    transform: rotateZ(0);
  }

  100% {
    -webkit-transform: rotateZ(-360deg);
    transform: rotateZ(-360deg);
  }
}

/*============ 3 .Navbar ============*/
.navbar {
  padding-top: 30px;
  padding-bottom: 20px;
  font-size: .90rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  /* background: rgba(255,255,255,.95) !important; */
}
.navbar .navbar-brand img {
  /* width: 100%; */
  width: 145px;
}

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

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

.navbar .navbar-nav .back-button {
  color: #fff;
}

.navbar-scroll-fixed {
  padding-top: 10px;
  padding-bottom: 10px;
  position: fixed;
  /* background-color: #fff; */
  background-color: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(10px);
  -webkit-box-shadow: 0 1px 70px rgba(0, 0, 0, 0.5);
  box-shadow: 0 1px 70px rgba(0, 0, 0, 0.5);
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}

.navbar-scroll-fixed .navbar-nav .back-button {
  color: #000;
}

/*============ Home Page ============*/
/*============ 4. Home Banner Section ============*/
/*Banner Section*/
#banner {
  background-position: top center;
  -webkit-background-size: cover;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
}

#banner:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000052;
  opacity: 0.4;
  z-index: 1;
}

#banner .banner-text {
  text-align: center;
  position: absolute;
  z-index: 2;
  top: 81%;
  width: 100%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

#banner .banner-text h1 {
  font-weight: 800;
  color: #fff;
  font-size: 60px;
  line-height: 100px;
  letter-spacing: 2px;
}

#banner .banner-text #typed {
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  /* font-weight: 800;
  color: #fff;
  font-size: 60px;
  line-height: 100px;
  letter-spacing: 2px; */
}

/*Animations*/
/*Typed Cursor Blink*/
.typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  font-size: 35px;
  font-weight: 900;
  color: #fff;
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*============ 5. About Section ============*/
#about {
    padding-top: 120px;
    padding-bottom: 100px;
    /* background-color: #f8f8f8; */
	background-color: #e3dddd;
    box-shadow: rgba(0, 0, 0, 0.06) 2px 0px 4px 0px inset;
}

#about .about-info-container {
  background-color: #f3f3f3;
  margin-top: 20px;
  padding-top: 40px;
  padding-bottom: 40px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.01);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.01);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  -o-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#about .about-info-container:hover {
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.01);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.01);
}

#about .about-info-container .about-info {
  text-align: center;
  padding-right: 50px;
}

#about .about-info-container .about-info .info-item img {
  /* width: 100px; */
  -webkit-border-radius: 90px;
  border-radius: 90px;
  border: 5px solid #fff;
  margin-bottom: 20px;
  position: absolute;
  bottom: 42%;
  left: -12%;
  transform: translate(50%, 50%);
  width: 60%;
  border-radius: 50%;
}

#about .about-info-container .about-info .info-item p {
  margin-bottom: 10px;
}

#about .about-info-container .about-info .info-item span {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #000;
}

#about .about-info-container .about-skills {
  padding-left: 50px;
}

#about .about-info-container .about-skills h3 {
  font-weight: 700;
  margin-bottom: 20px;
}

#about .about-info-container .about-skills .progress-box {
  margin-bottom: 20px;
}

#about .about-info-container .about-skills .progress-box p {
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 10px;
  color: #000;
}

#about .about-info-container .about-skills .progress-box .progress {
  -webkit-border-radius: 0;
  border-radius: 0;
  height: 2px;
}

#about .about-info-container .about-skills .progress-box .progress .progress-bar {
  background-color: #616161;
  -webkit-transition: width 1.5s ease;
  -o-transition: width 1.5s ease;
  transition: width 1.5s ease;
  width: 0;
}
/*============ 7. Portfolio Section ============*/
#portfolio {
  padding-top: 120px;
  padding-bottom: 80px;
  background-color: #ffffff;
}

.portfolio-header .portfolio-filter {
  padding-top: 5px;
}

.portfolio-header .portfolio-filter ul {
  margin: auto;
  display: inline-block;
  padding-left: 0px;
}

.portfolio-header .portfolio-filter ul li {
  float: left;
  color: #748182;
  list-style: none;
  margin-right: 10px;
  cursor: pointer;
  font-size: 15px;
}

.portfolio-header .portfolio-filter ul li.sel-item {
  color: #000 !important;
  font-weight: bold;
}

.portfolio-header .portfolio-filter ul li li:last-child {
  margin-right: 0;
}

.portfolio-items .single-item {
  margin-bottom: 30px;
}

.portfolio-items .single-item .popup {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}

.portfolio-items .single-item .popup img {
  width: 100%;
  -webkit-transition: -webkit-transform .5s ease-in-out;
  transition: -webkit-transform .5s ease-in-out;
  -o-transition: transform .5s ease-in-out;
  transition: transform .5s ease-in-out;
  transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out;
}

.portfolio-items .single-item .popup:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  -webkit-transition: background-color .6s ease-in-out;
  -o-transition: background-color .6s ease-in-out;
  transition: background-color .6s ease-in-out;
}

.portfolio-items .single-item .popup:hover:after {
  background-color: rgba(0, 0, 0, 0);
}

.portfolio-items .single-item .popup:hover img {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  border-radius: 16px;
}


/*============ 9. Contact Section ============*/
#contact {
  padding-top: 100px;
  padding-bottom: 100px;
  background: linear-gradient(0deg,rgba(0,0,0,.08) 0%,rgba(0,0,0,.08) 100%),linear-gradient(90deg,#a83fbe -20.16%,#fd3459 49.45%,#ffc73f 112.16%);
  text-align: center;
  color: #fff;  
}

/*============ 10. Footer ============*/
footer {
  padding-top: 6px;
  padding-bottom: 6px;
  background-color: #2f343b;
  text-align: center;
}

footer ul.social-icons li a {
  color: #757575;
  font-size: 14px;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

footer ul.social-icons li a:hover {
  color: #fff;
}

footer p {
  color: #e4e4e4;
  margin: 24px 0 0 0;
  font-size: 12px;
}

/*============ Blog And Single-Blog Page ============*/


/*============ 13. Site Mobile Responsive ============*/
/*Responsive Max Width 992px*/
@media screen and (max-width: 992px) {
  #banner .banner-text h1 {
    font-size: 50px;
  }

  #banner .banner-text #typed {
    font-size: 30px;
  }

  #banner .banner-text .typed-cursor {
    font-size: 30px;
  }

  #about .about-info-container .about-info {
    text-align: center;
    margin-bottom: 60px;
    padding-right: 15px;
  }

  #about .about-info-container .about-skills {
    padding-left: 15px;
  }

  #about .about-info-container .about-skills h3 {
    text-align: center;
  }

  .wave {
    height: 25px;
  }
}

/*Max Width 768px*/
@media screen and (max-width: 767px) {
  #banner{
    height: 738px;
  }
  #banner .banner-text h1 {
    font-size: 32px;
    line-height: 50px;
  }

  #banner .banner-text #typed {
    font-size: 20px;
  }

  #banner .banner-text .typed-cursor {
    font-size: 20px;
  }

  .navbar .navbar-brand img {
    /* width: 80%; */
    width: 108px;
  }

  .navbar.navbar-dark .navbar-collapse {
    background-color: rgba(0, 0, 0, 0.9);
    text-align: center;
  }

  .navbar.navbar-dark .navbar-collapse li.nav-item {
    border-bottom: 1px solid #111;
    margin-bottom: 4px;
  }

  .navbar.navbar-dark .navbar-collapse li.nav-item:last-child {
    margin-bottom: 0;
    border-bottom: 0px;
  }

  .navbar.navbar-light {
    text-align: center;
  }

  .navbar.navbar-light li.nav-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 4px;
  }

  .navbar.navbar-light li.nav-item:last-child {
    margin-bottom: 0;
    border-bottom: 0;
  }

  #contact .message-box h2 {
    margin-top: 50px;
    text-align: left !important;
  }

  .blog-banner h1 {
    font-size: 32px;
  }

  .blog-banner .bread-crumb a {
    font-size: 14px;
  }

  .row.reply-area {
    margin-left: 40px;
    margin-top: 20px;
  }
}

/*============ 13. Particles Background ============*/
#banner #particles-js {
  position: absolute;
  height: 100vh;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 10;
}

.demo-title{
  margin-top: 16px;
  padding-bottom: 10px;
  display: block;
  text-align: center;
  font-weight: 600;
}

.popup.wave-primary .wave{
  height: 20px !important;
}
/* about_us */

.about_container .about_card {
  flex: 1;
  transition: all 1s ease-in-out;
  height: 75vmin;
  position: relative;
}
.about_container {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 10vmin !important;
  overflow: hidden !important;
  transform: skew(5deg) !important;
}
.about_container .about_card .card__head {
  color: black;
  background: rgba(255, 30, 173, 0.75);
  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;
}
.about_container .about_card .card__title {
  color: black;
  background: rgba(255, 30, 173, 0.75);
  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;
  opacity: 0;
}
.about_container .about_card:hover {
  flex-grow: 10;
}

.about_container .about_card:hover img {
  filter: grayscale(0);
}

.about_container .about_card:hover .card__head {
  text-align: center;
  top: calc(100% - 3.5em);
  color: white;
  background: rgba(0, 0, 0, 0.5);
  font-size: 2em;
  transform: rotate(0deg) skew(0deg);
}
.about_container .about_card:hover .card__title {
  text-align: center;
  top: calc(100% - 3em);
  color: white;
  transform: rotate(0deg) skew(0deg);
  position: absolute;
  min-width: 100%;
  bottom: 0;
  left: 0;
  font-size: 1em;
  white-space: nowrap;
  opacity: 1;
}

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

.about_container .about_card:not(:nth-child(3)) {
  margin-right: 1em;
}

@media (max-width: 768px) {
  .about_container .about_card {
  flex: 1;
  transition: all 1s ease-in-out;
  height: 75vmin;
  position: relative;
}
  .about_container {
    flex-direction: column !important;
    transform: skew(0deg) !important;
    margin: 0vmin !important;
    justify-content: center !important;
    align-items: center !important;
    overflow: hidden !important;
  }

 
  .about_container .about_card {
    height: auto;
    flex: none;      
    margin-bottom: 2em;
  }

  .about_container .about_card img {
    filter: none;
    height: 90vmin;           
  }
  .about_container .about_card .card__head {
     background: rgba(0, 0, 0, 0.5);
    transform: rotate(0deg) !important;
    position: absolute !important;
    opacity: 1 !important;
    margin: 0;
    white-space: normal;
    text-align: center;
     color: #fff;
     top: calc(100% - 5em);
    font-size: 18px;
    filter: none;
  }
  .about_container .about_card .card__title {
    transform: rotate(0deg) !important;
    position: absolute !important;
    opacity: 1 !important;
    margin: 0;
    text-align: center;
    color: #fff;
    top: calc(100% - 3.8em);
   font-size: 14px;
   white-space: break-spaces;
   filter: none;
  }
  .about_container .about_card:not(:nth-child(3)) {
    margin-right: 0 !important;
  } 
  .about_container .about_card:hover .card__head {
     top: calc(100% - 5em);
    font-size: 18px;
}
.about_container .about_card:hover .card__title {
  top: calc(100% - 3.8em);
   font-size: 14px;
   white-space: break-spaces;

}
}

/* quote */

.inspiring-quote {
 font-family: "Georgia", serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: bold;
  color: #333;
  line-height: 1.5px;
  padding: 4.5vw;
  position: relative;
  background: #ffffff;
  border-radius: 5px;
  text-align: center;
  /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); */
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: fadeIn 1.2s ease-in-out forwards;
  /* background-image: url('./quote_background.jpg'); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}

/* Large quotes properly placed */
.inspiring-quote p::before,
.inspiring-quote p::after {
    font-size: clamp(40px, 5vw, 80px);
    color: #2c3e50;
    font-weight: bold;
    position: absolute;
}

.inspiring-quote p::before {
    content: "“";
    left: -10px;
    top: -30px;
}

.inspiring-quote p::after {
    content: "”";
    right: -10px;
    bottom: -30px;
}

.inspiring-quote p {
    margin: 0;
    padding: 2vw;
    display: inline-block;
    position: relative;
    font-style: italic;
    font-weight: 400;
    max-width: 90%;
    text-align: center;
    color: #000;
    line-height: 80px;
   /*  font-family: "Petemoss", cursive; */
 font-family: 'quote_text', serif;
    font-size: clamp(40px, 3vw, 100pc);
}

/* Properly sized and spaced citation */
.inspiring-quote cite {
    display: block;
    font-size: clamp(30px, 2vw, 53px);
    font-weight: bold;
    color: #000;
    margin-top: 1vw;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    font-style: italic;
    font-family: 'quote_text', serif;
    font-weight: 400;
}

/* Subtle Fade-in Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {

    .inspiring-quote {
        padding: 6vw;
        margin: 25px; 
    }

    .inspiring-quote p {
       /*  font-size: clamp(20px, 4vw, 30px); */
       font-size: clamp(45px, 11vw, 82px);
       line-height: 56px;
    }

    .inspiring-quote p::before,
    .inspiring-quote p::after {
        font-size: clamp(50px, 6vw, 70px);
    }

    .inspiring-quote cite {
        font-size: clamp(16px, 1.8vw, 22px);
    }
}

/* .inspiring-quote {margin:25px;} */
 /* .navbar {
  position: absolute !important;
  } */

 .swiper-container{
   width: 100%;
  height: 100vh;
}
.slide-image {
  position: absolute;
  top: -200px;
  left: -200px;
  width: calc(100% + 400px);
  height: calc(100% + 400px);
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.slide-title {
  font-size: 4rem;
  line-height: 1;
  max-width: 50%;
  white-space: normal;
  word-break: break-word;
  color: #FFF;
  text-shadow: 0 3px 8px rgba(0,0,0,0.4);
  z-index: 100;
  /* font-family: 'Oswald', sans-serif; */
  text-transform: uppercase;
  /* font-weight: normal; */
/*   background: linear-gradient(0deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.08) 100%),
              linear-gradient(90deg, #a83fbe -20.16%, #fd3459 49.45%, #ffc73f 112.16%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  font-weight: 700;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    position: relative;
}
@media (min-width: 45em) {
  .slide-title {
    font-size: 7vw;
    max-width: none;
    font-weight: 600;
  }
}

.slide-title span {
  white-space: pre;
  display: inline-block;
  opacity: 0;
}

.slideshow {
  position: relative;
}
.slideshow-pagination {
  position: absolute;
  bottom: 5rem;
  left: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  transition: .3s opacity;
  z-index: 10;
}
.slideshow-pagination-item {
  display: flex;
  align-items: center;
}
.slideshow-pagination-item .pagination-number {
  opacity: 0.5;
}
.slideshow-pagination-item:hover, .slideshow-pagination-item:focus {
  cursor: pointer;
}
.slideshow-pagination-item:last-of-type .pagination-separator {
  width: 0;
}
.slideshow-pagination-item.active .pagination-number {
  opacity: 1;
}
.slideshow-pagination-item.active .pagination-separator {
  width: 5vw;
}
.slideshow-navigation-button {
  position: absolute;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 5rem;
  z-index: 1000;
  transition: all .3s ease;
  color: #FFF;
}
.slideshow-navigation-button:hover, .slideshow-navigation-button:focus {
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
}
.slideshow-navigation-button.prev {
  left: 0;
}
.slideshow-navigation-button.next {
  right: 0;
}

.pagination-number {
  font-size: 1.8rem;
  color: #FFF;
  font-family: 'Oswald', sans-serif;
  padding: 0 0.5rem;
}

.pagination-separator {
  display: none;
  position: relative;
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
  transition: all .3s ease;
}
@media (min-width: 45em) {
  .pagination-separator {
    display: none;
  }
}
.pagination-separator-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  transform-origin: 0 0;
}

.slide-image::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 /*  background-color: #000000f0; */
  opacity: 0.4;
  z-index: 1;
}
.portfolio-image {
  background-color: #f8f8f8;
  padding: 12px;
  border-radius: 16px;
  /* box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px; */
  /*box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;*/
   box-shadow: rgba(9, 30, 66, 0.25) 0px 0px 0.25em, rgba(9, 30, 66, 0.08) 0px 0.25em 1em;
}
.portfolio-image a img{
  border-radius: 16px;
}
.portfolio-items .single-item .popup {
  overflow: hidden;
  border-radius: 16px;
}

.portfolio-items .single-item .popup:hover img {
  transform: scale(1.2);
  border-radius: 16px;
}
.slideshow-pagination-item {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 3px solid rgb(255, 253, 253);
    border-radius: 50%;
    margin: 0 5px;
    position: relative;
}
.slideshow-pagination-item.active {
    background: rgb(255, 255, 255);
}
@media screen and (max-width: 767px) {
  .slide-title {
  font-size: 32px;
  line-height: 50px;
  max-width: 100%;
  font-weight: 700;
}
.banner{
  height: 738px !important;
}
.navbar-dark .navbar-nav .nav-link {
    color: rgb(255 255 255) !important;
    font-weight: 400;
}
}
.owl-carousel .owl-item {
 /*  background-color: #e8e8e8; */
  padding: 15px;
  /* box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset; */
}
.owl-carousel .owl-stage {
  margin: 50px;
}
.portfolio-header h2 {
  background: linear-gradient(0deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.08) 100%),
              linear-gradient(90deg, #a83fbe -20.16%, #fd3459 49.45%, #ffc73f 112.16%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700; /* optional */
}
.about-intro h2 {
  background: linear-gradient(0deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.08) 100%),
              linear-gradient(90deg, #a83fbe -20.16%, #fd3459 49.45%, #ffc73f 112.16%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700; /* optional */
}
#scroll {
    position:fixed;
    right:20px;
    bottom:10px;
    cursor:pointer;
    width:50px;
    height:50px;
    background: linear-gradient(0deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.08) 100%),
              linear-gradient(90deg, #a83fbe -20.16%, #fd3459 49.45%, #ffc73f 112.16%);
    text-indent:-9999px;
    display:none;
    -webkit-border-radius:60px;
    -moz-border-radius:60px;
    border-radius:60px
}
#scroll span {
    position:absolute;
    top:50%;
    left:50%;
    margin-left:-8px;
    margin-top:-12px;
    height:0;
    width:0;
    border:8px solid transparent;
    border-bottom-color:#ffffff;
}
#scroll:hover {
     background: linear-gradient(0deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.08) 100%),
              linear-gradient(90deg, #a83fbe -20.16%, #fd3459 49.45%, #ffc73f 112.16%);
    opacity:1;filter:"alpha(opacity=100)";
    -ms-filter:"alpha(opacity=100)";
}
.navbar-dark .navbar-nav .show > .nav-link, .navbar-dark .navbar-nav .active > .nav-link, .navbar-dark .navbar-nav .nav-link.show, .navbar-dark .navbar-nav .nav-link.active {
  color: #000;
  background-color: rgba(255, 255, 255, 0.45);
  border-radius: 5px;
  font-weight: 500;
}

.navbar-light .navbar-nav .show > .nav-link, .navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
  background-color: rgba(251, 164, 191, 0.1);
  border-radius: 5px;
  font-weight: 500;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgb(0, 0, 0);
  font-weight: 400;
}
