/*-----------------------------------------------------------------------------------

 Theme Name: Kewll
 Theme URI: http://
 Description: The Multi-Purpose Onepage Portfolio Template
 Author: ui-themez
 Author URI: http://themeforest.net/user/ui-themez
 Version: 1.1

 main Font    : Montserrat

-----------------------------------------------------------------------------------*/
/* ----------------------------------------------------------------

 == Table Of Content

	01 Basic
	02 Theme-dark
	03 Buttons
	04 Navbar
	05 Header
	06 Hero
	07 Services
	08 Portfolio
	09 Blog
	10 Contact (Update 1.1)
	11 Footer
	12 Responsive
 

---------------------------------------------------------------- */
/* ----------------------------------------------------------------
     [ 01 Start Basic ]
-----------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none !important;
  list-style: none;
}

body {
  color: #00000a;
  line-height: 1.3;
  font-weight: 400;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden !important;
}

p {
  font-size: 14px;
  font-weight: 500;
  color: #9a9a9a;
  line-height: 1.6;
  word-spacing: 1px;
  margin: 0;
}

img {
  width: 100%;
  height: auto;
}

span, a, a:hover {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

.se-tring {
  position: relative;
  margin-top: 100px;
}
.se-tring span {
  position: absolute;
  width: 0;
  height: 0;
  top: 0;
}
.se-tring .left {
  border-bottom: 100px solid #fff;
  border-right: 30vw solid transparent;
  left: 0;
}
.se-tring .right {
  border-bottom: 100px solid #fff;
  border-left: 70vw solid transparent;
  right: 0;
}

.se-tring-gray .left, .se-tring-gray .right {
  border-bottom: 100px solid #f7f7f7;
}

.se-tring-rev .left {
  border-right: 70vw solid transparent;
}
.se-tring-rev .right {
  border-left: 30vw solid transparent;
}

.hide {
  display: none;
}

.section-padding {
  padding: 100px 0;
}

.section-head {
  margin-bottom: 80px;
}
.section-head h6 {
  font-size: 11px;
  font-weight: 600;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 2px;
  word-spacing: 1px;
  display: inline-block;
  padding: 0 15px;
  position: relative;
}
.section-head h6:before, .section-head h6:after {
  content: '';
  width: 50px;
  height: 2px;
  background-color: #000;
  position: absolute;
  bottom: 3px;
}
.section-head h6:before {
  left: -50px;
}
.section-head h6:after {
  right: -50px;
}
.section-head h4 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 4px;
  line-height: .7;
  position: relative;
  margin-bottom: 15px;
}

.bg-gray {
  background: #f7f7f7;
}

.o-hidden {
  overflow: hidden;
}

.position-re {
  position: relative;
}

.full-width {
  width: 100% !important;
}

.bg-img {
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-fixed {
  background-attachment: fixed;
}

.valign {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.v-middle {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 15px;
  line-height: .7;
}

.owl-theme .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 0 7px;
  border-radius: 50%;
  background: #ccc;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #000;
}

.cd-headline {
  font-size: 3rem;
  line-height: 1.2;
}

@media only screen and (min-width: 768px) {
  .cd-headline {
    font-size: 4.4rem;
    font-weight: 300;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-headline {
    font-size: 6rem;
  }
}
.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}

.cd-words-wrapper b {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
}

.cd-words-wrapper b.is-visible {
  position: relative;
}

.no-js .cd-words-wrapper b {
  opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

/* -------------------------------- 
	xclip 
-------------------------------- */
.cd-headline.clip span {
  display: inline-block;
  padding: .2em 0;
}

.cd-headline.clip .cd-words-wrapper {
  overflow: hidden;
  vertical-align: top;
}

.cd-headline.clip .cd-words-wrapper::after {
  /* line */
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background-color: #aebcb9;
}

.cd-headline.clip b {
  opacity: 0;
}

.cd-headline.clip b.is-visible {
  opacity: 1;
}

/* -------------------------------- 
	bounce animation 
-------------------------------- */
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
.bounce {
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

/* ----------------------------------------------------------------
     [ End Basic ]
-----------------------------------------------------------------*/

/* IE Custom Style */

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .header .svg{
      bottom: -40px !important;
    }

    .header .container{
      position: absolute;
      max-width: 100%;
      top: 50%;
      left: 0;
      -webkit-transform: translate(0%, -50%);
      -moz-transform: translate(0%, -50%);
      -ms-transform: translate(0%, -50%);
      -o-transform: translate(0%, -50%);
      transform: translate(0%, -50%);
    }
}


/* ----------------------------------------------------------------
     [ 02 Start Theme-dark ]
-----------------------------------------------------------------*/
body.theme-dark {
  color: #fff;
  background: #0C0C0C;
}
body.theme-dark .bg-gray {
  background: #111;
}
body.theme-dark .se-tring .left, body.theme-dark .se-tring .right {
  border-bottom: 100px solid #0C0C0C;
}
body.theme-dark .se-tring-gray .left, body.theme-dark .se-tring-gray .right {
  border-bottom: 100px solid #111;
}
body.theme-dark .section-head h6:before, body.theme-dark .section-head h6:after {
  background-color: #eee;
}
body.theme-dark .nav-scroll {
  background: #222;
}
body.theme-dark .nav-scroll .icon-bar {
  color: #fff;
}
body.theme-dark .nav-scroll .navbar-nav .nav-link {
  color: #fff;
}
body.theme-dark .nav-scroll .navbar-nav .nav-link:after {
  background: #fff;
}
body.theme-dark .nav-scroll .logo {
  padding: 15px 0;
  color: #fff;
}
body.theme-dark .nav-scroll .logo:hover {
  color: #fff;
}
body.theme-dark .header .svg svg {
  fill: #0C0C0C;
}
body.theme-dark .hero .author-img:after {
  border-color: #151515;
}
body.theme-dark .hero .skills .skills-progress {
  background: #444;
}
body.theme-dark .hero .skills .skills-progress span {
  background: #fff;
}
body.theme-dark .portfolio .filtering .active {
  background: #222;
}
body.theme-dark .portfolio .item-img-overlay {
  background: #0C0C0C;
  color: #eee;
}
body.theme-dark .blog .more {
  color: #eee;
}
body.theme-dark .blog .more:hover {
  color: #fff;
}
body.theme-dark .contact input, body.theme-dark .contact textarea {
  background: #151515;
  color: #fff;
}
body.theme-dark .contact .info span {
  color: #666;
}

/* ----------------------------------------------------------------
     [ End Theme-dark ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 03 Start Buttons ]
-----------------------------------------------------------------*/
.butn {
  padding: 10px 30px;
  border: 1px solid #eee;
  color:whitesmoke;
  background: black;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  position: relative;
  margin: 30px 2px 0;

}

 .butn:after {
  content: '';
  width: 0;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 100%;
  color: black;
  z-index: 1;
  background: #fff;

}
.butn:hover {
  border-color: #fff;
  color: silver;
}
.butn:hover:after {
  width: 100%;
  left: 0;
 
}
.butn:hover span {
  color: #1c1c1c;
}

.butn span {
  position: relative;
  z-index: 2;
}


.app {
  margin: 0.5rem 1rem;
  padding: 0.5rem;
  border: #1c1c1c 2px;
  background: papayawhip;
}

.Github {
  margin: 0.5rem 1rem;
  padding: 0.5rem;
  border: #1c1c1c 2px;
  background: peru;
}

/* ----------------------------------------------------------------
     [ End Buttons ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 04 Start Navbar ]
-----------------------------------------------------------------*/
.navbar {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: transparent;
  z-index: 9;
  min-height: 80px;
}
.navbar .icon-bar {
  color: #fff;
}
.navbar .navbar-nav .nav-link {
  font-size: 13px;
  font-weight: 600;
  color: #eee;
  letter-spacing: .5px;
  margin: 15px 5px;
  -webkit-transition: all .5s;
  transition: all .5s;
  position: relative;
}
.navbar .navbar-nav .nav-link:after {
  content: '';
  width: 80%;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 10%;
  bottom: -10px;
  opacity: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.navbar .navbar-nav .active:after {
  bottom: 0;
  opacity: 1;
}

.nav-scroll {
  background: #fff;
  border-bottom: 1px solid rgba(12, 12, 12, 0.04);
  padding: 0;
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}
.nav-scroll .icon-bar {
  color: #222;
}
.nav-scroll .navbar-nav .nav-link {
  color: #222;
}
.nav-scroll .navbar-nav .nav-link:after {
  background: #222;
}
.nav-scroll .logo {
  padding: 15px 0;
  color: #111;
}
.nav-scroll .logo:hover {
  color: #111;
}

.logo {
  padding: 15px 0;
  width: 100px;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
}
.logo:hover {
  color: #fff;
}

/* ----------------------------------------------------------------
     [ End Navbar ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 05 Start Header ]
-----------------------------------------------------------------*/
#particles-js {
  z-index: -1;
} 

.title {
  position: absolute !important;
  margin: 0 auto !important;
  height: 100%!important;
  top: 0!important;
  bottom: 100%;
  transform: translate(0, 30%);
}

.welcome-text {
  padding: 10px 20px;
  background: rgba(102, 102, 102, 0.445);
}

.header {
  min-height: 105vh;
  overflow: hidden;
  position: relative;
  background-color:  #162747;
  background-size: cover;
}
.header .caption .o-hidden {
  display: inline-block;
}
.header .caption h1 {
  font-size: 55px;
  font-weight: 800;
}
.header .arrow {
  position: absolute;
  bottom: 8vh;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 4;
}
.header .arrow img {
  width: 40px;
  cursor: pointer;
}
.header .svg {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  z-index: 3;
}
.header .svg svg {
  fill: #fff;
  width: 101%;
}

/* ----------------------------------------------------------------
     [ End Header ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 06 Start Hero ]
-----------------------------------------------------------------*/
.hero .author-img {
  position: relative;
}
.hero .author-img:after {
  content: '';
  width: 100%;
  height: 100%;
  border: 10px dashed #f7f7f7;
  position: absolute;
  top: 30px;
  right: -30px;
  z-index: -1;
}
.hero .author-img img {
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}
.hero .content {
  padding-left: 50px;
}
.hero .content h4 {
  margin-bottom: 10px;
}
.hero .content span {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
}
.hero .content p {
  margin-bottom: 10px;
}
.hero .content p:last-child {
  margin-bottom: 0;
}
.hero .skills .skill-item {
  margin-bottom: 30px;
}
.hero .skills .skill-item:last-child {
  margin-bottom: 0;
}
.hero .skills h6 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.hero .skills h6 span {
  margin-bottom: 0;
  float: right;
  font-size: 10px;
}
.hero .skills .skills-progress {
  height: 3px;
  width: 100%;
  background: #f7f7f7;
  border-radius: 10px;
  position: relative;
}
.hero .skills .skills-progress span {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #000;
  border-radius: 10px;
  -webkit-transition: all 1s;
  transition: all 1s;
}

/* ----------------------------------------------------------------
     [ End Hero ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 07 Start Services ]
-----------------------------------------------------------------*/
.services .item {
  text-align: center;
  padding: 30px 10px;
}
.services .item .icon {
  font-size: 40px;
  margin-bottom: 25px;
}
.services .item h6 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}
.services .item p {
  font-weight: 500;
}

#jquery {
  height: 200px;
}

/* ----------------------------------------------------------------
     [ End Services ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 08 Start Portfolio ]
-----------------------------------------------------------------*/
.portfolio {
  overflow: hidden;
}
.portfolio .filtering span {
  padding: 9px 25px;
  margin: 0 5px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  border: 1px dashed #555;
  cursor: pointer;
}
.portfolio .filtering .active {
  background: #1c1c1c;
  color: #fff;
  -webkit-box-shadow: 0px 10px 30px -4px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 10px 30px -4px rgba(0, 0, 0, 0.2);
}
.portfolio .items {
  margin-top: 30px;
}
.portfolio .item-img {
  position: relative;
  overflow: hidden;
}
.portfolio .item-img:hover .item-img-overlay {
  opacity: 1;
}
.portfolio .item-img:hover h6, .portfolio .item-img:hover p {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.portfolio .item-img h6 {
  font-weight: 600;
  position: relative;
  margin-bottom: 5px;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all .5s;
  transition: all .5s;
}
.portfolio .item-img p {
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all .5s;
  transition: all .5s;
}
.portfolio .item-img .item-img-overlay {
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  background: white;
  color: #35424C;
  opacity: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
  z-index: 2;
}
.portfolio .item-img a {
  font-size: 30px;
  position: absolute;
  bottom: 15px;
  right: 15px;
}

/* ----------------------------------------------------------------
     [ End Portfolio ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 9 Start Blog ]
-----------------------------------------------------------------*/
.blog .item .post-img {
  margin-bottom: 30px;
  overflow: hidden;
}
.blog .item .post-img:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.blog .item .post-img img {
  -webkit-transition: all .5s;
  transition: all .5s;
}
.blog .item span {
  font-size: 11px;
  font-weight: 500;
  color: #777;
  margin-right: 10px;
  margin-bottom: 15px;
}
.blog .item span:last-child {
  margin-right: 0;
}
.blog .item h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}
.blog .item .more {
  margin-top: 15px;
  font-size: 12px;
  font-weight: 700;
  color: #444;
  position: relative;
}
.blog .item .more:hover {
  color: #000;
}
.blog .item .more:hover i {
  right: -15px;
}
.blog .item .more i {
  position: absolute;
  right: -10px;
  top: 3px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/* ----------------------------------------------------------------
     [ End Blog ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 10 Start Contact ]
-----------------------------------------------------------------*/
.contact .form input, .contact .form textarea {
  width: 100%;
  padding: 10px;
  border: 0;
  background: #f7f7f7;
  border-radius: 5px;
}
.contact .form textarea {
  height: 160px;
  max-height: 160px;
  max-width: 100%;
}
.contact .form .info {
  float: left;
  margin-top: 10px;
}
.contact .form .info span {
  color: #444;
  font-size: 12px;
  font-weight: 500;
  margin-right: 30px;
}
.contact .form .info span:last-child {
  margin-right: 0;
}
.contact .form .butn {
  float: right;
  overflow: hidden;
  cursor: pointer;
  margin: 0;
}
.contact .form .butn:hover {
  border-color: #000;
}
.contact .form .form-group {
  position: relative;
}
.contact .form .help-block li {
  color: #ce7373;
  font-size: 11px;
  font-weight: 500;
  position: absolute;
  top: 10px;
  right: 10px;
}

.info p {
  display: none;
}

#thanks {
  color: royalblue;
}

/* ----------------------------------------------------------------
     [ End Contact ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ 11 Start Footer ]
-----------------------------------------------------------------*/
footer {
  background: #111;
  padding: 80px 0;
}
footer .social a {
  color: #777;
  font-size: 18px;
  margin: 15px 15px;
}
footer p {
  color: #999;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ----------------------------------------------------------------
     [ End Footer ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
 	 [ 12 Responsive ]
-----------------------------------------------------------------*/
@media screen and (max-width: 991px) {
  .mb-md50 {
    margin-bottom: 50px;
  }

  .mb-md30 {
    margin-bottom: 30px;
  }

  .mb-md0 {
    margin-bottom: 0;
  }

  .bg-fixed {
    background-attachment: scroll !important;
  }

  .navbar {
    padding-left: 15px;
  }
  .navbar .navbar-collapse {
    max-height: 340px;
    overflow: auto;
    background: #111;
    text-align: center;
    padding: 10px 0;
  }
  .navbar .nav-link {
    margin: 10px auto !important;
  }

  .nav-scroll .navbar-collapse .nav-link {
    color: #fff !important;
  }

  .header {
    background-attachment: scroll !important;
    background-position: 50% 0% !important;
  }
  .header .caption h4 {
    font-size: 30px;
  }
  .header .caption h1 {
    font-size: 45px;
    line-height: 1.4;
  }

  .hero .author-img {
    margin-bottom: 80px;
  }

  .hero .content {
    padding-left: 0;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .mb-sm50 {
    margin-bottom: 50px;
  }

  .mb-sm30 {
    margin-bottom: 30px;
  }

  .section-head h4 {
    font-size: 20px;
  }

  .header .caption h1 {
    font-size: 25px;
  }

  .portfolio .filtering span {
    margin-bottom: 10px;
  }

  .blog .item .content h5 {
    line-height: 1.4;
  }

  .contact .form {
    text-align: center;
  }
  .contact .form .info {
    text-align: center;
    display: block;
    width: 100%;
  }
  .contact .form .info span {
    display: block;
    margin-bottom: 15px;
    margin-right: 0;
  }
  .contact .form .butn {
    margin-bottom: 10px;
    float: none;
    text-align: center;
  }

  footer .social a {
    margin: 15px 5px;
    font-size: 16px;
  }
  footer p {
    line-height: 1.8;
  }
}

/*# sourceMappingURL=style.css.map */