/* @import url("https://fonts.googleapis.com/css?family=Nunito+Sans:400,600,700&display=swap"); */

@font-face {
  font-family: "nunitoblack";
  src: url("../fonts/nunito/nunito-black-webfont.woff2") format("woff2"),
    url("../fonts/nunito/nunito-black-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "nunitobold";
  src: url("../fonts/nunito/nunito-bold-webfont.woff2") format("woff2"),
    url("../fonts/nunito/nunito-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "nunitoextrabold";
  src: url("../fonts/nunito/nunito-extrabold-webfont.woff2") format("woff2"),
    url("../fonts/nunito/nunito-extrabold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "nunitoextrabold_italic";
  src: url("../fonts/nunito/nunito-extrabolditalic-webfont.woff2")
      format("woff2"),
    url("../fonts/nunito/nunito-extrabolditalic-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "nunitoextralight";
  src: url("../fonts/nunito/nunito-extralight-webfont.woff2") format("woff2"),
    url("../fonts/nunito/nunito-extralight-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "nunitoextralight_italic";
  src: url("../fonts/nunito/nunito-extralightitalic-webfont.woff2")
      format("woff2"),
    url("../fonts/nunito/nunito-extralightitalic-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "nunitoitalic";
  src: url("../fonts/nunito/nunito-italic-webfont.woff2") format("woff2"),
    url("../fonts/nunito/nunito-italic-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "nunitolight";
  src: url("../fonts/nunito/nunito-light-webfont.woff2") format("woff2"),
    url("../fonts/nunito/nunito-light-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "nunitoregular";
  src: url("../fonts/nunito/nunito-regular-webfont.woff2") format("woff2"),
    url("../fonts/nunito/nunito-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

html,
body {
  /* width: 100%;
    height: 100%; */
  margin: 0;
  padding: 0;
}

body {
  font-family: "nunitoregular", sans-serif;
  font-weight: 400;
  color: #130f40;
  position: relative;
  overflow-x: hidden;
  font-size: 14px;
  line-height: 1.42857143;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a,
a:visited,
a:focus,
a:active,
a:hover {
  text-decoration: none;
  outline: none;
}

a,
button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

button {
  cursor: pointer;
}

button:focus {
  outline: 0;
}

a {
  color: #2c3e50;
}

h1 {
  font-size: 58px;
  line-height: 68px;
}

h2 {
  font-size: 36px;
  line-height: 46px;
}

h3 {
  font-size: 24px;
  line-height: 34px;
}

h4 {
  font-size: 22px;
  line-height: 32px;
}

h5 {
  font-size: 18px;
  line-height: 28px;
}

h6 {
  font-size: 16px;
  line-height: 26px;
}

p {
  font-size: 16px;
  line-height: 26px;
  color: #444;
}

.d-table {
  width: 100%;
  height: 100%;
}

.bg-gray {
  background-color: #f6f6f6;
}

.bg-base {
  background-color: #3b04db !important;
}

/*-------------------------------------------------------------------------------------
    site preloader
---------------------------------------------------------------------------------------*/

.preloader {
  background-color: #eee;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999999;
}

.preloader .spinner {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  background-color: #3b04db;
  border-radius: 100%;
  -webkit-animation: sk-scaleout 1s infinite ease-in-out;
  animation: sk-scaleout 1s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
  }

  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}

@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

/*-------------------------------------------------------------------------------------
    header area
---------------------------------------------------------------------------------------*/

.topbar .container {
  display: flex;
  justify-content: space-between;
  margin: 18px auto;
}
.search-bar {
  margin-top: 5px;
}
.search-bar input {
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  font-size: 13px;
}

.navbar {
  background: #f6f6f6;
}

.navbar-nav .nav-link {
  color: #333;
  font-family: "nunitobold";
  font-weight: 600;
  font-size: 16px;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #1140e5;
}

.navbar-nav .nav-item {
  padding: 0 10px;
}

#header.sticky {
  position: fixed;
  z-index: 999;
  background-color: #fff;
  padding: 16px 0;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

#header.sticky .nav-link {
  color: #130f40;
}

#header.sticky .nav-link:hover,
#header.sticky .navbar-nav .nav-link.active {
  color: #3b04db;
}

/*-------------------------------------------------------------------------------------
    hero area
---------------------------------------------------------------------------------------*/

#hero-area {
  padding: 60px 0;
}

#hero-area.default {
  padding: 200px 0 330px;
}

.caption h1 {
  font-weight: 800;
  margin: 0 0 25px;
}

.caption h3 {
  color: #333;
  font-weight: 700;
}

.hero-btn {
  margin: 50px 0 0;
}

.hero-btn a {
  display: inline-block;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 30px;
  padding: 14px 40px;
  margin: 0 10px 0 0;
  font-weight: 600;
}

.hero-btn a:hover {
  background-color: #fff;
  color: #3b04db;
}

.home-news-form {
  position: relative;
  width: 60%;
  margin: 70px auto 0;
}

.home-news-form input {
  height: 60px;
  border: 0;
  padding-left: 25px;
  font-weight: 600;
  margin: 0 auto;
}

.home-news-form button {
  background-color: #1140e5;
  border: 0;
  position: absolute;
  right: 6px;
  top: 6px;
  color: #fff;
  font-weight: 600;
  padding: 14px 20px;
  border-radius: 4px;
}

.home-news-form button:hover {
  background-color: #fc262f;
}

.hero-newsletter .caption p {
  padding: 0 15%;
}

.slide-single .caption-img img {
  max-width: 400px;
}

.slider.owl-carousel .owl-nav > div {
  width: 70px;
  height: 70px;
  line-height: 70px;
  font-size: 40px;
  background-color: rgba(255, 255, 255, 0.5);
  text-align: center;
  border-radius: 50%;
  color: #30336b;
  position: absolute;
  left: 20px;
  top: 45%;
  -webkit-transform: translateY(-45%);
  transform: translateY(-45%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding: 0 5px 0 0;
}

.slider.owl-carousel .owl-nav .owl-next {
  right: 20px;
  left: auto;
  padding: 0 0 0 5px;
}

/* .slider.owl-carousel .owl-nav > div:hover {
    background-color: #1140E5;
    color: #fff;
} */

/*-------------------------------------------------------------------------------------
    heading area
---------------------------------------------------------------------------------------*/

.heading {
  margin: 0 0 60px;
}

.heading h2 {
  font-weight: 800;
  margin-bottom: 20px;
}

.heading h5 {
  font-weight: 600;
  color: #3b04db;
}

/*-------------------------------------------------------------------------------------
    about area
---------------------------------------------------------------------------------------*/

#about-area {
  padding: 100px 0;
}

.about-cont {
  padding-right: 50px;
}

.about-cont.two {
  padding: 0 0 0 40px;
}

.about-cont h5 {
  color: #3b04db;
  font-weight: 600;
}

.about-cont h2 {
  font-weight: 800;
  margin-bottom: 25px;
}

.about-cont ul {
  margin: 24px 0 0;
}

.about-cont li {
  display: block;
  padding: 6px 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
}

.about-cont li i {
  color: #2ecc71;
}

.about-cont a {
  display: inline-block;
  color: #fff;
  padding: 16px 30px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  margin: 45px 0 0;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  background-color: #2e1278;
}

.about-cont a:hover {
  background-color: #3b04db;
  color: #fff;
}

.about-img {
  border-radius: 10px;
  overflow: hidden;
}

/*-------------------------------------------------------------------------------------
    core features area
---------------------------------------------------------------------------------------*/

#core-feat-area {
  padding: 90px 0 70px;
}

.core-feat-single {
  border: 1px solid #e6f0fa;
  padding: 35px 22px 20px;
  background-color: #fff;
  border-radius: 10px;
  margin: 0 0 30px;
}

.core-feat-single img {
  margin: 0 0 25px;
  max-width: 55px;
}

.core-feat-single h4 {
  font-weight: 700;
  margin: 12px 0;
  font-size: 18px;
}
.core-feat-single p {
  font-size: 14px;
}

.core-feat-single i {
  display: inline-block;
  font-size: 50px;
  color: #3b04db;
  /* margin: 0 0 15px; */
}

.core-feat-single.two {
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  border: 0;
}

.core-feat-single.two i {
  color: #1140e5;
}

.core-feat-single.three {
  padding: 65px 22px 45px;
  border-radius: 120px;
  background-color: #f6f6f6;
}

.core-feat-single.two {
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

/*-------------------------------------------------------------------------------------
    info area
---------------------------------------------------------------------------------------*/

#info-area {
  padding: 100px 0 80px;
}

.info-single span {
  font-size: 16px;
  font-weight: 700;
  width: 35px;
  height: 35px;
  background-color: #1140e5;
  color: #fff;
  border-radius: 4px;
  display: inline-block;
  text-align: center;
  line-height: 35px;
  margin: 0 0 20px;
}

.info-single h4 {
  font-weight: 800;
  margin-bottom: 16px;
}

/*-------------------------------------------------------------------------------------
    video area
---------------------------------------------------------------------------------------*/

#video-area {
  padding: 90px 0 100px;
  position: relative;
}

.video-cont {
  padding-left: 50px;
}

.video-cont h5 {
  color: #3b04db;
  font-weight: 600;
}

.video-cont h2 {
  font-weight: 800;
  margin: 0 0 20px;
}

.video-cont > a {
  color: #fff;
  padding: 16px 30px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  margin: 45px 0 0;
  display: inline-block;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  background-color: #2e1278;
}

.video-cont > a:hover {
  color: #fff;
  background-color: #3b04db;
}

.video-cont.two {
  border: 2px solid #e6f0fa;
  padding: 50px 50px 70px;
  background-color: #fff;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 10px;
  margin-left: -100px;
}

.video-cont h3 {
  font-weight: 700;
  margin: 0 0 20px;
}

.video-player-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background-image: url(../images/watch-img-2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.video-player a {
  display: inline-block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  font-size: 30px;
  line-height: 80px;
  padding: 0 28px;
  background-color: #1140e5;
  color: #fff;
  position: relative;
}

.video-player a:hover {
  background-color: #1140e5;
  color: #fff;
}

.video-player a:after {
  content: "";
  position: absolute;
  left: -5px;
  top: -5px;
  height: 90px;
  width: 90px;
  border: 3px solid #1140e5;
  border-radius: 50%;
  -webkit-animation: icon-bubble 1s infinite forwards linear;
  animation: icon-bubble 1s infinite forwards linear;
}

.video-player a:before {
  content: "";
  position: absolute;
  left: -5px;
  top: -5px;
  height: 90px;
  width: 90px;
  border: 3px solid #1140e5;
  border-radius: 50%;
  -webkit-animation: icon-bubble 1s infinite forwards linear 0.5s;
  animation: icon-bubble 1s infinite forwards linear 0.5s;
}

.video-img {
  border-radius: 10px;
  overflow: hidden;
}

.video-player-wrap-two {
  background-image: url(../images/watch-img-2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 500px;
  border-radius: 10px;
}

.video-cont.two .video-player {
  margin: 50px 0 0;
}

@-webkit-keyframes icon-bubble {
  0% {
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
    opacity: 1;
  }

  25% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0.8;
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0.55;
  }

  75% {
    -webkit-transform: scale(1.32);
    transform: scale(1.32);
    opacity: 0.3;
  }

  100% {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
    opacity: 0;
  }
}

@-webkit-keyframes icon-bubble {
  0% {
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
    opacity: 1;
  }

  25% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0.8;
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0.55;
  }

  75% {
    -webkit-transform: scale(1.32);
    transform: scale(1.32);
    opacity: 0.3;
  }

  100% {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
    opacity: 0;
  }
}

@keyframes icon-bubble {
  0% {
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
    opacity: 1;
  }

  25% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0.8;
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0.55;
  }

  75% {
    -webkit-transform: scale(1.32);
    transform: scale(1.32);
    opacity: 0.3;
  }

  100% {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
    opacity: 0;
  }
}

/*-------------------------------------------------------------------------------------
    product area
---------------------------------------------------------------------------------------*/

#product-area {
  padding: 90px 0 40px;
}

.prod-single {
  margin: 0 0 60px;
  position: relative;
}

.prod-info {
  position: absolute;
  left: 0;
  right: 0;
  width: 80%;
  margin: 0 auto;
  background-color: #fff;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  bottom: -100px;
  padding: 25px 20px 30px;
}

.prod-single h4 {
  font-weight: 700;
  margin-top: 15px;
}

.prod-info h5 {
  color: #1140e5;
}

.prod-info a {
  display: inline-block;
  font-weight: 700;
  text-decoration: underline;
  margin: 10px 0 0;
}

.prod-info a:hover {
  color: #3b04db;
}

/*-------------------------------------------------------------------------------------
    testimonial area
---------------------------------------------------------------------------------------*/

#testi-area {
  padding: 90px 0 180px;
}

.testi-single {
  background-color: #fff;
  padding: 45px 30px 30px;
  border-radius: 10px;
}

/* .testi-single img {
    max-width: 80px;
    border-radius: 50%;
    margin: 0 auto 30px;
} */

.testi-single img {
  width: auto !important;
  margin: 0 auto;
}

.client-comnt {
  margin: 0 0 25px;
}

.testi-single h4 {
  font-weight: 700;
  color: #1140e5;
}

.testi-single h5 {
  font-style: italic;
  letter-spacing: 1px;
  line-height: 1.6;
  font-size: 20px;
}

.testi-single span i {
  color: #f39c12;
  margin: 0 2px;
}

.testi-carousel .owl-nav {
  width: 100%;
  margin: 0 auto;
  position: absolute;
  top: 40%;
}

.testi-carousel .owl-nav > div {
  position: absolute;
  left: 0;
  right: auto;
  /* bottom: -80px; */
  /* background-color: #fff; */
  width: 40px;
  height: 40px;
  line-height: 38px;
  border-radius: 4px;
  text-align: center;
  /* color: #3b04db; */
  font-size: 24px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  /* border: 1px solid #e6f0fa */
}

.testi-carousel .owl-nav .owl-next {
  right: 0;
  left: auto;
}

/* .testi-carousel .owl-nav > div:hover {
    background-color: #3b04db;
    color: #fff;
    border-color: #3b04db
}

.testi-carousel.two .owl-nav > div:hover {
    border-color: #fff
} */

/*-------------------------------------------------------------------------------------
    contact area
---------------------------------------------------------------------------------------*/
/* #contact-area {
    padding: 100px 0;
} */

.contact-form {
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  padding: 50px;
  border-radius: 10px;
  background-color: #fff;
}

.contact-form input,
.contact-form textarea {
  font-size: 14px;
  border-color: #e6f0fa;
}

.contact-form input {
  height: 50px;
}

.contact-form label {
  font-weight: 600;
}

.contact-form h3 {
  text-align: center;
  font-weight: 700;
  margin: 0 0 20px;
}

.contact-info h5 {
  font-weight: 700;
}

.contact-info {
  overflow: hidden;
  margin: 0 0 10px;
}

.contact-form button {
  background-color: #2e1278;
  border: 0;
  padding: 15px 40px;
  border-radius: 4px;
  color: #fff;
}

.contact-form button:hover {
  background-color: #3b04db;
}

.help-block.with-errors li {
  color: #ff0000;
  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 area
---------------------------------------------------------------------------------------*/
footer {
  padding: 20px 0;
  bottom: 0;
  width: 100%;
  border-top: 1px solid #efefef;
  margin-top: 30px;
}
footer p {
  margin: 0;
}

/* footer .container{
    border-top:1px solid #efefef;
    padding-top:30px;
} */

/* .footer-cont h4 {
    font-weight: 700;
    color: #fff;
    margin: 0 0 15px;
}

.footer-cont img {
    margin: 0 0 15px;
}

.footer-cont li {
    display: inline-block;
}

.footer-cont li a {
    display: block;
    color: #fff;
    width: 45px;
    height: 45px;
    background-color: #1140E5;
    line-height: 45px;
    border-radius: 10px;
    font-size: 20px;
    margin: 0 2px;
}

.footer-cont li a:hover {
    background-color: #f4262f;
}

.footer-cont p {
    color: #ddd;
    margin: 30px 0 0
}

.footer-cont p a {
    color: #7c76f4;
    font-weight: 700
} */

.slider.owl-carousel .owl-dots {
  display: flex;
  justify-content: center;
}
.slider.owl-carousel .owl-dot {
  background: #eee;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  margin-left: 10px;
}
.slider.owl-carousel .owl-dot.active {
  background-color: #1140e5;
}

.icon-angle-right {
  background: url(../images/icons/icon-angle-right.svg);
  width: 50px;
  height: 50px;
  display: inline-block;
}
.icon-angle-left {
  background: url(../images/icons/icon-angle-left.svg);
  width: 50px;
  height: 50px;
  display: inline-block;
}

.core-feat-single .circle-box {
  background: #f3f3ff;
  width: 60px;
  height: 60px;
  vertical-align: middle;
  display: inline-block;
  border-radius: 100%;
}
.core-feat-single .icon-highlights {
  width: 24px;
  height: 24px;
  display: inline-block;
  margin-top: 20px;
}
.icon-axis {
  background: url(../images/icons/icon-axis.svg);
}
.icon-benefits {
  background: url(../images/icons/icon-benefits.svg);
}
.icon-comfort {
  background: url(../images/icons/icon-comfort.svg);
}
.icon-graph {
  background: url(../images/icons/icon-graph.svg);
}
.icon-operations {
  background: url(../images/icons/icon-operations.svg);
}
.icon-consult {
  background: url(../images/icons/icon-consult.svg);
}

.testi-carousel {
  position: relative;
}
.testi-carousel .icon-angle-right {
  background: url(../images/icons/icon-angle-right.svg);
  width: 50px;
  height: 50px;
  display: inline-block;
  position: absolute;
}
.testi-carousel .icon-angle-left {
  background: url(../images/icons/icon-angle-left.svg);
  width: 50px;
  height: 50px;
  display: inline-block;
}

.page-title {
  margin: 20px 0;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}

.contact-us #map {
  height: 700px;
  width: 100%;
}
.contact .error {
  border: 1px solid red;
}
.success-msg {
  background: #fff;
  border: 1px solid #abd0a8;
  color: #589051;
  margin-bottom: 30px;
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 11px 16px;
  border-radius: 4px;
  display: none;
}
.success-msg i {
  padding: 10px;
  border-radius: 50%;
  border: 1px solid #abd0a8;
  margin-right: 10px;
}
.contact-form {
  margin-top: 30px;
}
.contact-form li {
  text-align: left;
  margin-bottom: 10px;
}
.contact-form li input {
  display: inline-block;
  width: 100%;
  font-size: 13px;
  padding: 0 10px;
  height: 40px;
}

.contact-form li .form-control {
  border: none;
  box-shadow: none;
  border-radius: 0px;
  border: 1px solid #e8e8e8;
  background: #fff;
}
.contact-form li textarea {
  height: 208px !important;
  font-size: 13px;
}

.contact-form .tittle {
  text-align: center;
}
.contact-form .tittle hr {
  width: 28px;
  height: 5px;
  margin: 15px auto;
  background: #448aff;
  border: none;
}
.contact-form .tittle p {
  text-transform: none;
  font-size: 16px;
}
.contact-form label {
  font-weight: normal;
  color: #444444;
  font-size: 12px;
  text-transform: uppercase;
  display: inline-block;
  width: 100%;
  margin: 0px;
  margin-top: 0px;
  line-height: 26px;
}
.contact-form textarea {
  display: inline-block;
  width: 100%;
  position: relative;
  padding: 10px 20px;
}
.contact-info {
  padding-top: 50px;
}
.contact-info li {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #efefef;
}
.contact-info li h4 {
  margin: 5px 0;
}
.contact-info li i {
  font-size: 30px;
  color: #ff6c3a;
  margin-right: 10px;
  vertical-align: bottom;
}
.contact-info li p {
  margin: 0px;
}

.btn-action {
  background: #5858ef;
  color: #fff;
}
