/**********************
Sass Variable
*****************************************/
@import url(../fonts.css);
@import url(../global/margin.css);
/*== Header ==*/
/*============== page Loader ===========*/
.ip-header {
  position: fixed;
  top: 0;
  z-index: 99999;
  min-height: 480px;
  width: 100%;
  height: 100%;
  background: #f1f1f1;
}

.ip-header h1 {
  margin: 0;
}

.ip-logo,
.ip-loader {
  position: absolute;
  left: 0;
  width: 100%;
  opacity: 0;
  cursor: default;
  pointer-events: none;
}

.ip-logo {
  top: 0;
  height: 100%;
  -webkit-transform: translate3d(0, 25%, 0);
  transform: translate3d(0, 25%, 0);
}

.ip-loader {
  bottom: 20%;
}

.ip-header .ip-inner {
  display: block;
  margin: 0 auto;
}

.ip-header .ip-logo svg {
  min-width: 320px;
  max-width: 480px;
  width: 25%;
}

.ip-header .ip-loader svg path {
  fill: none;
  stroke-width: 6;
}

.ip-header .ip-loader svg path.ip-loader-circlebg {
  stroke: #ddd;
}

.ip-header .ip-loader svg path.ip-loader-circle {
  -webkit-transition: stroke-dashoffset 0.2s;
  transition: stroke-dashoffset 0.2s;
  stroke: #25b89b !important;
}

.ip-logo svg {
  margin: auto;
  display: table;
}

.ip-logo svg {
  margin: auto;
  display: table;
}

.ip-logo svg .svg-logo {
  fill: #25b89b !important;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

/* Animations */
/* Initial animation of header elements */
.loading .ip-logo,
.loading .ip-loader {
  opacity: 1;
  -webkit-animation: animInitialHeader 1s cubic-bezier(0.7, 0, 0.3, 1) both;
  animation: animInitialHeader 1s cubic-bezier(0.7, 0, 0.3, 1) both;
}

.loading .ip-loader {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

@-webkit-keyframes animInitialHeader {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 800px, 0);
  }
}

@keyframes animInitialHeader {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 800px, 0);
    transform: translate3d(0, 800px, 0);
  }
}

/* Header elements when loading finishes */
.loaded .ip-logo,
.loaded .ip-loader {
  opacity: 1;
}

.loaded .ip-logo {
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-animation: animLoadedLogo 1s cubic-bezier(0.7, 0, 0.3, 1) forwards;
  animation: animLoadedLogo 1s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}

@-webkit-keyframes animLoadedLogo {
  to {
    -webkit-transform: translate3d(0, 100%, 0) translate3d(0, 50px, 0) scale3d(0.65, 0.65, 1);
  }
}

@keyframes animLoadedLogo {
  to {
    -webkit-transform: translate3d(0, 100%, 0) translate3d(0, 50px, 0) scale3d(0.65, 0.65, 1);
    transform: translate3d(0, 100%, 0) translate3d(0, 50px, 0) scale3d(0.65, 0.65, 1);
  }
}

.loaded .ip-loader {
  -webkit-animation: animLoadedLoader 0.5s cubic-bezier(0.7, 0, 0.3, 1) forwards;
  animation: animLoadedLoader 0.5s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}

@-webkit-keyframes animLoadedLoader {
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1);
  }
}

@keyframes animLoadedLoader {
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1);
    transform: translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1);
  }
}

/* Change the color of the logo */
.loaded .ip-logo svg path {
  -webkit-transition: all 0.5s ease 0.3s;
  transition: all 0.5s ease 0.3s;
  fill: #fff;
}

/* Header animation when loading finishes */
.loaded .ip-header {
  -webkit-animation: animLoadedHeader 1s cubic-bezier(0.7, 0, 0.3, 1) forwards;
  animation: animLoadedHeader 1s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}

@-webkit-keyframes animLoadedHeader {
  to {
    -webkit-transform: translate3d(0, -100%, 0);
  }
}

@keyframes animLoadedHeader {
  to {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

/* Content animations */
.loaded .ip-main h2,
.loaded .ip-main .browser,
.loaded .ip-main .browser .box,
.loaded .codrops-demos {
  -webkit-animation: animLoadedContent 1s cubic-bezier(0.7, 0, 0.3, 1) both;
  animation: animLoadedContent 1s cubic-bezier(0.7, 0, 0.3, 1) both;
}

.loaded .ip-main .browser,
.loaded .ip-main .browser .box:first-child {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.loaded .ip-main .browser .box:nth-child(2) {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}

.loaded .ip-main .browser .box:nth-child(3) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

@-webkit-keyframes animLoadedContent {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 200px, 0);
  }
}

@keyframes animLoadedContent {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 200px, 0);
    transform: translate3d(0, 200px, 0);
  }
}

/* Change layout class for header */
.layout-switch .ip-header {
  position: absolute;
}

/* No JS */
.no-js .ip-header {
  position: relative;
  min-height: 0px;
}

.no-js .ip-header .ip-logo {
  margin-top: 20px;
  height: 180px;
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}

.no-js .ip-header .ip-logo svg path {
  fill: #fff;
}

.loaded .ip-logo {
  opacity: 0;
  height: 0;
  display: none;
}

.ip-loader {
  position: absolute;
  top: 20%;
}

/*========================  Header  ========================*/
::-moz-selection {
  /* Code for Firefox */
  background: #25b89b !important;
  color: #fff;
}

::selection {
  background: #25b89b !important;
  color: #fff;
}

/*==================================== Header Area ====================================*/
.top-arae {
  background: #191918;
  padding: 10px 0;
}

.top-arae .top-txt {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  margin: 0 auto;
  color: #25b89b !important;
  font-weight: 600;
}

@media only screen and (max-width: 991px) {
  .top-arae .top-txt {
    text-align: center;
    margin-bottom: 15px;
  }
}

.top-arae .top-ul {
  margin: 0 auto;
  text-align: right;
}

@media only screen and (max-width: 991px) {
  .top-arae .top-ul {
    text-align: center;
  }
}

.top-arae .top-ul li {
  display: inline-block;
  margin-right: 10px;
  margin-left: 10px;
}

.top-arae .top-ul li:last-child a {
  font-family: "Open Sans", sans-serif;
}

.top-arae .top-ul li a {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  text-decoration: none;
  color: #25b89b !important;
  font-weight: 600;
}

.top-arae .top-ul li a i {
  font-size: 18px;
  margin-right: 10px;
}

/*=============================== Navbar Area ===============================*/
@media only screen and (min-width: 767px) {
  .navbar-fixed-top {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
  }
  .navbar-fixed-top .navbar-brand {
    padding: 5px 15px !important;
  }
  .navbar-fixed-top .navbar-brand svg {
    width: 118px !important;
    height: 58px !important;
  }
  .navbar-fixed-top .navbar-nav {
    margin: 10px auto !important;
  }
}

@media (max-width: 767px) {
  .navbar-fixed-top {
    position: relative;
  }
}

#navbar {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #fafafa;
  border: none;
  border-radius: 0;
  margin: 0 auto;
}

#navbar .navbar-brand {
  height: auto !important;
  padding: 10px 15px;
  max-width: 160px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

#navbar .navbar-brand svg .svg-logo {
  fill: #25b89b !important;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

#navbar .navbar-nav {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

@media only screen and (min-width: 991px) {
  #navbar .navbar-nav {
    margin: 37px auto;
  }
}

#navbar .navbar-nav .dropdown ul {
  padding: 10px 15px;
  margin-top: 5px;
}

#navbar .navbar-nav li.last-child a {
  background: #3a3a39;
  color: #fff !important;
  padding: 15px 20px;
}

@media only screen and (min-width: 767px) {
  #navbar .navbar-nav li.last-child a {
    margin-left: 10px;
  }
}

#navbar .navbar-nav li a {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  color: #000;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

#navbar .navbar-nav li a:hover {
  background: #25b89b !important;
  color: #fff;
}

/* =============================    Navbar Dropdown  ============================*/
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:focus, .navbar-default .navbar-nav > .open > a:hover {
  background: #25b89b !important;
  color: #fff !important;
}

.newsletter {
  position: relative;
}

.newsletter input {
  background: #fff;
  padding-right: 40px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  color: #000 !important;
  height: 40px;
}

.newsletter input:focus {
  background: rgba(255, 255, 255, 0.2);
}

.newsletter .btn-submit {
  height: 30px;
  font-size: 13px;
  background: #25b89b !important;
  border: none;
}

.newsletter .btn-submit, .search .btn-submit {
  position: absolute;
  right: 0;
  top: 0;
  padding: 0 10px;
  margin-top: 5px;
  margin-right: 5px;
  color: #FFF !important;
  line-height: 1;
}

/*****************
Navbar Effect
**********************/
.navbar-toggle {
  background: #25b89b !important;
  border-radius: 0px;
  margin-top: 45px;
}

.navbar-default .navbar-toggle .icon-bar {
  background: #fff !important;
}

.navbar-toggle .icon-bar {
  position: relative;
  transition: all 500ms ease-in-out;
}

.navbar-toggle.active .type1 {
  top: 6px;
  transform: rotate(46deg);
}

.navbar-toggle.active .type2 {
  background-color: transparent !important;
}

.navbar-toggle.active .type3 {
  top: -6px;
  transform: rotate(-50deg);
}

/*============ Slider Setting ===============*/
.carousel-caption h3 span {
  color: #25b89b !important;
}

.cat-area .btn {
  background: #25b89b !important;
}

#two .container {
  background: #fff;
}

.short-about {
  margin: 10px auto 20px auto;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #686868;
  line-height: 24px;
}

.short-about h2 {
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  color: #3a3a39;
  text-transform: uppercase;
}

.short-about .btn {
  background-color: #25b89b !important;
  color: white;
  border: none;
  border-radius: 0;
  padding: 10px 15px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  min-width: 100px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  color: #fff !important;
  padding: 15px 15px;
}

.short-about .btn:hover {
  background: #25b89b !important;
}

.short-about .btn:active {
  background: #25b89b !important;
}

.banner-right .logo-top {
  background: #25b89b !important;
  padding: 10px 15px;
  text-align: center;
  width: 100%;
  display: block;
}

.banner-right .banner {
  width: 100%;
}

.feature-head {
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  color: #3a3a39;
  text-transform: uppercase;
  margin: 15px auto;
  text-align: center;
}

/*=== Products Area ===*/
.product-area {
  border: 1px solid #f2f2f2;
  background: #fffeff;
  text-align: center;
  padding: 15px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.product-area:hover {
  border-color: #25b89b !important;
}

.product-area h2 {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  color: #3a3a39;
  text-transform: uppercase;
  line-height: 28px;
}

.product-area .btn {
  background-color: #dddddd;
  color: #3a3a39;
  border: none;
  border-radius: 0;
  padding: 10px 15px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  padding: 5px 25px;
}

.product-area .btn:hover {
  background: #dddddd;
}

.product-area .btn:active {
  background: #dddddd;
}

.product-area .btn:hover {
  background: #25b89b !important;
  color: #fff;
}

.product-area .btn:active {
  background: #25b89b !important;
  color: #fff;
}

/*============= Owl Demo ===================*/
.owl-demo .owl-pagination {
  display: none;
}

.owl-demo .owl-item {
  padding: 0 15px 0 0;
}

.owl-demo .owl-buttons {
  display: none;
}

/*===================== Newsletter ===============*/
#newsletter {
  background: #292a2c;
}

.mailing {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #b6b6b6;
  line-height: 24px;
}

.mailing h2 {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  color: #fff;
}

@media only screen and (min-width: 991px) {
  .mailing h2 {
    float: left;
    width: 40%;
    margin: 15px auto;
  }
}

@media only screen and (min-width: 991px) {
  .mailing p {
    float: left;
    width: 60%;
    margin: 5px auto;
  }
}

.newslt {
  position: relative;
}

@media only screen and (min-width: 991px) {
  .newslt::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -15px;
    width: 1px;
    background: #fff;
  }
}

.newslt input {
  background: #cdcdcd;
  border: none;
}

.newslt .btn {
  font-family: "Roboto", sans-serif;
  background-color: #25b89b !important;
  color: #fff;
  border: none;
  padding: 7px 15px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.newslt .btn:hover {
  background: #25b89b !important;
}

.newslt .btn:active {
  background: #25b89b !important;
}

.social-arae h2 {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  color: #fff;
}

@media only screen and (min-width: 991px) {
  .social-arae h2 {
    float: left;
    width: 45%;
    margin: 15px auto;
  }
}

.social-arae ul {
  margin: 5px auto;
}

@media only screen and (min-width: 991px) {
  .social-arae ul {
    float: left;
    width: 55%;
    text-align: right;
  }
}

.social-arae ul li {
  display: inline-block;
  margin-right: 5px;
  margin-left: 5px;
}

.social-arae ul li:nth-child(3) a {
  padding: 10px;
}

.social-arae ul li a {
  padding: 10px 15px;
  text-align: center;
  background: #cdcdcd;
  border-radius: 50%;
  font-size: 20px;
  color: #333838;
  display: block;
  min-width: 45px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.social-arae ul li a:hover {
  background: #25b89b !important;
  color: #fff;
}

/*== Footer ==*/
/*================== Footer ==================*/
footer {
  background: #191918;
}

@media only screen and (min-width: 767px) {
  .bdr {
    border-right: 1px solid #fff;
  }
}

.footer-panel ul li:hover::after {
  right: 50%;
}

.footer-panel ul li:hover a {
  color: #25b89b !important;
  margin-left: 20px;
}

.footer-panel ul li::after {
  content: '';
  position: absolute;
  height: 1px;
  background-color: #25b89b !important;
  left: 15px;
  right: 100%;
  margin-top: 18px;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

.footer-panel ul li a {
  font-family: "Roboto", sans-serif;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  font-size: 14px;
  color: #fff !important;
  line-height: 22px;
  text-decoration: none;
}

.footer-panel h2 {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  color: #25b89b !important;
  margin: 20px auto;
}

@media only screen and (min-width: 991px) {
  .footer-panel .certificates {
    width: 100%;
  }
}

.footer-panel p {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #fff;
  margin-bottom: 10px;
}

.footer-panel p.add span {
  padding-left: 15px;
}

.footer-panel p.add span::before {
  content: "\f041";
}

.footer-panel p.phone span {
  padding-left: 23px;
}

.footer-panel p.phone span::before {
  content: "\f095";
}

.footer-panel p.email span {
  padding-left: 23px;
}

.footer-panel p.email span::before {
  content: "\f0e0";
}

.footer-panel p span {
  font-size: 18px;
  position: relative;
}

.footer-panel p span::before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 18px;
  color: #25b89b !important;
  position: absolute;
  top: 0;
  left: 0;
}

.footer-panel a {
  color: #25b89b !important;
}

.cop-right {
  border-top: 1px solid #fff;
  padding: 10px 0;
}

.cop-right p {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #25b89b !important;
  margin: 0;
}

.cop-right a {
  color: #fff;
  text-shadow: none;
}

/*============ Next All Page Style ==============*/
.left-head {
  background: #3a3a39;
  margin: 0px auto;
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  color: #fff;
  text-transform: uppercase;
  padding: 15px;
}

.left-head i {
  margin-right: 10px;
}

.panel {
  border: none;
  border-radius: 0;
  background-color: transparent;
}

.panel-default > .panel-heading {
  border: none;
  border-radius: 0;
  background-color: transparent;
}

.panel-title a {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: #3a3a39;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.panel-title a:hover {
  color: #25b89b !important;
}

.panel-body ul li a {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: #7c7c7c;
  text-transform: capitalize;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.panel-body ul li a i {
  margin-right: 10px;
}

.panel-body ul li a:hover {
  color: #25b89b !important;
  margin-left: 15px;
}

.active-main a {
  color: #25b89b !important;
}

.active-section a {
  color: #25b89b !important;
  margin-left: 15px;
}

.prod-head {
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  color: #3a3a39;
  text-transform: uppercase;
  margin: 10px auto;
}

.prod-head span {
  color: #25b89b !important;
}

.prod-head a {
  background: #25b89b !important;
  color: #fff;
  display: block;
  text-decoration: none;
  padding: 7px 13px;
  font-size: 18px;
}

.border-large {
  border: 1px solid #f2f2f2;
  padding: 20px 10px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.border-large:hover {
  border-color: #25b89b !important;
}

.large-cap {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #686868;
  line-height: 24px;
}

.large-cap h2 {
  margin: 15px auto;
  margin-top: 0;
  font-family: "Oswald", sans-serif;
  font-size: 22px;
  color: #3a3a39;
  text-transform: uppercase;
}

.large-cap h3 {
  margin: 15px auto;
  font-family: "Oswald", sans-serif;
  font-size: 22px;
  color: #25b89b !important;
  text-transform: uppercase;
}

.large-cap h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: #3a3a39;
  text-transform: uppercase;
}

.large-cap label {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: #25b89b !important;
  text-transform: uppercase;
}

.large-cap select {
  border-color: #25b89b !important;
  border-radius: 0;
}

.large-cap input {
  border-color: #25b89b !important;
  border-radius: 0;
}

.large-cap .btn {
  background-color: #25b89b !important;
  color: white;
  border: none;
  border-radius: 0;
  padding: 10px 15px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  color: #fff !important;
  padding: 12px 25px;
}

.large-cap .btn:hover {
  background: #25b89b !important;
}

.large-cap .btn:active {
  background: #25b89b !important;
}

.form-group-c {
  width: 100%;
}

.content-area {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #686868;
  line-height: 24px;
}

.contact-btm {
  text-align: center;
  padding: 25px 0;
  border-right: 1px solid #e5e5e5;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  color: #acacac;
  line-height: 22px;
}

.contact-btm:hover .fa {
  transform: rotate(360deg);
  color: #25b89b !important;
}

.contact-btm .fa {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 48px;
  color: #a6a6a6;
}

.contact-btm h2 {
  margin: 15px auto;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 16px;
  color: #000000;
  text-transform: uppercase;
}

.contact-btm a {
  color: #acacac;
}

.contact-us-form input {
  border: none;
  border-radius: 0;
  background: #ececec;
  min-height: 54px;
  margin: 13px auto;
}

.contact-us-form textarea {
  border: none;
  border-radius: 0;
  background: #ececec;
  min-height: 54px;
  margin: 15px auto;
}

.contact-us-form .btn {
  background-color: #25b89b !important;
  color: white;
  border: none;
  border-radius: 0;
  padding: 10px 15px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  color: #fff !important;
  padding: 12px 25px;
  float: right;
}

.contact-us-form .btn:hover {
  background: #25b89b !important;
}

.contact-us-form .btn:active {
  background: #25b89b !important;
}

.contact-us-form h2 {
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  color: #3a3a39;
  text-transform: uppercase;
  margin: 10px auto;
}

.color-default {
  color: #25b89b !important;
}

.btn-danger {
  background-color: #25b89b !important;
  color: white;
  border: none;
  border-radius: 0;
  padding: 10px 15px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  color: #fff !important;
  padding: 12px 25px;
}

.btn-danger:hover {
  background: #25b89b !important;
}

.btn-danger:active {
  background: #25b89b !important;
}

.basket_name input {
  border: none;
  border-radius: 0;
  background: #ececec;
  min-height: 54px;
  margin: 13px auto;
}

.quote-form input {
  border: none;
  border-radius: 0;
  background: #ececec;
  min-height: 54px;
  margin: 13px auto;
  width: 100%;
}

.quote-form textarea {
  border: none;
  border-radius: 0;
  background: #ececec;
  min-height: 54px;
  margin: 15px auto;
}

.quote-form select {
  border: none;
  border-radius: 0;
  background: #ececec;
  min-height: 54px;
  margin: 15px auto;
}

.quote-form .btn {
  background-color: #25b89b !important;
  color: white;
  border: none;
  border-radius: 0;
  padding: 10px 15px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  color: #fff !important;
  padding: 12px 25px;
}

.quote-form .btn:hover {
  background: #25b89b !important;
}

.quote-form .btn:active {
  background: #25b89b !important;
}
