/**
* Template Name: iPortfolio - v3.9.0
* Template URL: https://bootstrapmade.com/iportfolio-bootstrap-portfolio-websites-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  position: relative;
  width: 100vw;
  height: 100vh;
  font-family: 'Playfair Display';
  color: #FFEDDB;
  background-color: #494953;
}

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

a:hover {
  color: #AC7088;
  text-decoration: none;
}

hr {
  border: 0;
  height: 1px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255), rgba(255, 255, 255, 0));
  margin-top: 20px;
  margin-bottom: 20px;
}

h1,
h2,
h3,
h5,
h6 {
  font-family: 'Playfair Display';
  margin-left: 40px;
}

#main {
  margin-left: 230px; /* Adjust this value to match the width of your sidebar */
  padding: 20px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #BE8484;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #494953;
  line-height: 0;
}

.back-to-top:hover {
  background: #AC7088;
  color: #494953;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 200px;
  transition: all ease-in-out 0.5s;
  z-index: 9997;
  transition: all 0.5s;
  padding: 0 15px;
  background: #BE8484;
  overflow-y: auto;
}

#header .profile img {
  margin: 15px auto;
  display: block;
  width: 90px;
  opacity: 1;
  border: 8px solid #55393988;
  opacity: 1;
}

#header .profile h1 {
  font-size: 24px;
  margin: 0;
  margin-bottom: 12px;
  padding: 0;
  font-weight: 600;
  -moz-text-align-last: center;
  text-align-last: center;
}

#header .profile h1 a,
#header .profile h1 a:hover {
  color: #553939;
  text-decoration: none;
}

.links {
  align-items: center;
  text-align: center;
  display: flex;
  gap: 9px;
  font-size: 20px;
  line-height: 1;
  padding: 22px 0 0 11px;
  width: 30px;
  height: 30px;
  /* fill: #553939;  */
  /* transition: background-color 0.3s ease; */
  transition-duration: 200ms;
  transition-property: transform;
  transition-timing-function: ease-out;
}

.links img:hover {
  color: #7289DA; 
}

.links a.is-linkedin { 
  opacity: 1;
  stroke: #000000;
  stroke-width: 1px;
  stroke-linejoin: round;
}

.transparent {
  opacity: 0.4;
  transition: fill 0.3s ease;
  transition-duration: 200ms;
  transition-property: opacity;
  transition-timing-function: ease-out;
}

.links a.is-linkedin:hover .transparent {
  opacity: 1;
  fill: #0077B5; /* LinkedIn blue */
}

.links a.is-github:hover .transparent {
  fill: #181717; /* GitHub black */
}

.links a.is-discord:hover .transparent {
  opacity: 1;
  fill: #7289DA; /* Discord blue */
}


@media (max-width: 1199px) {
  #header {
    left: -300px;
  }
  #main {
    margin-left: 0;
  }
  #header .profile h1 a,
  .profile h1 a:hover {
    color: #553939;
    text-decoration: none;
  }
}

@media (max-width: 768px) {
  #header {
    left: -600px;
    width: 200px;
  }
  #main {
    margin-left: 0;
  }
  #header .profile img {
    margin: 15px auto;
    display: block;
    width: 80px;
    border: 7px solid #FFEDDB;
  }
  #header .profile .social-links a {
    background: #BE8484;
    color: #FFEDDB;
    transition: 0.3s;
    padding: 5px 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu * {
  justify-content: center;
  margin-right: 5%;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  margin-top: 21%;
}

.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
}

.nav-menu a,
.nav-menu a:focus {
  display: flex;
  align-items: center;
  color: #FFEDDB;
  padding: 10px 20px;
  margin-bottom: 10px;
  transition: 0.3s;
  font-size: 18px;
}

.nav-menu a i,
.nav-menu a:focus i {
  font-size: 24px;
  padding-right: 8px;
  color: #FFEDDB;
  transition: 0.3s;
}

.nav-menu a:hover,
.nav-menu .active,
.nav-menu .active:focus,
.nav-menu li:hover>a {
  text-decoration: none;
  color: #553939;
}

.nav-menu a:hover i,
.nav-menu .active i,
.nav-menu .active:focus i,
.nav-menu li:hover>a i {
  color: #553939;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  background: #FFEDDB;
  color: #553939;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  border-radius: 50px;
  cursor: pointer;
}
.mobile-nav-active {
  overflow: hidden;
}
.mobile-nav-active #header {
  left: 0;
}

@media (max-width: 768px) {
  .nav-menu a:hover,
  .nav-menu .active,
  .nav-menu .active:focus,
  .nav-menu li:hover>a #header {
    text-decoration: none;
    color: #553939;
  }
  #header .nav-menu a:hover i,
  .nav-menu .active i,
  .nav-menu .active:focus i,
  .nav-menu li:hover>a i {
    color: #553939;
  }
  .nav-menu a,
  .nav-menu a:focus {
    align-items: center;
    transition: 0.3s;
    font-size: 15px;
    padding: 10px 0 0 10px;
  }
  .nav-menu a i,
  .nav-menu a:focus i {
    transition: 0.3s;
    font-size: 24px;
    padding-right: 8px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: #000000;
  position: relative;
}

#particles-js {
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

#hero:before {
  content: "";
  background: rgba(5, 13, 24, 0.3);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .hero-container {
  width: 100%;
  height: 100vh;
  z-index: 0;
  position: absolute;
  text-align: center;
  align-items: center;
  margin-top: 100px;
  margin-bottom: 160px;
  margin-left: 225px;
  min-width: 300px;
}

#hero h1 {
  z-index: 3;
  position: relative;
  font-size: 64px;
  font-weight: 700;
  line-height: 85px;
  color: #dfb8ea;
  margin-top: 18%;
  margin-bottom: 120px;
  padding: 1px;
  user-select: none;
}

#hero p {
  text-indent: 40px;
  color: #dfb8ea;
  margin-bottom: 80px;
  font-size: 30px;
  font-family: 'Playfair Display';
  font-weight: bolder;
  user-select: none;
}

#hero p span {
  color: #AC7088;
  padding-bottom: 4px;
  letter-spacing: 1px;
  font-size: 30px;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 768px) {
  #hero {
    width: 100%;
    height: 100vh;
    background-color: #000000;
    position: relative;
  }
  #hero .hero-container {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  #hero h1,
  p,
  p span {
    font-size: 30px;
    color: #AC7088;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding-top: 40px;
  margin-bottom: 20%;
  overflow: hidden;
}

.section-bg {
  background: #DEB6AB;
}

.section-title {
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 37px;
  font-weight: bold;
  font: #fffdfd;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
  color: #BE8484;
  text-shadow:
    4px 4px 5px rgb(0, 0, 0),
    1px 1px 5px rgb(0, 0, 0);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #BE8484;
  bottom: 0;
  left: 0;
}

.section-title p {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content2 {
  align-items: center;
  display: inline-flex;
  width: 1500px;

}

.about .row {
  align-items: center;
  margin-left: 10%;
}

.box {
  align-items: center;
  background-color: #525252a8;
  box-shadow: 3px 4px 15px 30px rgba(97, 97, 97, 0.205);
  padding-bottom: 5%;
  margin-top: 15px;
}

#about .abouttext{
	padding: 10% 6% 12% 6%;
    width: 100%;
	z-index: 99;
	position: relative;
    margin: 0 auto 20%;
    background-color: #273040;
    box-shadow: 0px 0px 115px #000000a6;
}

.about .col-lg-8 {
  display: inline;
}

.custom-btn2 {
  margin-left: 25%;
  margin-top: 3%;
  height: 40px;
  color: #fff !important;
  border-radius: 5px;
  padding: 10px 25px;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
    7px 7px 20px 0px rgba(0, 0, 0, .1),
    4px 4px 5px 0px rgba(0, 0, 0, .1);
  outline: none;
}

.btn-13 {
  right: 20px;
  bottom: 20px;
  border: none;
  box-shadow: none;
  width: 150px;
  height: 40px;
  line-height: 42px;
  -webkit-perspective: 230px;
  perspective: 230px;
}

.btn-13 span {
  background: #BE8484;
  background: linear-gradient(0deg, rgba(190, 132, 132) 0%, rgba(172, 112, 136, 1) 100%);
  display: block;
  position: absolute;
  width: 150px;
  height: 40px;
  box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
    7px 7px 20px 0px rgba(0, 0, 0, .1),
    4px 4px 5px 0px rgba(0, 0, 0, .1);
  border-radius: 5px;
  margin: 0;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn-13 span:nth-child(1) {
  box-shadow:
    -7px -7px 0px 0px #fff9,
    -4px -4px 0px 0px #fff9,
    7px 7px 20px 0px #0002,
    4px 4px 5px 0px #0001;
  -webkit-transform: rotateX(90deg);
  -moz-transform: rotateX(90deg);
  transform: rotateX(90deg);
  -webkit-transform-origin: 50% 50% -20px;
  -moz-transform-origin: 50% 50% -20px;
  transform-origin: 50% 50% -20px;
}

.btn-13 span:nth-child(2) {
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  transform: rotateX(0deg);
  -webkit-transform-origin: 50% 50% -20px;
  -moz-transform-origin: 50% 50% -20px;
  transform-origin: 50% 50% -20px;
}

.btn-13:hover span:nth-child(1) {
  box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
    7px 7px 20px 0px rgba(0, 0, 0, .1),
    4px 4px 5px 0px rgba(0, 0, 0, .1);
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  transform: rotateX(0deg);
}

.btn-13:hover span:nth-child(2) {
  box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
    7px 7px 20px 0px rgba(0, 0, 0, .1),
    4px 4px 5px 0px rgba(0, 0, 0, .1);
  color: transparent;
  -webkit-transform: rotateX(-90deg);
  -moz-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
}

#trout {
  margin: 100px 50px 0 0 !important;
  padding: 20px 20px 20px 0 !important;
  float: left;
}

.facts {
  display: inline-flex;
}

.maple {
  opacity: 0.5;
  position: absolute;
  width: 70px;
  margin-left: 110px;
  margin-top: 25px;
}

.about .content h3 {
  justify-content: center;
  font-family: 'Perpetua';
  padding-top: 20px;
  padding-right: 0;
  font-weight: 700;
  font-size: 42px;
  background: linear-gradient(to right, rgb(253, 115, 218) , rgb(164, 94, 255));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about .content p {
  padding: 8px 0 0 65px;
}

.about .content ul {
  align-items: center;
  float: right;
  list-style: none;
  padding: 0;
}

.about .content ul li {
  align-items: center;
  float: right;
  display: flex;
}

.about .content ul strong {
  align-items: center;
  float: right;
  font-size: 18px;
  margin-right: 15px;
  color: #AC7088;
}

.about .content ul i {
  float: right;
  font-size: 18px;
  margin-right: 5px;
  color: #AC7088;
  line-height: 0;
}

.about .fst-italic {
  margin-right: 80px;
  padding-right: 80px;
}

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

/* @supports (display: flex) {
  .glow {
    position: absolute;
    margin-left: 450px;
    font-size: 30px;
    color: #e0d4d4;
    text-align: center;
    -webkit-animation: glow 1.2s ease-in-out infinite alternate;
    -moz-animation: glow 1.2s ease-in-out infinite alternate;
    animation: glow 1.2s ease-in-out infinite alternate;
  }
}

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 25px #AC7088, 0 0 30px #AC7088, 0 0 40px #AC7088;
  }

  to {
    text-shadow: 0 0 25px #AC7088, 0 0 20px #ff6fb7, 0 0 30px #ff6fb7, 0 0 40px #ff6fb7, 0 0 50px #ff6fb7
  }
} */

.btn-crc {
  display: inline-block;
  margin-top: 10px;
  padding: 3px 7px 3px 7px;
  border: none;
  border-radius: 5px;
  background-color: #BE8484;
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
}

.btn-crc:hover {
  background-color: #AC7088;
}
  
  div.topbar{
    background-color: #333333;
    font-family: Segoe, sans-serif;
    border-radius: 8px 8px 0 0;
    padding: 10px 15px;
    width: 620px;
  }

  div.windowz{
    padding: 15px;
    font-family: sans-serif;
    font-size: small;
    height: 220px;
    width: 620px;
    border-radius: 0 0 8px 8px;
    background-color: black;
    color: rgb(255, 255, 255);
    overflow: auto;
    -webkit-box-shadow: 6px 6px 6px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 6px 6px 6px 0px rgba(0,0,0,0.75);
  box-shadow: 6px 6px 6px 0px rgba(0,0,0,0.75);
  }
  
#cmd {
  float: right;
  margin-top: 170px;
}  

@media (max-width: 768px) {
  .about .col-lg-4 {
    margin-bottom: 20px;
    margin-top: 1px;
    height: 10em;
  }

  .about p,
  .content ul,
  ul li,
  ul strong,
  ul i,
  .col-lg-8 {
    color: #AC7088;
    font-size: 11px;
  }
}


/*--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/
@supports (display: flex) {
  .resume .resume-title {
    margin-left: 30%;
    font-size: 35px;
    font-weight: 700;
    color: #AC7088;
    text-shadow:
      4px 4px 5px rgb(0, 0, 0),
      1px 1px 5px rgb(0, 0, 0);
  }
}

/* Resume Button */
.custom-btn {
  position: absolute;
  float: right;
  margin-right: 80px;
  margin-top: 65px;
  height: 40px;
  color: #fff;
  border-radius: 5px;
  padding: 10px 25px;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
    7px 7px 20px 0px rgba(0, 0, 0, .1),
    4px 4px 5px 0px rgba(0, 0, 0, .1);
  outline: none;
}

.btn-12 {
  right: 20px;
  bottom: 20px;
  border: none;
  box-shadow: none;
  width: 100px;
  height: 40px;
  line-height: 42px;
  -webkit-perspective: 230px;
  perspective: 230px;
}

.btn-12 span {
  background: #BE8484;
  background: linear-gradient(0deg, rgba(190, 132, 132) 0%, rgba(172, 112, 136, 1) 100%);
  display: block;
  position: absolute;
  width: 100px;
  height: 40px;
  box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
    7px 7px 20px 0px rgba(0, 0, 0, .1),
    4px 4px 5px 0px rgba(0, 0, 0, .1);
  border-radius: 5px;
  margin: 0;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn-12 span:nth-child(1) {
  box-shadow:
    -7px -7px 20px 0px #fff9,
    -4px -4px 5px 0px #fff9,
    7px 7px 20px 0px #0002,
    4px 4px 5px 0px #0001;
  -webkit-transform: rotateX(90deg);
  -moz-transform: rotateX(90deg);
  transform: rotateX(90deg);
  -webkit-transform-origin: 50% 50% -20px;
  -moz-transform-origin: 50% 50% -20px;
  transform-origin: 50% 50% -20px;
}

.btn-12 span:nth-child(2) {
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  transform: rotateX(0deg);
  -webkit-transform-origin: 50% 50% -20px;
  -moz-transform-origin: 50% 50% -20px;
  transform-origin: 50% 50% -20px;
}

.btn-12:hover span:nth-child(1) {
  box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
    7px 7px 20px 0px rgba(0, 0, 0, .1),
    4px 4px 5px 0px rgba(0, 0, 0, .1);
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  transform: rotateX(0deg);
}

.btn-12:hover span:nth-child(2) {
  box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
    7px 7px 20px 0px rgba(0, 0, 0, .1),
    4px 4px 5px 0px rgba(0, 0, 0, .1);
  color: transparent;
  -webkit-transform: rotateX(-90deg);
  -moz-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
}

.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  margin-left: 10%;
  border-left: 2px solid #A77979;
  position: relative;
}

.resume-item2 {
  margin-left: 30%;
  margin-right: 20%;
  font-size: large;
}

.certs {
  margin-bottom: 100px;
}

.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #AC7088;
  text-shadow: 0 0 2px rgb(0, 0, 0);
}

.resume .resume-item h5 {
  font-size: 16px;
  padding: 5px 5px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

.resume .resume-item  ul {
  padding-left: 20px;
}

.resume .resume-item2 ul {
  padding-left: 30%;
}

.resume .resume-item ul li {
  padding-bottom: 10px;
}

.resume b {
  color: #dfb8ea;
}

.resume .resume-item:last-child {
  padding-bottom: 0;
}

.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: #fff;
  border: 2px solid #18222e;
}

.ictcContainer>img:hover {
  -webkit-transform: scale(3.5);
  transform: scale(3.5);
  float: left;
  display: flex;
  position: relative;
  left: 350px !important;
  bottom: 220px !important;
}

.menuContainer>img:hover {
  -webkit-transform: scale(2);
  transform: scale(2);
  position: relative;
  display: flex;
  z-index: 1;
}

.resume .resume-item em {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #AC7088;
  text-shadow: 0 0 2px rgb(0, 0, 0);
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .resume .resume-title {
    color: #300214;
    font-size: 19px;
  }
  .resume .resume-item h4,
  h5,
  p,
  em,
  ul,
  ul i,
  dl {
    font-size: 15px;
  }
  .resume .resume-item2 h4,
  h5,
  p,
  em,
  ul,
  ul i,
  dl {
    font-size: 15px;
  }
  .menuContainer>img:hover {
    -webkit-transform: scale(0);
    transform: scale(0);
    position: relative;
    display: flex;
    z-index: 1;
  }
  .ictcContainer>img:hover {
    -webkit-transform: scale(0);
    transform: scale(0);
    float: left;
    display: flex;
    position: relative;
  }
}



/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
/* 3D Slideshow */ 
* {
	margin: 0;
	padding: 0;
}

#resume html, body {
	max-width: 100%;
}

#slideshow {
	margin: 0 auto;
	height: 250px;
	width: 100%;
	box-sizing: border-box;
}

.slideshow-title {
	font-family: 'Allerta Stencil';
	font-size: 62px;
	color: #fff;
	margin: 0 auto;
	text-align: center;
	letter-spacing: 3px;
	font-weight: 300;
}

.sub-heading {
	padding-top: 50px;
	font-size: 18px;
} .sub-heading-two {
	font-size: 15px;
} .sub-heading-three {
	font-size: 13px;
} .sub-heading-four {
	font-size: 11px;
} .sub-heading-five {
	font-size: 9px;
} .sub-heading-six {
	font-size: 7px;
} .sub-heading-seven {
	font-size: 5px;
} .sub-heading-eight {
	font-size: 3px;
} .sub-heading-nine {
	font-size: 1px;
}

.entire-content {
	margin: auto;
	width: 20px;
	perspective: 3000px;
	position: relative;
}

.content-carrousel {
	width: 90%;
	position: absolute;
	float: right;
	animation: rotar 40s infinite linear;
	transform-style: preserve-3d;
}

.content-carrousel:hover {
	animation-play-state: paused;
	cursor: pointer;
}

.content-carrousel figure:nth-child(1) {
  transform: rotateY(0deg) translateZ(300px);
}
.content-carrousel figure:nth-child(2) {
  transform: rotateY(30deg) translateZ(300px);
}
.content-carrousel figure:nth-child(3) {
  transform: rotateY(60deg) translateZ(300px); 
}
.content-carrousel figure:nth-child(4) {
  transform: rotateY(90deg) translateZ(300px); 
}
.content-carrousel figure:nth-child(5) {
  transform: rotateY(120deg) translateZ(300px); 
}
.content-carrousel figure:nth-child(6) {
  transform: rotateY(150deg) translateZ(300px); 
}
.content-carrousel figure:nth-child(7) {
  transform: rotateY(180deg) translateZ(300px); 
}
.content-carrousel figure:nth-child(8) {
  transform: rotateY(210deg) translateZ(300px); 
}
.content-carrousel figure:nth-child(9) {
  transform: rotateY(240deg) translateZ(300px); 
}
.content-carrousel figure:nth-child(10) {
  transform: rotateY(270deg) translateZ(300px); 
}
.content-carrousel figure:nth-child(11) {
  transform: rotateY(300deg) translateZ(300px); 
}
.content-carrousel figure:nth-child(12) {
  transform: rotateY(330deg) translateZ(300px); 
}

.shadow {
    position: absolute;
    box-shadow: 0px 0px 20px 0px #000;
    border-radius: 1px;
}

.content-carrousel img {
	image-rendering: auto;
	transition: all 300ms;
	width: 80%;
	height: 100%;
}

.content-carrousel img:hover {
	transform: scale(1.2);
	transition: all 300ms;
}

@keyframes rotar {
	from {
		transform: rotateY(0deg);
	} to {
		transform: rotateY(360deg);
	}
}


.skill {
  text-align: center;
  margin-bottom: 20px;
}

.skills {
  display: flex;
  justify-content: center
}

.skills__row {
  display: flex;
  flex-direction: column;
  justify-content: center
}

.skills__row:not(:last-child) {
  margin-right: 25px
}

@media (max-width: 410px) {
  .skills__row:not(:last-child) {
      margin-right:15px
  }
}

@media (max-width: 300px) {
  .skills__row:not(:last-child) {
      margin-right:10px
  }
}

.skills__item {
  opacity: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  height: 100px;
  width: 130px;
  border: double 3px transparent;
  border-image-slice: 1;
  border-width: 3px;
  background-image: linear-gradient(#1a1a1a, #1a1a1a),radial-gradient(circle at top left, #51a2e9, #ff4d5a);
  border-radius: 10px;
  background-origin: border-box;
  background-clip: content-box, border-box;
  transition: transform 0.2s, opacity 1.2s;
  overflow: hidden
}

@media (max-width: 1500px) {
  .skills__item {
      height:90px;
      width: 145px
  }
}

@media (max-width: 1300px) {
  .skills__item {
      opacity:1;
      border-width: 2px
  }
}

@media (max-width: 1000px) {
  .skills__item {
      height:80px;
      width: 130px
  }
}

@media (max-width: 600px) {
  .skills__item {
      height:70px;
      width: 115px
  }
}

@media (max-width: 500px) {
  .skills__item {
      height:60px;
      width: 100px
  }
}

@media (max-width: 410px) {
  .skills__item {
      height:50px;
      width: 80px
  }
}

@media (max-width: 340px) {
  .skills__item {
      height:45px;
      width: 70px
  }
}

.skills__item:not(:last-child) {
  margin-bottom: 3rem
}

@media (max-width: 410px) {
  .skills__item:not(:last-child) {
      margin-bottom:15px
  }
}

.skills__item img {
  height: 60px;
  width: auto;
  transition: all 0.2s
}

@media (max-width: 1500px) {
  .skills__item img {
      height:55px
  }
}

@media (max-width: 1000px) {
  .skills__item img {
      height:50px
  }
}

@media (max-width: 600px) {
  .skills__item img {
      height:45px
  }
}

@media (max-width: 500px) {
  .skills__item img {
      height:35px
  }
}

@media (max-width: 410px) {
  .skills__item img {
      height:26px
  }
}

.skills__item-name {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
  transition: all 0.2s;
  letter-spacing: 1px
}

@media (max-width: 1200px) {
  .skills__item-name {
      font-size:1.4rem
  }
}

.skills__item-fade-in {
  opacity: 1
}

.skills__item--js img {
  border-radius: 5px
}

.skills__item--webpack img {
  border-radius: 50%
}

@keyframes moveInLeft {
  0% {
      opacity: 0;
      transform: translateX(-10rem)
  }

  100% {
      opacity: 1;
      transform: translateX(0)
  }
}

@keyframes moveInRight {
  0% {
      opacity: 0;
      transform: translateX(10rem)
  }

  100% {
      opacity: 1;
      transform: translateX(0)
  }
}

@keyframes moveInBottom {
  0% {
      opacity: 0;
      transform: translateY(4rem)
  }

  100% {
      opacity: 1;
      transform: translateY(0)
  }
}

@keyframes bounce {
  0% {
      transform: translateY(0)
  }

  50% {
      transform: translateY(-1rem)
  }

  100% {
      transform: translateY(0)
  }
}

@keyframes fadeIn {
  0% {
      opacity: 0
  }

  100% {
      opacity: 1
  }
}





.skill>div {
  margin-bottom: 10px;
}

.skill>div>img {
  width: 70px;
  /* Set the desired width */
  height: 70px;
  /* Set the desired height */
}

.skill img {
  max-width: 100px;
  /* Adjust image size as needed */
}

.skill-text {
  display: block;
  font-size: 14px;
}

@supports (display: flex) {
  .skills h3 {
    font-weight: 700;
    color: #AC7088;
    margin-left: 12px;
    text-shadow:
      1px 1px 1px rgb(0, 0, 0),
      3px 3px 5px rgb(255, 255, 255);
  }
}

.skills span {
  color: #300214;
  font-family: "Poppins", sans-serif;
  font-size: large;
}

@media (max-width: 1000px) {
  .skills h4 {
    font-size: 11px !important;
    display: table-cell;
  }
}

@media (max-width: 1000px) {
  .skill {
    display: table-cell;
    width: 60px;
    justify-content: space-between;
  }
}

@media (max-width: 700px) {
  .skills h4 {
    font-size: 7px !important;
    display: table-cell;
  }
}


/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .section-title h2 {
  color: #975B5B;
  text-shadow:
    1px 1px 1px rgb(0, 0, 0),
    3px 3px 5px rgb(255, 255, 255);
}

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

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  background: #18222e;
  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: #AC7088;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #dfb8ea;
}

.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::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: #AC7088;
  font-size: 28px;
  text-align: center;
  background: #18222e;
  transition: 0.3s;
  width: 50%;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  background: #AC7088;
  color: #18222e;
}

.portfolio .portfolio-wrap .portfolio-links a+a {
  border-left: 1px solid #18222e;
}

.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 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: #18222e;
  opacity: 1;
  border: 1px solid #AC7088;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #AC7088;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px #18222e;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #18222e;
}

.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;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .section-title h2 {
  color: #975B5B;
  text-shadow:
    1px 1px 1px rgb(0, 0, 0),
    3px 3px 5px rgb(255, 255, 255);
}

.services .icon-box {
  margin-bottom: 20px;
}

.services .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: #18222e;
  border-radius: 50%;
  transition: 0.5s;
  border: 1px solid #AC7088;
}

.services .icon i {
  color: #FFEDDB;
  font-size: 24px;
  line-height: 0;
}

.services .icon-box:hover .icon {
  background: #AC7088;
}

.services .icon-box:hover .icon i {
  color: #18222e;
}

.services .title {
  margin-left: 80px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #AC7088;
}

.services .title a:hover {
  color: #AC7088;
}

.services .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
#testimonials {
  color: #975B5B;
}

@supports (display: flex) {
  .testimonials .testimonials-title {
    margin-left: 30%;
    font-size: 35px;
    font-weight: 700;
    color: #AC7088;
    text-shadow:
      4px 4px 5px rgb(0, 0, 0),
      1px 1px 5px rgb(0, 0, 0);
  }
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #AC7088;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #AC7088;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #18222e;
  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 15px 15px 15px;
  padding: 20px;
  background: #52525280;
  position: relative;
  margin-bottom: 35px;
  border-radius: 6px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-item p::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid #444444a8;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #18222e;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #18222e;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding-bottom: 60px;
}

.contact .section-title p {
  font-size: 20px;
}

.contact .info {
  padding: 45px;
  background: #fff;
  width: 110%;
  margin-right: 100px;
  margin-left: 100px;
  box-shadow: 0 0 24px 0 #18222e;
}

.contact .info i {
  font-size: 18px;
  color: #FFEDDB;
  float: left;
  width: 44px;
  height: 44px;
  background: #18222e;
  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: #18222e;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 10px;
  font-size: 15px;
  color: #18222e;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #18222e;
  color: #18222e;
  line-height: 1;
  padding: 7px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #FFEDDB;
  color: #18222e;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #FFEDDB;
  color: #18222e;
}

.contact img {
  width: 150%;
  height: 570px;
  padding-top: 70px;
}

.contact .php-email-form {
  width: 100%;
  padding: 30px;
  background: #18222e;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

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

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  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: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  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 #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 15px;
}

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

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

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

.contact .php-email-form textarea {
  padding: 10px 15px;
}

/* .contact .php-email-form button[type=submit] {
  background: rgb(179, 252, 218);
  border: 0;
  padding: 10px 24px;
  color: #000000;
  transition: 0.4s;
  border-radius: 4px;
} */

.contact .php-email-form button[type=submit]:hover {
  background: rgb(48, 253, 157);
  color: rgb(0, 0, 0);
}

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

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

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

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

@media (max-width: 700px) {
  .contact img {
    height: 40em;
  }

  .contact p {
    color: #300214;
  }

  .contact .info .email:hover i,
  .contact .info .address:hover i,
  .contact .info .phone:hover i {
    font-size: 25px;
  }

  .contact .info {
    font-size: 15px;
    width: 80%;
    float: left;
  }

  .contact .info i {
    font-size: 20px;
    float: left;
    width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
  }

  .contact .info h4 {
    font-size: 15px;
    margin-bottom: 5px;
    color: #18222e;
  }

  .contact .info p {
    margin-bottom: 10px;
    font-size: 15px;
    color: #18222e;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background: #f9f9f9;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #0e2442;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 7px;
  color: #f4f6fd;
  font-size: 9px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 200px;
  z-index: 9999;
  background: #040b14;
}

#footer .copyright {
  text-align: center;
}

#footer .credits {
  text-align: center;
  font-size: 4px;
  color: #eaebf0;
}

@media (max-width: 1199px) {
  #footer {
    position: static;
    width: auto;
    padding-right: 20px 15px;
  }
}