/* Third section use background image */
/* Table des matières
1.General 
2.Layout
 2.1 Animations
 2.2 Buttons
 2.3 Thumbnail
 2.4 Social icons 
3 Sections 
 3.1 Portfolio
 3.2 About
 3.3 Contact
 3.4 Footer
4 Responsive 
**********************************************************************/
/*
1. General
**********************************************************************/
body {
  font-family: 'Roboto', sans-serif;
  color: #FFF;
  line-height: 1.2em;
  font-size: 17px;
  line-height: 20px;
}
a {
  color: #1d1d1d;
  text-decoration: none;
}
a:hover {
  color: #bd1c22;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}
h1 {
  margin: 10px;
}
p {
  padding: 10px;
  font-weight: 100;
  color: #fff;
  line-height: 24px;
}
li {
  line-height: 24px;
}
.navbar {
  padding-top: 5px;
  background: #1d1d1d;
  margin-bottom: 0;
  min-height: 70px;
}
.navbar-fixed-top {
  min-height: 60px;
  height: 60px;
  padding-top: 0;
}
.navbar-inner {
  background: #1d1d1d;
  border-radius: 0;
  filter: none;
  border: none;
  box-shadow: none;
}
.navbar .brand img {
  height: 40px;
}
.navbar .nav > li > a {
  text-transform: uppercase;
  line-height: auto;
  vertical-align: middle;
  margin: 10px 3px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  border: 1px solid #1d1d1d;
  box-shadow: none;
  font-size: 15px;
  text-shadow: none;
  color: #ADB0B4;
  transition: border-color 1s ease;
  border-radius: 10px;
}
.navbar .nav > li:hover > a,
.navbar .nav > .active > a,
.navbar .nav > .active > a:hover,
.navbar .nav > .active > a:focus {
  border: 1px solid #bd1c22;
  color: #fff;
  background-color: #1d1d1d;
  transition: border-color 1s ease;
  border-radius: 10px;
}
.nav-pills {
  margin-bottom: 30px;
}
.nav-pills > li > a {
  background: transparent;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  margin-right: 5px;
  padding-left: 25px;
  padding-right: 25px;
  border: 1px solid #1d1d1d;
  border-radius: 10px;
}
.nav-pills > li > a:hover,
.nav-pills > .active > a,
.nav-pills > .active > a:hover,
.nav-pills > .active > a:focus {
  background: #1d1d1d;
  color: #fff;
}
.navbar .btn-navbar:hover,
.navbar .btn-navbar {
  border-radius: 10px;
  background: #bd1c22;
  color: #000;
}
/******
2. Layout
**********************************************************************/
.centered {
  margin-left: auto;
  margin-right: auto;
  float: none;
  text-align: center;
}
/* Use this class if you want ceter element with span* class */
.center {
  float: none !important;
  margin: 0 auto !important;
  text-align: center;
}
.highlighted-box {
  background: #F4F8F9;
  padding: 20px 30px;
}
.highlighted-box h1 {
  margin: 0px;
}
.large-text {
  line-height: 1.2em;
  font-size: 30px;
  color: #1d1d1d;
  padding: 20px;
  margin-bottom: 20px;
}
.highlighted-box h1,
.highlighted-box p {
  color: #1d1d1d !important;
}
.circle-border {
  display: inline-block;
  -webkit-border-radius: 500px;
  -moz-border-radius: 500px;
  border-radius: 500px;
  -khtml-border-radius: 500px;
  border: 3px solid #fff;
}
.left-align {
  text-align: left;
}
.right-align {
  text-align: left;
}
.error {
  color: #cf0000;
  display: none;
}
.invisible {
  display: none;
  visibility: visible;
}
.triangle {
  margin: 0 auto;
  text-align: center;
  width: 0;
  height: 0;
  border-top: 30px solid #1d1d1d;
  border-left: 585px outset transparent;
  border-right: 585px outset transparent;
  position: relative;
}
/*
2.1 Animations
**********/
.zoom-in {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  -ms-transition: all 250ms ease;
  transition: all 250ms ease;
}
.zoom-in:hover {
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
}
/*
2.2 Buttons - There are buttons on a transparent background, primary and secondary color background.
**********/
.button,
.button:visited,
.button:focus {
  display: inline-block;
  border: 1px solid #1d1d1d;
  color: #1d1d1d;
  background-color: transparent;
  padding: 15px 30px;
  font-size: 17px;
  line-height: auto;
  border-radius: 10px;
}
.button:hover,
.button:active {
  background-color: #1d1d1d;
  color: #fff;
  border-radius: 10px;
}
.button-sp,
.button-sp:visited,
.button-sp:focus {
  border: none;
  background-color: #bd1c22;
  color: #1d1d1d;
}
.button-sp:hover,
.button-sp:active {
  background-color: #1d1d1d;
  color: #bd1c22;
}
.button-ps,
.button-ps:visited,
.button-ps:focus {
  border: none;
  background-color: #1d1d1d;
  color: #bd1c22;
}
.button-ps:hover,
.button-ps:active {
  background-color: #bd1c22;
  color: #1d1d1d;
}
/*
2.3 Thumbnails - Predefined bootstrap's thumbnail class.
**********/
.thumbnail {
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  position: relative;
  border: 0;
  border-radius: 10px;
  box-shadow: none;
  text-align: center;
  background: #1d1d1d;
  box-shadow: 6px 6px 6px black;
}
.thumbnail .more {
  display: block;
  z-index: 4;
  position: absolute;
  top: -100px;
  left: 50%;
  margin: 0 auto;
  margin-left: -41px;
  width: 80px;
  height: 80px;
  font-size: 40px;
  color: #fff;
  text-decoration: none;
  line-height: 70px;
  text-align: center;
}
.thumbnail:hover .more {
  top: 40%;
  margin-top: -40px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3 s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.thumbnail h3,
.thumbnail p {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 4;
}
.thumbnail h3 {
  color: #bd1c22;
  margin-top: 10px;
  font-size: 20px;
}
.thumbnail > p {
  padding-bottom: 20px;
}
.thumbnail .mask {
  opacity: 0.85;
  filter: alpha(opacity=85);
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1d1d1d;
  position: absolute;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2 s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.thumbnail:hover .mask {
  top: 0;
}
/*
2.4 Social icons
************/
.social {
  list-style: none;
  float: none;
  position: relative;
  margin: 5px;
  margin: auto;
}
.social li {
  display: inline-block;
  line-height: 32px;
  font-family: 'Porta';
  font-size: 32px;
  padding: 0 5px;
}
.social li a {
  margin: 0;
  padding: 0;
  width: 32px;
  height: 32px;
  color: #bd1c22;
}
.social li a:hover {
  color: #1d1d1d;
}
/*
3. Sections 
***************************************************************************/
.section {
  padding-bottom: 50px;
}
.section .container {
  padding-top: 50px;
}
.section .title {
  text-align: center;
  padding: 10px;
  margin-bottom: 30px;
}
.section .title h1 {
  font-weight: normal;
  margin-bottom: 20px;
  padding: 0;
}
.section .title > p {
  font-size: 20px;
  color: #FFF;
  font-weight: lighter;
}
.primary-section {
  background: #1d1d1d;
}
.primary-section .triangle {
  border-top: 40px solid #bd1c22;
}
.primary-section .title {
  border-bottom: 1px solid #FFF;
}
.primary-section,
.primary-section .title p,
.primary-section h3 {
  color: #bd1c22;
}
.primary-section h1 {
  color: #FFF;
}
.secondary-section {
  background: #bd1c22;
}
.secondary-section .title {
  border-bottom: 1px solid #1d1d1d;
}
.secondary-section h1,
.secondary-section .title p {
  color: #1d1d1d;
}
/* Third section use background image */
.third-section {
  padding-bottom: 70px;
  background: #1d1d1d url(../images/brand-bg.png) no-repeat center;
  border-top: 6px solid #bd1c22;
}
.third-section .container {
  padding-top: 20px;
  position: relative;
}
.third-section .title {
  border-bottom: 1px solid #A1AAB7;
  color: #bd1c22;
}
.sub-section {
  margin-top: 30px;
}
.sub-section .title {
  padding: 0;
}
/*
3.1 Portfolio
***************************************/
.single-project {
  margin-bottom: 30px;
  background: #1d1d1d;
  box-shadow: 6px 6px 6px black;
  border-radius: 10px;
}
.single-project img {
  width: 100%;
  border-radius: 10px 0px 0px 10px;
}
.project-description {
  padding-right: 20px;
}
.project-description p {
  padding-left: 0;
}
.project-description br {
  margin-top: 10px;
}
.project-title {
  margin-top: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #bd1c22;
}
.project-title h3 {
  float: left;
  margin-top: 0;
  padding: 0;
  width: 80%;
}
.project-title .close {
  color: #bd1c22;
  margin-top: 10px;
}
.project-info span,
.project-title h3 {
  color: #bd1c22;
}
.project-info {
  font-weight: 100;
  padding: 10px 0;
}
.project-info span {
  width: 150px;
  display: inline-block;
}
.project-info div {
  margin-bottom: 5px;
}
.project-info a {
  color: #fff;
  margin-bottom: 10px;
  border-bottom: 1px solid #fff;
}
.project-info a:hover {
  color: #bd1c22;
  border-bottom: none;
}
.close {
  float: right;
  width: 40px;
  height: 40px;
  text-align: center;
}
#portfolio-grid .mix {
  opacity: 0;
  display: none;
}
/*
3.2 About
******************************************************************/
.team .thumbnail {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  padding: 10px;
  border: 1px solid #fff;
}
.team .thumbnail:hover .social {
  z-index: 5;
}
.team .thumbnail:hover .social a {
  color: #fff;
}
#about .thumbnail .mask {
  opacity: 0.95;
}
.team .thumbnail .mask {
  background: #bd1c22;
}
.team .thumbnail .mask h2 {
  margin-top: 20%;
}
.team .thumbnail .mask,
.team .thumbnail .mask h3,
.team .thumbnail .mask p,
.team .thumbnail:hover h3,
.team .thumbnail:hover .social a:hover {
  color: #000;
}
.about-text {
  margin-top: 30px;
}
.about-text p {
  padding: 0;
  font-size: 16px;
}
#listePassion {
  color: white;
}
#Shanoa {
  border-radius: 10px;
}
/*********************************************************************
                        SKILLS BAR
*********************************************************************/
.skills {
  list-style-type: none;
  position: relative;
  margin: 0px;
}
.skills li {
  margin-bottom: 30px;
  background: #FFF;
  height: 40px;
  padding: 1px;
  box-shadow: 6px 6px 6px black;
  border-radius: 50px;
}
.skills li h3 {
  position: relative;
  font-size: 18px;
  font-weight: bold;
  padding: 0;
  margin: 0;
  left: 10px;
  z-index: 1;
  color: #1d1d1d;
}
.skills li .bar {
  height: 40px;
  position: absolute;
  border-radius: 50px;
  background-color: #bd1c22;
}
.skills li span {
  opacity: 0;
}
/*
3.3 Contact
********************************************************************/
.contact {
  background: #bd1c22;
  border-radius: 10px;
}
.contact h1,
.contact h2,
.contact h3,
.contact h4,
.contact h5,
.contact h6,
.contact .section .title > p,
.contact .social > li > a {
  color: #1d1d1d;
}
.contact textarea,
.contact input[type="text"],
.contact input[type="email"] {
  padding: 10px;
  line-height: 20px;
  height: auto;
  border-radius: 10px;
}
.contact textarea {
  height: 120px;
}
.contacts,
.contact .social {
  color: #fff;
  list-style: none;
  margin-left: 10px;
}
.contacts > li {
  margin-top: 15px;
}
.contacts > li > a {
  color: #fff;
}
.contact-info {
  margin-top: 10px;
  margin-bottom: 10px;
}
.contact-info p {
  font-weight: normal;
}
.contact-info .icon {
  margin: 10px auto;
  font-size: 30px;
}
.map-wrapper {
  position: relative;
  height: 500px;
}
.map-canvas {
  position: absolute;
  margin-bottom: 20px;
  width: 100%;
  height: 500px;
  color: #29383F;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
}
.contact .social {
  display: inline-block;
  margin-left: 0;
}
.contact .social li {
  line-height: 32px;
  padding: 10px 10px;
  font-family: 'Porta';
  font-size: 50px;
  transition: margin 0.4s;
  -webkit-transition: margin 0.4s;
}
.contact .social li a {
  color: #fff;
}
.contact .social li a:hover {
  color: #1d1d1d;
}
.contact-form {
  background: #fff;
  background: rgba(255, 255, 255, 0.9);
  z-index: 110;
  position: relative;
  margin-top: -25px;
  padding: 20px;
  border-radius: 10px;
}
.contact-form h3 {
  color: #838589;
  padding-bottom: 20px;
}
.message-btn {
  border: 1px solid #747C89;
  color: #747C89;
  background-color: transparent;
  padding: 15px 30px;
  font-size: 17px;
  border-radius: 10px;
}
.message-btn:hover {
  background-color: #eee;
}
.contact-info {
  text-align: center;
  font-size: 22px;
}
.info-mail {
  border: 1px solid white;
  width: 60%;
  margin: 0 auto;
  padding: 15px;
  color: #1d1d1d;
}
.black {
  color: #1d1d1d;
}
/*
3.4 Footer
********************************************************************/
.scrollup {
  text-align: center;
  cursor: pointer;
  vertical-align: middle;
  width: 39px;
  height: 39px;
  border-radius: 50px;
  font-size: 20px;
  position: fixed;
  bottom: 30px;
  right: 20px;
  border: 1px solid #fff;
  display: none;
  background: #bd1c22;
  box-shadow: 6px 6px 6px black;
}
.scrollup > a {
  position: relative;
  top: 7px;
  color: #fff;
}
/*
4 Responsible
********************************************************************/
@media (min-width: 1200px) {
  .thumbnail .more {
    margin-left: -41px;
    width: 80px;
    height: 80px;
    border-radius: 40px;
    line-height: 80px;
  }
  .single-project img {
    border-radius: 10px 0px 0px 10px;
  }
}
@media (max-width: 979px) {
  body {
    padding-left: 0;
    padding-right: 0;
  }
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    position: fixed;
  }
  .navbar .nav > li > a {
    line-height: 20px;
    vertical-align: middle;
  }
  .section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .navbar-fixed-top,
  .navbar-fixed-bottom,
  .navbar-static-top {
    margin-left: 0px;
    margin-right: 0px;
  }
  .nav-collapse {
    clear: both;
  }
  .nav-collapse .nav {
    float: none;
    margin: 0 0 10px;
  }
  .nav-collapse .nav > li {
    float: none;
  }
  .nav-collapse,
  .nav-collapse.collapse {
    width: 100%;
    display: inherit;
  }
  .thumbnail .more {
    margin-left: -21px;
    width: 40px;
    height: 40px;
    border-radius: 30px;
    line-height: 40px;
  }
  .thumbnail:hover .more {
    margin-top: -20px;
  }
  .newsletter form {
    text-align: center;
  }
  .single-project img {
    border-radius: 10px 0px 0px 0px;
  }
}
@media (max-width: 767px) {
  .info-mail {
    width: 90%;
    padding: 15px 0px;
  }
  .project-description {
    padding-left: 20px;
  }
  .price-column,
  .testimonial {
    margin-top: 30px;
  }
  .single-project img {
    border-radius: 10px 10px 0px 0px;
  }
}

/* This beautiful CSS-File has been crafted with LESS (lesscss.org) and compiled by simpLESS (wearekiss.com/simpless) */
