/*--------------------------------------------------------------
# Sections & Section Headers
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-header {
  margin: auto;
  padding-bottom: 40px;
  max-width: 79%;
  text-align: center;
}

.section-header h2 {
  margin-top: 7rem;
  margin-bottom: 20px;
  font-size: 3.5rem;
  font-weight: 200;
  letter-spacing: .0725rem;
  color: #333;
}

.section-header p {
  margin: 0 auto;
  max-width: 86%;
  color: #444;
  font-size: 17px;
  font-weight: 400;
}

#about .section-header p {
  color: #444;
  font-size: 1.75rem;
  font-weight: 100;
}

.section-header p b,
.pt-lg-5 b {
  color: black;
  font-weight: 600;
}

.container .section-header p.test {
  margin-top: 50px;
  font-size: 85%;
}

.section-header .container h1 {
  margin-bottom: 0;
  padding-top: 8px;
  padding-bottom: 0;
  text-align: left;
  font-weight: 900;
  font-size: 3rem;
}

.dotted-divider {
  margin: 48px 0 25px 0;
  width: 100%;
  height: 2px;
  background-image: radial-gradient(circle, #000 1px, transparent 1px);
  background-size: 40px 6px;
  background-repeat: repeat-x;
  background-position: center;
}

/*--------------------------------------------------------------
# Hero Section - Basic
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 60vh;
  padding: 140px 0 60px 0;
  background: var(--color-black) url("../img/hero-bg.png") center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h2 {
  color: var(--color-secondary);
  margin-bottom: 25px;
  font-size: 48px;
  font-weight: 300;
  animation: fadeInDown 1s both 0.2s;
}

.hero p {
  color: var(--color-secondary-light);
  animation: fadeInDown 1s both 0.4s;
  font-weight: 500;
  margin-bottom: 30px;
}

.hero .img {
  margin-bottom: 40px;
  animation: fadeInDownLite 1s both;
}

.hero .btn-get-started {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 5px;
  transition: 0.5s;
  animation: fadeInUp 1s both 0.6s;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.hero .btn-get-started:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/*--------------------------------------------------------------
# Hero Section - Fullscreen
--------------------------------------------------------------*/
#hero-fullscreen {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

#hero-fullscreen .intro {
  width: 80vw;
  margin: auto;
  padding-top: 2.25rem;
  text-align: center;
}

.hero-fullscreen .staggered-heading,
.hero-fullscreen h2 {
  margin: 0 0 32px 0;
  font-size: 96px;
  font-weight: 900;
}

.hero-fullscreen p {
  padding: 0 10%;
}

.hero-fullscreen:before {
  content: "";
  background: rgba(var(--color-white-rgb), 0.60);
}

.hero-fullscreen .btn-get-started {
  background-color: #32d5fc;
  min-width: 340px;
}

.hero-fullscreen .btn-get-started:hover {
  background-color: #9bff0842;
  border-color: #d7ff9c;
  color: #333;
}

/*--------------------------------------------------------------
# Hero Background Layers & Canvas
--------------------------------------------------------------*/
.hero-bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: url("../img/hero-fullscreen-bg.jpg") center center;
  background-size: cover;
  transform: scale(1.1);
  opacity: 1;
}

.hero-bg-blur-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: rgba(255, 255, 255, 0);
  pointer-events: none;
}

canvas#scene,
#scene {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 6 !important;
  pointer-events: none !important;
}

.hero-content {
  position: relative;
  z-index: 10;
  margin: auto;
  width: 80%;
  padding: 40px 20px;
}

/*--------------------------------------------------------------
# Hero Background - Blur Effect
--------------------------------------------------------------*/
.hero-bg-wrap > .hero-bg-gradient,
.hero-bg-wrap > .hero-bg-image,
.hero-bg-wrap > canvas {
  transition: filter 6s ease, opacity 6s ease;
}

.hero-bg-wrap.blurred > .hero-bg-image {
  /*opacity: 0.175;*/
  opacity: 0.110;
}

.hero-bg-wrap.blurred > .hero-bg-gradient,
.hero-bg-wrap.blurred > .hero-bg-image {
  filter: blur(12px);
  transition: all 4s ease;
}

/*--------------------------------------------------------------
# Hero Text Effects - Staggered & Animated
--------------------------------------------------------------*/
.staggered-heading2 span {
  display: inline-block;
  opacity: 0;
  transform: scale(6.12);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
  will-change: opacity, transform;
}

.staggered-heading2 span.visible {
  opacity: 0.95;
  transform: scale(1);
}

.staggered-heading2 span.visible:nth-child(4) {
  background-image: linear-gradient(to right, #0273fe, #ff5f1a, #a101c7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.staggered-heading2 span.visible:nth-child(5)::before {
  content: attr(data-text);
  position: absolute;
  left: 0.1em;
  top: 0.1em;
  z-index: -1;
  filter: blur(5px);
  opacity: 0.7;
  transform-origin: left;
  transition: all 0.5s ease;
}

/*--------------------------------------------------------------
# Text Stroke Animation
--------------------------------------------------------------*/
.text-stroke-anim {
  position: relative;
  display: inline-block;
  color: white;
  -webkit-text-stroke: 1px #ffffff90;
}

.text-stroke-anim::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, #ff00f7, #00e5ff, #fff200, #ff00f7);
  background-size: 300% 300%;
  animation: glowmove 4s linear infinite;
  filter: blur(16px);
  opacity: 1;
  -webkit-mask-image: linear-gradient(#fff 0 0);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-composite: destination-in;
}

.text-stroke-anim::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #ff00f7, #00e5ff, #fff200, #ff00f7);
  background-size: 300% 300%;
  animation: strokemove 4s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-text-stroke: 2px transparent;
}

@keyframes glowmove {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes strokemove {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/*--------------------------------------------------------------
# Glow Text Effect
--------------------------------------------------------------*/
.glow-text {
  position: relative;
  color: #fff;
  font-weight: 700;
  display: inline-block;
}

.glow-text::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  z-index: -1;
  /*background: linear-gradient(90deg, #ff00f7, #00e5ff, #fff200, #ff00f7);*/
  background: linear-gradient(90deg, #ff54c2, #31cdff, #ff0af8, #871bff);
  animation: glowShift 6.5s linear infinite;
  filter: blur(52px);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0px transparent;
  mix-blend-mode: screen;
  opacity: 0.825;
}

@keyframes glowShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/*--------------------------------------------------------------
# Hero Custom Button
--------------------------------------------------------------*/
.button-wrapper {
  display: inline-block;
  margin-top: 20px;
  padding: 4px;
  border: 1px solid #32d5fc;
  border-radius: calc(30px + 4px);
  background: transparent;
  transition: border-color 0.3s ease;
  position: relative;
  z-index: 20;
}

.custom-button {
  display: inline-block;
  padding: 14px 40px;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04rem;
  background-color: #56d6ff;
  background-color: #00b4ff;
  border: 4px solid #56d6ff;
  border-radius: 30px;
  color: #00333C;
  color: white;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
}

.button-wrapper:hover {
  border-color: #d7ff9c;
}

.button-wrapper:hover .custom-button {
  background-color: #9bff0842;
  border-color: #d7ff9c;
  color: #fff;
}

/*--------------------------------------------------------------
# Legacy Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg.jpg") top right;
  background-size: cover;
}

#hero .container {
  padding-top: 70px;
  position: relative;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #222222;
}

#hero h2 {
  color: #6f6f6f;
  margin: 10px 0 0 0;
  font-size: 22px;
}

#hero .btn-about {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;  
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: #34b7a7;
}

#hero .btn-about:hover {
  background: #3dc8b7;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .section-title p {
  font-size: 140%;
}

/*height: 96vh;*/
/*#about.about {
  width: 100vw;
  
  position: relative;
  overflow: hidden;
}

#about.about::after {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  background-image: url("../img/rich-bg4.png");
  background-size: 36.5%;
  background-position: 25%;
  background-size: 29.5%;
  background-position: 30% 139%;
  background-size: 29.5%;
  background-position: 30% 77%;
  background-repeat: no-repeat;
   z-index: -2;
}*/

.about .about-img {
  /*width: 512px;
  height: 651px;*/
  width: 605px;
  height: 769px;
  margin-top: -147px;
  position: relative;
  overflow: hidden;
  background-image: url("../img/rich-bg4.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  z-index: -5;
}

#about.about::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  mask-image: url("../img/rich-bg4.png");
  mask-size: cover;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-mode: alpha;
  -webkit-mask-image: url("../img/rich-bg4.png");
  -webkit-mask-size: cover;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-composite: source-in;
  pointer-events: none;
  z-index: 2;
}

.about h3 {
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 0.0025rem;
  margin-bottom: 20px;
}

.about .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #555555;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 2px;
  color: #34b7a7;
}

.about .content p:last-child {
  margin-bottom: 0;
}

#skills .container {
  position: relative;
  margin-bottom: 80px;
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
/*.skills-content p b {
  font-size: 100%;
  font-weight: 600;
  color: #cf9eff;
  color: #f5ebff;
}

.skills .progress {
  margin-top: 50px;
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  margin: 0 0 6px 0;
  text-transform: uppercase;
  text-align: center;
  display: block;
  padding-top: 25px;
  font-weight: 600;
  letter-spacing: 0.025rem;
  font-family: "Poppins", sans-serif;
  color: #efefef;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
  color: #f8f8f8;
  display: none;
}

.skills .progress-bar-wrap {
  background: #dcd5c8;
  background: #ff54c2;
}

.skills .progress-bar {
  width: 1px;
  height: 2px;
  transition: 0.9s;
  background-color: #6d4195;
}

.skills-list {
  margin-top: 12px;
}

.skills-list ul,
.skills-list ul li {
  list-style-type: none;
  padding: 0;
  margin: 0;
  border-bottom: 1px dotted #d19eff57;
}

.skills-list ul:last-of-type, 
.skills-list ul li:last-of-type,
.skills-list ul > li:last-of-type {
  border-bottom: none;
}

.skills-list h3 {
  margin-top: 30px;
  font-size: 95%;
  font-weight: bold;
}

.skills-list ul li {
  font-size: 90%;
  letter-spacing: .035rem;
  color: #b9b8bf;
  padding: 20px 0;
}

.skills-icon {
  width: 72px;
  height: 68px;
  opacity: 1;
}

.skills-icon .shape {
  fill: #00ddff;
  fill: #ff54c2;
}

.skills-icon path {
  border: none;
  stroke: none;
  fill-opacity: 1;
}

#skills .section-header h2 {
  color: #fff;
  margin-top: 80px;
}

#skills .section-header p {
  color: #ce9eff;
  color: #f5ebff;
}
*/
/*--------------------------------------------------------------
# Resume Section
--------------------------------------------------------------*/
h4,
.resume .resume-item h4 {
  margin: 30px;
  font-size: 1.5rem;
  font-weight: 900;
}

h4 {
  margin: 30px 0;
}

.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}

.resume .resume-item ul li {
  padding-bottom: 10px;
  font-size: 0.9rem;
  letter-spacing: 0.005rem;
}

section#resume {
  margin-top: 60px;
  padding: 0;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
#testimonials,
#skills {
  padding-top: 160px;
}

.testimonials,
.skills.section-bg {
  background-color: #000;
  /*background-color: #010c16;*/
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
}

.testimonials .section-header {
  margin-bottom: 20px;
}

.testimonials .section-header h2 {
  margin-top: 40px;
  color: white;
}

.testimonials .section-header p {
  color: #e0e0e0;
  max-width: 50%;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
  margin-bottom: 60px;
}

.testimonials .testimonial-item {
  text-align: center;
  color: var(--color-black);
}

.testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  margin: 10px 0 20px 0;
  /*font-family: "Playfair Display", serif;*/
  font-family: "Nothing You Could Do", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 2.45rem;
  /*font-weight: 100;
  font-style: italic;*/
  letter-spacing: 0.0875rem;
  transform: skew(-10.05deg);
  display: inline-block;
  color: #bd3aff;
  color: #ff54c2;
  text-transform: lowercase;
}

.testimonials .testimonial-item h4 {
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: #999;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: var(--color-yellow);
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  font-size: 48px;
  color: #e9bb78;
}

.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: normal;
  margin: 0 auto 15px auto;
  padding-bottom: 18px;
  font-family: "LyonText-Regular", helvetica, sans-serif;
  font-size: 98%;
  letter-spacing: .0255rem;
  color: #fff;
}

.testimonials .testimonial-item p b,
.testimonials .testimonial-item span {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #e0e0e0;
}

.testimonials .swiper-pagination {
  margin-top: 2.5rem;
  margin-bottom: 40px;
  position: relative;
  transform: translate3d(0, 0, 0);
}

.testimonials .swiper-pagination .swiper-pagination-bullet,
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #5d5d5d;
  opacity: 1;
  border-radius: 50%;
  box-sizing: border-box;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active,
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  width: 12px;
  height: 12px;
  background-color: #fff;
  border-color: transparent;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  box-shadow: 0 0 0 1px #fff;
  pointer-events: none;
}

.testimonials .testimonial-item span:last-child {
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: #999;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 20px);
}

#testimonials.testimonials.gradient-bg {
  position: relative;
  border-top: 1px solid #b82ac35e;
  width: 100%;
  min-height: 60vh;
  padding: 140px 0 60px 0;
  background-color: var(--color-black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

#testimonials.testimonials.gradient-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../img/lightrays.png) center center / cover no-repeat;
  filter: blur(6px);
  transform: scale(.75);
  z-index: 0;
  top: -300px;
  opacity: 0.325;
}

#testimonials.testimonials.gradient-bg > * {
  position: relative;
  z-index: 1;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
#portfolio.portfolio .container {
  padding: 80px 10px;
  padding: 80px 0;
}

#portfolio.portfolio .container .section-header {
  margin-top: 100px;
}

.portfolio .portfolio-flters {
  padding: 0;
  margin: 0 auto 30px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 300;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-flters li:hover,
.portfolio .portfolio-flters li.filter-active {
  color: var(--color-primary);
}

.portfolio .portfolio-flters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio p {
  margin-bottom: 40px;
}

.portfolio .portfolio-item {
  position: relative;
  border: 1px solid var(--color-white);
  overflow: hidden;
  z-index: 1;
}

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

.portfolio .portfolio-item:before {
  content: "";
  inset: 0;
  position: absolute;
  background: rgba(195, 255, 54, 0.7);
  z-index: 2;
  transition: 0.5s;
  visibility: hidden;
  opacity: 0;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: auto 0px 0px 0px;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  height: -webkit-fill-available;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: black;
  padding-right: 50px;
  margin-top: 37.5%;
  display: list-item;
  list-style-type: none;
  text-align: center;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: 0;
  color: rgba(var(--color-white-rgb), 0.7);
  transition: 0.3s;
  line-height: 0;
  width: -webkit-fill-available;
  height: inherit;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--color-white);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover:before {
  visibility: visible;
  opacity: 1;
}

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

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  inset: auto 10px 0 10px;
}

.bi-link-45deg::before {
  display: none;
}

#portfolio.portfolio h2 {
  color: #edfdff;
}

#portfolio.portfolio p {
  color: #d8cef6;
}

#portfolio.portfolio h4 {
  margin-top: 14px;
  margin-bottom: 26px;
  font-weight: 200;
  letter-spacing: 0.084rem;
  -webkit-background-clip: text;
  background-clip: text;
  color: #b82ac3;
  color: #ff54c2;
  display: inline-block;
  font-size: 160%;
  text-transform: uppercase;
}

#portfolio.portfolio p {
/*  width: 50%;
  font-size: 15.25px;
  font-weight: 100;
  letter-spacing: 0.044rem;
  line-height: 1.45rem;*/
  /*width: 53%;*/
  width: 82%;
  font-size: 18px;
  font-weight: 100;
  letter-spacing: 0.044rem;
  line-height: 2.15rem;
}

/*--------------------------------------------------------------
# Portfolio - Animated Card
--------------------------------------------------------------*/
.card.animated-bg {
  background: none;
  position: relative;
  overflow: hidden;
}

.card.animated-bg .cluster-wrap {
  position: absolute;
  inset: 0;
  width: 105%;
  height: 105%;
  overflow: hidden;
  z-index: 0;
}

.card.animated-bg canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.card.animated-bg .content {
  position: absolute;
  bottom: 12px;
  left: 20px;
  right: 20px;
  z-index: 2;
  color: #fff;
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .map {
  margin-bottom: 40px;
}

.contact .map iframe {
  border: 0;
  width: 100%;
  height: 400px;
}

.contact .info {
  width: 100%;
  padding: 40px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(var(--color-black-rgb), 0.1);
  overflow: hidden;
}

.contact .info h3 {
  font-weight: 600;
  font-size: 24px;
}

.contact .info p {
  color: var(--color-secondary-light);
  margin-bottom: 30px;
  font-size: 15px;
}

.contact .info-item + .info-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(var(--color-secondary-rgb), 0.15);
}

.contact .info-item i {
  font-size: 24px;
  color: var(--color-primary);
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-secondary);
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: var(--color-secondary-light);
}

.contact .info i {
  font-size: 20px;
  color: #34b7a7;
  float: left;
  width: 44px;
  height: 44px;
  background: #effbf9;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #222222;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #555555;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #34b7a7;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: var(--color-white);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: var(--color-white);
  background: var(--color-red);
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: var(--color-white);
  background: var(--color-green);
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: var(--color-white);
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--color-green);
  border-top-color: var(--color-white);
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: #34b7a7;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email] {
  height: 48px;
  padding: 10px 15px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
  height: 290px;
}

.contact .php-email-form button[type=submit] {
  background: #34b7a7;
  border: 0;
  padding: 10px 30px 12px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #3dc8b7;
}

#contact,
.contact .php-email-form {
  background: none;
}

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

/*--------------------------------------------------------------
# CSS Angled Lines on BG
--------------------------------------------------------------*/

/*#story-overview.story-overview {
  --line-width: 1px;
  --desired-gap: 3px;
  --diagonal-spacing: calc((var(--desired-gap) + var(--line-width)) * 1.41421); 
  --line-color: rgba(172, 86, 255, 1);
  position: relative;
  overflow: hidden;
}

#story-overview.story-overview::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 16px;
  pointer-events: none;
  background: repeating-linear-gradient(
    -45deg,
    var(--line-color),
    var(--line-color) var(--line-width),
    transparent var(--line-width),
    transparent var(--diagonal-spacing)
  );
}
*/

#story-overview.story-overview {
  --line-width: 1px;
  --line-gap: 1px;
  --line-color: #b1b1b1;
  position: relative;
  overflow: hidden;
}

/*#story-overview.story-overview::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 16px;
  pointer-events: none;
  background: repeating-linear-gradient(
    -45deg,
    var(--line-color) 0px,
    var(--line-color) var(--line-width),
    transparent var(--line-width),
    transparent calc(var(--line-width) + var(--line-gap))
  );
}*/
#story-overview.story-overview::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 16px;
  pointer-events: none;
  /* Force sharper rendering */
  transform: translateZ(0);
  will-change: transform;
  background: repeating-linear-gradient(
    -45deg,
    var(--line-color) 0px,
    var(--line-color) 1px,
    transparent 1px,
    transparent 2px
  );
}

.gradient-with-noise {
  background: linear-gradient(to right, blue, pink), url(noise.png);
  /* Other background properties like background-size, etc. */
}



/*--------------------------------------------------------------
# CSS Circular Gradients on BG
--------------------------------------------------------------*/
:root {
  --circle-size: 90%;
  --oval-width: 80%;
  --oval-height: 50%;
  --circle-offset: -15%;
  --oval-offset: 105%;
  --white-glow: rgba(255, 255, 255, 0.5);
  --blue-glow: rgba(173, 216, 230, 0.5);
}

.gradient-bg {
  min-height: 300px;
  background-color: #001e2c;
  background-color: #110b21;
  background-image: 
    radial-gradient(
      circle farthest-side at -20% -20%, 
      rgb(0 30 123 / 49%) 0%,
      rgba(255, 255, 255, 0) 85%),
    radial-gradient(
      ellipse farthest-side at 110% 50%, 
      rgb(87 31 255 / 29%) 0%, 
      rgb(199 173 230 / 5%) 85%
    );
  background-repeat: no-repeat;
}

.gradientP-bg {
  min-height: 300px;
  background-color: #000;
  background-image:
/*    radial-gradient(
      circle farthest-side at -20% -20%,
      rgba(255, 255, 255, 0.3) 0%,
      rgba(255, 255, 255, 0) 85%
    ),
    radial-gradient(
      ellipse farthest-side at 110% 50%,
      rgba(173, 216, 230, 0.4) 0%,
      rgba(173, 216, 230, 0) 85%
    );*/

radial-gradient(
  circle farthest-side at -20% -20%, 
  rgb(19 0 104 / 66%) 0%, 
  rgb(255 255 255 / 0%) 85%), 
radial-gradient(
  ellipse farthest-side at 110% 50%, 
  rgb(123 68 251 / 29%) 0%, 
  rgb(181 173 230 / 0%) 85%);

  background-repeat: no-repeat;
}

.gradationCircle::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 78%;
  top: -7%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse 31% 32% at center top, rgb(110 86 255 / 61%) 0%, rgb(0 0 0 / 86%) 100%, rgb(79 52 52 / 0%) 100%);
  filter: blur(6px);
  pointer-events: none;
  z-index: -1;
}

/*.gradient-bg-skills {
  min-height: 300px;
  background-image: 
    url('../img/extended-octagon-bg.svg'),
    radial-gradient(circle farthest-side at -20% -20%, rgb(0 30 123 / 49%) 0%, rgba(255, 255, 255, 0) 85%), 
    radial-gradient(ellipse farthest-side at 110% 50%, rgb(87 31 255 / 29%) 0%, rgb(199 173 230 / 5%) 85%);
  background-repeat: no-repeat;
  background-size: 66.67% auto, 100% 100%, 100% 100%; 
  background-position: center center, -20% -20%, 110% 50%;
}*/

/*.gradient-bg {
  min-height: 300px;
  background-image: radial-gradient(circle farthest-side at -20% -20%, rgb(0 30 123 / 49%) 0%, rgba(255, 255, 255, 0) 85%), radial-gradient(ellipse farthest-side at 110% 50%, rgb(87 31 255 / 29%) 0%, rgb(199 173 230 / 5%) 85%);
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}*/




/*--------------------------------------------------------------
# Link with Icon
--------------------------------------------------------------*/
.link-with-icon {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease;
}

.link-with-icon:hover {
  color: #05a2ee;
}

.link-with-icon i {
  font-size: 23px;
  margin-right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: color 0.3s ease;
}




/*--------------------------------------------------------------
# Media Queries - Tablet (max 992px)
--------------------------------------------------------------*/
@media (max-width: 992px) {
  #hero .container {
    padding-top: 58px;
  }

  #hero:before {
    content: "";
    background: rgba(255, 255, 255, 0.8);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }

  .hero-fullscreen h2,
  .hero-fullscreen p {
    padding-right: 0;
  }

  .hero-fullscreen h2 {
    margin: 0px 0 30px 0px;
    width: 100%;
    font-size: 2.10rem;
    font-weight: bolder;
    line-height: 1.40;
    /*text-align: center;*/
  }

  .staggered-heading2 span.visible:nth-child(4) {
    background-image: linear-gradient(to right, #05a2ee, #ffdb1a, #a101c7);
  }

  .hero-fullscreen p {
    font-weight: 500;
    color: black;
    /*text-align: left;*/
    padding-left: 0;
    width: 80vw;
  }

  .hero-fullscreen .btn-get-started {
    padding: 12px 32px;
    white-space: pre;
  }

  .hero-content {
    width: 80%;
    padding: 40px 0;
  }

  /*section {
    padding: 80px 0;
  }*/

  section {
    padding: 44px 0;
  }

  .section-header {
    max-width: 100%;
  }

  .section-header h2 {
    margin-top: 7rem;
    margin-bottom: 20px;
    /*text-align: left;*/
    font-size: 36px;
  }

  .section-header p {
    margin: 0 auto;
    max-width: 100%;
  }

  .section-header .container h1 {
    padding-right: 20px;
    padding-left: 0;
    font-size: 2rem;
    font-weight: bold;
    /*text-align: left;*/
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container p {
    padding-right: 20px;
    /*text-align: left;*/
  }

  .pt-lg-5,
  #about .section-header h2,
  #about .section-header p {
    margin-left: 20px;
  }

  #main .index p {
    padding-right: 20px;
  }

  #main.caseStudy .testimonial-item {
    left: 25px;
    padding: 16px 40px 16px 0;
  }

  #testimonials, #skills {
    padding-top: 80px;
    padding-bottom: 0;
  }

  .testimonials {
    padding: 40px 20px;
  }

  .testimonials .testimonial-item h3 {
    font-size: 1.45rem;
  }

  .testimonials .section-header p {
    max-width: 100%;
  }

  .testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }

  #portfolio.portfolio .container {
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 40px;
  }

  #portfolio.portfolio h4 {
    display: block;
    margin: auto;
    margin-top: 14px;
    margin-bottom: 26px;
    padding: 0;
    font-size: 118%;
    /*white-space: nowrap;*/
  }

  #portfolio.portfolio p {
    margin-bottom: 0;
    width: 100%;
    font-size: 15.25px;
    font-weight: 100;
    letter-spacing: 0.044rem;
    line-height: 1.45rem;
  }

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

  #skills .container {
    width: 94%;
  }

  #skills .section-header {
    padding-left: 0;
  }

  .skills-content p {
    text-align: center;
  }

  .skills-content p b {
    font-weight: 900;
  }

  .skills-content .text-center p b {
    text-align: center;
  }

  .skills-icon {
    margin-left: -10px;
  }

  .purecounter[data-purecounter-end="365536"] {
    position: relative;
    left: 0px;
  }

  .about .about-img:before {
    inset: -30px 0 0 -30px;
  }

  .about .about-img {
    width: 460px;
    height: 585px;
    margin-left: -18%;
  }

  .about .about-img:before {
    display: none;
  }

  #experienceData .container,
  .brand-section .resume-title,
  .resume.education .container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .brand-section .resume-title {
    padding-left: 30px;
  }

  .col-lg-6:nth-of-type(2) .resume-item {
    margin-top: 40px;
  }

  .gradient-bg {
    min-height: 300px;
    background-color: #001e2c;
    background-image:
      radial-gradient(
        circle farthest-side at -20% -20%,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0) 65%
      ),
      radial-gradient(
        ellipse farthest-side at 110% 50%,
        rgba(173, 216, 230, 0.2) 0%,
        rgba(173, 216, 230, 0) 45%
      );
  }
  .gradationCircle::before {
    width: 140%;
    height: 45%;
    top: -4%;
  }
}



/*--------------------------------------------------------------
# Media Queries - Mobile/Tablet (max 768px)
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }

  .about h3 {
    font-size: 18px;
    margin-left: 20px;
    width: 85%;
    margin-top: 40px;
  }
  .hero-fullscreen h2 {
    margin: 0px 0 30px 0px;
    width: 100%;
    font-size: 2.10rem;
    font-weight: bolder;
    line-height: 1.40;
    text-align: left;
  }
  .hero-fullscreen p {
    font-weight: 500;
    color: black;
    text-align: left;
    padding-left: 0;
    width: 80vw;
  }
  .section-header h2 {
    margin-top: 7rem;
    margin-bottom: 20px;
    text-align: left;
    font-size: 36px;
  }
  .section-header .container h1 {
    padding-right: 20px;
    padding-left: 0;
    font-size: 2rem;
    font-weight: bold;
    text-align: left;
  }
  .container p {
    padding-right: 20px;
    text-align: left;
  }

}

/*--------------------------------------------------------------
# Media Queries - Mobile (max 640px)
--------------------------------------------------------------*/
@media (max-width: 640px) {

  .hero .container {
    padding: 0 60px;
  }
  
}



@media (min-width: 992px) {
  .glow-text::before {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    z-index: -1;
    /*background: linear-gradient(90deg, #ff00f7, #00e5ff, #fff200, #ff00f7);*/
    background: linear-gradient(90deg, #ff54c2, #31cdff, #ff0af8, #871bff);
    animation: glowShift 6.5s linear infinite;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 0px transparent;
    height: 150px;
    margin-top: -50px;
    margin-left: -50px;
    filter: blur(60px);
    mix-blend-mode: screen;
    opacity: .65;
  }

  
  .pt-lg-5.first {
    /*padding-top: 18rem !important;*/
    padding-top: 13rem !important;
    width: 90%;
    font-size: 90%;
  }

 .pt-lg-5.second {
    padding-top: 0 !important;
    padding-bottom: 200px !important;
    w4idth: 90%;
    font-size: 90%;
 }


  #testimonials, #skills {
    padding-top: 80px;
  }

  .testimonials .testimonial-item p {
    width: 80%;
  }

  .col-lg-7 {
    width: 47%;
    padding-left: 79px;
  }
}

/*--------------------------------------------------------------
# Media Queries - Desktop (min 1024px)
--------------------------------------------------------------*/
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }

  .intro {
    margin-top: 30px;
  }

  #about .section-header p {
    max-width: 100%;
  }
  
}

/*--------------------------------------------------------------
# Media Queries - Large Desktop (max 1599px)
--------------------------------------------------------------*/
@media (max-width: 1599px) {
  .hero-fullscreen h2 {
    width: 100%;
    font-size: 3rem;
  }
}

/*--------------------------------------------------------------
# Media Queries - Large Desktop (min 1600px)
--------------------------------------------------------------*/
@media (min-width: 1600px) {
  .hero-content {
    margin: auto;
    width: 90%;
  }

  #hero-fullscreen .intro {
    width: 90vw;
  }

  .hero-fullscreen .staggered-heading,
  .hero-fullscreen h2 {
    font-size: 88px;
  }
}

/*--------------------------------------------------------------
# Media Queries - Extra Large Desktop (min 2000px)
--------------------------------------------------------------*/
@media (min-width: 2000px) {
  .hero-content {
    margin: auto;
    width: 77%;
  }

  #hero-fullscreen .intro {
    width: 80vw;
  }

  .hero-fullscreen .staggered-heading,
  .hero-fullscreen h2 {
    font-size: 96px;
  }
}