/* =================================
------------------------------------
  Photo Gallery HTML Template
  Version: 1.0
 ------------------------------------
 ====================================*/




/*----------------------------------------*/
/* Template default CSS
/*----------------------------------------*/

html,
body {
	height: 100%;
	font-family: 'PT Sans', sans-serif;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: #323232;
	font-weight: 400;
}

h1 {
	font-size: 70px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
	font-family: 'Krona One', sans-serif;
}

h4 {
	font-size: 24px;
	font-family: 'Sriracha', cursive;
	margin-top: 5px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 12px;
	font-family: 'Sriracha', cursive;
}

p {
	font-size: 19px;
	color: hsl(210, 1%, 29%);
	line-height: 1.8;
	animation-duration: 4s;
  animation-name: slidein;
}

@keyframes slidein {
  from {
    margin-left: 100%;
    width: -100%
  }

  to {
    margin-left: 0%;
    width: 100%;
  }
}

img {
	max-width: 100%;
}

.github{
	padding-bottom: 50px;
	color:#323232;
	font-size: 24px;
	font-family: 'Sriracha', cursive;
	margin-top: 5px;
}

.animation-color{
	animation-duration: 2s;
	animation-direction: alternate;
	animation-name: changecolor;
	animation-iteration-count: infinite;
}

.animation-up{
	-webkit-animation: swing 1s ease;
	animation: swing 1s ease;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.github:hover{
	color: black;
	font-size: 25px;
}

.li-animation{

/*	animation-duration: 4s;
	animation-direction: alternate;
	animation-name: zoom;
	animation-iteration-count: infinite;*/
}

.social-icon, .social-icon-2{
	color:#525151;
	font-size: 31px;
	margin-right: 30px;
}

.social-icon-2{
	font-size: 27px;
}

@keyframes zoom{
	from{transform: scale(0.8);}
	to{transform: scale(1.1);}
  }

@keyframes changecolor{
	from{color: black;}
	to{color: rgb(109, 109, 109);}
  }

  @-webkit-keyframes swing
  {
  15%
  {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
  }
  30%
  {
  -webkit-transform: translateX(-5px);
  transform: translateX(-5px);
  }
  50%
  {
  -webkit-transform: translateX(3px);
  transform: translateX(3px);
  }
  65%
  {
  -webkit-transform: translateX(-3px);
  transform: translateX(-3px);
  }
  80%
  {
  -webkit-transform: translateX(2px);
  transform: translateX(2px);
  }
  100%
  {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  }
  }
  @keyframes swing
  {
  15%
  {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
  }
  30%
  {
  -webkit-transform: translateX(-5px);
  transform: translateX(-5px);
  }
  50%
  {
  -webkit-transform: translateX(3px);
  transform: translateX(3px);
  }
  65%
  {
  -webkit-transform: translateX(-3px);
  transform: translateX(-3px);
  }
  80%
  {
  -webkit-transform: translateX(2px);
  transform: translateX(2px);
  }
  100%
  {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  }
  }

.resume{
	font-family: 'Sriracha', cursive;
	margin-left: 10px;
	margin-right: 10px;
}


input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
}

ul,
ol {
	padding: 0;
	margin: 0;
}

/*---------------------
  Helper CSS
-----------------------*/

.section-title {
	text-align: center;
}

.section-title h2 {
	font-size: 36px;
}

.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}

.spad {
	padding-top: 105px;
	padding-bottom: 105px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
	color: #fff;
}

/*---------------------
  Commom elements
-----------------------*/

/* buttons */

.site-btn {
	display: inline-block;
	border: 2px solid #000000;
	font-size: 16px;
	font-weight: 700;
	min-width: 189px;
	padding: 15px 28px;
	padding-right: 62px;
	letter-spacing: 0.08em;
	border-radius: 0;
	text-align: center;
	text-transform: uppercase;
	color: #323232;
	line-height: normal;
	cursor: pointer;
	background-color: transparent;
	background-image: url("../img/angle-rignt.png");
	background-repeat: no-repeat;
	background-position: right 23px top 22px;
}

.site-btn:hover {
	color: #323232;
}

.site-btn.sb-light {
	color: #fff;
	border-color: #fff;
	background-image: url("../img/angle-rignt-w.png");
}

.site-btn.sb-solid-dark {
	color: #fff;
	background-color: #323232;
	background-image: url("../img/angle-rignt-w.png");
}

/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #000;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

.main-warp {
	height: 100%;
	padding-left: 300px;
}

.spacial-controls {
	position: fixed;
	width: 111px;
	height: 91px;
	top: 0;
	right: 0;
	z-index: 999;
}

.spacial-controls .search-switch {
	display: block;
	height: 100%;
	padding-top: 30px;
	background: #323232;
	text-align: center;
	cursor: pointer;
}

.search-model {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #000;
	z-index: 99999;
}

.nav-switch-warp {
	display: none;
	width: 50%;
	background: #fff;
	padding-top: 17px;
	padding-left: 15px;
	-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.nav-switch {
	display: block;
	width: 40px;
	height: 31px;
	padding-top: 14px;
	position: relative;
	cursor: pointer;
}

.nav-switch .ns-bar {
	width: 30px;
	height: 3px;
	background: #000;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.nav-switch .ns-bar:after,
.nav-switch .ns-bar:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 3px;
	background: #000;
	left: 0;
	bottom: 0;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.nav-switch .ns-bar:before {
	bottom: auto;
	top: 0;
}

.nav-switch:hover .ns-bar {
	width: 100%;
}

.search-moderl-form {
	padding: 0 15px;
}

.search-moderl-form input {
	width: 500px;
	font-size: 40px;
	border: none;
	border-bottom: 2px solid #333;
	background: none;
	color: #999;
}

.search-close-switch {
	position: absolute;
	width: 50px;
	height: 50px;
	background: #333;
	color: #fff;
	text-align: center;
	border-radius: 50%;
	padding-top: 7px;
	font-size: 21px;
	top: 30px;
	cursor: pointer;
}

/*------------------
  Header section
---------------------*/

.header-section {
	position: fixed;
	width: 455px;
	left: 0;
	top: 0;
	background: #fff;
	z-index: 9999;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.header-close {
	display: none;
	position: absolute;
	width: 35px;
	height: 35px;
	border: 1px solid #a9a9a9;
	border-radius: 50%;
	text-align: center;
	padding-top: 4px;
	right: 25px;
	top: 10px;
	color: #999;
}

.header-warp {
	margin-bottom: 250px;
}

.site-logo { /*logo*/
	display: block;
	margin-top: 20px;
	padding-left: 40px;
	padding-top: 38px;
	margin-bottom: 30px;
}

.site-logo-responsive {
	display: none;
}

.icons-responsive{
	display: none;
}

.menu-icon {
	padding-left: 63px;
	margin-bottom: 29px;
}

.main-menu {
	list-style: none;
	margin-bottom: 65px;
}

.main-menu li {
	display: inline-block;
	width: 280px;
	font-size: 16px;
	margin: 0px;
	padding: 0px;
	font-family: 'Advent Pro', sans-serif;
	text-transform: uppercase;
	font-weight: 700;
	color: #323232;
	margin-bottom: 50px;
	text-align: center;
	position: relative;
}

.main-menu li.active a {
	border-bottom: 2px solid #000000;
}

.main-menu li a:hover {
	font-size: 17px;
	color: black;
}

.social-links-warp {
	padding-left: 63px;
}

.social-links {
	width: 40px;
}

.social-links a {
	font-size: 14px;
	display: block;
	color: #c6d7d8;
	margin-bottom: 29px;
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
	-webkit-transform-origin: top left;
	-ms-transform-origin: top left;
	transform-origin: top left;
}

.social-text {
	font-size: 14px;
	font-weight: 700;
	color: #323232;
	text-transform: uppercase;
	width: 215px;
	position: relative;
	-webkit-transform: rotate(-90deg) translateX(-200px);
	-ms-transform: rotate(-90deg) translateX(-200px);
	transform: rotate(-90deg) translateX(-200px);
	-webkit-transform-origin: top left;
	-ms-transform-origin: top left;
	transform-origin: top left;
}

.social-text:after {
	position: absolute;
	content: "";
	width: 101px;
	height: 2px;
	right: 0;
	top: calc(50% - 1px);
	background: #000;
}

.copyright {
	position: fixed;
	height: 45px;
	width: 455px;
	left: 0;
	bottom: 0;
	background: #fff;
	padding-left: 63px;
	padding-top: 20px;
	font-size: 10px;
	font-weight: 700;
	color: #c6d7d8;
	text-transform: uppercase;
}

.page-section {
	min-height: 100%;
}

.home-page {
	height: 100%;
	position: relative;
	z-index: 10000;
}

.hero-slider,
.hero-slider .owl-stage-outer,
.hero-slider .owl-stage,
.hero-slider .owl-item {
	height: 100%;
}

.hero-slider .owl-nav { /*flechas pasar de proyecto*/
	display: -ms-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	left: -80px;
	bottom: 0;
	z-index: 11;
	width: 222px;
}

.hero-slider .owl-nav button.owl-next, /*flechas pasar de proyecto*/
.hero-slider .owl-nav button.owl-prev {
	width: 80px;
	height: 50px;
	background: #fff;
	opacity: 0.9;
}

.hero-slider .owl-nav button.owl-prev {
	background: #323232;
}

#snh-1 {
	font-size: 15px;
	font-weight: 700;
	color: #898d90;
	position: absolute;
	width: 90px;
	height: 60px;
	right: 0;
	bottom: 0;
	top: 480px;
	left: 25%;
	text-align: center;
	background: #fff;
	padding-top: 15px;
	z-index: 999;
}

#snh-1 span {
	font-size: 20px;
	color: #323232;
}

.slider-item {
	height: 100%;
	padding-bottom: 77px;
}

.slider-item .si-text-box {
	width: 350px;
	padding: 50px 50px 50px 0;
	background: #fff;
	opacity:0.9;
}

.slider-item .si-text-box span { /*herrmientas*/
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	color: hsl(210, 1%, 29%);
	letter-spacing: 2px;
}

.slider-item .si-text-box h2 {
	margin-bottom: 30px;
	font-size: 48px;
}

.slider-item .si-text-box p {
	margin-bottom: 40px;
}

.next-slide-show {
	position: absolute;
	width: 150px;
	height: 150px;
	right: 97px;
	top: calc(80% - 111px);
	background-color: #fff;
	z-index: 111;
	border: 2px solid #fff;
	border-radius: 100px;
	-webkit-box-shadow: 0 35px 35px rgba(0, 0, 0, 0.64);
	box-shadow: 0 35px 35px rgba(0, 0, 0, 0.64);
}

.next-slide-show .ns-btn {
	position: absolute;
	display: block;
	text-align: center;
	width: 95px;
	height: 52px;
	left: calc(100% - 14px);
	top: calc(50% - 26px);
	font-size: 16px;
	font-weight: 700;
	color: #1b1c2e;
	padding-top: 5px;
	background-color: #fff;
	background-image: url("../img/angle-rignt.png");
	background-repeat: no-repeat;
	background-position: center bottom 13px;
	opacity: 0.9;
}

/* ----------------
  Elements page
---------------------*/

.elements-page {
	padding: 200px 110px 0 85px;
	background: #f7f9fb;
	height: auto;
}

.elements-warp {
	padding: 0 15px;
}

.element {
	margin-bottom: 105px;
}

.element:last-child {
	margin-bottom: 0;
}

.el-title {
	font-size: 48px;
	margin-bottom: 40px;
}

/*===  Tab  ===*/

.tab-element .nav-tabs {
	border-bottom: none;
	margin-bottom: 25px;
}

.tab-element .nav-item {
	margin-right: 10px;
	margin-bottom: 10px;
}

.tab-element .nav-tabs .nav-link {
	border: 2px solid #000;
	text-align: left;
	background-color: transparent;
	border-radius: 0;
	position: relative;
	width: 100%;
	padding: 15px 37px;
	font-size: 16px;
	text-transform: uppercase;
	color: #323232;
	font-weight: 700;
	cursor: pointer;
}

.tab-element .nav-tabs .nav-item:last-child {
	margin-right: 0;
}

.tab-element .nav-tabs .nav-link.active {
	background: #323232;
	color: #fff;
}

.tab-element .tab-pane p {
	margin-bottom: 0;
	line-height: 1.9;
}

/* Circle progress */

.circle-progress {
	text-align: center;
	display: inline-block;
	position: relative;
	margin-bottom: 30px;
}

.icon-box {
	margin-bottom: 40px;
}

.icon-box .ib-icon {
	font-size: 60px;
	font-weight: 700;
	color: #323232;
	width: 85px;
	float: left;
	margin-right: 10px;
}

.icon-box .ib-title span {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	color: #898d90;
	letter-spacing: 2px;
}

.icon-box .ib-title h2 {
	margin-bottom: 30px;
	font-size: 48px;
	line-height: 1;
}

.element .icon-box {
	padding-right: 40px;
}

/* ----------------
  Responsive
---------------------*/

@media (max-width: 1770px) {
	.gallery-single-slider {
		margin-bottom: 50px;
	}
	.gallery-single-slider .owl-nav {
		position: relative;
		left: 0;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		width: 100%;
		margin-top: -44px;
	}
}

@media (max-width: 1350px) {
	.about-warp {
		padding-left: 30px;
		padding-right: 60px;
	}
	.about-text {
		padding-right: 0;
	}
	.gallery-single-text {
		padding: 0 30px;
	}
	.contact-text {
		padding-left: 40px;
		padding-right: 30px;
	}
	.map-warp {
		padding-left: 0;
	}
	.map-warp iframe {
		height: 600px;
	}
	.elements-page {
		padding: 200px 40px 0;
	}
	.element .icon-box {
		padding-right: 0px;
	}
}

/* Medium screen : 992px. */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.header-section,
	.copyright {
		width: 300px;
	}
	.main-warp {
		padding-left: 300px;
	}
	.about-image {
		margin-bottom: 100px;
		margin-left: 15px;
	}
	.gallery-single-slider {
		padding: 50px 40px 0;
	}
	.gallery-single-text {
		padding: 75px 50 0;
	}
	.gallery-item {
		width: 50%;
	}
	.blog-post .blog-thumb {
		height: 300px;
	}
	.contact-text {
		padding-left: 30px;
		padding-right: 30px;
	}
}

/* Tablet :768px. */

@media only screen and (min-width: 768px) and (max-width: 991px) {

	.spacial-controls {
		width: 200px;
		height: 85px;
		display: -ms-flex;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.spacial-controls .search-switch {
		width: 50%;
	}
	.nav-switch-warp {
		display: block;
		padding-top: 25px;
		padding-left: 30px;
	}
	.header-section {
		left: -150%;
		opacity: 0;
		visibility: hidden;
		width: 100%;
		overflow-y: auto;
	}
	.header-section.active {
		left: 0;
		opacity: 1;
		visibility: visible;
	}
	.header-section.active .header-close {
		position: fixed;
	}
	.header-close {
		display: block;
	}
	.main-warp {
		padding-left: 0;
	}
	.home-page {
		z-index: 1;
	}
	.next-slide-show {
		display: none;
	}
	.slider-item {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.slider-item .si-text-box {
		width: 450px;
		margin-top: 30px;
		padding: 20px 30px 40px;
		text-align: center;
	}
	.site-logo-responsive { /*logo*/
		display: block;
		width: 35%;
		margin-left: 131px;
		margin-bottom: 5px;
	}
	.icons-responsive{
		display: block;
		margin-bottom: 20px;
		margin-left: 40px;
	}
	
	.hero-slider .owl-nav {
		left: 0;
	}
	.hero-slider .owl-nav button.owl-next,
	.hero-slider .owl-nav button.owl-prev {
		width: 90px;
		height: 60px;
	}
	.about-image {
		margin-bottom: 100px;
		margin-left: 15px;
	}
	.gallery-single-slider {
		padding: 50px 40px 0;
	}
	.gallery-single-text {
		padding: 75px 50 0;
	}
	.portfolio-filter {
		padding-right: 215px;
	}
	.portfolio-filter li {
		margin-right: 30px;
	}
	.gallery-item {
		width: 50%;
	}
	.blog-warp {
		padding-right: 50px;
	}
	.blog-post .blog-thumb {
		height: 300px;
	}
	.contact-text {
		padding-left: 30px;
		padding-right: 30px;
	}
}

/* Large Mobile :480px. */

@media only screen and (max-width: 767px) {
	.spacial-controls {
		width: 150px;
		height: 65px;
		display: -ms-flex;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.spacial-controls .search-switch {
		width: 50%;
		padding-top: 18px;
	}
	.nav-switch-warp,
	.header-close {
		display: block;
	}
	.header-section {
		left: -150%;
		opacity: 0;
		visibility: hidden;
		width: 100%;
		overflow-y: auto;
	}
	.header-section.active {
		left: 0;
		opacity: 1;
		visibility: visible;
	}
	.header-section.active .header-close {
		position: fixed;
	}
	.header-warp {
		margin-bottom: 50px;
	}
	.social-links {
		width: auto;
	}
	.social-links a {
		display: inline-block;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		margin-right: 15px;
	}
	.social-text {
		display: none;
	}
	.main-warp {
		padding-left: 0;
	}
	.home-page {
		z-index: 1;
	}
	.next-slide-show {
		display: none;
	}
	.slider-item {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.slider-item .si-text-box {
		width: 450px;
		margin-top: 30px;
		padding: 20px 30px 40px;
		text-align: center;
	}
	.site-logo-responsive { /*logo*/
		display: block;
		width: 35%;
		margin-left: 131px;
		margin-bottom: 5px;
	}
	.icons-responsive{
		display: block;
		margin-bottom: 20px;
		margin-left: 40px;
	}
	.hero-slider .owl-nav {
		display: none;
	}

	.slider-item .si-text-box {
		width: 450px;
		margin-top: 30px;
		padding: 20px 30px 40px;
		text-align: center;
	}
	.about-image {
		margin-bottom: 100px;
		margin-left: 15px;
	}
	.gallery-single-slider {
		padding: 50px 40px 0;
	}
	.gallery-single-text {
		padding: 75px 50 0;
	}
	.portfolio-filter {
		padding-right: 160px;
	}
	.portfolio-filter li {
		margin-right: 30px;
	}
	.gallery-item {
		width: 50%;
	}
	.blog-page {
		padding: 100px 50px 0;
	}
	.blog-warp {
		padding-right: 20px;
	}
	.blog-post .blog-thumb {
		height: 300px;
	}
	.contact-text {
		padding-left: 30px;
		padding-right: 30px;
	}
	.search-moderl-form input {
		width: 100%;
	}
}

/* Medium Mobile :480px. */

@media only screen and (min-width: 576px) and (max-width: 766px) {
	.slider-item .si-text-box {
		width: 470px;
	}
}

/* Small Mobile :320px. */

@media only screen and (max-width: 479px) {
	.site-logo-responsive { /*logo*/
		margin-top: 10px;
		margin-left: 34%;
	}
	.slider-item {
		padding: 0 15px;
	}
	.slider-item .si-text-box {
		width: 100%;
		padding: 10px 30px 20px;
	}
	.slider-item .si-text-box h3 {
		margin-top: 5px;
		margin-bottom: 5px;
		font-size: 23px;
	}
	.slider-item .si-text-box p {
		margin-bottom: 15px;
		margin-top: -15px;
		font-size: 16px;
	}
	.slider-item .si-text-box .github{
		font-size: 20px;
	}
	#snh-1 {
		display: none;
	}
	.portfolio-filter {
		padding: 80px 30px 20px;
	}
	.gallery-item {
		width: 100%;
	}
	.blog-page {
		padding: 100px 15px 0;
	}
}
