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

Project     :   Buten - Product Marketing Landing Page
Author      :   thememeta
Athor URI   :   https://themeforest.net/user/thememeta

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

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

[Table of contents]

Default CSS
Site Preloader
Header
Home Area
Home Slider
Home Newsletter
About Area
Section Heading
Features Area
Video Area
Core Feature Area
Why Choose Area
Newsletter Area
Product Area
Testimonial Area
FAQ Area
Contact Area
Footer

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

/*-------------------------------------------------------------------------------------
    Default CSS
---------------------------------------------------------------------------------------*/

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;

}

body {
  font-family: 'Arial', sans-serif;
  font-weight: 400;
  color: #000;
  position: relative;
  overflow-x: hidden;
  letter-spacing: 1px
}

ul {
  list-style: none;
  margin: 0;
  padding: 0
}

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

input:required,
input:invalid,
textarea:required,
textarea:invalid {
  -webkit-box-shadow: none;
  box-shadow: none;
}

a,
button {
  -webkit-transition: 0.3s;
  transition: 0.3s
}

a {
  color: #000;
  font-size: 14px
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3 {
  font-weight: 400;
  margin-top: 0
}

h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 54px
}

h2 {
  font-family: 'Arial', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 34px;
  color: #fff;
}

h3 {
  font-size: 24px;
  line-height: 34px
}

h4 {
  font-size: 20px;
  line-height: 30px
}

h5 {
  font-size: 18px;
  line-height: 28px
}

h6 {
  font-size: 16px;
  line-height: 26px
}

p {
  font-size: 14px;
  color: #555;
  line-height: 24px;
  font-weight: 300;
  margin-top: 20px;
}

.d-table {
  width: 100%;
  height: 100%
}

.animation-jump {
  position: relative;
  -webkit-animation: animation-jump 2s ease-in-out infinite;
  animation: animation-jump 2s ease-in-out infinite;
}

.animation-bg {
  -webkit-animation: animation-bg 25s ease-in-out infinite;
  animation: animation-bg 25s ease-in-out infinite;
}

@-webkit-keyframes animation-jump {
  0% {
    top: 3px;
  }
  50% {
    top: -3px;
  }
  100% {
    top: 3px;
  }
}

@keyframes animation-jump {
  0% {
    top: 3px;
  }
  50% {
    top: -3px;
  }
  100% {
    top: 3px;
  }
}

@-webkit-keyframes animation-bg {
  0% {
    background-position: top;
  }

  50% {
    background-position: bottom;
  }
  100% {
    background-position: top;
  }
}

@keyframes animation-bg {
  0% {
    background-position: top;
  }

  50% {
    background-position: bottom;
  }
  100% {
    background-position: top;
  }
}

/*-------------------------------------------------------------------------------------
    Site Preloader
---------------------------------------------------------------------------------------*/

.preloader {
  background-color: #1c1c1c;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999999;
}

.preloader .spinner {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
  animation: sk-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0)
  }
  100% {
    -webkit-transform: scale(1.0);
    opacity: 0;
  }
}

@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
    opacity: 0;
  }
}

/*-------------------------------------------------------------------------------------
    Header
---------------------------------------------------------------------------------------*/

#header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  padding: 10px 0
}

#header.sticky {
  position: fixed;
  width: 100%;
  -webkit-box-shadow: 0 2px 10px #ccc;
  box-shadow: 0 2px 10px #ccc;
  background-color: #fff;
  z-index: 999;
  padding: 14px 0;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.navbar-nav {
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.navbar-nav .nav-item .nav-link {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0px;
  font-size: 14px;
  padding: 0 15px;
  color: #fff;


}

.nav-item .nav-link:hover,
.nav-item .nav-link.active,
.sticky .nav-item .nav-link {
  color: #ced4da;
}

.sticky .nav-item .nav-link.active,
.sticky .nav-item .nav-link:hover {
  color: #084
}

a.toHome {
font-family: 'Oswald', sans-serif;
font-weight: 400;
text-transform: uppercase;
letter-spacing: 0px;
font-size: 14px;
padding: 0 15px;
color: #fff!important;
background-color: transparent!important;
border-radius: 0!important;
}

.navbar-nav.buy-btn .nav-link {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  background-color: #fff;
  color: #084;
  padding: 10px 20px;
  border-radius: 30px;
}

.navbar-nav.buy-btn .nav-link:hover {
  background-color: #fff;
  color: #084;
}

.sticky .navbar-nav.buy-btn a {
  background-color: #084;
  color: #fff;
}

.sticky .navbar-nav.buy-btn a.toHome {
  background-color:transparent!important;
  color: #084!important;
}

.sticky .navbar-nav.buy-btn .nav-link:hover {
  background-color: #0a5;
  color: #fff;
}

.logo-scroll,
.sticky .logo {
  display: none
}

.sticky .logo-scroll {
  display: block
}

/*-------------------------------------------------------------------------------------
    Home Area
---------------------------------------------------------------------------------------*/

.more-text {
  font-family: 'Oswald', sans-serif;
  display: block;
  margin-top:20px;
  font-size: 24px;
}

.more-text a{
  font-size: 24px;
  text-decoration: underline;
}

.k1-s{
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  color: #fff!important;
  font-weight: bolder!important;
  text-transform: uppercase;
}

.k2-s{
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  color: #8dc055!important;
  text-transform: uppercase;
  line-height: normal;
  letter-spacing: normal;
}

.k3-s{
  font-family: 'Oswald', sans-serif;
  font-size: 120px;
  font-weight: bolder;
  color: #fff!important;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -10px;
  margin: 0!important;
  padding: 0!important;
}

.k3-s-per{
  font-family: 'Oswald', sans-serif;
  font-size: 60px;
  font-weight: bolder;
  color: #8fab94!important;
  text-transform: uppercase;
  line-height: normal;
  letter-spacing: -10px;
}

.k4-s{
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  color: #fff !important;
  font-weight: bolder;
  text-transform: uppercase;
  line-height: 1!important;
  margin: 0!important;
  padding: 0!important;
}

.k5-s{
  width: 410px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  color: #8dc055!important;
  font-weight: normal;
  margin: 0!important;
  padding: 0!important;
  margin-top: 10px!important;
}

.k6-s{
  width: 410px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  color: #8dc055!important;
  font-weight: normal;
  margin: 0!important;
  padding: 0!important;
  margin-top: 10px!important;
}

#home-area {
  background-image: url(../images/banner-1.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: cover;
  height: 100vh
}

#home-area-campaign {
  background-image: url(../images/banner-1.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: cover;
  height: 100vh
}

.caption-content {
  height: 100vh
}

.caption-content h1 {
  color: #fff;
  font-weight: 400;
}

.caption-content p {
  color: #ddd;
  margin: 20px 0 10px;
}

.caption-content a {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0px;
  text-transform: uppercase;
  background-color: #fff;
  color: #084;
  padding: 12px 50px;
  border-radius: 30px;
  display: inline-block;
  margin: 40px 0 0;
}

.caption-content a:hover {
  background-color: #f1f1f1;
}

.caption-content a i {
  padding-right: 2px;
  font-size: 18px;
}

.caption-img {
  padding: 25% 0 0;
}

/*-------------------------------------------------------------------------------------
    Home Slider
---------------------------------------------------------------------------------------*/

#home-area.slider {
  background-image: url(../images/banner-1.jpg);
}

.slide-single {
  padding: 0 12%;
}

.slide-single .caption-img img {
  max-width: 350px;
  margin: 0 auto;
  padding: 8% 0 0
}

.home-slider .owl-dots {
  position: absolute;
  left: 0;
  bottom: 80px;
  width: 100%;
  text-align: center
}

.home-slider .owl-dot {
  display: inline-block;
  width: 15px;
  height: 6px;
  margin: 0 4px;
  background-color: #fff;
  border-radius: 2px;
  margin: 0 4px;
  border: 0;
  outline: 0
}

.home-slider .owl-dot.active {
  width: 25px;
}

.owl-item.active .caption-content h1 {
  -webkit-animation: 1s .3s fadeInLeft both;
  animation: 1s .3s fadeInLeft both;
}

.owl-item.active .caption-content p {
  -webkit-animation: 1s .5s fadeInRight both;
  animation: 1s .5s fadeInRight both;
}

.owl-item.active .caption-content a {
  -webkit-animation: 1s .8s fadeInUp both;
  animation: 1s .8s fadeInUp both;
}

/*-------------------------------------------------------------------------------------
    Home Newsletter
---------------------------------------------------------------------------------------*/

#home-area.newsletter {
  background-image: url(../images/banner-2.jpg);
  position: relative
}

.home-news-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.newsletter .caption-img img {
  max-width: 350px;
  margin: 10% auto 0
}

.home-newsletter {
  background-color: #fff;
  padding: 40px 30px 50px;
  border-radius: 10px;
  margin: 9% 40px 0
}

.home-newsletter h2 {
  font-weight: 800;
  text-align: center;
  margin: 0 0 30px;
}

.home-newsletter input {
  height: 50px;
  font-size: 15px;
  border: 1px solid #e6f0fa;
}

.home-newsletter button {
  width: 100%;
  height: 50px;
  color: #fff;
  background-color: #2273f8;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  outline: 0
}

.home-newsletter button:hover {
  background-color: #0857d8;
}

/*-------------------------------------------------------------------------------------
    About Area
---------------------------------------------------------------------------------------*/

#about-area {
  padding: 150px 0;
}

.about-img img {
  border-radius: 10px;
}

.about-content h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 42px;
  color: #084;
  line-height: 44px;
  margin: 0 0 10px;
}

.about-content h4 {
  font-weight: 600;
  color: #084;
}

.about-content ul {
  margin: 20px 0 0;
}

.about-content ul li {
  font-weight: 300;
  padding: 3px 0;
  font-size: 14px;
  line-height: 18px
}

.about-content li i {
  color: #084;
}

/*-------------------------------------------------------------------------------------
    Section Heading
---------------------------------------------------------------------------------------*/

.section-heading h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 43px;
  line-height: 44px;
  color: #084;
  line-height: 44px;
  margin: 0 0 10px;
}

.section-heading {
  margin: 0 0 60px;
}

/*-------------------------------------------------------------------------------------
    Features Area
---------------------------------------------------------------------------------------*/

#feature-area {
  background-color: #fff;
  padding: 150px 0 30px;
}

.feature-single {
  margin: 0 0 60px;
}

.feature-single h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #084;
  margin-bottom: 5px
}

.feature-single i {
  display: inline-block;
  font-size: 30px;
  margin: 0 0 15px;
  color: #084;
  padding: 20px;
  border-radius: 50%;
  -webkit-box-shadow: 0 4px 15px 0 #ccc;
  box-shadow: 0 4px 15px 0 #ccc;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #fff
}

.feature-single:hover i {
  color: #fff;
  background-color: #084
}

/*-------------------------------------------------------------------------------------
    Video Area
---------------------------------------------------------------------------------------*/

#video-area {
  position: relative;
  background-image: url(../images/video-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 100px 0 100px
}

.video-overlay {
  /*background-color: rgba(34, 115, 248, 0.8);*/
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%
}

.video-content h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 42px;
  line-height: 44px;
  margin: 0 0 10px;
  color: #fff;
}

.video-content p {
  color: #ddd;
  margin: 0 0 50px;
}

.video-content {
  position: relative
}

.video-player a {

}

.video-player a:hover {
  color: #fff;
  border: all;
  background-color: #0a5;
}

.pulse1 {
  position: absolute;
  width: 100px;
  height: 100px;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  opacity: 0;
  border: 3px solid rgba(255, 255, 255, .1);
  -webkit-animation: pulsejg1 1.3s linear infinite;
  animation: pulsejg1 1.3s linear infinite;
  border-radius: 999px;
  -webkit-box-shadow: inset 0px 0px 15px 10px rgba(0, 0, 0, .6);
  box-shadow: inset 0px 0px 15px 10px rgba(0, 0, 0, .6);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.pulse2 {
  position: absolute;
  width: 100px;
  height: 100px;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  opacity: 0;
  border: 1px solid rgba(255, 255, 255, 0);
  -webkit-animation: pulsejg2 0.9s linear infinite;
  animation: pulsejg2 0.9s linear infinite;
  border-radius: 999px;
  -webkit-box-shadow: inset 0px 0px 12px 5px rgba(255, 255, 255, .8);
  box-shadow: inset 0px 0px 12px 5px rgba(255, 255, 255, .8);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@-webkit-keyframes pulsejg1 {
  0% {
    -webkit-transform: scale(.6);
    opacity: 0;
  }

  50% {
    -webkit-transform: scale(.6);
    opacity: 0;
  }

  60% {
    -webkit-transform: scale(.9);
    opacity: .2;
  }

  70% {
    -webkit-transform: scale(1.1);
    opacity: .35;
  }

  80% {
    -webkit-transform: scale(1.25);
    opacity: .2;
  }

  100% {
    -webkit-transform: scale(1.4);
    opacity: 0;
  }
}

@keyframes pulsejg1 {
  0% {
    -webkit-transform: scale(.6);
    transform: scale(.6);
    opacity: 0;
  }

  50% {
    -webkit-transform: scale(.6);
    transform: scale(.6);
    opacity: 0;
  }

  60% {
    -webkit-transform: scale(.9);
    transform: scale(.9);
    opacity: .1;
  }

  70% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: .25;
  }

  80% {
    -webkit-transform: scale(1.25);
    transform: scale(1.25);
    opacity: .1;
  }

  100% {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
    opacity: 0;
  }
}

@-webkit-keyframes pulsejg2 {
  0% {
    -webkit-transform: scale(.6);
    opacity: 0;
  }

  40% {
    -webkit-transform: scale(.8);
    opacity: .05;
  }

  50% {
    -webkit-transform: scale(1);
    opacity: .1;
  }

  60% {
    -webkit-transform: scale(1.1);
    opacity: .3;
  }

  80% {
    -webkit-transform: scale(1.2);
    opacity: .1;
  }

  100% {
    -webkit-transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes pulsejg2 {
  0% {
    -webkit-transform: scale(.6);
    transform: scale(.6);
    opacity: 0;
  }

  40% {
    -webkit-transform: scale(.8);
    transform: scale(.8);
    opacity: .05;
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: .1;
  }

  60% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: .3;
  }

  80% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: .1;
  }

  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

/*-------------------------------------------------------------------------------------
    Core Feature Area
---------------------------------------------------------------------------------------*/

#core-feature-area {
  padding: 90px 0 70px;
}

.core-feat-content {
  padding-top: 20px;
}

.core-feat-single {
  background-color: #fff;
  padding: 20px 20px 8px;
  border-radius: 10px;
  border: 1px solid #eff0f1;
  margin: 0 0 30px;
  -webkit-box-shadow: 0 5px 15px #e6f0fa;
  box-shadow: 0 5px 15px #e6f0fa
}

.core-feat-single i {
  color: #2273f8;
  font-size: 20px;
  display: inline-block;
}

.core-feat-single h4 {
  font-weight: 600;
  margin-bottom: 5px
}

.core-feat-img {
  background-image: url(../images/circle.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: center;
}

.core-feat-img img {
  max-width: 300px;
}

/*-------------------------------------------------------------------------------------
    Why Choose Area
---------------------------------------------------------------------------------------*/

#why-choose-area {
  padding: 90px 0 30px;
  background-color: #fafafa;
}

.why-choose-img img {
  max-width: 300px
}

.why-choose-single {
  margin: 0 0 30px;
  overflow: hidden
}

.why-choose-single .icon {
  width: 20%;
  float: left;
}

.why-choose-single .content {
  width: 80%;
  float: left;
}

.icofont-play {
  font-size: 50px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  color: #2b8b3e;
  border-radius: 50%;
  display: inline-block;
  background-color: rgba(255,255,255,0.7);
  width: 80px;
  height: 80px;
  line-height: 80px;
  position: relative;
  z-index: 2;
  padding: 0 21px;
}

.why-choose-single i {
  display: inline-block;
  font-size: 30px;
  width: 80px;
  height: 80px;
  border: 2px dashed #2273f8;
  border-radius: 50%;
  line-height: 80px;
  padding: 0 24px;
  color: #2273f8;
  margin: 15px 0 0;
}

.why-choose-single h4 {
  font-weight: 600;
  margin-bottom: 5px
}

/*-------------------------------------------------------------------------------------
   Newsletter Area
---------------------------------------------------------------------------------------*/

#newsletter-area {
  padding: 100px 0;
  background-image: url(../images/newsletter-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative
}

.newsletter-overlay {
  background-color: rgba(34, 115, 248, 0.8);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.newsletter-box {
  padding: 40px;
  border-radius: 10px;
  background-color: #fff;
  position: relative
}

.newsletter-box h2 {
  font-weight: 800;
  margin: 0 0 5px
}

.newsletter-box p {
  margin: 0
}

.newsletter-form {
  position: relative;
  margin: 14px 0 0
}

.newsletter-form input {
  border-radius: 30px;
  height: 50px;
  padding-left: 30px;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(52, 69, 199, 0.4);
  box-shadow: 0px 0px 15px 0px rgba(52, 69, 199, 0.4);
  font-size: 14px
}

.newsletter-form button {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  padding: 0 40px;
  border-radius: 30px;
  border: 0;
  background-color: #2273f8;
  color: #fff;
  outline: 0;
  cursor: pointer
}

.newsletter-form button:hover {
  background-color: #0857d8;
}

/*-------------------------------------------------------------------------------------
    Product Area
---------------------------------------------------------------------------------------*/

#product-area {
  padding: 90px 0 100px;
}

.product-single {
  border: 1px solid #eff0f1;
  padding: 35px 20px 45px;
  border-radius: 10px;
  background-color: #fafafa
}

.product-single img {
  max-width: 200px;
}

.product-single h4 {
  font-weight: 800;
  color: #2273f8;
  margin: 0 0 20px;
}

.product-single h2 {
  font-weight: 700;
  margin: 10px 0 20px;
  font-size: 30px
}

.product-single a {
  display: inline-block;
  padding: 8px 16px;
  color: #fff;
  background-color: #2273f8;
  font-weight: 600;
  border-radius: 30px;
}

.product-single a:hover {
  background-color: #0857d8;
}

/*-------------------------------------------------------------------------------------
    Testimonial Area
---------------------------------------------------------------------------------------*/

#testimonial-area {
  padding: 90px 0 135px;
  background-image: url(../images/banner-1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#testimonial-area .section-heading h2 {
  color: #fff
}

.client-info img {
  max-width: 80px;
  border-radius: 50%;
  margin: 0 auto 10px;
}

.client-info h4 {
  color: #fff;
  font-weight: 600;
  margin: 0
}

#testimonial-area .section-heading p,
.client-info p {
  color: #ddd;
}

.client-comment p {
  color: #fff;
  font-style: italic
}

.client-comment i {
  color: #f39c12
}

.testimonial-carousel .owl-dots {
  position: absolute;
  left: 0;
  bottom: -40px;
  width: 100%;
  text-align: center
}

.testimonial-carousel .owl-dot {
  display: inline-block;
  width: 15px;
  height: 6px;
  margin: 0 4px;
  background-color: #fff;
  border-radius: 2px;
  margin: 0 4px;
  border: 0;
  outline: 0
}

.testimonial-carousel .owl-dot.active {
  width: 25px;
}

/*-------------------------------------------------------------------------------------
    FAQ Area
---------------------------------------------------------------------------------------*/

#faq-area {
  padding: 90px 0 72px
}

#accordion .card {
  margin: 0 0 20px;
  border: 0;
  border-radius: 10px;
}

#accordion .card-header {
  border-radius: 10px;
  border: 0;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(52, 69, 199, 0.4);
  box-shadow: 0px 0px 15px 0px rgba(52, 69, 199, 0.4);
  background-color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative
}

#accordion .card-header.active a,
#accordion .card-header:hover a,
#accordion .card-header:hover:after {
  color: #fff;
}

#accordion .card,
#accordion .card-header.active,
#accordion .card-header:hover {
  background-color: #2273f8;
}

#accordion .card-header a:after {
  content: "\eab2";
  font-family: "IcoFont";
  position: absolute;
  right: 12px;
  top: 12px;
  font-size: 20px
}

#accordion .card-header.active a:after {
  content: "\eab9";
  color: #fff
}

#accordion .card-header a {
  font-weight: 600;
  font-size: 18px;
  display: block
}

#accordion .collapse.show,
#accordion .card-body {
  background-color: #2273f8;
  color: #fff;
  border-radius: 0 0 10px 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 14px;
  line-height: 24px
}

.faq-img img {
  max-width: 300px;
  margin-top: 10px
}

/*-------------------------------------------------------------------------------------
   Contact Area
---------------------------------------------------------------------------------------*/

#contact-area {
  padding: 140px 0 85px;
  background-image: url(../images/map.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #fafafa
}

.contact-info {
  padding: 0 0 0 15%;
}

.contact-info-single {
  margin: 0 0 30px;
  overflow: hidden
}

.contact-info-single .icon {
  width: 25%;
  float: left;
  margin-right: 10px;
  text-align: center
}

.contact-info-single .content {
  width: 70%;
  float: left;
}

.contact-info-single i {
  font-size: 30px;
  color: #2273f8;
  border: 1.2px solid #2273f8;
  border-radius: 4px;
  width: 55px;
  height: 55px;
  display: inline-block;
  line-height: 55px
}

.contact-info-single p {
  font-size: 15px;
  color: #555
}

.contact-form input {
  height: 50px;
  border: 1px solid #e6f0fa;
  font-size: 14px
}

.contact-form textarea {
  border: 1px solid #e6f0fa;
  padding-top: 12px;
  font-size: 14px

}

.contact-form button {
  background-color: #084;
  border: 0;
  color: #fff;
  padding: 10px 80px;
  border-radius: 30px;
  outline: 0;
  cursor: pointer;

}

.contact-form button:hover {
  background-color: #0a5;
}

.help-block.with-errors li {
  color: #f00;
  margin: 4px 0 0;
}

.messages {
  margin: 15px 0 0
}

.messages button {
  color: #000;
  padding: 0;
  background-color: transparent
}

.messages button:hover {
  background-color: transparent
}

/*-------------------------------------------------------------------------------------
   Footer
---------------------------------------------------------------------------------------*/

#footer {
  padding: 65px 0 0;
  background-color: #1c1c1c;
  overflow: hidden
}

#footer h4 {
  color: #fff;
  font-weight: 700;
  margin: 0 0 15px
}

.footer-social-icons ul li {
  display: inline-block;
}

.footer-social-icons ul li a {
  display: block;
  background-color: #084;
  color: #fff;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 16px;
  line-height: 45px;
  margin: 0 2px
}

.footer-social-icons ul li a:hover {
  background-color: #fff;
  color: #084;
}

#footer p {
  color: #fff;
  padding: 30px 0 50px;
  text-align: center;
}

#footer p a {
  color: #2273f8
}

#footer p a:hover {
  color: #0857d8
}

/* Undo width of inline form controls */
.form-inline .form-control {
  width: 100%;
}

.contact-button {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0px;
  text-transform: uppercase;
  background-color: #084;
  color: #fff;
  padding: 12px 50px;
  border-radius: 30px;
  display: inline-block;
  margin: 40px 0 0;
}

a.contact-button:hover {
 color: #fff;
}

.contact-button-r {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0px;
  text-transform: uppercase;
  background-color: #fff;
  color: #084;
  padding: 12px 50px;
  border-radius: 30px;
  display: inline-block;
  margin: 40px 0 0;
}

a.contact-button-r:hover {
  color: #084;
}

.white-popup {
  position: relative;
  background: #FFF;
  padding: 20px;
  width:auto;
  max-width: 500px;
  margin: 20px auto;
}
