:root {
	--lightblue-color: #0563bb;
	--white-color: #fff;
  --python-color: #366a96;
  --django-color: #2ba977;
  --aws-color: #ff9900;
  --mysql-color: #57717d;
  --postgres-color : #336791;
  --git-color: #f4511e;
  --numpy-color: #4d77cf;
  --pandas-color: #130754;
  --javascript-color: #f7df1e;
  --bash-color: #404040;
  --whatsapp-color: #25d366;
  --github-color: #333;
  --linkedin-color: #0b65c3;
  --mail-color: #ea4335;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  font-family: 'Comfortaa', sans-serif;
  color: #45505b;
}

a {
  color: #37b3ed;
}

a:hover {
  color: var(--lightblue-color);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  margin: 20px 40px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #37b3ed;
  color: #fff;
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 9999;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 7px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: var(--lightblue-color);
  transition: background 0.4s ease-in-out;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.navbar {
	position: fixed;
  display: block;
	width: 100%;
	z-index: 5000;
	padding: 25px 0;
	font-family: 'Comfortaa', sans-serif;
	transition: all 0.3s ease;
}

.navbar.sticky {
	padding: 10px 0;
	background: var(--lightblue-color);
}

.navbar ul {
  margin-bottom: 0;
}

.navbar .logo a {
	color: var(--white-color);
	font-size: 30px;
	font-weight: 600;
}

.navbar .logo a span {
	color: var(--lightblue-color);
	transition: all 0.3s ease;
}

.navbar.sticky .logo a span {
	color: var(--white-color);
}

.navbar .menu li {
	list-style: none;
	display: inline-block;
}

.navbar .menu li a {
	display: block;
	color: var(--white-color);
	font-size: 18px;
	font-weight: 500;
	margin-left: 25px;
	transition: color 0.3s ease;
}

.navbar .menu li a:hover {
	color: var(--lightblue-color);
}

.navbar.sticky .menu li a:hover {
	color: var(--white-color);
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  text-decoration: none;
  color: #a0c5e8!important;
  transition: all 0.1s;
}

.nav-menu a:hover i, .nav-menu .active > a i, .nav-menu li:hover > a i {
  color: #37b3ed;
}

.menu-btn {
	color: var(--white-color);
	font-size: 23px;
	cursor: pointer;
	display: none;
}

.wrapper {
  align-items: center;
  box-sizing: border-box;
  position: fixed;
  bottom: 6%;
  right: 0;
  z-index: 4000;
  opacity: 0;
  transition: all 0.5s;
}

.wrapper .icon { 
  margin: 0 20px;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 4000;
  padding: 10px;
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon span {
  display: block;
  height: 60px;
  width: 60px;
  background: var(--white-color);
  border-radius: 50%;
  position: relative;
  z-index: 4000;
  box-shadow: 4px 10px 10px rgba(0,0,0,0.1);
  transition: 0.4s;
  color: var(--lightblue-color);
}

.wrapper .icon span a {
  line-height: 60px;
  font-size: 25px;
  color: var(--lightblue-color);
}

.wrapper .icon:hover span a {
  color: var(--white-color);
}

.wrapper .icon:hover span {
  text-shadow: 0px -1px 0px rgba(0,0,0,0.4);
}

.wrapper .linkedin:hover span {
  background: var(--linkedin-color);
}

.wrapper .github:hover span {
  background: var(--github-color);
}

.wrapper .whatsapp:hover span {
  background: var(--whatsapp-color);
}

.wrapper .mail:hover span {
  background: var(--mail-color);
}

.home {
	display: flex;
	background: url(../img/background.svg) no-repeat center;
	height: 100vh;
	background-size: cover;
	background-attachment: fixed;
	color: var(--white-color);
	min-height: 500px;
	font-family: 'Comfortaa', sans-serif;
}

.home .home-content {
	text-align: center;
}

.home .home-content .personal-name {
	font-size: 75px;
	font-weight: 600;
	margin-left: -3px;
}

.home .home-content .typing-text {
	font-size: 40px;
	margin: 5px 0;
}

.home .home-content .typing-text span {
	color: var(--lightblue-color);
	font-weight: 500;
}

.home .home-content a {
	display: inline-block;
	background: var(--lightblue-color);
	color: var(--white-color);
	font-size: 25px;
	padding: 10px 32px;
	margin-top: 20px;
	border-radius: 6px;
	border: 2px solid var(--lightblue-color);
	transition: all 0.3s ease;
}

.home .home-content a:hover {
	color: var(--lightblue-color);
	background: none;
}

.scroll-down {
	position: absolute;
	left: 50%;
	width: 40px;
	height: 40px;
	margin: 0;
	padding: 0;
	transform: translateY(150px) translateX(-50%) rotate(45deg);
}

.scroll-down span {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	border-bottom: 2px solid var(--white-color);
	border-right: 2px solid var(--white-color);
	border-radius: 2px;
	animation: animate 1.5s linear infinite;
	opacity: 0;
}

.scroll-down span:nth-child(1) {
	transform: translate(-15px, -15px);
	animation-delay: -0.4s;
}

.scroll-down span:nth-child(2) {
	transform: translate(0, 0);
	animation-delay: -0.2s;
}

.scroll-down span:nth-child(3) {
	transform: translate(15px, 15px);
	animation-delay: 0s;
}

@keyframes animate {
  0% {
    top: -5px;
    left: -5px;
    opacity: 0;
  }
  25% {
    top: 0px;
    left: 0px;
    opacity: 1;
  }
  50%, 100% {
    top: 5px;
    left: 5px;
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding-top: 5rem;
  overflow: hidden;
}

.section-bg {
  background: #fff;
}

.section-title {
  padding-bottom: 1rem;
  text-align: center;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #45505b;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--lightblue-color);
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #173b6c;
}

.about .row img {
  height: 400px;
	width: 400px;
	object-fit: cover;
	border-radius: 4px;
  margin: auto;
  display: block;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10.5px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 2px;
  color: #37b3ed;
}

.about .content .info-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.about .content .info-contact div {
  font-size: 25px;
  display: flex;
  height: 35px;
  line-height: 25px;
  overflow: hidden;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .info-contact div ul {
  list-style: none;
  animation: listAnimation 8s infinite;
}

.about .content .info-contact .text span {
	color: var(--lightblue-color);
}

@keyframes listAnimation {
  0% {
    margin-top: 0;
  }
  25% {
    margin-top: -35px;
  }
  50% {
    margin-top: -70px;
  }
  75% {
    margin-top: -35px;
  }
  100% {
    margin-top: 0;
  }
}

.about .content .soft-skills {
  font-size: 18px;
	padding-bottom: .5rem;
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .skills-content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem 0;
}

.skills .skill-box {
  padding: 1rem;
  cursor: pointer;
}

.skills .skill-box:hover > .skill-title::after, .skills .skill-box:hover > .skill-title::before {
  width: 35px;
}

.skills .skill-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .5rem;
  margin-bottom: 2rem;
  position: relative;
}

.skills .skill-title h3 {
  margin-top: .5rem;
}

.skills .skill-icon {
  margin-top: .5rem;
  width: 55px;
  z-index: 2;
}

.skill-title a {
  margin: 0 25px;
  text-decoration: none;
  color: var(--white-color);
  display: block;
  position: relative;
  cursor: pointer;
}

.skill-title a .layer {
  width: 75px;
  height: 75px;
  transition: transform 0.3s;
}

.skill-title a:hover .layer {
  transform: rotate(-35deg) skew(20deg);
}

.skill-title a .layer span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--white-color);
  border-radius: 10px;
  transition: all .8s;
}

.skill-title a:hover .layer span:nth-child(1) {
  opacity: 0.2;
}

.skill-title a:hover .layer span:nth-child(2){
  opacity: 0.4;
  transform: translate(5px, -5px);
}

.skill-title a:hover .layer span:nth-child(3){
  opacity: 0.6;
  transform: translate(10px, -10px);
}

.skill-title a:hover .layer span:nth-child(4) {
  opacity: 0.6;
  transform: translate(15px, -15px);
}

.skill-title a:hover .layer span:nth-child(5) {
  opacity: 1;
  transform: translate(20px, -20px);
}

.skill-title .python:hover .layer span,
.skill-title .python:hover .text {
  color: var(--python-color);
  border-color: var(--python-color);
}

.skill-title .python:hover .layer span {
  box-shadow: -1px 1px 3px var(--python-color);
}

.skill-title .aws:hover .layer span,
.skill-title .aws:hover .text {
  color: var(--aws-color);
  border-color: var(--aws-color);
}

.skill-title .aws:hover .layer span {
  box-shadow: -1px 1px 3px var(--aws-color);
}

.skill-title .django:hover .layer span,
.skill-title .django:hover .text {
  color: var(--django-color);
  border-color: var(--django-color);
}

.skill-title .django:hover .layer span {
  box-shadow: -1px 1px 3px var(--django-color);
}

.skill-title .mysql:hover .layer span,
.skill-title .mysql:hover .text {
  color: var(--mysql-color);
  border-color: var(--mysql-color);
}

.skill-title .mysql:hover .layer span {
  box-shadow: -1px 1px 3px var(--mysql-color);
}

.skill-title .postgres:hover .layer span,
.skill-title .postgres:hover .text {
  color: var(--postgres-color);
  border-color: var(--postgres-color);
}

.skill-title .postgres:hover .layer span {
  box-shadow: -1px 1px 3px var(--postgres-color);
}

.skill-title .git:hover .layer span,
.skill-title .git:hover .text {
  color: var(--git-color);
  border-color: var(--git-color);
}

.skill-title .git:hover .layer span {
  box-shadow: -1px 1px 3px var(--git-color);
}

.skill-title .numpy:hover .layer span,
.skill-title .numpy:hover .text {
  color: var(--numpy-color);
  border-color: var(--numpy-color);
}

.skill-title .numpy:hover .layer span {
  box-shadow: -1px 1px 3px var(--numpy-color);
}

.skill-title .pandas:hover .layer span,
.skill-title .pandas:hover .text {
  color: var(--pandas-color);
  border-color: var(--pandas-color);
}

.skill-title .pandas:hover .layer span {
  box-shadow: -1px 1px 3px var(--pandas-color);
}

.skill-title .javascript:hover .layer span,
.skill-title .javascript:hover .text {
  color: var(--javascript-color);
  border-color: var(--javascript-color);
}

.skill-title .javascript:hover .layer span {
  box-shadow: -1px 1px 3px var(--javascript-color);
}

.skill-title .bash:hover .layer span,
.skill-title .bash:hover .text {
  color: var(--bash-color);
  border-color: var(--bash-color);
}

.skill-title .bash:hover .layer span {
  box-shadow: -1px 1px 3px var(--bash-color);
}

.skill-title a .text {
  position: absolute;
  left: 50%;
  bottom: -5px;
  opacity: 0;
  transform: translateX(-50%);
  transition: bottom .5s ease, opacity .5s ease;
}

.skill-title a:hover .text {
  bottom: -35px;
  opacity: 1;
}

/*--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/
.resume .resume-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 20px;
  color: #45505b;
}

.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid #1f5297;
  position: relative;
}

.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #45505b;
  margin-bottom: 10px;
}

.resume .resume-item h5 {
  font-size: 16px;
  background: #e4edf9;
  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: #fff;
  border: 2px solid #1f5297;
}

/*--------------------------------------------------------------
# courses
--------------------------------------------------------------*/
.courses .container {
	margin: auto;
}

.courses .container .section-title a {
  color: var(--lightblue-color);
}

.courses .carousel .card {
	background: url(../img/background.svg) center;
	border-radius: 6px;
	padding: 25px;
	text-align: center;
	overflow: hidden;
	transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.courses .carousel .card .box{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.courses .carousel .card:hover .box {
	transform: scale(1.06);
}

.courses .carousel .card .text {
	font-size: 22px;
	font-weight: 500;
	margin-bottom: 10px;
}

.courses .row p, .courses .container .text {
	color: var(--white-color);
}

.courses .carousel .card .certification {
	height: 175px;
	width: 270px;
	object-fit: cover;
	border-radius: 10px;
	border: 3px solid var(--lightblue-color);
	margin-bottom: 15px;
	transition: all 0.3s ease;
}

.courses .carousel .card .tool {
	width: auto;
  display: inline;
  padding: .5rem;
	transition: all 0.3s ease;
}

.courses .row p {
  margin-bottom: 0;
}

.courses .row a {
	display: inline-block;
	color: var(--white-color);
	font-size: 15px;
	margin-top: 8px;
	border-radius: 6px;
	transition: all 0.3s ease;
}

.courses .box i {
  font-size: 28px;
}

.courses .box a .fab,  .courses .box a .fas {
  color: #f5f8fd;
  margin-right: 8px;
  font-size: 15px;
  transition: all .5s ease;
}

.courses .box a:hover, 
.courses .box a:hover .fab,
.courses .box a:hover .fas {
  color: var(--lightblue-color);
  background: none;
}

.owl-dots {
	text-align: center;
	margin-top: 20px;
}

.owl-dot {
	height: 13px;
	width: 13px;
	margin: 0 5px;
	outline: none!important;
	border-radius: 50%;
	border: 2px solid var(--lightblue-color)!important;
	transition: all 0.3s ease;
}

.owl-dot.active {
	width: 35px;
	border-radius: 14px;
}

.owl-dot.active,
.owl-dot:hover {
	background: var(--lightblue-color)!important;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding-bottom: 130px;
}

.contact .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  background: #fff;
  width: 100%;
}

.contact .info i {
  font-size: 20px;
  color: #37b3ed;
  float: left;
  width: 44px;
  height: 44px;
  background: #dff3fc;
  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: #45505b;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #45505b;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #37b3ed;
  color: #fff;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #37b3ed;
  color: #fff;
}

.contact .email-form {
  width: 100%;
  padding: 20px;
  background: #fff;
}

.contact .email-form .form-group {
  padding-bottom: 8px;
}

.contact .email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .email-form input, .contact .email-form textarea {
  resize: none;
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact .email-form input {
  height: 44px;
}

.contact .email-form textarea {
  padding: 10px 12px;
}

.contact .email-form button[type="submit"] {
  background: var(--lightblue-color);
  color: var(--white-color);
  font-size: 16px;
  padding: 6px 14px;
  border-radius: 6px;
  border: 2px solid var(--lightblue-color);
  transition: all 0.3s ease;
}

.contact .email-form button[type="submit"]:hover {
  color: var(--lightblue-color);
  background: none;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
	background: url(../img/background.svg) no-repeat center;
	background-size: cover;
	background-attachment: fixed;
	padding: 15px 23px;
	text-align: center;
	color: var(--white-color);
	position: absolute;
	width: 100%;
}

footer span a {
	color: var(--lightblue-color);
	text-decoration: none;
}

footer span a:hover {
	text-decoration: underline;
}

@media (max-width: 1199px) {
  #footer {
    position: static;
    width: auto;
    padding-right: 20px 15px;
  }
}

@media (max-width: 991px) {
  .skills .skills-content {
    grid-template-columns: repeat(3, 1fr); 
  }
}

@media (max-width: 947px) {
	.menu-btn {
		display: block;
		z-index: 1000;
	}

	.navbar .menu {
		position: fixed;
		height: 100vh;
		width: 100%;
		left: -100%;
		top: 0;
		background: #00001a;
		text-align: center;
		padding-top: 100px;
    padding-right: 40px;
		transition: all 0.3s ease;
	}

	.navbar .menu.active {
		left: 0;
	}

	.navbar .menu li {
		display: block;
	}

	.navbar .menu li a {
		display: inline-block;
		margin: 20px 0;
		font-size: 25px;
	}

	.home .home-content .personal-name {
		font-size: 70px;
	}

	.home .home-content .typing-text {
		font-size: 35px;
	}

	.home .home-content a {
		font-size: 23px;
		padding: 10px 30px;
	}

	.experience .title::after, 
	.projects .title::after,
	.skills .title::after {
		bottom: -30px;
		padding: 5px;
	}

	.about .about-content .column {
		width: 100%;
	}

	.about .about-content .left {
		display: flex;
		justify-content: center;
		margin: 0 auto 60px;
	}

	.about .about-content .right {
		flex: 100%;
	}

	.skills .skills-content .icons {
		grid-template-columns: repeat(3, 1fr);
		grid-row-gap: 45px;
		justify-content: center;
	}

	.experience .date h1 {
		font-size: 1.5rem;
	}

	.experience .date::before {
		display: none;
	}

	.contact .contact-content .column {
		width: 100%;
		margin-bottom: 35px;
	}

	.wrapper .icon span {
		height: 50px;
		width: 50px;
	}

	.wrapper .icon span a {
		line-height: 50px;
	}
}

@media (max-width: 690px) {
  section {
    padding: 40px 0;
  }

	.home .home-content .personal-name {
		font-size: 60px;
	}

	.home .home-content .typing-text {
		font-size: 32px;
	}

	.home .home-content a {
		font-size: 20px;
	}

	.skills .skills-content .icons {
		grid-template-columns: repeat(2, 1fr);
		grid-row-gap: 45px;
		justify-content: center;
	}

	.experience .date h1 {
		font-size: 1.2rem;
	}

  .skills .skills-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .courses .carousel .card .certification {
    height: 100px;
    width: 180px;
  }

  .courses .carousel .card .tool {
    padding: .2rem;
  }

  .courses .carousel .card .text {
    font-size: 20px;
  }

  .skill-title a {
    margin: 0;
  }

  .courses .carousel .card {
    padding: 10px;
  }
}

@media (max-width: 500px) {
	.home .home-content .personal-name {
		font-size: 40px;
	}

	.home .home-content .typing-text {
		font-size: 25px;
	}

	.contact .title::after {
		padding: 1px;
	}

	.wrapper {
		display: none;
	}
}