/**
Palette > https://coolors.co/5eb1bf-a63a50-222e50-ffe45e
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@font-face {
  font-family: "Poppins";
  src: url("../font/Poppins-Regular.ttf");
  font-weight:Regular
}

@font-face {
  font-family: "Poppins";
  src: url("../font/Poppins-Bold.ttf");
  font-weight:Bold
}

@font-face {
  font-family: "Poppins";
  src: url("../font/Poppins-Medium.ttf");
  font-weight:400
}


body {
  font-family: "Poppins", sans-serif;
  background-color: #040404;
  color: #080808;
  position: relative;
  background: transparent;
}

body::before {
  content: "";
  position: fixed;
  background: #040404 url("../img/bg.jpg") top right no-repeat;
  background-size: cover;
  left: 0;
  right: 0;
  top: 0;
  height: 100vh;
  z-index: -1;
  opacity: 0.8;
}

body.int::before {
  opacity: 0.4;
}

@media (min-width: 1024px) {
  body::before {
    background-attachment: fixed;
  }
}

a {
  color: var(--verde);
}

a:hover {
  color: var(--verde);
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: ease-in-out 0.3s;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  z-index: 997;
  overflow-y: auto;
}

#header * {
  /* transition: ease-in-out 0.3s; */
}

#header h1 {
  font-size: 48px;
  margin: 5px 0 0 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

#header h1 a,
#header h1 a:hover {
  color: var(--bluScuro);
  line-height: 1.1em;
  display: inline-block;
  text-decoration:none;
}

header:not(.header-top) h1 a,
header:not(.header-top) h1 a:hover{
  padding-bottom: 6px;
  border-bottom: 2px solid var(--verde);
}


#header h2 {
  font-size: 24px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.8);
}

#header h2 span {
  color: #fff;
  border-bottom: 2px solid #18d26e;
  padding-bottom: 6px;
}

#header img {
  padding: 0;
  margin: 0;
}

#header .nav-link i.bi {
  margin-right: 8px;
  font-size:30px;
}

#header .social-links a:hover {
  background: #18d26e;
}

@media (max-width: 992px) {
  #header h1 {
    font-size: 36px;
  }

  #header h2 {
    font-size: 20px;
    line-height: 30px;
  }

  #header .social-links {
    margin-top: 15px;
  }

  #header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* Header Top */
#header.header-top {
  height: 85px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  padding-top: 10px;
}

#header.header-top .social-links,
#header.header-top h2 {
  display: none;
}

#header.header-top > .container > div{
	display:block;
	width:100%;
}
#header.header-top > .container > div > span{
	font-size:80%;
}


#header.header-top h1{
  margin-right: auto;
  font-size: 28px;
}

#header.header-top div,
#header.header-top h1 a,
#header.header-top .navbar a,
#header.header-top .navbar a:focus,
#header.header-top .nav-link i.bi {
  color: #ffffff !important;
}

#header.header-top .container {
  display: flex;
  align-items: center;
}

#header.header-top .navbar {
  margin: 0;
}

@media (max-width: 768px) {
  #header.header-top {
    /* height: 60px; */
  }

  #header.header-top h1 {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  margin-top: 35px;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar li+li {
  margin-left: 30px;
}

.navbar a,
.navbar a:hover,
.navbar a:focus {
  /* display: flex; */
  align-items: center;
  justify-content: space-between;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
  transition: 0.3s;
  /* padding-bottom: 20px; */
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:before {
  content: "";
  position: absolute;
  height: 2px;
  bottom: -4px;
  left: 44px;
  background-color: var(--verde);
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 25px;
}

/*.navbar:hover,
.navbar li:hover>a,*/
.navbar .active, 
.navbar .active:focus, 
.navbar .active:hover {
   font-weight:bold; 
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  position: fixed;
  right: 15px;
  top: 15px;
}
header:not(.header-top) .mobile-nav-toggle{
  color: #222e50;
}
@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: #222e50c2;
  transition: 0.3s;
  z-index: 999;
  margin-top: 0;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  /* bottom: 45px; */
  left: 15px;
  padding: 10px 0;
  overflow-y: auto;
  transition: 0.3s;
  border: 3px solid rgb(255 255 255 / 53%);
  background: #222e50e6;
}

.navbar-mobile li {
  padding: 12px 20px;
}

.navbar-mobile li+li {
  margin: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  font-size: 16px;
  position: relative;
  display: block;
  color: #ffffff !important;
  /* margin-top: 10px; */
}

#navbar.navbar-mobile i.bi {
  color: #ffffff !important;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  overflow: hidden;
  position: fixed;
  width: 99%;
  top: 140px;
  bottom: 0;
  opacity: 0;
  transition: ease-in-out 0.4s;
  z-index: 2;
  height: 100%;
  bottom: 0;
}

section.section-show {
  top: 80px;
  bottom: auto;
  opacity: 1;
  z-index: 3;
  /* padding-bottom: 45px; */
}

section .container {
    background: rgb(255 255 255 / 90%);
    /* padding: 0 30px; */
    height: 100%;
    overflow: auto;
    padding-bottom: 80px;
}

@media (max-width: 768px) {
  section {
    top: 120px;
  }

  section.section-show {
    top: 80px;
  }
}

 h2.section-title {
  font-size: 18px;
  /* font-weight: bold; */
  padding: 0;
  margin: 20px 0 12px 0;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

 h2.section-title::after {
  content: "";
  width: 36px;
  height: 1px;
  display: inline-block;
  margin: 2px 0 0 6px;
}

 h3 {
  font-size: 16px;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 10px;
  color: var(--blu);
}

h3.tit {
	margin: 6px 0;
	color: var(--blu);
}

/*--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/
.resume .resume-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #fff;
}

.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #18d26e;
  margin-bottom: 10px;
}

.resume .resume-item h5 {
  font-size: 16px;
  background: rgba(255, 255, 255, 0.15);
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

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

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

.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: #18d26e;
  border: 2px solid #18d26e;
}


