@import url(http://fonts.googleapis.com/css?family=PT+Sans+Narrow|Oswald:400,300);
@import url(https://fonts.googleapis.com/css?family=Kaushan+Script);
.wrapperstyle4 {
  /*------------------------------------------*/
  /*	     01 - General & Basic Styles
   /*------------------------------------------*/
}
.wrapperstyle4 body {
  font-family: 'PT Sans Narrow', Arial, sans-serif;
  font-size: 16px;
  color: #111;
  line-height: 21px;
  /*	font-weight: 300;*/
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-rendering: optimizeLegibility !important;
  font-smoothing: antialiased !important;
  vertical-align: baseline;
}
.wrapperstyle4 strong, .wrapperstyle4 b {
  font-weight: 600;
}
.wrapperstyle4 ul, .wrapperstyle4 ol {
  list-style: none;
}
.wrapperstyle4 ul {
  padding: 0;
  margin: 0;
}
.wrapperstyle4 p {
  font-size: 16px;
  font-weight: 400;
  color: #444;
  line-height: 1.5em;
}
.wrapperstyle4 a {
  transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  -webkit-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
}
.wrapperstyle4 a:hover {
  color: #444;
}
.wrapperstyle4 a, .wrapperstyle4 a:hover, .wrapperstyle4 a:focus, .wrapperstyle4 a:active {
  outline: 0;
  text-decoration: none;
}
.wrapperstyle4 .white {
  color: #fff !important;
}
.wrapperstyle4 img {
  width: 100%;
}
.wrapperstyle4 h1, .wrapperstyle4 h2, .wrapperstyle4 h3, .wrapperstyle4 h4, .wrapperstyle4 h5, .wrapperstyle4 h6 {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
}
.wrapperstyle4 .btn-primary {
  background: #ff432e;
  border-color: #ff432e;
  font-size: 16px;
  padding: 8px 15px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.wrapperstyle4 .btn-primary:hover {
  background: transparent;
  border-color: #ff432e;
  color: #ff432e;
}
.wrapperstyle4 .btn-cancel {
  background: #222;
  border: 1px solid #222;
  color: #fff;
  padding: 8px 15px;
  font-size: 16px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.wrapperstyle4 .btn-cancel:hover {
  background: transparent;
  border-color: #222;
  color: #222;
  /* Start Section Title */
}
.wrapperstyle4 .section-title {
  margin-bottom: 80px;
}
.wrapperstyle4 .section-title h2 {
  color: #111;
  font-size: 48px;
  font-family: 'PT Sans Narrow', Arial, sans-serif;
  text-transform: none;
}
.wrapperstyle4 .section-title p {
  color: #111;
  letter-spacing: 1px;
  font-size: 18px;
  font-weight: 300;
  /* End Section Title */
}
.wrapperstyle4 .page-header {
  background: url(../images/banner.jpg) no-repeat;
  padding: 50px 0;
  margin-top: 80px;
}
.wrapperstyle4 .page-header h1 {
  color: #fff;
  /*------------------------------------------*/
  /*	     02 - Header & Navigation
   /*------------------------------------------*/
}
.wrapperstyle4 .top-bar {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
}
.wrapperstyle4 .top-bar a {
  color: #aaa;
}
.wrapperstyle4 .top-bar .contact-details li {
  display: inline-block;
  padding: 5px 15px;
  line-height: 32px;
  border-left: 1px solid #f2f2f2;
}
.wrapperstyle4 .top-bar .contact-details li:last-child {
  border-right: 1px solid #f2f2f2;
}
.wrapperstyle4 .top-bar .contact-details li a:before {
  color: #aaa;
}
.wrapperstyle4 .top-bar .contact-details li:first-child a:before {
  display: none;
}
.wrapperstyle4 .top-bar .contact-details li a {
  font-size: 14px;
  letter-spacing: 1px;
  display: block;
  line-height: 32px;
  /* Top Bar Social */
}
.wrapperstyle4 ul.social-list li {
  float: right;
  border-left: 1px solid #f2f2f2;
}
.wrapperstyle4 ul.social-list li a {
  display: inline-block;
  transition: background 0.3s;
  -webkit-transition: background 0.3s;
  -moz-transition: background 0.3s;
  -o-transition: background 0.3s;
}
.wrapperstyle4 ul.social-list li:first-child {
  border-right: 1px solid #f2f2f2;
}
.wrapperstyle4 ul.social-list li a:hover {
  background: #FF432E;
}
.wrapperstyle4 ul.social-list li a i {
  font-size: 14px;
  display: block;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.wrapperstyle4 ul.social-list li a:hover i {
  -webkit-animation: toRightFromLeft 0.3s forwards;
  -moz-animation: toRightFromLeft 0.3s forwards;
  animation: toRightFromLeft 0.3s forwards;
  color: #fff;
}
@-webkit-keyframes toRightFromLeft {
  49% {
    -webkit-transform: translate(40%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(-40%);
  }
  51% {
    opacity: 1;
  }
}
@-moz-keyframes toRightFromLeft {
  49% {
    -moz-transform: translate(40%);
  }
  50% {
    opacity: 0;
    -moz-transform: translate(-40%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes toRightFromLeft {
  /* ----------------------------------------------------------------*/
  /* Start Navigation Section */
  /* ----------------------------------------------------------------*/
  49% {
    transform: translate(40%);
  }
  50% {
    opacity: 0;
    transform: translate(-40%);
  }
  51% {
    opacity: 1;
  }
}
.wrapperstyle4 .navbar-logo .sulfur-logo-text {
  margin-top: 15px !important;
}
.wrapperstyle4 .navbar {
  margin-bottom: 0;
  background: #fff;
  border-bottom: 1px solid #f2f2f2 !important;
  border: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
}
.wrapperstyle4 .navbar-brand {
  position: relative;
  padding-top: 0;
  margin: 0 !important;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.wrapperstyle4 a.navbar-brand {
  font-family: "Kaushan Script", "Helvetica Neue", Helvetica, Arial, cursive;
  font-size: 40px;
  padding-top: 20px;
  color: #ff432e !important;
}
.wrapperstyle4 .navbar-default .navbar-nav {
  margin-right: 10px !important;
  position: relative;
  transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}
.wrapperstyle4 .navbar-default .navbar-nav > li {
  margin-left: 1px;
}
.wrapperstyle4 .navbar-default .navbar-nav > li:first-child {
  margin-left: 0;
}
.wrapperstyle4 .navbar-default .navbar-nav > li > a {
  color: #6b6b6b;
  display: block;
  font-size: 16px;
  line-height: 10px;
  font-weight: 500;
  padding: 25px 15px 30px;
  overflow: hidden;
  border-top: 2px solid transparent;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.wrapperstyle4 .navbar-default .navbar-nav > li > a i {
  padding-left: 10px;
}
.wrapperstyle4 .navbar-default .navbar-nav > li > a.active, .wrapperstyle4 .navbar-default .navbar-nav > li:hover > a {
  border-top: 2px solid #FF432E;
  color: #fff;
  background: #FF432E;
}
.wrapperstyle4 .navbar-default .navbar-nav > li > a i {
  margin: 0 -2px 0 -5px;
}
.wrapperstyle4 .navbar-default .navbar-nav .dropdown {
  position: absolute;
  left: 0;
  top: 97%;
  width: 180px;
  background-color: #fff;
  border-top: 3px solid #FF432E;
  visibility: hidden;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.wrapperstyle4 .navbar-default .navbar-nav > li.drop:hover .dropdown {
  visibility: visible;
  opacity: 1;
}
.wrapperstyle4 .dropdown li, .wrapperstyle4 .sup-dropdown li {
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}
.wrapperstyle4 .dropdown li:first-child, .wrapperstyle4 .sup-dropdown li:first-child {
  border-top: none;
}
.wrapperstyle4 .dropdown li a, .wrapperstyle4 .sup-dropdown li a {
  display: block;
  color: #6b6b6b;
  font-size: 14px;
  padding: 10px 12px;
  text-decoration: none;
  transition: padding 0.2s ease-in-out;
  -moz-transition: padding 0.2s ease-in-out;
  -webkit-transition: padding 0.2s ease-in-out;
  -o-transition: padding 0.2s ease-in-out;
}
.wrapperstyle4 .dropdown > li:hover > a, .wrapperstyle4 .sup-dropdown li:hover > a {
  background: #FF432E;
  color: #fff;
}
.wrapperstyle4 .dropdown li a.active, .wrapperstyle4 .sup-dropdown li a.active {
  background: #FF432E;
  color: #fff;
}
.wrapperstyle4 .dropdown li a i {
  margin: 0 0 0 -4px;
}
.wrapperstyle4 .navbar-default .navbar-nav .sup-dropdown {
  position: absolute;
  left: 100%;
  top: 0;
  width: 180px;
  background-color: #fff;
  margin-top: 10px;
  transition: margin-top 0.2s ease-in-out;
  -moz-transition: margin-top 0.2s ease-in-out;
  -webkit-transition: margin-top 0.2s ease-in-out;
  -o-transition: margin-top 0.2s ease-in-out;
  visibility: hidden;
  z-index: 3;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.wrapperstyle4 .navbar-default .navbar-nav li.drop .dropdown li:hover .sup-dropdown {
  visibility: visible;
  margin-top: 0;
  /*--------------------------------------------------*/
  /* Start Header Section                             */
  /*--------------------------------------------------*/
}
.wrapperstyle4 .banner {
  text-align: center;
  color: #fff;
  background: url(../images/banner.jpg) no-repeat;
  background-attachment: scroll;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.wrapperstyle4 .banner .overlay {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
}
.wrapperstyle4 .intro-text {
  position: relative;
  padding: 20% 0 15% 0;
}
.wrapperstyle4 .banner .intro-text h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: 5px;
  margin-bottom: 55px;
  -webkit-animation: bounceIn;
  -moz-animation: rubberBand;
  -o-animation: bounceIn;
  animation: bounceIn;
  -webkit-animation-duration: 2s;
  -moz-animation-duration: 2s;
  -o-animation-duration: 2s;
  animation-duration: 2s;
  font-family: 'Oswald', sans-serif;
}
.wrapperstyle4 .banner .intro-text h1 span {
  color: #ff432e;
}
.wrapperstyle4 .banner .intro-text p {
  color: #fff;
  font-size: 30px;
  font-weight: 300;
  line-height: 35px;
  letter-spacing: 3px;
  margin-bottom: 55px;
  -webkit-animation: bounceInLeft;
  -moz-animation: fadeInLeft;
  -o-animation: fadeInLeft;
  animation: bounceLeft;
  -webkit-animation-duration: 2s;
  -moz-animation-duration: 2s;
  -o-animation-duration: 2s;
  animation-duration: 2s;
}
.wrapperstyle4 .banner .intro-text .btn-primary {
  padding: 15px 25px;
  font-size: 16px;
  border-color: #fff;
  color: #fff;
  border-radius: 0;
  width: 130px;
}
.wrapperstyle4 .banner .btn-primary:hover {
  background: #fff;
  border-color: #fff;
  color: #111;
  /*---------------------------------------------------------*/
  /* Start About Us Section                                  */
  /*---------------------------------------------------------*/
}
.wrapperstyle4 #about-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background-size: cover;
  background-position: center;
}
.wrapperstyle4 #about-section-2 {
  background: #f9f9f9;
  padding-top: 80px;
  padding-bottom: 80px;
}
.wrapperstyle4 iframe {
  border: none;
}
.wrapperstyle4 .about-img {
  position: relative;
}
.wrapperstyle4 .about-img .head-text {
  position: absolute;
  left: 0;
  bottom: 5%;
  background: #fff;
  padding: 10px;
  margin-left: 20px;
  margin-right: 20px;
}
.wrapperstyle4 .about-list h4 {
  margin-top: 30px;
  margin-bottom: 10px;
}
.wrapperstyle4 .about-list li {
  margin-bottom: 5px;
  color: #444;
}
.wrapperstyle4 .about-list li i {
  margin-right: 10px;
  /** Toggles & Accordion **/
}
.wrapperstyle4 .panel-group .panel {
  border-radius: 0;
}
.wrapperstyle4 .panel {
  border-radius: 0;
  border: none !important;
  box-shadow: none !important;
}
.wrapperstyle4 .panel-default > .panel-heading {
  background: transparent;
  border: 1px solid #111;
  border-radius: none;
  font-weight: 400;
}
.wrapperstyle4 .panel-body {
  padding: 15px 10px;
  border: none !important;
  color: #111;
  font-size: 16px;
  background-color: transparent !important;
}
.wrapperstyle4 .panel-heading {
  padding: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.wrapperstyle4 .panel-title {
  font-size: 14px;
  font-weight: 400;
  padding: 10px;
  color: #666;
}
.wrapperstyle4 .panel-title a {
  position: relative;
  display: block;
  padding: 6px 12px;
  background-color: #fff;
  box-shadow: none;
  -o-box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.wrapperstyle4 .panel-title a.collapsed {
  color: #444;
}
.wrapperstyle4 .panel-title a.collapsed:hover {
  color: #666;
}
.wrapperstyle4 .panel-title a .control-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -11px;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  display: none;
}
.wrapperstyle4 .panel-title a.collapsed .control-icon {
  display: block;
}
.wrapperstyle4 .panel-title a i {
  font-size: 22px;
  padding-right: 5px;
  color: #5BB12F;
  /* progress bar */
}
.wrapperstyle4 .skill-shortcode {
  margin-top: 40px;
}
.wrapperstyle4 .skill {
  padding-bottom: 10px;
}
.wrapperstyle4 .skill p {
  margin-bottom: 7px;
  font-size: 13px;
}
.wrapperstyle4 .progress {
  overflow: visible;
  height: 5px;
  margin-bottom: 10px;
  background: #f9f9f9;
  border-radius: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.wrapperstyle4 .progress-bar {
  background: #5BB12F;
  float: left;
  height: 100%;
  font-size: 12px;
  color: #ffffff;
  text-align: center;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
  position: relative;
}
.wrapperstyle4 .progress-bar-span {
  opacity: 1;
  position: absolute;
  top: -7px;
  background: #ACB2B8;
  padding: 0px 10px;
  color: #FFF;
  border-radius: 0px;
  right: 0px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.wrapperstyle4 .skill:hover .progress-bar-span {
  opacity: 1;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  /**** Start Modal Section ****/
}
.wrapperstyle4 .section-modal .modal-content {
  padding: 100px 0 !important;
  min-height: 100%;
  border: 0 !important;
  border-radius: 0;
  background-clip: border-box;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
  color: #888;
  font-weight: 300;
}
.wrapperstyle4 .section-modal .close-modal {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 75px;
  height: 75px;
  background-color: transparent;
  cursor: pointer;
}
.wrapperstyle4 .section-modal .close-modal:hover {
  opacity: 0.3;
}
.wrapperstyle4 .section-modal .close-modal .lr {
  z-index: 1051;
  width: 1px;
  height: 75px;
  margin-left: 35px;
  background-color: #222;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.wrapperstyle4 .section-modal .close-modal .lr .rl {
  z-index: 1052;
  width: 1px;
  height: 75px;
  background-color: #222;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  /*---------------------------------------------------------------*/
  /* Start Call To Action
   /*---------------------------------------------------------------*/
}
.wrapperstyle4 .call-to-action {
  background: url(../images/parallax/call-to.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: 50% 90%;
  color: #fff;
  text-align: center;
  padding: 100px 0;
}
.wrapperstyle4 .call-to-action p {
  color: #fff;
  font-weight: 300;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 3px;
}
.wrapperstyle4 .call-to-action .btn-primary {
  padding: 20px;
  font-size: 16px;
}
.wrapperstyle4 .call-to-action .btn-primary:hover {
  background: transparent;
  /* ----------------------------------*/
  /* Start Team Member Section         */
  /* ----------------------------------*/
}
.wrapperstyle4 #team-section {
  padding-top: 80px;
  padding-bottom: 120px;
  background: #fff;
  color: #111;
  overflow: hidden;
}
.wrapperstyle4 .team-member {
  position: relative;
  overflow: hidden;
}
.wrapperstyle4 .team-member .team-details {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 67, 46, 0.8);
  color: #fff;
  padding: 0 2px;
  opacity: 0;
  text-align: center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.wrapperstyle4 .team-member .team-details h4 {
  padding-top: 15%;
  padding-bottom: 5%;
  font-size: 22px;
  font-family: 'Oswald', sans-serif;
}
.wrapperstyle4 .team-member .team-details p {
  padding-bottom: 20%;
  font-size: 16px;
  color: #fff;
}
.wrapperstyle4 .team-member .team-details li {
  display: inline-block;
  padding-top: 20px;
}
.wrapperstyle4 .team-member .team-details li a {
  padding: 8px 12px;
  background: #fff;
  border: 1px solid transparent;
  color: #111;
  font-size: 16px;
}
.wrapperstyle4 .team-member .team-details li:hover a {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.wrapperstyle4 .team-details h4, .wrapperstyle4 .team-details p, .wrapperstyle4 .team-details li {
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0, 200%, 0);
  transform: translate3d(0, 200%, 0);
}
.wrapperstyle4 .team-member:hover .team-details h4, .wrapperstyle4 .team-member:hover .team-details p, .wrapperstyle4 .team-member:hover .team-details li {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.wrapperstyle4 .team-member:hover .team-details {
  opacity: 1;
  filter: Alpha(Opacity=100);
}
.wrapperstyle4 .team-member:hover .team-details h4 {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.wrapperstyle4 .team-member:hover .team-details p {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
.wrapperstyle4 .team-member:hover .team-details li:nth-child(n+1) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.wrapperstyle4 .team-member:hover .team-details li:nth-child(n+2) {
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}
.wrapperstyle4 .team-member:hover .team-details li:nth-child(n+3) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.wrapperstyle4 .team-member:hover .team-details li:nth-child(n+4) {
  -webkit-transition-delay: 0.35s;
  transition-delay: 0.35s;
}
.wrapperstyle4 .team-member:hover .team-details li:nth-child(n+5) {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
  /*------------------------------------------*/
  /* Start Portfolio Section
   /*------------------------------------------*/
}
.wrapperstyle4 .portfolio-section-1 {
  padding-top: 80px;
  padding-bottom: 120px;
  background:rgba(255,253,212,1.00);
}
.wrapperstyle4 .portfolio-section-2 {
  padding-top: 80px;
  padding-bottom: 120px;
}
.wrapperstyle4 .portfolio-section-3 {
  padding-top: 80px;
  padding-bottom: 120px;
  background: #111;
}
.wrapperstyle4 #portfolio-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
}
.wrapperstyle4 .portfolio-section-2 #portfolio-list li {
  margin-left: -2px;
}
.wrapperstyle4 #portfolio-list li {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 50%;
  margin-left: -4px;
  margin-bottom: -5px;
  padding: 0;
  text-align: center;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
@media only screen and (max-width: 550px) {
  .wrapperstyle4 #portfolio-list li {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) and (min-width: 551px) {
  .wrapperstyle4 #portfolio-list li {
    width: 49.9%;
  }
}
@media (min-width: 768px) {
  .wrapperstyle4 #portfolio-list li {
    width: 33.3%;
  }
}
.wrapperstyle4 .portfolio-item {
  width: 100%;
  height: 100%;object-fit: fit !important;
  position: relative;
  text-align: center;
  cursor: default;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;margin:15px !important;
	
}
.wrapperstyle4 .portfolio-caption {
 width: 100%;
  height:100%;;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  opacity: 0;
  filter: Alpha(Opacity=0);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
	
}
.wrapperstyle4 .portfolio-caption h4 {
  display: inline-table;
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
  text-align: center;
  font-size: 18px;
  padding-top: 10%;
}
.wrapperstyle4 .portfolio-caption p {
  position: relative;
  top: 12%;
  color: #fff;
  font-size: 18px;
  letter-spacing: 1px;
  padding: 0 10%;
}
.wrapperstyle4 .portfolio-caption a i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  padding: 20px;
  font-size: 25px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -o-border-radius: 100%;
  color: #fff;
  position: absolute;
  top: 70%;
}
.wrapperstyle4 .portfolio-caption a.link-1 i {
  left: 30%;
}
.wrapperstyle4 .portfolio-caption a.link-2 i {
  left: 40%;
}
.wrapperstyle4 .portfolio-caption h4, .wrapperstyle4 .portfolio-caption p, .wrapperstyle4 .portfolio-caption a i {
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0, 200%, 0);
  transform: translate3d(0, 200%, 0);
}
.wrapperstyle4 .portfolio-item:hover .portfolio-caption h4, .wrapperstyle4 .portfolio-item:hover .portfolio-caption p, .wrapperstyle4 .portfolio-item:hover .portfolio-caption a i {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.wrapperstyle4 .portfolio-item:hover .portfolio-caption {
  background-color: rgba(255, 67, 46, 0.8);
  opacity: 1;
  filter: Alpha(Opacity=100);
}
.wrapperstyle4 .portfolio-item:hover .portfolio-caption h4 {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.wrapperstyle4 .portfolio-item:hover .portfolio-caption p {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
.wrapperstyle4 .portfolio-item:hover .portfolio-caption a.link-1 i {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.wrapperstyle4 .portfolio-item:hover .portfolio-caption a.link-2 i {
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
  /********************************/
  /* Start Service Section
   /********************************/
}
.wrapperstyle4 #service-section {
  padding-top: 80px;
  padding-bottom: 40px;
}
.wrapperstyle4 .services-post {
  text-align: center;
  margin-bottom: 80px;
}
.wrapperstyle4 .services-post a {
  display: inline-block;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  width: 100px;
  height: 100px;
  margin: 0 0 24px;
  line-height: 100px;
  color: #111;
  font-size: 30px;
  text-align: center;
  background: transparent;
  border: 2px solid #111;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
.wrapperstyle4 .services-post:hover a, .wrapperstyle4 .services-post a.active {
  background: #ff432e;
  color: #ffffff;
  border: 2px solid transparent;
}
.wrapperstyle4 .services-post h2 {
  color: #111;
  font-weight: 400;
  margin: 0 0 14px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  /*----------------------------------------------------------*/
  /* Start Fun Facts Counter Section
   /*----------------------------------------------------------*/
}
.wrapperstyle4 .fun-facts {
  background: url(../images/parallax/bg-02.jpg);
  background-attachment: fixed;
  background-size: cover;
  padding-top: 120px;
  padding-bottom: 80px;
  overflow: hidden;
}
.wrapperstyle4 .counter-item {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
  background: #fff;
  padding: 0 20px 40px 20px;
}
.wrapperstyle4 .counter-item p {
  padding-bottom: 10px;
  color: #111;
}
.wrapperstyle4 .counter-item h3 {
  text-align: center;
  margin-bottom: 0px;
  color: #111;
  text-transform: none;
  font-size: 20px;
}
.wrapperstyle4 .counter-item i {
  font-size: 40px;
  color: #fff;
  background: #5BB12F;
  padding: 40px 50px;
}
.wrapperstyle4 .timer {
  padding: 10px 0;
  color: #111;
  font-size: 48px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  line-height: 80px;
  /****************************************/
  /* Start Pricing Section
   /****************************************/
}
.wrapperstyle4 .pricing-section {
  padding-top: 80px;
  padding-bottom: 120px;
}
.wrapperstyle4 .pricing {
  text-align: center;
  box-shadow: 0 0 2px #999;
}
.wrapperstyle4 .pricing-header {
  background: #f1f1f1;
  padding: 30px 0;
}
.wrapperstyle4 .pricing-header i {
  font-size: 32px;
  background: #5BB12F;
  color: #fff;
  padding: 35px;
  border-radius: 100%;
}
.wrapperstyle4 .pricing-body {
  padding: 30px;
}
.wrapperstyle4 h3.pricing-title {
  margin-bottom: 20px;
}
.wrapperstyle4 .pricing-body p {
  margin-bottom: 20px;
}
.wrapperstyle4 .pricing-body a {
  font-size: 20px;
  text-transform: none;
}
.wrapperstyle4 .colored-bg {
  background: #5BB12F;
}
.wrapperstyle4 .colored-bg i {
  border: 2px solid #fff;
}
.wrapperstyle4 .google-map #map {
  width: 100%;
  height: 500px;
  /***************************************/
  /* Start Client & Testimonial Section
   /***************************************/
}
.wrapperstyle4 #testimonial-section {
  background: url(../images/parallax/call-to.jpg) no-repeat;
  background-size: cover;
  padding: 100px 0;
  color: #fff;
}
.wrapperstyle4 .testimonial-item {
  text-align: center;
}
.wrapperstyle4 .testimonial-item p {
  color: #fff;
  margin-left: 20%;
  margin-right: 20%;
}
.wrapperstyle4 .testimonial-item img {
  width: 100px;
  height: 100px;
  margin-top: 30px;
  margin-bottom: 30px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
.wrapperstyle4 .testimonial-item .desgnation {
  margin-top: 5px;
  margin-bottom: 30px;
  /*******************************************/
  /* Start Clients Section
   /*******************************************/
}
.wrapperstyle4 #client-section {
  padding-top: 80px;
  padding-bottom: 80px;
}
.wrapperstyle4 .client-box ul {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.wrapperstyle4 .client-box ul li {
  list-style: none;
  float: left;
  padding: 0 1px;
  width: 20%;
}
.wrapperstyle4 .client-box ul li a {
  display: inline-block;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  border: 1px solid #cccccc;
  opacity: 1;
  width: 100%;
  padding: 30px 0;
}
.wrapperstyle4 .client-box ul li a img {
  width: 100%;
  /* Start Footer Section */
}
.wrapperstyle4 .footer-section {
  border-bottom: 1px solid #0f0f0f;
  background: #222222;
  color: #999;
  font-weight: 400;
  padding: 80px 0 60px;
}
.wrapperstyle4 .footer-section p {
  color: #999;
}
.wrapperstyle4 .footer-section .section-title {
  color: #c5c5c5;
}
.wrapperstyle4 .footer-section .section-heading-2 span:after {
  background: #434343;
}
.wrapperstyle4 .footer-section .section-heading-2 .section-title:after {
  background-color: #363636;
}
.wrapperstyle4 .footer-section .section-heading-2 h3 {
  font-size: 16px;
  margin-bottom: 15px;
}
.wrapperstyle4 .footer-address ul li {
  padding: 5px 0;
}
.wrapperstyle4 .footer-address ul li .fa {
  color: #6a6a6a;
  font-size: 16px;
  margin-right: 5px;
}
.wrapperstyle4 .footer-address ul li a {
  color: #9d9d9d;
}
.wrapperstyle4 .footer-address ul li a:hover {
  color: #FF432E;
}
.wrapperstyle4 .latest-tweet .media-body {
  padding: 5px 14px 5px 6px;
}
.wrapperstyle4 .latest-tweet .media-body p {
  font-size: 13px;
  color: #aaa;
}
.wrapperstyle4 .latest-tweet h4.media-heading {
  font-size: 10px;
  color: #FF432E;
}
.wrapperstyle4 .footer-social ul.social-list li {
  padding-right: 2px;
}
.wrapperstyle4 .footer-social ul.social-list li a i {
  font-size: 18px;
  display: block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
}
.wrapperstyle4 .footer-social ul.social-list li a {
  background: #2e2e2e;
  color: #9d9d9d;
  transition: background 0.3s;
  -webkit-transition: background 0.3s;
  -moz-transition: background 0.3s;
  -o-transition: background 0.3s;
}
.wrapperstyle4 .footer-social ul.social-list li a:hover {
  background: #FF432E;
  color: #000;
}
.wrapperstyle4 .flickr-widget li {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 23.97%;
}
.wrapperstyle4 .flickr-widget li img {
  width: 100%;
  height: auto;
  /* End Footer Section */
  /* Start Copyright Section */
}
.wrapperstyle4 .copyright-section {
  border-top: 1px solid #363636;
  font-size: 12px;
  padding: 20px 0;
  background: #1d1d1d;
  color: #7f7f7f;
}
.wrapperstyle4 .copyright {
  font-size: 16px;
}
.wrapperstyle4 .copyright-section a {
  color: #7f7f7f;
}
.wrapperstyle4 .copyright-section a:hover {
  color: #FF432E;
}
.wrapperstyle4 .copyright-menu li {
  display: inline;
  padding-left: 10px;
}
.wrapperstyle4 .copyright-menu li a {
  color: #7f7f7f;
  font-weight: 500;
}
.wrapperstyle4 .copyright-menu li a.active {
  color: #fff;
  font-size: 13px;
}
.wrapperstyle4 .copyright-menu li a:hover {
  color: #FF432E;
  /* End Copyright Section */
  /* Start Blog Page Section */
}
.wrapperstyle4 .blog-post {
  margin-bottom: 40px;
}
.wrapperstyle4 .blog-post .post-img {
  position: relative;
}
.wrapperstyle4 .blog-post .post-img img {
  margin: 0 0 16px 0;
  border-radius: 3px;
  width: 100%;
}
.wrapperstyle4 .blog-post .post-type {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.wrapperstyle4 .blog-post .post-type i {
  padding: 15px;
  background: #fff;
  font-size: 16px;
  color: #ff432e;
  border-radius: 3px;
  position: absolute;
  top: 45%;
  left: 48%;
}
.wrapperstyle4 .blog-post .post-img:hover .post-type {
  opacity: 1;
}
.wrapperstyle4 .blog-post .post-img:hover .post-type i {
  -webkit-animation: fadeInDownBig;
  animation: fadeInDownBig;
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
}
.wrapperstyle4 h1.post-title {
  font-size: 24px;
  font-weight: 400;
  line-height: 110%;
  padding: 10px 0 20px 0;
  margin: 0 0 20px 0;
  border-bottom: 1px solid #ddd;
  text-transform: capitalize;
}
.wrapperstyle4 h1.post-title a {
  color: #5c5c5c;
}
.wrapperstyle4 .blog-post ul.post-meta {
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
}
.wrapperstyle4 .blog-post .post-meta li {
  display: inline-block;
  padding-right: 10px;
  color: #959595;
}
.wrapperstyle4 .blog-post .post-meta li a {
  color: #5c5c5c;
}
.wrapperstyle4 .blog-post .post-meta li a:hover {
  color: #ff432e;
}
.wrapperstyle4 .blog-post .post-meta li i {
  color: #ff432e;
  margin-right: 10px;
}
.wrapperstyle4 .blog-post p.post-content {
  margin-bottom: 30px;
}
.wrapperstyle4 .blog-post a.btn-primary {
  background: #ff432e;
  border: 1px solid #ff432e;
  font-weight: 300;
}
.wrapperstyle4 .pagination li a {
  color: #ff432e;
}
.wrapperstyle4 .pagination li a:hover, .wrapperstyle4 .pagination li a:focus {
  color: #ff432e;
}
.wrapperstyle4 .pagination li.active a {
  background: #ff432e;
  border-color: #ff432e;
}
.wrapperstyle4 .blog-body .pagination {
  margin-bottom: 70px;
  /* End Blog Page Section */
  /* Start Single Blog Page Section */
}
.wrapperstyle4 .single-blog-post {
  margin-bottom: 40px;
}
.wrapperstyle4 .single-blog-post .post-img {
  position: relative;
}
.wrapperstyle4 .single-blog-post .post-img img {
  margin: 0 0 16px 0;
  border-radius: 3px;
}
.wrapperstyle4 .single-blog-post .post-type {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.wrapperstyle4 .single-blog-post .post-type i {
  padding: 15px;
  background: #fff;
  font-size: 16px;
  color: #ff432e;
  border-radius: 3px;
  position: absolute;
  top: 45%;
  left: 48%;
}
.wrapperstyle4 .single-blog-post .post-img:hover .post-type {
  opacity: 1;
}
.wrapperstyle4 .single-blog-post .post-img:hover .post-type i {
  -webkit-animation: fadeInDownBig;
  animation: fadeInDownBig;
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
}
.wrapperstyle4 .single-blog-post h1.post-title {
  font-size: 24px;
  font-weight: 400;
  line-height: 110%;
  padding: 10px 0 20px 0;
  margin: 0 0 20px 0;
  border-bottom: 1px solid #ddd;
  text-transform: capitalize;
}
.wrapperstyle4 .single-blog-post h1.post-title a {
  color: #5c5c5c;
}
.wrapperstyle4 .single-blog-post .post-meta li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
  color: #959595;
}
.wrapperstyle4 .single-blog-post .post-meta li a {
  color: #5c5c5c;
}
.wrapperstyle4 .single-blog-post .post-meta li a:hover {
  color: #ff432e;
}
.wrapperstyle4 .single-blog-post .post-meta li i {
  margin-right: 3px;
}
.wrapperstyle4 .single-blog-post .post-meta ul.pull-right li {
  border-right: 1px solid #ddd;
}
.wrapperstyle4 .single-blog-post .post-meta ul.pull-right li:last-child {
  border-right: none;
}
.wrapperstyle4 .single-blog-post .post-meta ul.pull-right li i {
  padding-left: 5px;
}
.wrapperstyle4 .single-blog-post p.post-content {
  margin-top: 20px;
  display: inline-block;
}
.wrapperstyle4 .item-content-footer {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
  margin-top: 30px;
}
.wrapperstyle4 .item-content-footer li {
  display: inline;
  border-left: 1px solid #ddd;
  padding-left: 20px;
  padding-right: 10px;
}
.wrapperstyle4 .item-content-footer li:first-child {
  border-left: none;
  padding-left: 0;
}
.wrapperstyle4 .item-content-footer .rating i {
  font-size: 20px;
}
.wrapperstyle4 .item-content-footer .rating .active i {
  color: #ff432e;
}
.wrapperstyle4 .blog-author h3 {
  color: #32313b;
  text-transform: capitalize;
  font-size: 30px;
  line-height: 33px;
}
.wrapperstyle4 .blog-author .media {
  margin: 25px 0 16px 0;
  padding: 8px;
}
.wrapperstyle4 .blog-author .media img {
  width: 120px;
  height: 120px;
  margin-right: 20px;
  border-radius: 8px;
  border: 6px solid #f2f2f2;
}
.wrapperstyle4 .blog-author .media-body h4 a {
  text-transform: capitalize;
  color: #323232;
  font-size: 20px;
}
.wrapperstyle4 .blog-author .media-body p {
  color: #778899;
}
.wrapperstyle4 .blog-user {
  margin-bottom: 100px;
}
.wrapperstyle4 #comments .comments-list {
  padding: 0;
  margin: 0 0 35px 0;
}
.wrapperstyle4 #comments .comments-title {
  font-weight: 400;
  margin-bottom: 20px;
  text-transform: lowercase;
  font-size: 30px;
}
.wrapperstyle4 #comments .comments-list li .comment-box {
  padding: 20px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e8e8e8;
}
.wrapperstyle4 #comments .comments-list li ul {
  margin-left: 70px;
}
.wrapperstyle4 #comments .avatar {
  float: left;
}
.wrapperstyle4 #comments .avatar img {
  width: 72px;
  height: 72px;
  margin-right: 30px;
  margin-bottom: 15px;
  border-radius: 100%;
  border: 5px solid #f2f2f2;
}
.wrapperstyle4 #comments .comment-content {
  padding-left: 72px;
}
.wrapperstyle4 #comments .comment-content .comment-meta {
  margin-bottom: 5px;
}
.wrapperstyle4 .comment-content .comment-meta .comment-by {
  font-weight: 400;
  color: #323232;
  font-size: 18px;
}
.wrapperstyle4 .comment-content .reply-link a {
  color: #555;
  font-size: 11px;
  text-decoration: underline;
}
.wrapperstyle4 .comment-content .comment-date {
  color: #959595;
  font-style: italic;
  margin-bottom: 10px;
}
.wrapperstyle4 .comment-content p {
  margin-top: 5px;
}
.wrapperstyle4 #respond {
  margin-bottom: 120px;
}
.wrapperstyle4 #respond .respond-title {
  font-weight: 400;
  text-transform: none;
  color: #32313b;
}
.wrapperstyle4 #respond .form-caution {
  color: #cecece;
  font-style: italic;
  margin-bottom: 15px;
}
.wrapperstyle4 #respond form {
  margin-top: 20px;
  /* End Single Blog Page Section */
  /* Start Sidebar Scetion */
}
.wrapperstyle4 .sidebar .section-heading-2 {
  margin-bottom: 30px;
}
.wrapperstyle4 .sidebar .section-heading-2 h3 {
  font-size: 20px;
  text-transform: capitalize;
  color: #32313b;
  font-weight: 400;
}
.wrapperstyle4 .sidebar .widget {
  margin-bottom: 50px;
}
.wrapperstyle4 .sidebar .flickr-widget .flickr-list li {
  width: 61px;
  height: 61px;
}
.wrapperstyle4 .sidebar .widget-recent-post ul li {
  display: inline;
}
.wrapperstyle4 .sidebar .widget-recent-post .media-left img {
  width: 130px;
  height: 75px;
}
.wrapperstyle4 .sidebar .widget-recent-post h4.media-heading a {
  font-size: 16px;
  color: #323232;
  text-transform: capitalize;
}
.wrapperstyle4 .sidebar .widget-recent-post h4.media-heading a:hover {
  color: #ff432e;
}
.wrapperstyle4 .sidebar .widget-recent-post .media-body li, .wrapperstyle4 .sidebar .widget-recent-post .media-body li a {
  color: #959595;
}
.wrapperstyle4 .widget-categories li {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px dashed #cecece;
}
.wrapperstyle4 .widget-categories li a {
  color: #323232;
}
.wrapperstyle4 .widget-categories li i {
  padding-right: 15px;
}
.wrapperstyle4 .widget-categories li a.cat-counter {
  margin-left: 20px;
  font-size: 10px;
  background: #ff432e;
  color: #fff;
  padding: 3px;
  border-radius: 4px;
  width: 20px;
  height: 20px;
  line-height: 12px;
  text-align: center;
  display: inline-block;
}
.wrapperstyle4 .sidebar .tagcloud a {
  display: inline-block;
  color: #6a6a6a;
  font-size: 14px;
  padding: 5px 8px;
  background: #f2f2f2;
  margin: 0 1px 5px 0;
  border-radius: 2px;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.wrapperstyle4 .sidebar .tagcloud a:hover {
  background: #ff432e;
  color: #fff;
  /* End Sidebar Scetion */
  /***********************************/
  /* Start Contact Section
   /***********************************/
}
.wrapperstyle4 .contact {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  padding-top: 80px;
  padding-bottom: 100px;
}
.wrapperstyle4 .form-control {
  border-radius: 0;
  border: 2px solid #111;
}
.wrapperstyle4 .contact .form-group {
  margin-bottom: 25px;
}
.wrapperstyle4 textarea {
  width: 100%;
}
.wrapperstyle4 .contact .form-group input, .wrapperstyle4 .contact .form-group textarea {
  padding: 20px;
}
.wrapperstyle4 .contact .form-group input.form-control {
  height: auto;
}
.wrapperstyle4 .contact .form-group textarea.form-control {
  height: 236px;
}
.wrapperstyle4 .contact::-webkit-input-placeholder {
  text-transform: uppercase;
  font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #bbb;
}
.wrapperstyle4 .contact:-moz-placeholder {
  text-transform: uppercase;
  font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #bbb;
}
.wrapperstyle4 .contact:-ms-input-placeholder {
  text-transform: uppercase;
  font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #bbb;
}
.wrapperstyle4 .contact .text-danger {
  color: #e74c3c;
}
.wrapperstyle4 .contact button {
  font-weight: 400;
  margin-top: 30px;
}
