/* ------------------------------------------------------------------------------ */
/* ****************************************************************************** */
/* --------- (C) Copyright 2022/2023 by machtWeb | Reinhard Lange --------------- */
/* ---------------------- machtWeb.de | imail@machtWeb.de ----------------------- */
/* ------------------------------------------------------------------------------ */
/* update	->													  6.00/00 - 29-07-22
/* layout	-> startpage														  */
/* file 	-> design/design.css											  */
/* colors	-> http://www.color-hex.com											  */
/* ------------------------------------------------------------------------------ */
/* -------------------------------------------------------------- 6.00/00 - 23-07-22
/* ROOT																			  */
/* ------------------------------------------------------------------------------ */
@charset "UTF-8";

/*@import url(https://fonts.googleapis.com/css?family=Raleway:400,500,800);*/
/*@import url(https://fonts.googleapis.com/css?family=Rajdhani:300&display=swap);*/
/* ------------------------------------------------------------------------------ */

/* COLORS - CUSTOMER */
/* main -> orange #ee741d - rgba(238,116,29,1) */
:root {
	--color-logo:#0077EA;
	}
/* ------------------------------------------------------------------------------ */
/* ------------------------------------------------------------ 6.0/00 - 01-07-22 */
::selection				{color:white;background:var(--color-logo,#ee741d);} 
::-moz-selection		{color:white;background:var(--color-logo,#ee741d);}

html {
	box-sizing:border-box;
	/*font-size: 100%;*/
	block-size: 100%;
	/*overflow-y: auto;*/
	-webkit-overflow-scrolling:touch;
	text-rendering:optimizeSpeed;
	-webkit-text-size-adjust:100%;
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
	}

*, *:before, *:after 	{box-sizing:inherit;margin:0;padding:0;}
body, html 				{margin:0;padding:0;font-size:100%;}
body					{/*overflow-y:scroll;*/font-family:sans-serif;
	/* progress indicator - scrolling */
	/* link -> https://codepen.io/maddesigns/pen/qBOojWZ */
/* background-image: linear-gradient(to bottom, #fff 0%, #fff 100%), linear-gradient(to right top, rgba(238,116,29,1.0) 50%, #fff 50%);
  	background-size: auto, 100% calc(100% - 100vh + 3px);
  	background-position: 0 3px, 0 0;
  	background-attachment: fixed, scroll;
  	background-repeat: repeat-x, no-repeat;
	*/
	}

/* Clearfix hack by Nicolas Gallagher: http://nicolasgallagher.com/micro-clearfix-hack/ */
.clearfix:before, .clearfix:after	{content:'';display:table;}
.clearfix:after 					{clear:both;}


.content-wrapper {
	/*position: relative;
	margin:32px;
	border: 5px dashed red;*/
	}

* {
  box-sizing: border-box;
}

/* link		-> https://codepen.io/rafaelavlucas/pen/BaBVWyL */

@import url("https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900&display=swap");


hr {
	border: 1px solid #B4D3DC;
	border-width: 0 0 1px 0;
	}


.about {
  position: fixed;
  z-index: 10;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  transition: all 0.2s ease;
}
.about .bg_links {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 100%;
  backdrop-filter: blur(5px);
  position: absolute;
}
.about .logo {
  width: 40px;
  height: 40px;
  z-index: 9;
  background-image: url(https://rafaelavlucas.github.io/assets/codepen/logo_white.svg);
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: 10px 7px;
  opacity: 0.9;
  transition: all 1s 0.2s ease;
  bottom: 0;
  right: 0;
}
.about .social {
  opacity: 0;
  right: 0;
  bottom: 0;
}
.about .social .icon {
  width: 100%;
  height: 100%;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  display: flex;
  transition: all 0.2s ease, background-color 0.4s ease;
  opacity: 0;
  border-radius: 100%;
}
.about .social.portfolio {
  transition: all 0.8s ease;
}
.about .social.portfolio .icon {
  background-image: url(https://rafaelavlucas.github.io/assets/codepen/link.svg);
}
.about .social.dribbble {
  transition: all 0.3s ease;
}
.about .social.dribbble .icon {
  background-image: url(https://rafaelavlucas.github.io/assets/codepen/dribbble.svg);
}
.about .social.linkedin {
  transition: all 0.8s ease;
}
.about .social.linkedin .icon {
  background-image: url(https://rafaelavlucas.github.io/assets/codepen/linkedin.svg);
}
.about:hover {
  width: 105px;
  height: 105px;
  transition: all 0.6s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}
.about:hover .logo {
  opacity: 1;
  transition: all 0.6s ease;
}
.about:hover .social {
  opacity: 1;
}
.about:hover .social .icon {
  opacity: 0.9;
}
.about:hover .social:hover {
  background-size: 28px;
}
.about:hover .social:hover .icon {
  background-size: 65%;
  opacity: 1;
}
.about:hover .social.portfolio {
  right: 0;
  bottom: calc(100% - 40px);
  transition: all 0.3s 0s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}
.about:hover .social.portfolio .icon:hover {
  background-color: #698fb7;
}
.about:hover .social.dribbble {
  bottom: 45%;
  right: 45%;
  transition: all 0.3s 0.15s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}
.about:hover .social.dribbble .icon:hover {
  background-color: #ea4c89;
}
.about:hover .social.linkedin {
  bottom: 0;
  right: calc(100% - 40px);
  transition: all 0.3s 0.25s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}
.about:hover .social.linkedin .icon:hover {
  background-color: #0077b5;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
button,
a,
i {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 0;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  color: inherit;
}
h1:focus,
h2:focus,
h3:focus,
h4:focus,
h5:focus,
h6:focus,
p:focus,
ul:focus,
li:focus,
button:focus,
a:focus,
i:focus {
  outline: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
}
body.no-scroll {
  overflow: hidden;
}

.btn {
  min-width: 160px;
  padding: 16px 30px;
  box-shadow: inset 0px 0px 0px 1px #7fb6ca;
  border: 0;
  background-color: white;
  color: #7fb6ca;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 14px;
  position: relative;
  letter-spacing: 0.05em;
  cursor: pointer;
  margin: auto;
  display: block;
}
.btn:focus {
  outline: 0;
}
.btn:before {
  width: 100%;
  height: 100%;
  background-color: #7fb6ca;
  position: absolute;
  content: "";
  z-index: -1;
  left: 0;
  top: 0;
  transition: all 0.3s ease;
  transform: translate(6px, 6px);
}
.btn:hover:before {
  transform: translate(0px, 0px);
}

.wrapper .section-title {
	position:relative;
	display:flex;
	grid-column:1/15;
	justify-content:center;
	align-items:baseline;
	height:120px;
	margin-bottom:40px;
	line-height:normal;
	letter-spacing:0.04em;
	text-align:center;
	/*text-transform: uppercase;*/
	font-weight:900;
	font-size:50px;
	color: #7fb6ca;
	}
@media screen and (max-width: 799px) {
  .wrapper .section-title {
    font-size: 32px;
    height: 76px;
    margin-bottom: 30px;
  }
}
.wrapper .section-title b {
  font-weight: 900;
  margin: 0 10px;
}
@media screen and (max-width: 799px) {
  .wrapper .section-title b {
    margin: 0 5px;
  }
}
.wrapper .section-title span {
  color: transparent;
  -webkit-text-stroke: 1px #7fb6ca;
  margin: 0 10px;
}
@media screen and (max-width: 799px) {
  .wrapper .section-title span {
    margin: 0 5px;
  }
}
.wrapper .section-title:before {
	content:'';
	position:absolute;
	bottom:0;
	width:10px;
	height:40px;
	background-color: #eaeaea;
	transform: rotate(20deg);
	}
@media screen and (max-width: 799px) {
  .wrapper .section-title:before {
    width: 7px;
    height: 26px;
  }
}
.wrapper .module {
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  grid-column-gap: 20px;
  width: 100%;
  max-width: 1920px;
  margin: auto;
}
@media screen and (max-width: 799px) {
  .wrapper .module {
    grid-column-gap: 10px;
    grid-template-columns: 10px repeat(12, 1fr) 10px;
  }
}
.wrapper .module .content {
  grid-column: 3/13;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-column-gap: 20px;
}
@media screen and (max-width: 1023px) {
  .wrapper .module .content {
    grid-column: 2/14;
  }
}
@media screen and (max-width: 799px) {
  .wrapper .module .content {
    grid-template-columns: repeat(1, 1fr);
    grid-column: 2/14;
  }
}
.wrapper section {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 799px) {
  .wrapper section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

nav .icon-menu {
  width: 48px;
  height: 48px;
  z-index: 5;
  top: 40px;
  right: 40px;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.6s ease;
  box-shadow: inset 0px 0px 0px 0px rgba(255, 255, 255, 0.1);
  background: transparent;
}
@media screen and (max-width: 799px) {
  nav .icon-menu {
    top: 10px;
    right: 10px;
  }
}
nav .icon-menu span {
  display: flex;
  width: 32px;
  height: 2px;
  background-color: white;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s 0.2s ease;
}
nav .icon-menu span:before, nav .icon-menu span:after {
  position: absolute;
  width: 32px;
  height: 2px;
  content: "";
  background-color: inherit;
  transform-origin: center;
}
nav .icon-menu span:before {
  transition: all 0.3s ease;
  top: 14px;
}
nav .icon-menu span:after {
  bottom: 14px;
  transition: all 0.3s ease;
}
nav .icon-menu:hover {
  transition: all 0.6s ease;
  box-shadow: inset 0px 0px 0px 25px rgba(255, 255, 255, 0.2);
}
nav .icon-menu:hover span:before {
  top: 11px;
}
nav .icon-menu:hover span:after {
  bottom: 11px;
}
@media screen and (max-width: 799px) {
  nav .icon-menu:hover {
    box-shadow: none;
  }
}
nav .icon-menu.icon-open span {
  width: 0;
  transition: all 0.4s 0.2s ease;
}
nav .icon-menu.icon-open span:before {
  transition: all 0.4s 0.2s ease;
  top: 22px;
  transform: rotate(45deg);
}
nav .icon-menu.icon-open span:after {
  transition: all 0.4s 0.3s ease;
  bottom: 23px;
  transform: rotate(-45deg);
}
nav .icon-menu.sticky {
  transition: all 0.6s ease;
  background: linear-gradient(225deg, #7fb6ca 0%, #c6dde2 100%);
  position: fixed;
}
nav .main-nav {
  display: none;
}
nav .main-nav .menu {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
}
nav .main-nav .menu:before, nav .main-nav .menu:after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  top: 0;
  left: 0;
}
nav .main-nav .menu:before {
  background-color: white;
  z-index: 2;
  opacity: 0.8;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.2);
}
nav .main-nav .menu:after {
  background: linear-gradient(225deg, #7fb6ca 0%, #c6dde2 100%);
  z-index: 3;
}
nav .main-nav .menu .menu-items {
  z-index: 5;
}
nav .main-nav .menu .menu-items .item {
  color: #7fb6ca;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 50px;
  line-height: normal;
  letter-spacing: 0.04em;
  color: transparent;
  -webkit-text-stroke: 1px white;
  z-index: 5;
  padding: 10px;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 799px) {
  nav .main-nav .menu .menu-items .item {
    font-size: 40px;
  }
}
nav .main-nav .menu .menu-items .item:before {
  content: "";
  position: absolute;
  width: 0%;
  height: 60%;
  transition: width 0.6s ease, opacity 2s ease;
  z-index: -1;
  opacity: 0;
  background: #7fb6ca;
}
@media screen and (max-width: 799px) {
  nav .main-nav .menu .menu-items .item:before {
    display: none;
  }
}
nav .main-nav .menu .menu-items .item:hover {
  color: white;
}
@media screen and (max-width: 799px) {
  nav .main-nav .menu .menu-items .item:hover {
    color: transparent;
  }
}
nav .main-nav.menu-open {
  display: block;
}
nav .main-nav.menu-open .menu:before {
  animation: menuOpen 1s ease both;
}
nav .main-nav.menu-open .menu:after {
  animation: menuOpen 0.6s 0.3s ease both;
}
@keyframes menuOpen {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
nav .main-nav.menu-open .menu .menu-items .item {
  animation: itemMenu 0.4s 0.6s ease both;
}
@keyframes itemMenu {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
nav .main-nav.menu-open .menu .menu-items .item:nth-child(1) {
  animation-delay: 0.6s;
}
nav .main-nav.menu-open .menu .menu-items .item:nth-child(1):before {
  transform: translate(15px, -20px);
}
nav .main-nav.menu-open .menu .menu-items .item:nth-child(2) {
  animation-delay: 0.8s;
}
nav .main-nav.menu-open .menu .menu-items .item:nth-child(2):before {
  transform: translate(-50px, -12px);
}
nav .main-nav.menu-open .menu .menu-items .item:nth-child(3) {
  animation-delay: 1s;
}
nav .main-nav.menu-open .menu .menu-items .item:nth-child(3):before {
  transform: translate(28px, -14px);
}
nav .main-nav.menu-open .menu .menu-items .item:nth-child(4) {
  animation-delay: 1.2s;
}
nav .main-nav.menu-open .menu .menu-items .item:nth-child(4):before {
  transform: translate(-24px, -17px);
}
nav .main-nav.menu-open .menu .menu-items .item:hover:before {
  opacity: 1;
  width: 80%;
  height: 60%;
}
nav .main-nav.menu-open .menu .menu-items .item:hover:nth-child(2):before {
  width: 50%;
}
nav .main-nav.menu-open .menu .menu-items .item:hover:nth-child(3):before {
  width: 60%;
}
nav .main-nav.menu-close .menu:before {
  animation: menuClose 0.6s 0.3s ease both;
}
nav .main-nav.menu-close .menu:after {
  animation: menuClose 0.6s ease both;
}
@keyframes menuClose {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
}
nav .main-nav.menu-close .menu .menu-items .item {
  animation: itemClose 0.4s ease both;
}
nav .main-nav.menu-close .menu .menu-items .item:nth-child(1), nav .main-nav.menu-close .menu .menu-items .item:nth-child(2), nav .main-nav.menu-close .menu .menu-items .item:nth-child(3), nav .main-nav.menu-close .menu .menu-items .item:nth-child(4) {
  animation-delay: 0s;
}
@keyframes itemClose {
  0% {
    transform: translateY(0px);
    opacity: 1;
  }
  100% {
    transform: translateY(-100%);
    opacity: 0;
  }
}

header {
  width: 100%;
  background-image: linear-gradient(-225deg, #7fb6ca 0%, #c6dde2 100%);
}
header .main-heading {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  grid-column-gap: 20px;
  position: relative;
  transition: all 0.4s ease;
}
@media screen and (max-width: 799px) {
  header .main-heading {
    grid-template-columns: 10px repeat(12, 1fr) 10px;
    grid-column-gap: 10px;
  }
}
header .main-heading:before {
  content:'';
  position: absolute;
  width: 100vw;
  height: calc(100% + 50px);
  background-image: linear-gradient(225deg, #7fb6ca 0%, #c6dde2 100%);
  grid-column-start: 3;
  transition: all 0.4s ease;
}
@media screen and (max-width: 1023px) {
  header .main-heading:before {
    grid-column-start: 2;
  }
}
@media screen and (max-width: 799px) {
  header .main-heading:before {
    width: 100%;
    grid-column-end: 15;
    height: calc(100% + 20px);
  }
}
header .main-heading article {
  grid-column-start: 3;
  position: absolute;
  z-index: 2;
  color: white;
  margin-top: 70px;
}
@media screen and (max-width: 1023px) {
  header .main-heading article {
    grid-column-start: 2;
  }
}
@media screen and (max-width: 799px) {
  header .main-heading article {
    grid-column-start: 2;
    margin-top: 40px;
  }
}
header .main-heading article .site-title {
  font-size: 144px;
  font-weight: 800;
  /*text-transform: uppercase;*/
  color: transparent;
  -webkit-text-stroke: 2px white;
}
@media screen and (max-width: 799px) {
  header .main-heading article .site-title {
    font-size: 68px;
    -webkit-text-stroke: 1px white;
  }
}
header .main-heading .slide-container {
  width: 100%;
  height: 680px;
  grid-column: 4/13;
  position: relative;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  grid-column-gap: 20px;
}
@media screen and (max-width: 1023px) {
  header .main-heading .slide-container {
    grid-column: 3/14;
  }
}
@media screen and (max-width: 799px) {
  header .main-heading .slide-container {
    height: 400px;
  }
}
header .main-heading .slide-container .slide-wrapper {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  grid-column-gap: 20px;
  grid-column: 1/10;
}
header .main-heading .slide-container .slide-wrapper .slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #7fb6ca;
  grid-column: 1/9;
  visibility: hidden;
  overflow: hidden;
  height: 480px;
  position: absolute;
  transition: all 0.4s ease;
  z-index: 1;
}
@media screen and (max-width: 799px) {
  header .main-heading .slide-container .slide-wrapper .slide {
    grid-column: 1/10;
  }
}
header .main-heading .slide-container .slide-wrapper .slide.active {
  opacity: 1;
  visibility: visible;
  height: 480px;
  transition: all 0.4s ease;
  top: 160px;
  background-color: #7fb6ca;
}
@media screen and (max-width: 799px) {
  header .main-heading .slide-container .slide-wrapper .slide.active {
    height: 300px;
    top: 80px;
  }
}
header .main-heading .slide-container .slide-wrapper .slide.next {
  transition: all 0.4s ease;
  width: 260px;
  height: 160px;
  opacity: 1;
  grid-column-end: 10;
  visibility: visible;
  position: absolute;
  right: 0;
  bottom: -50px;
}
@media screen and (max-width: 799px) {
  header .main-heading .slide-container .slide-wrapper .slide.next {
    display: none;
  }
}
header .main-heading .slide-container .slide-wrapper .slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
header .main-heading .slide-container .slide-wrapper .slide.anime-in:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: linear-gradient(-225deg, #7fb6ca 0%, #c6dde2 100%);
  animation: anime-in-before 0.6s ease both;
}
@keyframes anime-in-before {
  0% {
    transform: translateX(101%);
  }
}
header .main-heading .slide-container .slide-wrapper .slide.anime-in img {
  animation: anime-in 0.6s 0.4s ease both;
  z-index: 1;
}
@keyframes anime-in {
  0% {
    transform: translateX(101%);
  }
}
header .main-heading .slide-container .slide-wrapper .slide.anime-next-in img {
  animation: anime-next-in 0.4s 0.2s ease both;
  z-index: 1;
}
@keyframes anime-next-in {
  0% {
    transform: translateX(101%);
  }
}
header .main-heading .slide-container .slide-wrapper .slide.anime-out:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: linear-gradient(-225deg, #7fb6ca 0%, #c6dde2 100%);
  animation: anime-out-before 0.6s ease both;
}
@keyframes anime-out-before {
  0% {
    transform: translateX(-101%);
  }
}
header .main-heading .slide-container .slide-wrapper .slide.anime-out img {
  animation: anime-out 0.6s 0.4s ease both;
  z-index: 1;
}
@keyframes anime-out {
  0% {
    transform: translateX(-101%);
  }
}
header .main-heading .slide-container .slide-wrapper .slide.anime-next-out img {
  animation: anime-next-out 0.4s 0.2s ease both;
  z-index: 1;
}
@keyframes anime-next-out {
  0% {
    transform: translateX(-101%);
  }
}
header .main-heading .slide-container .slide-arrows {
  position: absolute;
  right: 0;
  display: flex;
  flex-direction: column;
  bottom: 180px;
  width: 60px;
  height: 200px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 799px) {
  header .main-heading .slide-container .slide-arrows {
    display: none;
  }
}
header .main-heading .slide-container .slide-arrows .button-prev,
header .main-heading .slide-container .slide-arrows .button-next {
  bottom: 0;
  top: initial;
  width: 60px;
  height: 60px;
  position: initial;
  margin-top: 0;
  transition: all 0.4s ease;
  box-shadow: inset 0px 0px 0px 1px white;
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
header .main-heading .slide-container .slide-arrows .button-prev:focus,
header .main-heading .slide-container .slide-arrows .button-next:focus {
  outline: 0;
}
header .main-heading .slide-container .slide-arrows .button-prev:hover,
header .main-heading .slide-container .slide-arrows .button-next:hover {
  box-shadow: inset 0px 0px 0px 1px white, inset 0px 0px 0px 6px rgba(255, 255, 255, 0.2);
}
header .main-heading .slide-container .slide-arrows .button-prev {
  background-image: url(https://rafaelavlucas.github.io/assets/icons/white/icon-13.svg);
}
header .main-heading .slide-container .slide-arrows .button-next {
  background-image: url(https://rafaelavlucas.github.io/assets/icons/white/icon-15.svg);
  margin-top: 20px;
}
header .main-heading .slide-container .slide-bullets {
  bottom: -50px;
  height: 80px;
  width: calc(100% - 280px);
  position: initial;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: absolute;
  grid-column-start: 1;
}
@media screen and (max-width: 799px) {
  header .main-heading .slide-container .slide-bullets {
    width: 100%;
    bottom: -20px;
  }
}
header .main-heading .slide-container .slide-bullets .bullet {
  background-color: transparent;
  opacity: 1;
  box-shadow: inset 0px 0px 0px 1px white;
  width: 8px;
  height: 30px;
  transition: all 0.4s ease;
  margin: 0 10px;
}
@media screen and (max-width: 799px) {
  header .main-heading .slide-container .slide-bullets .bullet {
    width: 6px;
    height: 20px;
    margin: 0 6px;
  }
}
header .main-heading .slide-container .slide-bullets .bullet.selected {
  box-shadow: inset 0px 0px 0px 1px white, inset 0px -60px 0px 0px white;
  height: 40px;
}
@media screen and (max-width: 799px) {
  header .main-heading .slide-container .slide-bullets .bullet.selected {
    height: 30px;
  }
}

.tour-list {
  padding-top: 150px !important;
}
@media screen and (max-width: 799px) {
  .tour-list {
    padding-top: 60px !important;
  }
}
.tour-list:before {
  content: "";
  position: absolute;
  width: 6%;
  max-width: 120px;
  height: 500px;
  border: 1px solid #7fb6ca;
  right: 0;
  transform: translatey(-200px);
  animation: beforeShape1 6s ease infinite alternate both;
}
@keyframes beforeShape1 {
  0% {
    transform: translate(50px, -200px);
  }
  100% {
    transform: translate(0px, -280px);
  }
}
@media screen and (max-width: 1023px) {
  .tour-list:before {
    display: none;
  }
}
.tour-list .content {
  width: 100%;
  margin: auto;
}
.tour-list .content .shows {
  margin-bottom: 60px;
  grid-column: 1/11;
}
@media screen and (max-width: 799px) {
  .tour-list .content .shows {
    margin-bottom: 40px;
  }
}
.tour-list .content .shows li {
	display:grid;
	grid-template-columns:auto 3fr 2fr auto;
	grid-template-areas:'date place country buttons';
	grid-column-gap:4%;
	align-items:center;
	padding: 20px 10px;
	border-bottom:1px solid #e7eff5;
	letter-spacing:0.3px;
	font-family:'Roboto',sans-serif;
	font-size:16px;
	font-weight:600;
	/*text-transform: uppercase;*/
	transition:all 0.6s ease;
	cursor:default;
	}
@media screen and (max-width: 1240px) {
  .tour-list .content .shows li {
    grid-template-columns:2fr 1fr;
    grid-template-areas:'date date date' 'place country buttons';
    grid-row-gap:20px;
  }
}
@media screen and (max-width: 1023px) {
  .tour-list .content .shows li {
    grid-template-columns:auto 1fr auto;
    grid-template-areas:'date place place' '. country buttons';
    grid-row-gap:20px;
  }
}
@media screen and (max-width: 799px) {
  .tour-list .content .shows li {
    grid-template-columns:1fr 1fr;
    grid-template-areas:'date .' 'place country' 'buttons buttons';
    padding:20px 0 20px 0;
  }
  .tour-list .content .shows li:first-child {
    padding:0px 0 20px 0;
  }
}
@media screen and (max-width: 639px) {
  .tour-list .content .shows li {
    grid-template-columns:1fr;
    grid-template-areas:'date .' 'place place' 'country country' 'buttons buttons';
  }
}
.tour-list .content .shows li:hover {
  background-color:rgba(231,239,245, .5);
}
@media screen and (max-width: 799px) {
  .tour-list .content .shows li:hover {
    background-color:transparent;
  }
}
.tour-list .content .shows li date {
	grid-area:date;
	color: #7fb6ca;
}
.tour-list .content .shows li .place {
	grid-area:place;
	color: #404145;
	}
.tour-list .content .shows li .country {
  	grid-area:country;
  	font-weight:normal;
  	color: #b7b7b7;
	}
.tour-list .content .shows li .button-container {
	display:flex;
	grid-area:buttons;
	}
.tour-list .content .shows li .button-container .btn-rsvp,
.tour-list .content .shows li .button-container .btn-buy {
	border:0;
	padding:8px 16px;
	box-shadow:inset 0px 0px 0px 1px #7fb6ca;
	line-height:16px;
	letter-spacing:.05em;
	font-family:'Roboto',sans-serif;
	font-size:14px;
	font-weight:600;
	font-style:normal;
	/*text-transform: uppercase;*/
	background-color:transparent;
	color: #7fb6ca;
	transition:all 0.6s ease;
	cursor:pointer;
	}
.tour-list .content .shows li .button-container .btn-rsvp:hover,
.tour-list .content .shows li .button-container .btn-buy:hover {
	box-shadow:inset 0px 0px 0px 1px #7fb6ca, inset 0px -40px 0px #7fb6ca;
	color:#fff;
	}
.tour-list .content .shows li .button-container .btn-rsvp {
	margin-right:10px;
	box-shadow:inset 0px 0px 0px 1px #9c9c9c;
	color: #9c9c9c;
	}
.tour-list .content .shows li .button-container .btn-rsvp:hover {
	box-shadow:inset 0px 0px 0px 1px #9c9c9c, inset 0px -40px 0px #9c9c9c;
	color:#fff;
	}
.tour-list .content a {
	grid-column:1/11;
	}

.videos {
	position:relative;
	}
.videos:before {
  content: "";
  position: absolute;
  width: 16%;
  max-width: 390px;
  height: 630px;
  background-color: #7fb6ca;
  left: 0;
  animation: beforeShape2 6s ease infinite alternate both;
}
@keyframes beforeShape2 {
  0% {
    transform: translate(-50px, 0px);
  }
  100% {
    transform: translate(0px, 50px);
  }
}
@media screen and (max-width: 1023px) {
  .videos:before {
    display: none;
  }
}
.videos .content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 799px) {
  .videos .content {
    grid-template-columns: 1fr;
  }
}
.videos .content .video-item {
  background-color: #7fb6ca;
  height: 430px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  width: calc(100% - 1px);
}
.videos .content .video-item:last-child {
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .videos .content .video-item {
    height: 320px;
  }
}
@media screen and (max-width: 1023px) {
  .videos .content .video-item {
    height: 240px;
  }
}
@media screen and (max-width: 799px) {
  .videos .content .video-item {
    width: 100%;
    height: 200px;
    margin-bottom: 1px;
  }
}
.videos .content .video-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  transition: all 0.8s ease-out;
}
.videos .content .video-item .video-title {
  position: absolute;
  z-index: 3;
  color: transparent;
  -webkit-text-stroke: 1px white;
  font-weight: 900;
  font-size: 40px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.6s ease;
  width: 80%;
  text-align: center;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1240px) {
  .videos .content .video-item .video-title {
    font-size: 28px;
  }
}
.videos .content .video-item .video-icon {
  position: absolute;
  opacity: 0;
  color: white;
  transition: all 0.4s ease;
  z-index: 3;
  transform: translateY(100px);
  width: 32px;
  height: 32px;
  display: block;
  background-image: url(https://rafaelavlucas.github.io/assets/icons/white/icon-179.svg);
}
@media screen and (max-width: 799px) {
  .videos .content .video-item .video-icon {
    transform: translateY(80px);
  }
}
.videos .content .video-item:before, .videos .content .video-item:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  transition: all 0.6s ease;
}
.videos .content .video-item:before {
  background-color: #404145;
  opacity: 0.8;
  z-index: 1;
}
.videos .content .video-item:after {
  background-color: #7fb6ca;
  opacity: 0.2;
  z-index: 2;
}
.videos .content .video-item:hover .video-title {
  color: white;
  transform: translateY(-10px);
}
.videos .content .video-item:hover .video-icon {
  opacity: 1;
  transform: translateY(60px);
}
@media screen and (max-width: 799px) {
  .videos .content .video-item:hover .video-icon {
    transform: translateY(40px);
  }
}
.videos .content .video-item:hover img {
  transform: scale(1.2);
}
.videos .content .video-item:hover:before {
  opacity: 0.4;
}
.videos .content .video-item:hover:after {
  opacity: 0.8;
}
.videos .modal-video {
  z-index: 5;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  visibility: hidden;
}
.videos .modal-video:before, .videos .modal-video:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  transition: all 0.4s ease;
  opacity: 0;
}
.videos .modal-video:before {
  background-color: #404145;
}
.videos .modal-video:after {
  background-color: #7fb6ca;
  z-index: -1;
}
.videos .modal-video .wrapper-video {
  width: calc(80vw - 80px);
  max-width: 1280px;
  height: calc(80vh - 80px);
  background-color: white;
  position: absolute;
  top: calc(50% + 100px);
  left: 50%;
  transform: translate(-50%, -50%) perspective(100em) rotateX(20deg);
  transition: all 0.4s ease;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 799px) {
  .videos .modal-video .wrapper-video {
    width: initial;
    height: initial;
  }
}
.videos .modal-video .wrapper-video .close-video {
  width: 32px;
  height: 32px;
  position: fixed;
  background-image: url(https://rafaelavlucas.github.io/assets/icons/gray1/icon-61.svg);
  right: 40px;
  top: 40px;
  cursor: pointer;
  transition: all 0.4s ease;
}
.videos .modal-video .wrapper-video .close-video:hover {
  transform: rotate(90deg);
}
@media screen and (max-width: 799px) {
  .videos .modal-video .wrapper-video .close-video {
    right: 20px;
    top: 20px;
  }
}
.videos .modal-video .wrapper-video .video-container {
  width: calc(100% - 80px);
  max-width: 820px;
  margin: auto;
}
@media screen and (max-width: 799px) {
  .videos .modal-video .wrapper-video .video-container {
    width: calc(100% - 40px);
  }
}
.videos .modal-video .wrapper-video .video-container .video-code {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.videos .modal-video .wrapper-video .video-container .video-code iframe {
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.6s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.videos .modal-video.video-open {
  transition: all 0.6s ease;
  visibility: visible;
}
.videos .modal-video.video-open:before {
  opacity: 0.8;
}
.videos .modal-video.video-open:after {
  opacity: 0.2;
}
.videos .modal-video.video-open .wrapper-video {
  width: 90vw;
  height: 80vh;
  opacity: 1;
  top: 50%;
  transform: translate(-50%, -50%) perspective(0em) rotateX(0deg);
}
@media screen and (max-width: 799px) {
  .videos .modal-video.video-open .wrapper-video {
    width: calc(100% - 40px);
    height: auto;
    padding: 80px 0;
  }
}
.videos .modal-video.video-open .wrapper-video .video-container .video-code iframe {
  transform: translateY(0px);
  background-color: #7fb6ca;
  transition: all 0.4s 0.4s ease;
  opacity: 1;
}

.album:before {
  content: "";
  position: absolute;
  width: 20%;
  height: 520px;
  border: 1px solid #7fb6ca;
  right: 0;
  animation: beforeShape3 6s ease infinite alternate both;
}
@keyframes beforeShape3 {
  0% {
    transform: translate(50px, 50px);
  }
  100% {
    transform: translate(0px, -50px);
  }
}
@media screen and (max-width: 1023px) {
  .album:before {
    display: none;
  }
}
.album .content {
  grid-template-rows: auto auto auto;
}
@media screen and (max-width: 799px) {
  .album .content {
    justify-items: center;
    grid-template-columns: 1fr;
    width: 100%;
  }
}
.album .content .cover {
  grid-column: 1/5;
  grid-row: 1/2;
  z-index: 1;
  height: fit-content;
}
@media screen and (max-width: 799px) {
  .album .content .cover {
    grid-column: 1;
    width: 100%;
    height: 200px;
  }
}
.album .content .cover .cover-img {
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 799px) {
  .album .content .cover .cover-img {
    width: 100%;
    height: 200px;
    padding: 0;
  }
}
.album .content .cover .cover-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
@media screen and (max-width: 799px) {
  .album .content .cover .cover-img img {
    width: 200px;
    height: 200px;
  }
}
.album .content .tracks {
  grid-column: 3/11;
  grid-row: 1/3;
  transform: translateY(50px);
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-column-gap: 20px;
}
@media screen and (max-width: 799px) {
  .album .content .tracks {
    width: 100%;
    grid-column: 1;
    grid-template-columns: 1fr;
  }
}
.album .content .tracks:before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  background-image: linear-gradient(225deg, #7fb6ca 0%, #c6dde2 100%);
  opacity: 0.5;
  z-index: -1;
}
.album .content .tracks .tracklist {
  grid-column: 3/9;
  padding: 80px 0;
  z-index: 1;
  padding-right: 20px;
}
@media screen and (max-width: 1023px) {
  .album .content .tracks .tracklist {
    grid-column: 3/9;
  }
}
@media screen and (max-width: 799px) {
  .album .content .tracks .tracklist {
    padding: 190px 0 40px 0;
    grid-column: 1;
  }
}
.album .content .tracks .tracklist li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.3px;
  font-weight: 600;
  padding: 0px 20px;
  height: 45px;
  transition: all 0.6s ease;
  position: relative;
  margin: 0 10%;
  cursor: default;
}
@media screen and (max-width: 1240px) {
  .album .content .tracks .tracklist li {
    margin: 0 6%;
  }
}
@media screen and (max-width: 1023px) {
  .album .content .tracks .tracklist li {
    margin: 0;
  }
}
@media screen and (max-width: 799px) {
  .album .content .tracks .tracklist li {
    margin: 0 10%;
    padding: 0px;
  }
}
@media screen and (max-width: 639px) {
  .album .content .tracks .tracklist li {
    margin: 0 20px;
    font-size: 12px;
  }
}
.album .content .tracks .tracklist li article {
  display: flex;
}
.album .content .tracks .tracklist li p {
  color: #404145;
  transition: all 0.2s ease;
}
.album .content .tracks .tracklist li span {
  margin-right: 20px;
  color: #7fb6ca;
  transition: all 0.2s ease;
}
@media screen and (max-width: 799px) {
  .album .content .tracks .tracklist li span {
    margin-right: 10px;
  }
}
.album .content .tracks .tracklist li small {
  font-size: 12px;
  color: #b7b7b7;
  font-weight: normal;
  margin-left: 10px;
  line-height: 20px;
  letter-spacing: 0.05em;
  transition: all 0.4s ease;
}
@media screen and (max-width: 799px) {
  .album .content .tracks .tracklist li small {
    font-size: 12px;
    margin-left: 10px;
  }
}
@media screen and (max-width: 380px) {
  .album .content .tracks .tracklist li small {
    display: none;
  }
}
.album .content .tracks .tracklist li .icons {
  display: flex;
}
.album .content .tracks .tracklist li .icons i {
  width: 20px;
  height: 20px;
  background-image: url(https://rafaelavlucas.github.io/assets/icons/white/icon-13.svg);
  display: block;
  margin-left: 20px;
  opacity: 0;
  transition: all 0.4s ease;
  transform: translateX(20px);
  cursor: pointer;
}
.album .content .tracks .tracklist li .icons i:first-child {
  margin-left: 0;
}
@media screen and (max-width: 799px) {
  .album .content .tracks .tracklist li .icons i {
    opacity: 0.6;
    transform: translateX(0px);
  }
}
.album .content .tracks .tracklist li .icons .like {
  background-image: url(https://rafaelavlucas.github.io/assets/icons/white/icon-123.svg);
}
@media screen and (max-width: 799px) {
  .album .content .tracks .tracklist li .icons .like {
    background-image: url(https://rafaelavlucas.github.io/assets/icons/gray1/icon-123.svg);
  }
}
.album .content .tracks .tracklist li .icons .play {
  background-image: url(https://rafaelavlucas.github.io/assets/icons/white/icon-179.svg);
}
@media screen and (max-width: 799px) {
  .album .content .tracks .tracklist li .icons .play {
    background-image: url(https://rafaelavlucas.github.io/assets/icons/gray1/icon-179.svg);
  }
}
.album .content .tracks .tracklist li:hover {
  background-color: #7fb6ca;
  box-shadow: inset 0px -1px 0px white;
}
.album .content .tracks .tracklist li:hover p {
  color: white;
}
.album .content .tracks .tracklist li:hover span {
  color: #e7eff5;
}
.album .content .tracks .tracklist li:hover small {
  color: #eaeaea;
}
.album .content .tracks .tracklist li:hover i {
  opacity: 0.5;
  transform: translateX(0px);
}
.album .content .tracks .tracklist li:hover i:hover {
  opacity: 1;
}
@media screen and (max-width: 799px) {
  .album .content .tracks .tracklist li:hover {
    background-color: transparent;
    box-shadow: none;
  }
  .album .content .tracks .tracklist li:hover span {
    color: #7fb6ca;
  }
  .album .content .tracks .tracklist li:hover p {
    color: #404145;
  }
  .album .content .tracks .tracklist li:hover small {
    color: #b7b7b7;
  }
}
.album .content .button-container {
  grid-row: 2/4;
  grid-column: 1/5;
  margin-top: 30px;
  z-index: 2;
}
@media screen and (max-width: 799px) {
  .album .content .button-container {
    grid-row: 3;
    grid-column: 1;
  }
}

.follow {
  position: relative;
}
.follow:before, .follow:after {
  content: "";
  position: absolute;
  width: 40%;
  height: 300px;
  background-color: #e7eff5;
  left: 0;
  bottom: 0;
  animation: beforeShape5 6s 1s ease infinite alternate both;
}
@keyframes beforeShape5 {
  0% {
    transform: translate(-60%, 50px);
  }
  100% {
    transform: translate(-50%, -50px);
  }
}
@media screen and (max-width: 1023px) {
  .follow:before, .follow:after {
    display: none;
  }
}
.follow:after {
  z-index: -1;
  left: initial;
  width: 100%;
  grid-column: 12/14;
  right: 0;
  top: 0;
  height: 400px;
  animation: beforeShape6 6s 1s ease infinite alternate both;
}
@keyframes beforeShape6 {
  0% {
    transform: translate(0px, 150px);
  }
  100% {
    transform: translate(50px, 180px);
  }
}
@media screen and (max-width: 799px) {
  .follow .content {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 10px;
  }
}
.follow .content .newsletter,
.follow .content .social {
  overflow: hidden;
  position: relative;
  height: 360px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .follow .content .newsletter,
.follow .content .social {
    height: 280px;
  }
}
@media screen and (max-width: 1023px) {
  .follow .content .newsletter,
.follow .content .social {
    height: 200px;
  }
}
.follow .content .newsletter img,
.follow .content .social img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}
.follow .content .newsletter .social-title,
.follow .content .social .social-title {
  position: absolute;
  z-index: 3;
  color: transparent;
  -webkit-text-stroke: 1px white;
  font-weight: 900;
  font-size: 40px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.6s ease;
}
@media screen and (max-width: 1240px) {
  .follow .content .newsletter .social-title,
.follow .content .social .social-title {
    font-size: 28px;
  }
}
.follow .content .newsletter:before, .follow .content .newsletter:after,
.follow .content .social:before,
.follow .content .social:after {
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  background-color: #7fb6ca;
  z-index: 1;
  left: 0;
  top: 0;
  transition: all 0.4s ease;
}
.follow .content .newsletter:before,
.follow .content .social:before {
  mix-blend-mode: multiply;
}
.follow .content .newsletter:after,
.follow .content .social:after {
  opacity: 0.6;
  z-index: 2;
}
.follow .content .newsletter:hover:after,
.follow .content .social:hover:after {
  opacity: 0.8;
}
@media screen and (max-width: 799px) {
  .follow .content .newsletter:hover:after,
.follow .content .social:hover:after {
    opacity: 0.6;
  }
}
.follow .content .newsletter:hover .social-title,
.follow .content .social:hover .social-title {
  color: white;
}
@media screen and (max-width: 799px) {
  .follow .content .newsletter:hover .social-title,
.follow .content .social:hover .social-title {
    color: transparent;
  }
}
.follow .content .newsletter {
  grid-column: 1/6;
  background-color: #7fb6ca;
}
@media screen and (max-width: 799px) {
  .follow .content .newsletter {
    grid-column: 1;
  }
}
.follow .content .newsletter .social-title {
  left: 40px;
  top: 20px;
}
@media screen and (max-width: 799px) {
  .follow .content .newsletter .social-title {
    left: 20px;
  }
}
.follow .content .newsletter .form {
  z-index: 3;
  position: absolute;
  width: 100%;
  padding: 0 10%;
  box-sizing: border-box;
}
@media screen and (max-width: 799px) {
  .follow .content .newsletter .form {
    padding: 0 20px;
  }
}
.follow .content .newsletter .form input {
  width: 100%;
  background-color: transparent;
  color: white;
  border: 0;
  box-shadow: inset 0px -2px 0px white;
  padding: 10px 40px 10px 10px;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.05em;
  box-sizing: border-box;
}
.follow .content .newsletter .form input:focus {
  outline: 0;
}
.follow .content .newsletter .form input::placeholder {
  color: white;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 18px;
  opacity: 0.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 799px) {
  .follow .content .newsletter .form input::placeholder {
    font-size: 14px;
  }
}
@media screen and (max-width: 799px) {
  .follow .content .newsletter .form input {
    font-size: 14px;
  }
}
.follow .content .newsletter .form .send {
  width: 24px;
  height: 24px;
  position: absolute;
  z-index: 3;
  right: 10%;
  top: 0;
  transition: all 0.4s ease;
  background-image: url(https://rafaelavlucas.github.io/assets/icons/white/icon-12.svg);
  transform: translate(-10px, 5px);
  cursor: pointer;
}
@media screen and (max-width: 799px) {
  .follow .content .newsletter .form .send {
    right: 20px;
    transform: translate(-10px, 5px);
  }
}
.follow .content .newsletter .form .send:hover {
  transform: translate(0px, 5px);
}
.follow .content .social {
  grid-column: 6/11;
  background-color: #e7eff5;
  transform: translateY(50px);
  position: relative;
}
@media screen and (max-width: 799px) {
  .follow .content .social {
    grid-column: 1;
    transform: translateY(0px);
  }
}
.follow .content .social .social-title {
  right: 40px;
  top: 20px;
  cursor: default;
}
@media screen and (max-width: 799px) {
  .follow .content .social .social-title {
    right: 20px;
  }
}
.follow .content .social .social-icons {
  z-index: 3;
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
}
.follow .content .social .social-icons .network {
  margin: 0 5%;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1023px) {
  .follow .content .social .social-icons .network {
    margin: 0 4%;
  }
}
@media screen and (max-width: 799px) {
  .follow .content .social .social-icons .network {
    margin: 0 5%;
  }
}
.follow .content .social .social-icons .network img {
  width: 48px;
  height: 48px;
  transition: all 0.4s ease;
}
@media screen and (max-width: 1023px) {
  .follow .content .social .social-icons .network img {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 799px) {
  .follow .content .social .social-icons .network img {
    width: 32px;
    height: 32px;
  }
}
.follow .content .social .social-icons .network .social-name {
  opacity: 0;
  font-size: 14px;
  color: #e7eff5;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  position: absolute;
  bottom: 0;
  transition: all 0.4s ease;
  transform: translateY(60px);
}
@media screen and (max-width: 799px) {
  .follow .content .social .social-icons .network .social-name {
    display: none;
  }
}
.follow .content .social .social-icons .network:hover img {
  transform: translateY(-10px);
}
@media screen and (max-width: 799px) {
  .follow .content .social .social-icons .network:hover img {
    transform: translateY(0px);
  }
}
.follow .content .social .social-icons .network:hover .social-name {
  transform: translateY(30px);
  opacity: 0.8;
}

footer {
  padding-top: 200px;
}
@media screen and (max-width: 799px) {
  footer {
    padding-top: 30px;
  }
}
footer .content {
  background-color: #404145;
  width: 100%;
  height: 290px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  grid-column-gap: 20px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 799px) {
  footer .content {
    grid-template-columns: 10px repeat(12, 1fr) 10px;
    grid-column-gap: 10px;
    height: 180px;
  }
}
footer .content:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: solid 1px #7fb6ca;
  grid-column: 2/14;
  transform: translateY(-50px);
}
@media screen and (max-width: 799px) {
  footer .content:after {
    transform: translateY(-20px);
  }
}
footer .content article {
  grid-column: 3/13;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 3;
}
footer .content article .text {
  color: #7fb6ca;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
}
footer .content article .credits {
  display: block;
  color: #9c9c9c;
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
}
footer .content article .credits a {
  color: white;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: all 0.4s ease;
  padding: 0 2px;
}
footer .content article .credits a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0%;
  background: linear-gradient(225deg, #7fb6ca 0%, #c6dde2 100%);
  grid-column: 2/14;
  transform: translateY(5px);
  left: 0;
  bottom: 0;
  transition: all 0.4s ease;
  z-index: -1;
}
footer .content article .credits a span {
  display: inline-block;
}
footer .content article .credits a:hover {
  color: #404145;
}
footer .content article .credits a:hover:before {
  height: 100%;
  transform: translateY(0px);
  opacity: 1;
}

/* ------------------------------------------------------------------------------ */
/* END */	
/* ------------------------------------------------------------------------------ */