/* ----------------------------------
Ocean
Version: 1.0
Author: BootEx

-------------------------------------

Table of contents

  @ Main Styles
  @ Intro 
  @ About 
  @ Service
  @ Resume
  @ Portfolio
  @ Review
  @ Blog
  @ Contact
  @ Footer
  @ Responsive

*/



/* ====================
  Main Styles
=======================*/

@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,600,700|Poppins:400,600,700');
html,
body {
  height: 100%;
  font-family: "Montserrat", sans-serif;
}

body {
  padding-left: 55px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  padding: 0;
  margin: 0;
  color: #333;
}

h1 {
  font-size: 65px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 14px;
}

h5 {
  font-size: 12px;
}

p {
  font-size: 16px;
  color: #777777;
  line-height: 25px;
  font-family: "Raleway", sans-serif;
}

img {
  max-width: 100%;
}

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

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


/* ====================
  Common Styles
=======================*/

.spad {
  padding: 80px 0;
}

.no-p {
  padding-left: 0;
  padding-right: 0;
}

[class*="-section"] {
  overflow: hidden;
}

.sec-title {
  margin-bottom: 50px;
  text-align: center;
}

.sec-title h2 {
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-weight: bold;
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  font-size: 25px;
}

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

.site-btn,
a.site-btn {
  font-family: "Montserrat", sans-serif;
  background: #333;
  color: #fff;
  padding: 15px 25px;
  border: 2px solid #333;
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: normal;
  transition: all 0.4s cubic-bezier(0.8, 0.26, 0.49, 0.97) 0s;
}

.site-btn:hover,
a.site-btn:hover {
  color: #333 !important;
  background: transparent !important;
}

.site-btn:focus,
a.site-btn:focus {
  outline: none;
}
/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f5f5f5;
  z-index: 1000;
}

.pre-container {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  text-align: center;
}

.spinner {
  margin: 0 auto;
  width: 70px;
  text-align: center;
}

.spinner>div {
  width: 18px;
  height: 18px;
  background-color: #333;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0)
  }
  40% {
    -webkit-transform: scale(1.0)
  }
}

@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}

.left-side {
  position: fixed;
  width: 55px;
  height: 100%;
  left: 0;
  top: 0;
  background: #fff;
  box-shadow: 5px 5px 50px rgba(162, 162, 162, 0.15);
  z-index: 20;
}

.logo {
  padding: 15px 7px;
}

.copy {
  position: absolute;
  bottom: -10px;
  left: 27px;
  transform: rotate(-90deg);
  font-size: 12px;
  width: 250px;
  height: 24px;
  transform-origin: left;
}

.nav-switch {
  position: absolute;
  width: 100%;
  height: 55px;
  padding-top: 20px;
  display: block;
  text-align: center;
  bottom: 0;
  cursor: pointer;
  top: 50%;
  margin-top: -30px;
  z-index: 2;
}

.nav-switch span {
  height: 4px;
  background: #333;
  width: 30px;
  display: block;
  margin-bottom: 4px;
  margin-left: 12px;
  border-radius: 15px;
  position: relative;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.nav-switch .bar-one {
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  bottom: 0px;
}

.nav-switch .bar-two {
  opacity: 1;
}

.nav-switch .bar-three {
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  top: 0px;
}

.nav-switch.active .bar-one {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  bottom: -8px;
}

.nav-switch.active .bar-two {
  opacity: 0;
}

.nav-switch.active .bar-three {
  transform: rotate(-225deg);
  -webkit-transform: rotate(-225deg);
  top: -8px;
}

.mainmenu {
  position: fixed;
  width: 200px;
  height: 100%;
  left: -200px;
  background: #fff;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
  z-index: 19;
  display: table;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
}

.mainmenu.active {
  left: 40px;
  box-shadow: 5px 0 18px rgba(0, 0, 0, 0.1);
}

.mainmenu ul {
  display: table-cell;
  vertical-align: middle;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mainmenu ul li a {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  display: block;
  padding-left: 45px;
  margin-bottom: 10px;
  transition: all 0.5s cubic-bezier(0.4, 0, 1, 1) 0s;
  box-shadow: 0 0 20px transparent;
}

.mainmenu ul li a:hover {
  text-decoration: none;
}

.mainmenu ul li:last-child a {
  margin-bottom: 0;
}

.mainmenu ul li.current a {
  color: #cecece;
}


/* ====================
  Intro Section
=======================*/

.intro-section {
  height: 100%;
  position: relative;
}

.intro-bg {
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
background-image: url("../images/banersillo.jpg");
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}

.intro-bg:after,
#video-bg:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
  opacity: 0.5;
}

#bg_triangle{
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.intro-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  display: table;
}

.intro-inner .intro-content {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.intro-inner .intro-content h2 {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 80px;
  font-weight: bold;
}

.intro-inner .intro-content h3 {
  color: #fff;
  font-weight: 300;
  font-size: 18px;
}

.typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.social {
  margin-top: 10px;
}

.social a {
  color: #fff;
  display: inline-block;
  font-size: 15px;
  width: 35px;
  height: 35px;
  padding-top: 6px;
  border-radius: 20px;
  margin: 0 2px;
}

.sd {
  position: absolute;
  right: 26px;
  bottom: 80px;
  z-index: 4;
  color: #fff;
  transform: rotate(-90deg);
  transform-origin: right;
  font-size: 12px;
  font-weight: 300;
  line-height: 25px;
}

.sd:after {
  position: absolute;
  content: "";
  width: 100px;
  height: 1px;
  background: #fff;
  right: -110px;
  bottom: 12px;
}

.sd:hover,
.sd:focus {
  color: #fff !important;
}


/* ====================
  About Section
=======================*/

.about-text h2 {
  margin-bottom: 30px;
}

.skills {
  margin-top: 50px;
}

.single-progress-item {
  margin-bottom: 35px;
  position: relative;
}

.single-progress-item p {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.3em;
  margin-bottom: 0px;
  color: #333;
}

.progress-bar-style {
  display: block;
  height: 4px;
  position: relative;
  width: 100%;
  border-radius: 25px;
}

.bar-inner {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
  border-radius: 25px;
}

.bar-inner span {
  position: absolute;
  right: 0;
  font-weight: bold;
  top: -15px;
  font-size: 10px;
  letter-spacing: 0.1em;
}


/* ====================
  Feature Section
=======================*/

.feature-section {
  background: #f6f6f6;
}

.feature {
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
}

.feature h4 {
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.feature p {
  font-size: 15px;
  line-height: 21px;
}

.feature .icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 20px;
  display: table;
  text-align: center;
  background: #333;
  border-radius: 50%;
  font-size: 18px;
  position: relative;
}

.feature .icon i {
  display: table-cell;
  vertical-align: middle;
  color: #fff;
}

.feature .icon:after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  background: #333;
  right: 5px;
  bottom: 4px;
}


/* ====================
  Resumes Section
=======================*/

.fix-down {
  margin-bottom: -30px;
}

.resumes {
  list-style: none;
}

.resumes li {
  margin-bottom: 30px;
  padding: 20px;
  box-shadow: 0 0 25px rgba(68, 68, 68, 0.07);
  overflow: hidden;
  position: relative;
}

.resumes li:after {
  position: absolute;
  font-family: "FontAwesome" !important;
  font-size: 70px;
  right: 15px;
  bottom: 0;
  color: rgba(241, 241, 241, 0.74);
  z-index: 0;
  transform: scale(1);
  transition: all 0.4s;
}

.resumes li.edu:after {
  content: "\f19d";
}

.resumes li.expr:after {
  content: "\f0b1";
}

.resumes li:hover:after {
  transform: scale(2);
  opacity: 0.3;
}

.resumes li h3 {
  font-size: 16px;
  margin-bottom: 12px;
}

.resumes li h5 {
  margin-bottom: 8px;
}

.resumes li p {
  margin-bottom: 0;
  font-size: 15px;
  position: relative;
  z-index: 1;
}


/* ====================
  Portfolio Section
=======================*/

.portfolio-section {
  background: #f6f6f6;
}

.portfolio-section {
  position: relative;
}

.work-item {
  position: relative;
  overflow: hidden;
}

.work-item a {
  display: table;
  position: absolute;
  width: 50px;
  height: 50px;
  left: 50%;
  top: 50%;
  color: #333;
  margin-left: -25px;
  margin-top: -25px;
  background: #fff;
  text-align: center;
  border-radius: 50px;
  font-size: 16px;
  z-index: 9;
  transition: all 0.2s;
  transform: scale(0);
  opacity: 0.5;
  border: 1px solid;
  border-color: transparent;
}

.work-item a:hover {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.work-item a i {
  display: table-cell;
  vertical-align: middle;
}

.work-item:hover a {
  opacity: 1;
  transform: scale(1);
}

.work-item:hover .overlay:after {
  left: 0;
  width: 100%;
  transition: width 0.4s cubic-bezier(0.79, 0, 0.26, 0.96) 0s;
  -webkit-transition: width 0.4s cubic-bezier(0.79, 0, 0.26, 0.96) 0s;
}

.work-item .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 5;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}

.work-item .overlay:after {
  position: absolute;
  content: "";
  left: 100%;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #000;
  opacity: 0.8;
  transition: inherit;
  -webkit-transition: inherit;
}

.work-item .overlay .work-meta {
  position: absolute;
  z-index: 6;
  bottom: 30px;
  left: 30px;
}

.work-item .overlay .work-meta h2 {
  color: #fff;
  font-size: 17px;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
  font-weight: 400;
  position: relative;
  bottom: -90px;
  opacity: 0;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition-delay: 0.1s;
  -webkit-transition-delay: 0.1s;
}

.work-item .overlay .work-meta h3 {
  color: #333;
  background: #fff;
  font-size: 10px;
  font-weight: 500;
  font-family: Poppins;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-block;
  padding: 3px 14px;
  line-height: normal;
  border-radius: 20px;
  position: relative;
  opacity: 0;
  bottom: -100px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.work-item:hover .work-meta h2 {
  opacity: 1;
  bottom: 0;
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
}

.work-item:hover .work-meta h3 {
  opacity: 1;
  bottom: 0;
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
}


/* ====================
  Review Section
=======================*/

.review-section {
  background-image: url("../img/review-bg.jpg");
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.review-section:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
  opacity: 0.8;
}

.review-item {
  padding-top: 60px;
  text-align: center;
}

.review-item:before {
  position: absolute;
  content: "\f10e";
  font-family: 'FontAwesome';
  top: 0px;
  width: 40px;
  height: 40px;
  text-align: center;
  border: 1px solid;
  border-radius: 30px;
  padding-top: 10px;
  left: 50%;
  margin-left: -20px;
  color: #dedede;
}

.review-item p {
  margin-bottom: 15px;
  color: #dedede;
}

.review-item h2 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #fff;
}

.review-item h3 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  color: #dedede;
}

.owl-dots {
  text-align: center;
  display: block;
  padding-top: 15px;
}

.owl-dots .owl-dot {
  width: 17px;
  height: 6px;
  background: #f9f9f9;
  display: inline-block;
  margin: 0 3px;
  border-radius: 10px;
  transition: all 0.4s;
}

.owl-dots .owl-dot.active {
  width: 6px;
}


/* ====================
  Contact Section
=======================*/

.contact-section {
  background: #f6f6f6;
}

.cont-info {
  text-align: center;
}

.cont-info .icon {
  width: 80px;
  height: 80px;
  display: table;
  background: #fff;
  font-size: 21px;
  box-shadow: 0 0 17px rgba(115, 115, 115, 0.15);
  border-radius: 50%;
  margin: 0 auto 20px;
}

.cont-info .icon i {
  display: table-cell;
  vertical-align: middle;
}

#contact-form input {
  width: 100%;
  height: 50px;
  margin-bottom: 30px;
  padding: 10px;
  border: none;
  box-shadow: 0 0 12px rgba(101, 101, 101, 0.11);
  border-radius: 5px;
  background: #fff;
}

#contact-form input:hover,
#contact-form input:focus {
  outline: none;
}

#contact-form textarea {
  width: 100%;
  min-height: 140px;
  margin-bottom: 30px;
  padding: 10px;
  border: none;
  box-shadow: 0 0 12px rgba(101, 101, 101, 0.11);
  border-radius: 5px;
  background: #fff;
}

#contact-form textarea:hover,
#contact-form textarea:focus {
  outline: none;
}

#contact-form #send-form.done {
  background: #0fa049;
  border-color: #0fa049;
  color: #fff;
}

#contact-form #send-form.error {
  background: #e20808;
  border-color: #e20808;
  color: #fff;
}


/* ====================
  Responsive Section
=======================*/


/* Tablet desktop :768px. */

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .profile-pic {
    margin-bottom: 20px;
  }
  .container {
    width: 710px;
  }
}


/* Large Mobile :480px. */

@media only screen and (max-width: 767px) {
  .cont-info {
    margin-bottom: 30px;
  }
  .cont-info:last-child {
    margin-bottom: 0;
  }
  .intro-inner .intro-content h2 {
    font-size: 45px;
  }
  .sd {
    display: none;
  }
  .profile-pic img{
    margin-bottom: 20px;
  }
}


/* small mobile :320px. */

@media only screen and (max-width: 479px) {
  .intro-inner .intro-content h2 {
    font-size: 35px;
  }
}
