/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html {
   background-color: #0c0c0c;
}
body {
  font-family: "Figtree", sans-serif;
  color: #fff;
  background-color: #0c0c0c;
}

a {
  color: #fe2c78;
  text-decoration: none;
}

a:hover {
  color: #fe2c78;
  transform: scale(1.1);
  text-decoration: none;
  cursor: pointer;
}

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

/* Figtree */
@font-face {
  font-family: 'Figtree';
  src: url("../fonts/Figtree[wght].ttf") format("truetype-variations");
  font-weight: 1 999;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: linear-gradient(90deg, rgba(255,103,62,1) 0%, rgba(254,44,120,1) 55%, rgba(168,41,202,1) 100%);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #151515;
  line-height: 0;
}
.back-to-top:hover {
  background: linear-gradient(90deg, rgba(255,103,62,1) 0%, rgba(254,44,120,1) 55%, rgba(168,41,202,1) 100%);
  transform: scale(1.1);
}
.back-to-top:hover i {
  transform: scale(1.1);
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*
@media (min-width: 600px) {
    .container{max-width: 600px;width:100%;}
}
@media (min-width: 768px) {
    .container{max-width: 900px;width:100%;}
}
@media (min-width: 992px) {
    .container{max-width: 900px;}
}
@media (min-width: 1024px) {
    .container{width: 970px;}
}
@media (min-width: 1200px){
    .container{width: 1170px;max-width: 1170px;}
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #151515;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid;
  border-image: linear-gradient(90deg, rgba(255,103,62,1) 0%, rgba(254,44,120,1) 55%, rgba(168,41,202,1) 100%)1;
  border-top-color: #151515;
  border-bottom-color: #151515;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

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

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 30px 0;
}
#header.header-scrolled, #header.header-inner-pages {
  background: rgba(0, 0, 0, 0.8);
}

#header img {
  max-height: 40px;
  transition: ease-in-out 0.3s;
}
#header img:hover {
  transform: scale(1.1);
}
#header .login-btn {
  display: inline-block;
  list-style: none;
  align-items: right;
}
@media (max-width: 992px) {
  #header .logo img {
    max-height: 30px;
    transition: ease-in-out 0.3s;
  }
}

/*--------------------------------------------------------------
#  Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
  color: #fff;
  border-radius: 6px;
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 16px;
  display: inline-block;
  border: 2px solid;
  border-image: linear-gradient(90deg, rgba(255,103,62,1) 0%, rgba(254,44,120,1) 55%, rgba(168,41,202,1) 100%)1;
}
.get-started-btn:hover {
  background: linear-gradient(90deg, rgba(255,103,62,1) 0%, rgba(254,44,120,1) 55%, rgba(168,41,202,1) 100%);
  color: #fff;
  transform: scale(1.1);
}
@media (max-width: 992px) {
  .get-started-btn {
    padding: 7px 20px 8px 20px;
    margin-right: 15px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 40px;
  font-size: 18px;
  font-weight: 400;
  color: #f1f1f1;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a i, .navbar a:focus i {
  font-size: 20px;
  line-height: 0;
  margin-left: 0px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #fe2c78;
  transition: all 0.3s;
  transform: scale(1.1);
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #151515;
  box-shadow: 0px 0px 30px rgba(254, 44, 120, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #fff;
  font-weight: 400;
}
.navbar .dropdown ul a i {
  font-size: 15px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  background: linear-gradient(90deg, rgba(255,103,62,0.8) 0%, rgba(254,44,120,0.8) 55%, rgba(168,41,202,0.8) 100%);
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;

}
@media (max-width: 992px) {
	.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  transform: none;
}
}
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #151515;
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
  display: block;

}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #151515;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #fff;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #fff;
  background: linear-gradient(90deg, rgba(255,103,62,1) 0%, rgba(254,44,120,1) 55%, rgba(168,41,202,1) 100%);
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #151515;
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  color: #fff;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  background: linear-gradient(90deg, rgba(255,103,62,1) 0%, rgba(254,44,120,1) 55%, rgba(168,41,202,1) 100%);
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}
@media (min-width: 992px) {
  .dhide {
    display: none !important;
    list-style: none;
  }
  .mhide {
    display: flex !important;
    list-style: none;
  }
}
@media (max-width: 991px) {
  .dhide {
    display: flex !important;
    list-style: none;
  }
  .mhide {
    display: none !important;
    list-style: none;
  }
}
.mhide i {
  font-size: 16px;
  padding-right: 5px;
  padding-top: 2px;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;

}

#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 5%;
}

/*
---------------------------------------------
Events page banner
---------------------------------------------
*/

.main-banner {
  position: relative;
}

#bg-video {
  min-width: 100%;
  min-height: 100vh;
  max-width: 100%;
  max-height: 100vh;
  object-fit: cover;
  z-index: -1;
}

#bg-video::-webkit-media-controls {
  display: none !important;
}

.video-overlay {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
  bottom: 7px;
  width: 100%;
}

.main-banner .caption {
  text-align: center;
  position: absolute;
  width: 80%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.main-banner .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

.main-banner .caption h6 {
  margin-top: 0px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}

.main-banner .caption h2 {
  margin-top: 30px;
  margin-bottom: 25px;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

.main-banner .caption h2 em {
  font-style: normal;
  color: #CAA8F5;
  font-weight: 900;
}

@media (min-width: 769px) {
  .main-banner .mobile {
    display: none;
  }
}

@media (max-width: 991px) {
  .main-banner .caption h2 {
    font-size: 60px;
  }

  .main-banner .caption h6 {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .main-banner .caption h2 {
    font-size: 36px;
    line-height: 34px;
	margin-bottom:30px;
  }

  .main-banner .caption {
   width: 100%;
}

  .main-banner .caption h6 {
    font-size: 20px;
  }

  .main-banner .desktop {
    display: none;
  }

  .main-banner img {
    height: 100vh;
    width: 100%;
  }

  .main-banner .mobile {
    overflow: hidden;
    max-height: 100vh
  }

  .video-overlay {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
  }
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  background-image: url("../img/t-2.png");
  background-position: center;
  background-size: cover;
  border-bottom: 5px solid;
  border-image: linear-gradient(90deg, rgba(255,103,62,1) 0%, rgba(254,44,120,1) 55%, rgba(168,41,202,1) 100%)1;
}
#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .vh {
  height: 100vh;
}
#hero .hover-img {
  opacity: 0.5;
  transition: opacity 1s;
}
#hero .hover-img:hover {
  opacity: 1;
  z-index:2;
}
#hero .text-column {
  overflow: visible;
  padding-left: 200px;
}
#hero .logo-img {
  position:inherit;
}
#hero .image-container {
  flex-direction: column;
}

#hero h1 {
  font-size: 100px;
  font-weight: 600;
  line-height: 96px;
  letter-spacing: 10px;
  color: #fff;
  font-family: "Figtree", sans-serif;
  text-align: center;
}
#hero h1 span {
  color: #fe2c78;
}
#hero h2 span {
  color: #f1f1f1;
  margin: 10px 0 0 0;
  font-size: 21px;
  text-align: center;
  position:relative;
}
#hero .hero-btn {
  color: #fff;
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 18px;
  background: none;
  display: inline-block;
  float: center;
  border: 2px solid;
  border-image: linear-gradient(90deg, rgba(255,103,62,1) 0%, rgba(254,44,120,1) 55%, rgba(168,41,202,1) 100%)1;
  transition: all 0.4s ease-in-out;
  margin-top:15px;
}
#hero .hero-btn:hover {
  background: linear-gradient(90deg, rgba(255,103,62,1) 0%, rgba(254,44,120,1) 55%, rgba(168,41,202,1) 100%);
  transform: scale(1.05);
}
@media (max-width: 991px) {
  #hero  {
    padding-top: 125px;
    max-width: 100vw;
  }
  #hero .text-column {
    padding-left: 10px;
    width: 100%;
    overflow: hidden;
  }
  #hero .hover-img {
    opacity: 1;
  }
  #hero:before {
    display: none;
  }
  #hero .vh {
    height: 75vh;
  }
  #hero .logo-img {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 15px;
  }
  #hero h2 span {
    font-size: 24px;
    text-align: center;
    margin: 20px auto;
    font-weight: 500;

  }
  #hero .hero-btn {
    font-size: 24px;
  }
}


/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  text-align: center;
}

.clients .brand-img {
  max-width: 45%;
  width: 200px;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}

.clients .brand-img:hover {
  filter: none;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
  background-image: url("../img/about.webp");
	background-repeat: no-repeat;
  background-position: right center;
	background-attachment: fixed;
}
.section-title {
  padding-bottom: 30px;
  text-align: center;
}
.section-title h2 {
  font-size: 24px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f1f1f1;
  font-family: "Figtree", sans-serif;
}
.section-title h2::before {
  content: "";
  width: 5em;
  height: 2px;
  display: inline-block;
  background: -webkit-linear-gradient(360deg, rgba(255,103,62,1) 0%, rgba(254,44,120,1) 55%, rgba(168,41,202,1) 100%);
  margin: 4px 10px;
}
.section-title h2::after {
  content: "";
  width: 5em;
  height: 2px;
  display: inline-block;
  background: -webkit-linear-gradient(360deg, rgba(255,103,62,1) 0%, rgba(254,44,120,1) 55%, rgba(168,41,202,1) 100%);
  margin: 4px 10px;
}
.section-title p {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Figtree", sans-serif;
  color: #fff!important;
}
.section-title i {
  background: -webkit-linear-gradient(360deg, rgba(255,103,62,1) 0%, rgba(254,44,120,1) 55%, rgba(168,41,202,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
section .pad {
	margin-top:50px;
}
@media (max-width: 991px) {
section {
   background: #0c0c0c;
}
.section-title h2::before {
  width: 3.5em;
}
.section-title h2::after {
  width: 3.5em;
}
.section-title p {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Figtree", sans-serif;
  color: #fff!important;
}
}
/*--------------------------------------------------------------
# Services-page
--------------------------------------------------------------*/
#services-hero {
  width: 100%;
  overflow: hidden;
  position: relative;
  background-image: url("../img/hero-banner.png");
  background-position: center;
  background-size: cover;
  padding: 0;
}
#services-hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#services-hero .container {
	height: 10vh;
}
/*--------------------------------------------------------------
# Featured
--------------------------------------------------------------*/
.featured .container {
  width:80%;
}
.featured .content h3 {
  font-weight: 700;
  font-size: 28px;
  font-family: "Figtree", sans-serif;
  color: #fff;
  padding-bottom: 20px;
}
.featured .content p {
  color: #9c9c9c;
  font-size: 18px;
  font-weight: 400;
  text-align:justify;
}
.featured .content ul {
  list-style: none;
  padding: 0;
}
.featured span {
  color: #fe2c78;
}
.featured .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}
.featured .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
}
.featured .content p:last-child {
  margin-bottom: 0;
}
.featured img {
  margin: 0;
  text-align: center;
  float: center;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}
.featured img:hover {
  transform: scale(1.05);
  opacity: 0.8;
}


.featured .img h3 {
  color: #f1f1f1;
  text-align: center;
  font-weight:500;
}
.featured .img p {
  color: #aaaaaa;
  text-align: center;
  border-top: 2px solid;
  border-image: linear-gradient(90deg, rgba(255,103,62,1) 0%, rgba(254,44,120,1) 55%, rgba(168,41,202,1) 100%)1;
  padding-top: 5px;

}
@media (max-width: 991px) {
  .about .hide {
  display: none;
}
#about {
	background-image: none;
}
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .container {
  width:80%;
}
.about .content h3 {
  font-weight: 700;
  font-size: 28px;
  font-family: "Figtree", sans-serif;
  color: #fff;
  padding-bottom: 20px;
}
.about .content p {
  color: #9c9c9c;
  font-size: 18px;
  font-weight: 400;
  text-align:justify;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}
.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
}
.about .content p:last-child {
  margin-bottom: 0;
}
.about .img {
  margin: 0;
  text-align: center;
  float: center;
}
.about .img img {
  position: relative;
  overflow: hidden;
  width: 60%;
  border-radius: 50%;
  border: 10px solid #171717;
  margin: 0 auto;
  transition: all ease-in-out 0.3s;
}
.about .img img:hover {
  transform: translateY(-10px);
}

.about .img h3 {
  color: #f1f1f1;
  text-align: center;
  font-weight:500;
}
.about .img p {
  color: #aaaaaa;
  text-align: center;
  border-top: 2px solid;
  border-image: linear-gradient(90deg, rgba(255,103,62,1) 0%, rgba(254,44,120,1) 55%, rgba(168,41,202,1) 100%)1;
  padding-top: 5px;

}
.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#fe2c78, 50%, rgba(254,44,120,0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(105, 15, 173, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
  border-left: 15px solid #fe2c78;;
  transform: scale(20);
}

.about .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}
@media (max-width: 991px) {
  .about .hide {
  display: none;
}
#about {
	background-image: none;
}
}
/*--------------------------------------------------------------
# Mission & Vision
--------------------------------------------------------------*/
#mission {


}
#mission .icon-box {
  text-align: center;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  transition: all ease-in-out 0.3s;
  background: #171717;
  border-radius: 6px;
  margin: 25px 0px;
  flex-grow: 1;
}
#mission .icon-box:hover {
  transform: translateY(-10px);
}
#mission img {
  transition: all 0.3s ease-in-out;
}
#mission img:hover {
  transform: scale(1.05);
  transform:translateY(-15px);
}
#mission h4 {
  font-weight: 700;
  font-size: 36px;
  color: #f1f1f1;
}
#mission .icon-box
p {
  font-weight: 500;
  font-size: 18px;
  text-align: justify;
  color: #aaaaaa;
}
@media (max-width: 991px) {
  #mission h4 {
    font-weight: 700;
    font-size: 26px;
    color: #f1f1f1;
  }
}
/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 10px 5px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  transition: all 0.3s;
  padding: 8px 20px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  background: #47b2e4;
  color: #fff;
}

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

.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.6s;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 3;
  right: 15px;
  transition: all 0.3s;
  background: rgba(55, 81, 126, 0.8);
  padding: 10px 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #f9fcfe;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #fff;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #47b2e4;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.15);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}
/*--------------------------------------------------------------
# sliderSection
--------------------------------------------------------------*/
#projects{
  padding: 60px 0;
}
@media (max-width:767px) {
  #projects{
    padding: 0;
  }
}
#projects .slick-list {
  padding: 0 !important;
}
#projects .slick-track {
  display: flex;
  column-gap: 30px;
  align-items: flex-end;
}
#projects a{
  display: block;
  position: relative;
  z-index: 1;
}
#projects .event-item .img-box{
  position: relative;
}
#projects .slick-center .user-name{
  font-weight: 600;
}

#projects .bxs-chevron-left,
#projects .bxs-chevron-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  font-size: 3.5rem;
  cursor: pointer;
  color: #fe2c78;
}
#projects .bxs-chevron-left{
  left: 0;
}
#projects .bxs-chevron-right{
  right: 0;
}
@media (min-width:1024px) {
  #projects .bxs-chevron-left{
    left: -60px;
  }
  #projects .bxs-chevron-right{
    right: -30px;
  }
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  transition: all ease-in-out 0.3s;
  background: #171717;
  border-radius: 6px;
  margin: 25px 0px;
  flex-grow: 1;
}
.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 30px auto;
  transition: 0.3s;
}
.services .icon-box .icon i {
  font-size: 100px;
  transition: ease-in-out 0.3s;
  background: -webkit-linear-gradient(360deg, rgba(255,103,62,1) 0%, rgba(254,44,120,1) 55%, rgba(168,41,202,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.services .icon-box .icon i:hover {
  transform: scale(1.1);
}
.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}
.services .icon-box h4 a {
  color: #fff;
  transition: ease-in-out 0.3s;
}
.services .icon-box h4 a:hover {
  background: -webkit-linear-gradient(360deg, rgba(255,103,62,1) 0%, rgba(254,44,120,1) 55%, rgba(168,41,202,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  color: #9c9c9c;
}
.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}
.services .icon-box ul li {
	font-size: 14px;
	line-height: 24px;
	text-align: center;
	padding: 5px;
	list-style-type: none;
	color: #9c9c9c;
}
.services .icon-box ul {
	padding: 0;

}
.services .icon-box .btn-con {

}
.services .icon-box .srt-btn {
  color: #fff;
  margin: 0 2rem;
  padding: 8px 12px 8px 12px;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
  font-size: 14px;
  display: block;
  border: 2px solid;
  border-image: linear-gradient(90deg, rgba(255,103,62,1) 0%, rgba(254,44,120,1) 55%, rgba(168,41,202,1) 100%)1;
  margin-top: 15px;


}
.services .icon-box .srt-btn:hover {
  background: linear-gradient(90deg, rgba(255,103,62,1) 0%, rgba(254,44,120,1) 55%, rgba(168,41,202,1) 100%);
  color: #fff;
  transform: scale(1.1);
}
.services .icon-box .fom-btn {
  color: #fff;
  margin: 0 2rem;
  padding: 8px 12px 8px 12px;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
  font-size: 14px;
  display: block;
  border: 2px solid;
  border-color: #9c9c9c;
  margin-top: 15px;

}
.services .icon-box .fom-btn:hover {
  color: #fff;
  background-color: #9c9c9c;
  transform: scale(1.1);
}
@media (max-width: 991px) {
  .services .icon-box {
  margin-top: 25px;
}
.services .icon-box ul li {
	font-size: 16px;
}
.services .icon-box .icon i {
  font-size: 65px;
}
}
/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
   background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.6)), url("../img/hero-bg.webp") fixed center center;
   -moz-box-shadow: 1px 2px 3px rgba(0,0,0,.5);
   -webkit-box-shadow: 1px 2px 3px rgba(0,0,0,.5);
   box-shadow: 1px 2px 3px rgba(0,0,0,.5);
   background-size: cover;
   padding: 80px 0;
   background-attachment: fixed;
}
.cta h3 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
}
.cta p {
  color: #fff;
  font-size: 18px;
}
.cta .cta-btn {
  color: #fff;
  padding: 8px 25px 8px 25px;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  display: inline-block;
  border: 2px solid;
  border-image: linear-gradient(90deg, rgba(255,103,62,1) 0%, rgba(254,44,120,1) 55%, rgba(168,41,202,1) 100%)1;
  margin-top: 15px;

}
.cta .cta-btn:hover {
  background: linear-gradient(90deg, rgba(255,103,62,1) 0%, rgba(254,44,120,1) 55%, rgba(168,41,202,1) 100%);
  color: #fff;
  transform: scale(1.1);
}
.cta-btn {
  color: #fff;
  padding: 8px 25px 8px 25px;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  display: inline-block;
  border: 2px solid;
  border-image: linear-gradient(90deg, rgba(255,103,62,1) 0%, rgba(254,44,120,1) 55%, rgba(168,41,202,1) 100%)1;
  margin-top: 15px;

}
.cta-btn:hover {
  background: linear-gradient(90deg, rgba(255,103,62,1) 0%, rgba(254,44,120,1) 55%, rgba(168,41,202,1) 100%);
  color: #fff;
  transform: scale(1.1);
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
}
.testimonials .section-header {
  margin-bottom: 40px;
}
.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
  margin-top: 25px;
  transition: all 0.3s ease-in-out;
}
.testimonials .testimonial-item:hover {
  transform: scale(1.1);

}
.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}
.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.6);
  font-size: 26px;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 0.5;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffc451;
  opacity: 1;
}
.testimonials .partner-logo img {
	width: 60%;
	margin: 0;
}
@media (min-width: 1024px) {
  .testimonials {
    background-attachment: fixed;
  }
}
@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}
@media (max-width: 991px) {
.testimonials .partner-logo img {
	width: 100%;
	margin: 0;
}
}
/*--------------------------------------------------------------
# Timeline
--------------------------------------------------------------*/
* {
  box-sizing: border-box;
}

.timeline {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}
.timeline h2 {
 color: #fff;
 padding-bottom: 10px;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background: linear-gradient(180deg, rgba(255,103,62,1) 0%, rgba(254,44,120,1) 55%, rgba(168,41,202,1) 100%);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

/* Container around content */
.timeline-container {
  padding: 20px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

/* The circles on the timeline */
.timeline-container::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -13px;
  background-color: #fff;
  border: 4px solid;
  color: #171717;
  top: 15px;
  border-radius: 100%;
  z-index: -1;
}


/* Place the container to the left */
.left {
  left: 0;
}

/* Place the container to the right */
.right {
  left: 50%;
}

/* Add arrows to the left container (pointing right) */
.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent white;
}

/* Add arrows to the right container (pointing left) */
.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
}

/* Fix the circle for containers on the right side */
.right::after {
  left: -13px;
}

/* The actual content */
.timeline-content {
  padding: 20px 30px;
  transition: all ease-in-out 0.3s;
  background: #171717;
  position: relative;
  border-radius: 6px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  color: #9c9c9c;
}
.timeline-content:hover {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}
.timeline .timeline-content ul li {
	font-size: 14px;
	padding: 5px;
}
.timeline .timeline-content span {
	font-weight: 800;
	color: #fff;
}

@media (max-width: 991px) {
.timeline .timeline-content ul li {
	font-size: 16px;
}
.timeline .timeline-content ul {
	padding: 0;
}
}
/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
/* Place the timelime to the left */
  .timeline::after {
    left: 31px;
  }

/* Full-width containers */
  .timeline-container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

/* Make sure that all arrows are pointing leftwards */
  .timeline-container::before {
    left: 60px;
    border: medium solid black;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  }

/* Make sure all circles are at the same spot */
  .left::after, .right::after {
    left: 15px;
  }

/* Make all right containers behave like the left ones */
  .right {
    left: 0%;
  }
}
/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  padding: 60px 0;
}
.team .member {
  margin-top: 20px;
  overflow: hidden;
  border-radius: 5px;
  padding-top: 20px;

}
.team .member .member-img {
  position: relative;
  overflow: hidden;
  width: 75%;
  border-radius: 50%;
  border: 10px solid #171717;
  margin: 0 auto;
  transition: all ease-in-out 0.3s;
}
.team .member .member-img:hover {
	transform: scale(1.1);
	background: linear-gradient(90deg, rgba(255,103,62,1) 0%, rgba(254,44,120,1) 55%, rgba(168,41,202,1) 100%);
	border: 1px solid #171717;
	padding:9px;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
  z-index: 1;
}
.team .member .social a {
  transition: color 0.3s;
  color: #fff;
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.8);
  transition: ease-in-out 0.3s;
  color: #0c0c0c;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.team .member .social a:hover {
  color: #0c0c0c;
  background: linear-gradient(90deg, rgba(255,103,62,1) 0%, rgba(254,44,120,1) 55%, rgba(168,41,202,1) 100%);
}
.team .member .social i {
  font-size: 18px;
  line-height: 0;
}
.team .member .member-info {
  padding: 25px 15px;
  text-align: center;
}
.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #fff;
}
.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}
.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}
.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #171717;
  padding: 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}
.contact .calendly-inline-widget {

}

.contact .info .icon {
  font-size: 40px;
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
}
.contact .info .icon i {
  transition: all 0.3s ease-in-out;
  background: -webkit-linear-gradient(360deg, rgba(255,103,62,1) 0%, rgba(254,44,120,1) 55%, rgba(168,41,202,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact .info .icon i:hover {
  transform: scale(1.1);
}
.info .contact-item {
	margin-top: 40px;
}
.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #fff;
}
.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #9c9c9c;
}
.contact .info .email, .contact .info .phone {
  margin-top: 40px;
}
.contact .info ul li {
	font-size: 14px;
	list-style-type: none;
	color: #9c9c9c;
    margin-bottom: 0;
	padding: 0 0 0 30px;
}

@media (max-width: 991px) {
#contact {
	background-image: none;
}
.contact .calendly-inline-widget {
  height: 1100px;
}
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Contact form
--------------------------------------------------------------*/
.contact .form-control {
  font-family: "Figtree", sans-serif;
  background-color: #171717;
  margin: 20px 0;
  border: none;
  color: #fff;
  border-bottom: 0.5px solid;
  border-radius: 0;
  border-color: #9c9c9c;
}
.contact .submit-button .btn {
  color: #fff;
  margin: auto;
  padding: 8px 25px 8px 25px;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
  font-size: 14px;
  display: inline-block;
  border: 2px solid;
  border-radius: 0;
  border-color: #9c9c9c;
  margin-top: 15px;
}
.contact .submit-button .btn:hover {
    border-image: linear-gradient(90deg, rgba(255,103,62,1) 0%, rgba(254,44,120,1) 55%, rgba(168,41,202,1) 100%)1;
    transform: scale(1.1);
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #000;
  min-height: 40px;
  margin-top: 74px;
}
.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #2f2f2f;
  content: "/";
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}
/*--------------------------------------------------------------
# Log in Card
--------------------------------------------------------------*/
.card {
  margin-bottom: 30px;
  border: none;
  border-radius: 5px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.card-header, .card-footer {
  border-color: #171717;
  background-color: #171717;
  color: #fff;
  padding: 15px;
}

.card-title {
  padding: 20px 0 15px 0;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  font-family: "Figtree", sans-serif;
}
.card-title span {
  color: #9c9c9c;
  font-size: 14px;
  font-weight: 400;
}
.card-body {
  padding: 0 20px 20px 20px;
  background-color: #171717;
}

.card-img-overlay {
  background-color: rgba(255, 255, 255, 0.6);
}

.form-check-input:checked {
	background-color: #fe2c78;
	border-color: #fe2c78;
	color: #fff;
}
.card .success-msg {
  text-align: center;
  color: #fe2c78;
  font-style: italic;
}
.card .error-msg {
  text-align: left;
  color: #fe2c78;
  font-style: italic;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #0c0c0c;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}
#footer .footer-top {
  background: 1c1c1c;
  border-bottom: 1px solid #222222;
  padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
  text-align: center;
}
#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}
#footer .footer-top .footer-info h3 span {
  background: -webkit-linear-gradient(360deg, rgba(255,103,62,1) 0%, rgba(254,44,120,1) 55%, rgba(168,41,202,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Figtree", sans-serif;
  color: #fff;
}
#footer .footer-top .footer-info img {
  width: 200px;

}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #292929;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: linear-gradient(90deg, rgba(255,103,62,1) 0%, rgba(254,44,120,1) 55%, rgba(168,41,202,1) 100%);
  transform: scale(1.1);
  color: #151515;
  text-decoration: none;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  background: -webkit-linear-gradient(360deg, rgba(255,103,62,1) 0%, rgba(254,44,120,1) 55%, rgba(168,41,202,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  background: -webkit-linear-gradient(360deg, rgba(255,103,62,1) 0%, rgba(254,44,120,1) 55%, rgba(168,41,202,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}
#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}
#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  background: -webkit-linear-gradient(360deg, rgba(255,103,62,1) 0%, rgba(254,44,120,1) 55%, rgba(168,41,202,1) 100%);
  color: #151515;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}
#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: -webkit-linear-gradient(360deg, rgba(255,103,62,1) 0%, rgba(254,44,120,1) 55%, rgba(168,41,202,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#footer .copyright {
  text-align: center;
  padding-top: 30px;
}
#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
@media (max-width: 991px) {

#footer .footer-top .mobile {
    display: none;
  }
}
/*--------------------------------------------------------------
# policy
--------------------------------------------------------------*/
#policy-section .termly {
  font-family: "Figtree", sans-serif!important;
}

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
#events .events-container {
  background: #171717;
  border-radius: 10px;
  padding: 30px;
  justify-content: center;
  margin-bottom: 75px;
}
#events img {
  width: 100%;
}
#events h3 {
 text-align: left;
 font-size: 22px;
 font-weight: 800;
 margin: 16px 0px;
}
#events .event p {
 text-align: left;
 font-size: 16px;
}
#events i {
  transition: all 0.3s ease-in-out;
  background: -webkit-linear-gradient(360deg, rgba(255,103,62,1) 0%, rgba(254,44,120,1) 55%, rgba(168,41,202,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 22px;
  padding-right: 5px;
}
#events i:hover {
  transform: scale(1.1);
}
#events .event-info {
  margin-top: 30px;
  padding: 50px;
  border-top: 2px solid;
  border-image: linear-gradient(90deg, rgba(255,103,62,1) 0%, rgba(254,44,120,1) 55%, rgba(168,41,202,1) 100%)1;
}
#events .details p1 {
  font-weight: 600;
}
#events .details i {
  padding-right: 12px;
}
#events .details .icon {
  font-size: 40px;
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
}
#events .details .icon i {
  transition: all 0.3s ease-in-out;
  background: -webkit-linear-gradient(360deg, rgba(255,103,62,1) 0%, rgba(254,44,120,1) 55%, rgba(168,41,202,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#events .details .icon i:hover {
  transform: scale(1.1);
}
#events .item {
	margin-top: 40px;
}
#events .details h4 {
  padding: 0 0 0 60px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #fff;
}
#events .details p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #9c9c9c;
}
@media (max-width: 991px) {
  #events .event-info {
    padding: 10px;
  }
  #events .events-container {
    padding: 50px 10px;
  }
}
  /*--------------------------------------------------------------
  #404
  --------------------------------------------------------------*/
.page-not-found h1 {
  font-size: 10em;
  text-align: center;
}
.page-not-found p {
  font-size: 2em;
  margin-bottom: 25px;
  text-align: center;
}
.logo img {
  transition: ease-in-out 0.3s;
}
.logo img:hover {
  transform: scale(1.1);
}
/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  background: #171717;
  border-radius: 50px;
  padding: 2px 15px;
}
.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #fe2c78;
}
.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}
.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.portfolio .portfolio-wrap img {
   width: 100%;
   display: block;
}
.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}
.portfolio .portfolio-wrap .portfolio-links {
  opacity: 1;
  left: 0;
  right: 0;
  bottom: -60px;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
  display: flex;
  justify-content: center;
}
.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  font-size: 28px;
  text-align: center;
  background: rgba(20, 157, 221, 0.75);
  transition: 0.3s;
  width: 50%;
}
.portfolio .portfolio-wrap .portfolio-links a:hover {
  background: rgba(20, 157, 221, 0.95);
}
.portfolio .portfolio-wrap .portfolio-links a + a {
  border-left: 1px solid #fe2c78;
}
.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}
.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  bottom: 0;
}
.portfolio .icon-box {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.4s;
  width: 100%;
}
.portfolio .icon-box .icon {
  margin-bottom: 0px;
}
.portfolio .icon-box .icon i {
  color: #fe2c78;
  font-size: 36px;
  transition: 0.3s;
}
.portfolio .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 24px;
}
.portfolio .icon-box h4 a {
  color: #fe2c78;
  transition: ease-in-out 0.3s;
}
.portfolio .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.portfolio .icon-box:hover {
  transform: translateY(-10px);
}
.portfolio .icon-box:hover h4 a {
  color: #fe2c78;
}
.portfolio-btn  {
  text-align: center;
  padding-top: 30px;
}
.portfolio .click {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
}
.portfolio  .click:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  transform: scale(1.1);
  z-index: 200;
  -webkit-animation: none;
  animation: none;
}
@media (min-width: 769px) {
.portfolio .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #fe2c78;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #149ddd;
}
.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(5, 13, 24, 0.08);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}
.portfolio-details .portfolio-description {
  padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
}

/*Blog CSS*/

/* POST SLIDER */
#slider .container {
    background: none !important;
}
.post-slider {
  position: relative;
  font-family: "Figtree", sans-serif;
  margin: 30px 0;
}

.post-slider .slider-title {
  text-align: center;
  margin: 30px auto;
}

.post-slider .next {
  position: absolute;
  top: 50%;
  right: 30px;
  font-size: 4em;
  color: #fe2c78;
  cursor: pointer;
  z-index: 1;
}

.post-slider .prev {
  position: absolute;
  top: 50%;
  left: 30px;
  font-size: 4em;
  color: #fe2c78;
  cursor: pointer;
  z-index: 1;
}

.post-slider .post-wrapper {
  margin: 0px auto;
  overflow: hidden;
  padding: 10px 0px 10px 0px;
  background: transparent;
}

.post-slider .post-wrapper .post {
  margin: 0px 10px;
  display: inline-block;
  background: #171717;
  border-radius: 15px;
  height: auto;
}

.post-slider h4 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 15px;
  color: #fff !important;
}

.post-slider .post-wrapper .post .post-info {
  padding: 10px 15px;
  border-radius: 0 0 15px 15px;
}

.post-slider .post-wrapper .post .slider-image {
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

@media (max-width: 991px) {
  .post-slider .post-wrapper .post .slider-image {
    width: 100%;

  }
}
@media (max-width: 768px) {
  .post-slider .post-wrapper .post .slider-image {
    width: 100%;

  }
}
@media (min-width: 360px) {
  .post-slider .post-wrapper .post .slider-image {
    width: 100%;

  }
}


.post-slider .post .post-info i {
  color: #9c9c9c;
  font-family: "Figtree", sans-serif;
  font-size: 12px;
  margin-top: 10px;
}
.post-slider .post .post-info p {
  color: #9c9c9c;
  font-family: "Figtree", sans-serif;
  font-size: 12px;
  margin-top: 10px;
}

/*--------------------------------------------------------------
# Blog Stylings
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Blog Home Posts List
--------------------------------------------------------------*/
.blog .posts-list article {
  height: 100%;
  padding-bottom: 30px;
}


.blog .posts-list article+article {
  margin-top: 30px;
}

.blog .posts-list .post-img {
  border-radius: 25px;
  background: #171717;
}

.blog .posts-list .post-img img {
  max-width:100%;
  max-height:100%;
  border-radius: 10px 10px 0 0;
}


.blog .post-tile {
  background: #171717;
  border-radius: 0 0 10px 10px;

}

.blog .posts-list .title {
  font-size: 24px;
  font-weight: 700;
  padding: 0 10px;
  margin: 20px 0 0 0;
}

.blog .posts-list .title a {
  color: #fe2c78;
  transition: 0.3s;
}

.blog .posts-list .title a:hover {
  color: #fe2c78;
}

.blog .posts-list .meta-top {
  margin-top: 10px;
  color: #9c9c9c;
  padding: 0 10px;
}

.blog .posts-list .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
  font-size: 12px;
}

.blog .posts-list .meta-top ul li+li {
  padding-left: 20px;
  font-size: 12px;
}

.blog .posts-list .meta-top i {
  font-size: 14px;
  margin-right: 8px;
  line-height: 0;
  color: #9c9c9c;
}

.blog .posts-list .meta-top a {
  color: #9c9c9c;
  font-size: 12px;
  display: inline-block;
  line-height: 1;
}

.blog .posts-list .content {
  margin-top: 10px;
  padding: 0 10px;
}

.blog .read-more {
  text-align: center;
  margin: 10px 0;
}

.blog .read-more a {
  color: #fe2c78;
  transition: 0.3s;
  font-size: 12px;
  font-weight: 500;
  margin: auto;
  text-align: right;
}

.blog .read-more a:hover {
  color: #fe2c78;
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Blog Details Page
--------------------------------------------------------------*/
.blog .blog-details {
  height: auto;
}
.blog .content {
  color: #f9f9f9;
  font-size: 16px;
}

.blog .title {
  color: #fe2c78;
}

.blog .meta-top li {
  color: #9c9c9c;
}

.blog .meta-top i {
  color: #9c9c9c;
}

.blog .blog-details .post-img img {
  border-radius: 15px;
  width: 100%;
}

.blog .blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .blog-details .title h2 {
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
  color: #fe2c78;
}

.blog .blog-details .content {
  margin-top: 20px;
}

.blog .blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .blog-details .content blockquote {
  overflow: hidden;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .blog-details .content blockquote p {
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .blog-details .meta-top {
  margin-top: 20px;
  color: #fe2c78;
}

.blog .blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog .blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: #fe2c78;
}

.blog .blog-details .meta-top a {
  color: #fe2c78;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(27, 47, 69, 0.15);
}

.blog .blog-details .meta-bottom i {
  color: #fe2c78;
  display: inline;
}

.blog .blog-details .meta-bottom a {
  color:  #fe2c78;
  transition: 0.3s;
}

.blog .blog-details .meta-bottom a:hover {
}

.blog .blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--color-default);
  content: ",";
}

.blog .blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog .blog-details .meta-bottom .share i {
  padding-left: 5px;
}

.blog .post-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .post-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog .post-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--color-secondary);
}

.blog .post-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .post-author .social-links a {
  color: rgba(27, 47, 69, 0.5);
  margin-right: 5px;
}

.blog .post-author p {
  font-style: italic;
  color: rgba(var(--color-gray-rgb), 0.8);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog .sidebar {
  background: #171717;
  border-radius: 25px;
  padding: 30px 15px;
}
.blog .sidebar .sidebar-title {
  font-size: 22px;
  font-weight: 600;
  padding: 0;
  margin: 0;
  margin-top: 15px;
  color: #fe2c78;
}

.blog .sidebar .sidebar-item+.sidebar-item {
  margin-top: 40px;
}

.blog .sidebar .search-form form {
  background: #151515;
  border: 1px solid rgba(27, 47, 69, 0.2);
  padding: 3px 0;
  position: relative;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form input[type=text]:focus {
  outline: none;
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: #fe2c78;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {

}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: #9c9c9c;
  font-size: 15px;
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  transform: scale(1.1);
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(var(--color-default-rgb), 0.4);
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item {
  display: flex;
  box-shadow: 0px 0 15px rgba(0, 0, 0, 0.08);
  padding: 5px 20px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 10px;
}

.blog .sidebar .recent-posts img {
  width: 120px;
  margin-right: 15px;
  height: 80px;
}

.blog .sidebar .recent-posts h4 {
  font-size: 18px;
  font-weight: 400;
}

.blog .sidebar .recent-posts h4 a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: var(--color-primary);
}

.blog .sidebar .recent-posts p {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: #9c9c9c;
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #38618e;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid rgba(27, 47, 69, 0.15);
  display: inline-block;
  border-radius: 50px;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(27, 47, 69, 0.8);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Blog Home Pagination
--------------------------------------------------------------*/
.blog .blog-pagination {
  margin-top: 30px;
  color: #9c9c9c;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
  font-size: 18px;
  font-weight: 700;
}

.blog .blog-pagination li a {
  color: #9c9c9c;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background: #171717;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;

}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: #fe2c78;
}
