
/*  ----------------------------------------------------
1. GENERAL
-------------------------------------------------------- */
/* ----------------IMPORT GOOGLE FONTS ------------------- */
@import url("https://fonts.googleapis.com/css?family=Roboto:300i,400,500,900,900i");
/* ----------------Text Fonts ------------------- */
body {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  color: #858585;
  font-style: normal;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #000000;
  line-height: 1.3;
}

h1, .h1 {
  font-size: 34px;
  margin-bottom: 15px;
}

h2, .h2 {
  font-size: 30px;
  margin-bottom: 15px;
}

h3, .h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

h4, .h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

h5, .h5 {
  font-size: 16px;
  margin-bottom: 10px;
}

h6, .h6 {
  font-size: 13px;
  margin-bottom: 5px;
}

p {
  font-size: 13px;
  font-family: "Roboto", sans-serif;
  margin: 0 0 15px;
  line-height: 2.1;
  color: #858585;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
  color: #333333;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

blockquote {
  padding: 75px 25px 25px;
  font-size: 20px;
  text-align: center;
  margin: 25px 50px;
}
blockquote:before {
  content: open-quote;
  display: block;
  font-size: 134px;
  font-family: Georgia, Verdana, Roboto, serif;
  line-height: 0.2;
  padding: 0;
  opacity: 0.2;
  font-weight: 600;
  margin: 0;
}
blockquote p {
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 400;
  font-style: italic;
}

.text-muted {
  color: #868e96 !important;
  font-size: 14px;
  line-height: 2.1;
}

strong {
  font-weight: 700;
}

.text-xs {
  font-size: 11px;
}

.text-xl {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 1px;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.title_divider {
  display: inline-block;
  width: 50px;
  position: relative;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 15px;
}
.title_divider:before {
  height: 2px;
  width: 30px;
  content: "";
  background-color: #333333;
  position: absolute;
  left: 5px;
  top: 0;
}
.title_divider:after {
  height: 2px;
  width: 30px;
  bottom: 0;
  top: 5px;
  right: 5px;
  content: "";
  background-color: #007bff;
  position: absolute;
}

.title_divider_light {
  display: inline-block;
  width: 50px;
  position: relative;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 15px;
}
.title_divider_light:before {
  height: 2px;
  width: 30px;
  content: "";
  background-color: #ffffff;
  position: absolute;
  left: 5px;
  top: 0;
}
.title_divider_light:after {
  height: 2px;
  width: 30px;
  bottom: 0;
  top: 5px;
  right: 5px;
  content: "";
  background-color: #d73827;
  position: absolute;
}

@media (max-width: 768px) {
  h1, .h1 {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 15px;
    font-weight: 700;
  }

  h2, .h2 {
    font-size: 24px;
    line-height: 40px;
    margin-bottom: 15px;
  }

  h3, .h3 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 15px;
  }

  h4, .h4 {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 10px;
  }

  h5, .h5 {
    font-size: 14px;
    line-height: 25px;
    margin-bottom: 10px;
  }

  h6, .h6 {
    font-size: 12px;
    line-height: 25px;
    margin-bottom: 5px;
  }

  .hide-md {
    display: none !important;
  }
}
/* ----------------forms------------------- */
.form-control {
  font-size: 13px;
  padding: 12px 15px;
  height: 50px;
  border-radius: 4px;
  border: solid 1px #f7f7f7;
  margin-bottom: 25px;
  outline: 0;
}

textarea {
  min-height: 200px;
}

.input-group .form-control {
  height: 46px;
  border: solid 1px #f9f9f9;
}

.btn_play {
  color: #ffffff;
  background-color: #000000;
  padding: 20px 30px;
  border-radius: 50px;
  display: inline-block;
  text-align: center;
  border-top-right-radius: 0;
}
.btn_play i {
  font-size: 36px;
  display: block;
  margin: 0 auto;
  text-align: center;
}
.btn_play:hover {
  color: #f7f7f7;
}
.btn_play:focus {
  color: #f7f7f7;
}

/* ----------------lists ------------------- */
li {
  padding: 7px 0;
}

/* ----------------Responsive Align ------------------- */
@media all and (max-width: 767px) {
  .text-center-xs {
    text-align: center;
  }

  .text-left-xs {
    text-align: left;
  }

  .text-right-xs {
    text-align: right;
  }
}
/* ----------------Reset------------------- */
iframe {
  border: 0;
}

img {
  max-width: 100%;
}

.overlay_dark {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  bottom: 0;
  background-color: rgba(31, 31, 32, 0.6);
}

.overlay_light {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  bottom: 0;
  background-color: rgba(247, 247, 247, 0.8);
}

.bg-fixed-img {
  position: relative;
  background-attachment: fixed !important;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat;
}

.bg-img {
  position: relative;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat;
  border-radius: 5px;
}

.pop_btn_big {
  font-size: 99px;
  color: #ffffff;
}

.box-shadow {
  -webkit-box-shadow: 0 0 32px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 32px rgba(0, 0, 0, 0.08);
}

.brand_item {
  text-align: center;
  margin: 0 auto;
}

i {
  line-height: 1 !important;
}

.card_box {
  position: relative;
  overflow: hidden;
}
.card_box .card_box_img {
  background-size: cover;
  background-position: center center;
  min-height: 500px;
}
.card_box .card_box_text {
  padding: 100px 75px;
}

.spacer {
  background-color: rgba(0, 0, 0, 0.35);
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
}

.no_max {
  max-width: 100% !important;
}

.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 10px;
}

.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}

.owl-carousel .owl-dots .owl-dot.active span {
  background-color: #333333;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.owl-carousel .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px;
  background: rgba(51, 51, 51, 0.6);
  display: block;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-backface-visibility: visible;
  border-radius: 30px;
}

.panel_white_shadow {
  background-color: #ffffff;
  text-align: left;
  border-radius: 5px;
  padding: 15px;
  -webkit-box-shadow: 0 0 42px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 42px 0 rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.hr-small-center {
  max-width: 300px;
  margin: 35px auto;
  border-color: rgba(0, 0, 0, 0.2);
}

.loader {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  background-color: #f7f7f7;
  z-index: 999999;
}
.loader .loader-inner {
  position: absolute;
  border: 2px solid #007bff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  left: calc(50% - 20px);
  top: calc(50% - 20px);
  border-right: 0;
  border-top-color: transparent;
  -webkit-animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
  animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}

@-webkit-keyframes loader-outter {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loader-outter {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes loader-inner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
@keyframes loader-inner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
/* ----------------colors------------------- */
.color-gray {
  color: #f9f9f9 !important;
}

.color-dark-gray {
  color: #858585 !important;
}

.color-dark {
  color: #333333 !important;
}

.color-black {
  color: #000000 !important;
}

.color-light {
  color: #ffffff !important;
}

.color-green {
  color: #6cc47f !important;
}

.color-blue {
  color: #007bff !important;
}

.color-red {
  color: #f97794 !important;
}

.color-orange {
  color: #f79257 !important;
}

.color-yellow {
  color: #ffbf00 !important;
}

.color-purple {
  color: #926cc4 !important;
}

.bg-grad-purple {
  background: #8C66CA;
  background: linear-gradient(135deg, #E25574 0%, #8C66CA 100%);
}

.bg-macaroni {
  background: -webkit-gradient(linear, left top, right top, from(#ff5f6d), to(#ffc371));
  background: linear-gradient(90deg, #ff5f6d 0%, #ffc371 100%);
}

.bg-light {
  background-color: #ffffff !important;
}

.bg-gray {
  background-color: #f9f9f9 !important;
}

.bg-black {
  background-color: #000000 !important;
}

.bg-blue {
  background-color: #007bff !important;
}

.bg-purple {
  background-color: #926cc4 !important;
}

/* --------------PADDING STYLE-------------- */
.p0 {
  padding: 0 !important;
}

.p5 {
  padding: 5px !important;
}

.p10 {
  padding: 10px !important;
}

.p15 {
  padding: 15px !important;
}

.p20 {
  padding: 20px !important;
}

.p25 {
  padding: 25px !important;
}

.p30 {
  padding: 30px !important;
}

.p35 {
  padding: 35px !important;
}

.p40 {
  padding: 40px !important;
}

.p45 {
  padding: 45px !important;
}

.p50 {
  padding: 50px !important;
}

.p55 {
  padding: 55px !important;
}

.p60 {
  padding: 60px !important;
}

.p65 {
  padding: 65px !important;
}

.p70 {
  padding: 70px !important;
}

.p75 {
  padding: 75px !important;
}

.p80 {
  padding: 80px !important;
}

.p85 {
  padding: 85px !important;
}

.p90 {
  padding: 90px !important;
}

.p95 {
  padding: 95px !important;
}

.p100 {
  padding: 100px !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pt85 {
  padding-top: 85px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pt95 {
  padding-top: 95px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.pt120 {
  padding-top: 120px !important;
}

.pt200 {
  padding-top: 200px !important;
}

.pr0 {
  padding-right: 0 !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pr65 {
  padding-right: 65px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.pr75 {
  padding-right: 75px !important;
}

.pr80 {
  padding-right: 80px !important;
}

.pr85 {
  padding-right: 85px !important;
}

.pr90 {
  padding-right: 90px !important;
}

.pr95 {
  padding-right: 95px !important;
}

.pr100 {
  padding-right: 100px !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pb65 {
  padding-bottom: 65px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pb85 {
  padding-bottom: 85px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pb95 {
  padding-bottom: 95px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.pb120 {
  padding-bottom: 120px !important;
}

.pb200 {
  padding-bottom: 200px !important;
}

.pl0 {
  padding-left: 0;
}

.pl5 {
  padding-left: 5px;
}

.pl10 {
  padding-left: 10px;
}

.pl15 {
  padding-left: 15px;
}

.pl20 {
  padding-left: 20px;
}

.pl25 {
  padding-left: 25px;
}

.pl30 {
  padding-left: 30px;
}

.pl35 {
  padding-left: 35px;
}

.pl40 {
  padding-left: 40px;
}

.pl45 {
  padding-left: 45px;
}

.pl50 {
  padding-left: 50px;
}

.pl55 {
  padding-left: 55px;
}

.pl60 {
  padding-left: 60px;
}

.pl65 {
  padding-left: 65px;
}

.pl70 {
  padding-left: 70px;
}

.pl75 {
  padding-left: 75px;
}

.pl80 {
  padding-left: 80px;
}

.pl85 {
  padding-left: 85px;
}

.pl90 {
  padding-left: 90px;
}

.pl95 {
  padding-left: 95px;
}

.pl100 {
  padding-left: 100px;
}

/*  -----------------MARGIN STYLE----------------------- */
.m0 {
  margin: 0;
}

.m5 {
  margin: 5px;
}

.m10 {
  margin: 10px;
}

.m15 {
  margin: 15px;
}

.m20 {
  margin: 20px;
}

.m25 {
  margin: 25px;
}

.m30 {
  margin: 30px;
}

.m35 {
  margin: 35px;
}

.m40 {
  margin: 40px;
}

.m45 {
  margin: 45px;
}

.m50 {
  margin: 50px;
}

.m55 {
  margin: 55px;
}

.m60 {
  margin: 60px;
}

.m65 {
  margin: 65px;
}

.m70 {
  margin: 70px;
}

.m75 {
  margin: 75px;
}

.m80 {
  margin: 80px;
}

.m85 {
  margin: 85px;
}

.m90 {
  margin: 90px;
}

.m95 {
  margin: 95px;
}

.m100 {
  margin: 100px;
}

.mt0 {
  margin-top: 0 !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mt85 {
  margin-top: 85px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mt95 {
  margin-top: 95px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mt110 {
  margin-top: 110px !important;
}

.mt120 {
  margin-top: 120px !important;
}

.mt-75 {
  margin-top: -75px !important;
}

.mr0 {
  margin-right: 0 !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.mr65 {
  margin-right: 65px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.mr75 {
  margin-right: 75px !important;
}

.mr80 {
  margin-right: 80px !important;
}

.mr85 {
  margin-right: 85px !important;
}

.mr90 {
  margin-right: 90px !important;
}

.mr95 {
  margin-right: 95px !important;
}

.mr100 {
  margin-right: 100px !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb85 {
  margin-bottom: 85px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb95 {
  margin-bottom: 95px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.ml0 {
  margin-left: 0 !important;
}

.ml5 {
  margin-left: 5px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.ml65 {
  margin-left: 65px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.ml75 {
  margin-left: 75px !important;
}

.ml80 {
  margin-left: 80px !important;
}

.ml85 {
  margin-left: 85px !important;
}

.ml90 {
  margin-left: 90px !important;
}

.ml95 {
  margin-left: 95px !important;
}

.ml100 {
  margin-left: 100px !important;
}

/*  --------------MARGIN STYLE MINUS----------------------------- */
.mt-5 {
  margin-top: -5px;
}

.mt-10 {
  margin-top: -10px;
}

.mt-15 {
  margin-top: -15px;
}

.mt-20 {
  margin-top: -20px;
}

.mt-25 {
  margin-top: -25px;
}

.mt-30 {
  margin-top: -30px;
}

.mt-35 {
  margin-top: -35px;
}

.mt-40 {
  margin-top: -40px;
}

.mt-45 {
  margin-top: -45px;
}

.mt-50 {
  margin-top: -50px;
}

.mt-55 {
  margin-top: -55px;
}

.mt-60 {
  margin-top: -60px;
}

.mt-65 {
  margin-top: -65px;
}

.mt-70 {
  margin-top: -70px;
}

.mt-75 {
  margin-top: -75px;
}

.mt-80 {
  margin-top: -80px;
}

.mt-85 {
  margin-top: -85px;
}

.mt-90 {
  margin-top: -90px;
}

.mt-95 {
  margin-top: -95px;
}

.mt-100 {
  margin-top: -100px;
}

.mt-110 {
  margin-top: -110px;
}

.mt-120 {
  margin-top: -120px;
}

.mt-130 {
  margin-top: -130px;
}

.mt-140 {
  margin-top: -140px;
}

.mt-150 {
  margin-top: -150px;
}

.ml-5 {
  margin-left: -5px;
}

.ml-10 {
  margin-left: -10px;
}

.ml-15 {
  margin-left: -15px;
}

.ml-20 {
  margin-left: -20px;
}

.ml-25 {
  margin-left: -25px;
}

.ml-30 {
  margin-left: -30px;
}

.ml-35 {
  margin-left: -35px;
}

.ml-40 {
  margin-left: -40px;
}

.ml-45 {
  margin-left: -45px;
}

.ml-50 {
  margin-left: -50px;
}

.ml-55 {
  margin-left: -55px;
}

.ml-60 {
  margin-left: -60px;
}

.ml-65 {
  margin-left: -65px;
}

.ml-70 {
  margin-left: -70px;
}

.ml-75 {
  margin-left: -75px;
}

.ml-80 {
  margin-left: -80px;
}

.ml-85 {
  margin-left: -85px;
}

.ml-90 {
  margin-left: -90px;
}

.ml-95 {
  margin-left: -95px;
}

.ml-100 {
  margin-left: -100px;
}

.ml-110 {
  margin-left: -110px;
}

.ml-120 {
  margin-left: -120px;
}

.ml-130 {
  margin-left: -130px;
}

.ml-140 {
  margin-left: -140px;
}

.ml-150 {
  margin-left: -150px;
}

.mb-5 {
  margin-bottom: -5px;
}

.mb-10 {
  margin-bottom: -10px;
}

.mb-15 {
  margin-bottom: -15px;
}

.mb-20 {
  margin-bottom: -20px;
}

.mb-25 {
  margin-bottom: -25px;
}

.mb-30 {
  margin-bottom: -30px;
}

.mb-35 {
  margin-bottom: -35px;
}

.mb-40 {
  margin-bottom: -40px;
}

.mb-45 {
  margin-bottom: -45px;
}

.mb-50 {
  margin-bottom: -50px;
}

.mb-55 {
  margin-bottom: -55px;
}

.mb-60 {
  margin-bottom: -60px;
}

.mb-65 {
  margin-bottom: -65px;
}

.mb-70 {
  margin-bottom: -70px;
}

.mb-75 {
  margin-bottom: -75px;
}

.mb-80 {
  margin-bottom: -80px;
}

.mb-85 {
  margin-bottom: -85px;
}

.mb-90 {
  margin-bottom: -90px;
}

.mb-95 {
  margin-bottom: -95px;
}

.mb-100 {
  margin-bottom: -100px;
}

.mb-110 {
  margin-bottom: -110px;
}

.mb-120 {
  margin-bottom: -120px;
}

.mb-130 {
  margin-bottom: -130px;
}

.mb-140 {
  margin-bottom: -140px;
}

.mb-150 {
  margin-bottom: -150px;
}

/*  ----------------------------------------------------
2. HEADER
-------------------------------------------------------- */
header {
  min-height: 50px;
  padding: 0;
  margin: 0;
  margin-top: 20px;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
header .menu {
  position: relative;
}
header .logo {
  padding-top: 0;
  padding-bottom: 0;
  font-weight: 500;
  text-transform: capitalize;
  font-size: 28px;
  color: #ffffff;
}
@media (max-width: 767px){
  header .logo span {font-size: 22px;}
}
header .logo span {
  display: block;
}
header .logo img {
  float: left;
  width: 39px;
  margin-right: 3px;
}
header ul.menu li {
  padding: 0;
}
header ul.menu li a.nav-link {
  padding: 20px 12px !important;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: capitalize;
  display: block;
  color: #ffffff;
}
header ul.menu li a.nav-link:hover {
  color: #007bff;
}
header a.nav-link.active {
  color: #007bff !important;
}
header li ul {
  display: none;
  visibility: hidden;
}
header li ul.multi_col {
  position: absolute;
  list-style: none;
  margin: 0;
  white-space: nowrap;
  background: #333333;
  border-radius: 3px;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  padding: 20px;
  min-width: 250px;
  float: left;
  right: 0;
}
header li ul.multi_col li {
  padding: 0;
  min-width: 200px;
  display: inline-block;
}
header li ul.multi_col li ul {
  display: block;
  visibility: visible;
  list-style: none;
  padding: 0;
  margin: 0;
}
header li ul.multi_col li ul li {
  display: block;
}
header li ul.multi_col li ul li a {
  color: #999999 !important;
  padding: 7px 10px;
  display: block;
  margin-left: 0;
  line-height: 22px;
  word-break: break-all;
}
header li ul.multi_col li ul li a:hover {
  color: #ffffff !important;
  transform: translate3d(2px, 0, 0);
  -webkit-transform: translate3d(2px, 0, 0);
}
header li ul.sub_menu {
  position: absolute;
  background: #333333;
  min-width: 250px;
  padding: 10px;
  border-radius: 3px;
  -webkit-box-shadow: 1px 1px 42px rgba(0, 0, 0, 0.08);
          box-shadow: 1px 1px 42px rgba(0, 0, 0, 0.08);
}
header li ul.sub_menu li {
  display: block;
  padding: 0;
}
header li ul.sub_menu li a {
  color: #999999 !important;
  padding: 7px 10px;
  display: block;
  margin-left: 0;
  line-height: 22px;
  word-break: break-word;
}
header li ul.sub_menu li a:hover {
  color: #ffffff !important;
  transform: translate3d(2px, 0, 0);
  -webkit-transform: translate3d(2px, 0, 0);
}

.navbar {
  padding: 0;
}

header.header-light {
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 0 42px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 42px rgba(0, 0, 0, 0.08);
  margin-top: 0;
}
header.header-light .logo {
  color: #000000;
}
header.header-light ul.menu li a.nav-link {
  color: #000000;
}
header.header-light ul.menu li a.nav-link:hover {
  color: #007bff;
}
header.header-light a.nav-link.active {
  color: #007bff !important;
}

header.sticky_header {
  margin-top: 0;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 0 42px rgba(0, 0, 0, 0.28);
  box-shadow: 0 0 42px rgba(0, 0, 0, 0.28);
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
header.sticky_header .logo {
  color: #000000;
}
header.sticky_header ul.menu li a.nav-link {
  color: #000000;
}
header.sticky_header ul.menu li a.nav-link:hover {
  color: #007bff;
}
header.sticky_header a.nav-link.active {
  color: #007bff !important;
}

.navbar-toggler {
  border: 1px solid #007bff;
  padding: 5px 10px;
  font-size: 22px;
  outline: 0 !important;
  -webkit-box-shadow: 0 0 0 !important;
          box-shadow: 0 0 0 !important;
  cursor: pointer;
  border-radius: 2px;
}

@media (min-width: 767px) {
  header li:hover > ul {
    display: block;
    visibility: visible;
  }
}
@media (max-width: 767px) {
  header {
    margin-top: 0;
    background-color: #FFFFFF;
    -webkit-box-shadow: 0 0 42px rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 42px rgba(0, 0, 0, 0.08);
    -webkit-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
  }
  header .container {
    padding: 15px !important;
  }
  header .logo {
    color: #000000;
  }
  header ul.menu li a.nav-link {
    color: #000000;
    padding: 10px 7px !important;
  }
  header ul.menu li a.nav-link:hover {
    color: #007bff;
  }
  header a.nav-link.active {
    color: #007bff !important;
  }

  header li > ul {
    position: static;
    visibility: visible;
    width: 100%;
  }

  header li ul.multi_col {
    position: static;
    visibility: visible;
    width: 100%;
  }
  header li ul.multi_col li {
    display: block;
    width: 100%;
  }

  header li ul.sub_menu {
    position: static;
    visibility: visible;
    width: 100%;
  }

  .header-light ul.menu {
    padding-bottom: 15px;
  }
  .header-light ul.menu li a.nav-link {
    padding: 8px 5px;
  }
}
/*  ----------------------------------------------------
3 covers (slider and parallax )
-------------------------------------------------------- */
.hero_carousel {
  padding: 0;
  margin: 0;
  width: 100%;
  display: block;
  position: relative;
  list-style: none;
  min-height: 500px;
}
.hero_carousel .slider-content-center {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.hero_carousel .slider-content-left {
  max-width: 800px;
  text-align: left;
}
.hero_carousel li {
  float: none;
  width: 100%;
  display: block;
  position: relative;
  min-height: 500px;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
.hero_carousel li .slider_content {
  display: table;
  background-color: rgba(0, 0, 0, 0.4);
  height: 100%;
  width: 100%;
  position: relative;
  color: #ffffff;
}
.hero_carousel li .slider_content .slider-content-inner {
  display: table-cell;
  vertical-align: middle;
}
.hero_carousel li .slider_content .slider-content-inner h6 {
  font-weight: 500;
  letter-spacing: 0.5px;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.4s 300ms ease-in-out;
  transition: all 0.4s 300ms ease-in-out;
  color: #ffffff;
  display: inline-block;
  background-color: #007bff;
  padding: 8px 20px;
  border-radius: 2px;
}
.hero_carousel li .slider_content .slider-content-inner h1 {
  margin-top: 15px;
  opacity: 0;
  color: #ffffff;
  text-transform: capitalize;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.4s 600ms ease-in-out;
  transition: all 0.4s 600ms ease-in-out;
}
.hero_carousel li .slider_content .slider-content-inner p {
  font-size: 14px;
  color: #f7f7f7;
  margin-bottom: 25px;
  margin-top: 25px;
  text-transform: capitalize;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.4s 900ms ease-in-out;
  transition: all 0.4s 900ms ease-in-out;
}
.hero_carousel li .slider_content .slider-content-inner a {
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: transform  0.4s 1200ms ease-in-out, opacity 0.4s 1200ms ease-in-out;
  -webkit-transition: opacity 0.4s 1200ms ease-in-out, -webkit-transform  0.4s 1200ms ease-in-out;
  transition: opacity 0.4s 1200ms ease-in-out, -webkit-transform  0.4s 1200ms ease-in-out;
  transition: transform  0.4s 1200ms ease-in-out, opacity 0.4s 1200ms ease-in-out;
  transition: transform  0.4s 1200ms ease-in-out, opacity 0.4s 1200ms ease-in-out, -webkit-transform  0.4s 1200ms ease-in-out;
}
.hero_carousel .active .slider_content .slider-content-inner * h6 {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition: all 0.4s 300ms ease-in-out;
  transition: all 0.4s 300ms ease-in-out;
}
.hero_carousel .active .slider_content .slider-content-inner * h1 {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition: all 0.4s 600ms ease-in-out;
  transition: all 0.4s 600ms ease-in-out;
}
.hero_carousel .active .slider_content .slider-content-inner * p {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition: all 0.4s 900ms ease-in-out;
  transition: all 0.4s 900ms ease-in-out;
}
.hero_carousel .active .slider_content .slider-content-inner * a {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition: all 0.4s 1200ms ease-in-out, opacity 0.4s 1200ms ease-in-out, color 0.4s ease-in-out, border 0.4s  ease-in-out, background-color 0.4s  ease-in-out;
  -webkit-transition: all 0.4s 1200ms ease-in-out, opacity 0.4s 1200ms ease-in-out, color 0.4s  ease-in-out, border 0.4s  ease-in-out, background-color 0.4s  ease-in-out;
  transition: all 0.4s 1200ms ease-in-out, opacity 0.4s 1200ms ease-in-out, color 0.4s  ease-in-out, border 0.4s  ease-in-out, background-color 0.4s  ease-in-out;
}
.hero_carousel .owl-dots {
  bottom: 25px;
  text-align: center;
  position: absolute;
  width: 100%;
}
.hero_carousel .owl-dots .owl-dot span {
  width: 15px;
  height: 2px;
  margin: 5px;
  background: rgba(255, 255, 255, 0.5);
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.hero_carousel .owl-dots .owl-dot.active span {
  background: #ffffff;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.vh100 {
  min-height: 100vh;
}

.vh80 {
  min-height: 80vh;
}

.parallax-window {
  min-height: 400px;
  background: transparent;
}

.cover-content-center {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cover-content-left {
  max-width: 700px;
  text-align: left;
}

.cover_colored .cover_content {
  background-color: transparent;
}

.cover_content {
  display: table;
  background-color: rgba(0, 0, 0, 0.4);
  height: 100%;
  width: 100%;
  position: relative;
  color: #ffffff;
}
.cover_content .cover-content-inner {
  display: table-cell;
  vertical-align: middle;
}
.cover_content .cover-content-inner h6 {
  margin-bottom: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.4s 300ms ease-in-out;
  transition: all 0.4s 300ms ease-in-out;
  color: #ffffff;
  display: inline-block;
  background-color: #007bff;
  padding: 8px 20px;
  border-radius: 2px;
}
.cover_content .cover-content-inner h1 {
  margin-top: 15px;
  color: #ffffff;
  text-transform: capitalize;
}
.cover_content .cover-content-inner p {
  font-size: 14px;
  color: #f7f7f7;
  margin-bottom: 25px;
  margin-top: 25px;
  text-transform: capitalize;
}

@media (max-width: 768px) {
  .hero_carousel li .slider_content .slider-content-inner h1 {
    font-size: 36px;
  }
}
.cover_one {
  background-position: center;
  background-size: cover;
  position: relative;
  background-color: #0f77d0;
}
.cover_one .cover_content {
  display: table;
  background-color: rgba(0, 0, 0, 0);
  height: 100%;
  width: 100%;
  position: relative;
  color: #ffffff;
}
.cover_one .cover_content .cover-content-inner {
  display: table-cell;
  vertical-align: middle;
  padding: 175px 0; background: rgba(0, 0, 0, 0.45);
}
.cover_one .cover_content .cover-content-inner h2 {
  font-weight: 300;
  font-style: italic;
  font-size: 54px;
  color: #fff;
  line-height: 1.3;
  text-transform: capitalize;
  margin-bottom: 25px;
}

@media (max-width: 767px){
  .cover_one .cover_content .cover-content-inner h2 {font-size: 32px;}
}
.cover_one .cover_content .cover-content-inner .cover_form {
  position: relative;
}
.cover_one .cover_content .cover-content-inner .cover_form .form-control-plaintext {
  min-height: 60px;
  border-radius: 50px;
  padding: 0 40px;
  width: 100%;
  outline: 0;
}
.cover_one .cover_content .cover-content-inner .cover_form .btn {
  min-height: 60px;
  border-radius: 50px;
  font-size: 26px;
  background-color: #ffffff;
  color: #0f77d0;
  padding: 6px 30px;
  position: absolute;
  right: 10px;
  z-index: 999;
  top: 0;
}
.cover_one .cover_content .cover-content-inner .cover_form .domainlist {
  padding: 5px;
}
.cover_one .cover_content .cover-content-inner .cover_form .domainlist p {
  display: inline-block;
  font-size: 14px;
  color: #ffffff;
  margin: 15px 5px;
  text-transform: unset;
  background-color: #000;
  padding: 10px 25px;
  border-radius: 4px;
  line-height: 1.7;
  box-shadow: 2px 2px 5px 2px #0a0a0a;
}

@media (max-width: 767px) {
  .cover_one .cover_content .cover-content-inner .cover_form .domainlist p { padding: 2px 23px; }

}
.cover_one .cover_content .cover-content-inner .cover_form .domainlist p span {
  color: #fff;
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
}

.inner_cover {
  min-height: 400px;
  position: relative;
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
}
@media (max-width: 767px){
  .inner_cover .inner_cover{width: 345px;}
}
.inner_cover .inner_cover_content {
  text-align: center;
  padding: 120px 0;
}
.inner_cover .inner_cover_content h6.category {
  text-transform: uppercase;
  color: #ffffff;
  background-color: #007bff;
  display: inline-block;
  margin-bottom: 25px;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
}
.inner_cover .inner_cover_content .admin_name {
  color: #f7f7f7;
  text-transform: capitalize;
  font-size: 13px;
}
.inner_cover .inner_cover_content h3 {
  text-transform: capitalize;
  font-size: 36px;
  color: #ffffff;
  line-height: 1.5;
  margin-top: 25px;
}
.inner_cover .inner_cover_content p {
  color: #f7f7f7;
  text-transform: capitalize;
  font-size: 16px;
}

/*  ----------------------------------------------------
4 buttons
-------------------------------------------------------- */
.btn {
  font-size: 13px;
  line-height: 1.7;
  text-transform: capitalize;
  color: #fff;
  font-weight: 500;
  padding: 12px 40px;
  border-radius: 5px;
  outline: 0 !important;
  border: none;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0) !important;
          box-shadow: 0 0 0 rgba(0, 0, 0, 0) !important;
  cursor: pointer;
  letter-spacing: 1px;
  background-color: #000000;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.btn:hover {
  color: #000000;
  background-color: #fff;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.btn:focus {
  outline: 0 !important;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.btn-sm {
  padding: 10px 20px;
}

.btn-lg {
  padding: 18px 50px;
}

.btn-blue {background-color: #007bff!important;}

.btn_center {
  margin: 0 auto;
  display: block;
}

.btn.btn-shadow {
  -webkit-box-shadow: 3px 4px 5px 0 rgba(0, 0, 0, 0.09);
  box-shadow: 3px 4px 5px 0 rgba(0, 0, 0, 0.09);
}
.btn.btn-shadow:hover {
  -webkit-box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, 0.09);
  box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, 0.09);
}

.btn-primary {
  background-color: #007bff;
  color: #ffffff;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.btn-primary:hover {
  background-color: #000000;
  color: #ffffff;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.btn-primary-outline {
  background-color: transparent;
  border: solid 2px #007bff;
  border-radius: 50px;
  color: #007bff;
  font-weight: 400;
  font-size: 14px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.btn-primary-outline:hover {
  background-color: #007bff;
  color: #ffffff;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.btn-secondry {
  background-color: #c41f0e;
  color: #ffffff;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.btn-secondry:hover {
  background-color: #ffffff;
  color: #c41f0e;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.btn-light {
  background-color: #FFFFFF;
  color: #000000;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.btn-light:hover {
  color: #FFFFFF;
  background-color: #000000;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.btn-dark {
  background-color: #333333;
  color: #ffffff;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.btn-dark:hover {
  color: #000000;
  background-color: #ffffff;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

/*  ----------------------------------------------------
5 icon boxes
-------------------------------------------------------- */
.icon-lg {
  font-size: 64px !important;
}

.icon-md {
  font-size: 32px !important;
}

.icon-sm {
  font-size: 16px !important;
}

.icon_box_one {
  padding: 10px 0;
  margin: 25px 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.icon_box_one i {
  font-size: 56px;
  text-align: center;
  color: #007bff;
  vertical-align: middle;
  margin: 0 auto;
  border-radius: 4px;
  display: block;
}
.icon_box_one .content {
  margin-top: 20px;
  text-align: center;
}
.icon_box_one .content h5 {
  color: #333333;
  font-size: 16px;
  margin-bottom: 5px;
  text-transform: unset;
}

.icon_box_two {
  margin: 25px 0;
  cursor: pointer;
  background-color: #fff;
  -webkit-box-shadow: 0 0 42px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 42px rgba(0, 0, 0, 0.08);
  padding: 50px 35px;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
.icon_box_two i {
  -webkit-transform: translateZ(20px);
          transform: translateZ(20px);
  font-size: 56px;
  text-align: center;
  color: #FFFFFF;
  vertical-align: middle;
  margin: 0 auto;
  border-radius: 4px;
  display: block;
  background-color: #007bff;
  -webkit-box-shadow: 0 0 42px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 42px rgba(0, 0, 0, 0.08);
  height: 80px;
  width: 80px;
  padding: 13px;
}
.icon_box_two .content {
  margin-top: 20px;
  text-align: center;
}
.icon_box_two .content h5 {
  color: #333333;
  font-size: 16px;
  margin-bottom: 5px;
  text-transform: capitalize;
}

.icon_box_three {
  padding: 10px 0;
  margin: 25px 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.icon_box_three i {
  float: left;
  font-size: 46px;
  width: 80px;
  text-align: center;
  color: #333333;
}
.icon_box_three .content {
  text-align: left;
  margin-left: 90px;
}
.icon_box_three .content h5 {
  color: #007bff;
  font-size: 14px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.icon_box_light i {
  color: #FFFFFF;
}
.icon_box_light .content h5 {
  color: #ffffff;
}
.icon_box_light .content p {
  color: #f7f7f7;
}

.img_box_one {
  padding: 30px;
  background-color: #ffffff;
  margin: 15px 0;
  border-radius: 5px;
  min-height: 280px;
  text-align: center;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  -webkit-box-shadow: 0 0 42px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 42px rgba(0, 0, 0, 0.08);
}
.img_box_one img {
  max-width: 64px;
  margin-bottom: 15px;
}
.img_box_one h4 {
  color: #333333;
  text-transform: capitalize;
}
.img_box_one:hover {
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
  background-color: #f7f7f7;
}

.img_box_two {
  text-align: left;
  padding: 50px;
  background-color: #ffffff;
  border: solid 1px #f7f7f7;
  margin: 15px 0;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 42px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 42px rgba(0, 0, 0, 0.08);
  border-left: solid 2px #007bff;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
.img_box_two img {
  float: left;
  max-width: 100px;
  margin-right: 10px;
}
.img_box_two .content {
  margin-left: 130px;
}
.img_box_two .content a {
  text-transform: capitalize;
  color: #007bff;
  font-size: 14px;
  opacity: 0.8;
}
.img_box_two .content a:hover {
  opacity: 1;
}
.img_box_two:hover {
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  border-left: solid 2px #c41f0e;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}

/*  ----------------------------------------------------
6 section titles
-------------------------------------------------------- */
.section_title {
  margin-bottom: 30px;
  position: relative;
  text-align: center;
}
.section_title i {
  font-size: 46px;
  color: #007bff;
  margin-bottom: 15px;
  display: block;
}
.section_title h6 {
  color: #007bff;
  text-transform: capitalize;
  position: relative;
  font-weight: 500;
}
.section_title h3 {
  margin-top: 5px;
  margin-bottom: 10px;
  text-transform: uppercase;
  position: relative;
  font-weight: 500;
  font-size: 18px;
}

/*  ----------------------------------------------------
7 portfolio
-------------------------------------------------------- */
.portfolio-categories {
  float: none;
  text-align: center;
  position: relative;
  display: block;
  margin-bottom: 30px;
  padding: 0;
}
.portfolio-categories li {
  float: none;
  text-align: center;
  display: inline-block;
  color: #333333;
  cursor: pointer;
  text-transform: capitalize;
  font-size: 12px;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 4px;
  margin: 15px 4px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  webkit-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.portfolio-categories li:hover {
  color: #ffffff;
  background-color: #007bff;
  webkit-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.portfolio-categories li.active {
  color: #ffffff;
  background-color: #007bff;
  webkit-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.project_box_one {
  position: relative;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
.project_box_one img {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.project_box_one .product_info {
  position: absolute;
  top: 2%;
  bottom: 2%;
  left: 2%;
  right: 2%;
  width: 96%;
  height: 96%;
  border-radius: 4px;
  padding: 30px 40px;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  opacity: 0;
}
.project_box_one .product_info .product_info_text {
  display: table;
  table-layout: fixed;
  height: 100%;
  width: 100%;
  position: relative;
}
.project_box_one .product_info .product_info_text .product_info_text_inner {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.project_box_one .product_info .product_info_text .product_info_text_inner h4 {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  -webkit-transition-delay: .2s;
  transition-delay: .2s;
  opacity: 0;
  margin-bottom: 5px;
}
.project_box_one .product_info .product_info_text .product_info_text_inner p {
  color: #ffffff;
  font-size: 12px;
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  -webkit-transition-delay: .4s;
  transition-delay: .4s;
  opacity: 0;
}
.project_box_one:hover img {
  /* IE 9 */
  -webkit-transform: scale(1.1);
  /* Safari */
  transform: scale(1.1);
  /* Standard syntax */
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.project_box_one:hover .product_info {
  opacity: 1;
}
.project_box_one:hover .product_info .product_info_text_inner h4 {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
.project_box_one:hover .product_info .product_info_text_inner p {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

/*  ----------------------------------------------------
8 counter
-------------------------------------------------------- */
.counter_box {
  text-align: center;
  margin: 25px 0;
}
.counter_box i {
  display: block;
  font-size: 56px;
  margin-bottom: 5px;
  color: #007bff;
}
.counter_box .perfix {
  font-size: 20px;
  color: #333333;
  font-weight: 600;
  margin: 10px 0;
  display: block;
}
.counter_box .counter {
  font-size: 48px;
  color: #000000;
  font-weight: 300;
  font-style: italic;
  display: inline-block;
  padding: 0 3px;
  margin: 10px 0;
}
.counter_box h5 {
  font-weight: 500;
  text-transform: capitalize;
  font-size: 14px;
  margin: 0;
  color: #000;
  letter-spacing: 0.5px;
}

.counter_light i {
  color: #ffffff;
}
.counter_light .counter {
  color: #e1e8ef;
}
.counter_light h5 {
  color: #ffffff;
}

/*  ----------------------------------------------------
9 team
-------------------------------------------------------- */
.team_box {
  margin-top: 30px;
  text-align: center;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0.08);
  padding: 15px;
  border-radius: 4px;
}
.team_box .team_img {
  border-radius: 5px;
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}
.team_box .team_img:before {
  border-radius: 5px;
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
  opacity: 0;
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.25);
}
.team_box .team_img ul.team_social {
  opacity: 0;
  position: absolute;
  text-align: center;
  color: #ffffff;
  width: 100%;
  bottom: 5px;
  float: none;
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.team_box .team_img ul.team_social li {
  display: inline-block;
  float: none;
  padding: 5px;
  font-size: 28px;
}
.team_box .team_img ul.team_social li a {
  color: #FFFFFF;
}
.team_box .team_img ul.team_social li a:hover {
  color: #dddddd;
}
.team_box h5 {
  margin: 15px 0 0 0;
  font-weight: 500;
  text-transform: capitalize;
}
.team_box h6 {
  margin: 0;
  font-weight: 400;
  text-transform: capitalize;
  font-size: 14px;
  color: #007bff;
  margin-top: 5px;
  margin-bottom: 5px;
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
.team_box p {
  font-size: 12px;
}
.team_box:hover {
  -webkit-box-shadow: 0 0 32px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 32px rgba(0, 0, 0, 0.08);
}
.team_box:hover .team_img:before {
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
  opacity: 1;
}
.team_box:hover .team_img ul.team_social {
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
  opacity: 1;
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
}
.team_box:hover h6 {
  color: #6cc47f;
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

.team_box.active {
  -webkit-box-shadow: 0 0 32px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 32px rgba(0, 0, 0, 0.08);
}
.team_box.active .team_img:before {
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
  opacity: 1;
}
.team_box.active .team_img ul.team_social {
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
  opacity: 1;
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
}
.team_box.active h6 {
  color: #6cc47f;
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

/*  ----------------------------------------------------
10 tabs
-------------------------------------------------------- */
.hosting_nav {
  margin-top: 0;
  position: relative;
  top: -60px;
}
.hosting_nav .nav-item {
  padding: 25px;
}
.hosting_nav a.nav-link {
  background-color: #ffffff;
  color: #007bff;
  -webkit-box-shadow: 0 0 32px rgba(0, 0, 0, 0.07);
          box-shadow: 0 0 32px rgba(0, 0, 0, 0.07);
  padding: 70px 30px;
}
.hosting_nav a.nav-link img {
  max-width: 64px;
  display: block;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 15px;
  color: #ffffff;
}

/*  ----------------------------------------------------
11 testimonial
-------------------------------------------------------- */
.testimonial_box {
  position: relative;
  margin: 15px 35px;
  padding: 5px 25px;
}
.testimonial_box i {
  padding: 0 5px;
  font-size: 46px;
  display: block;
  text-align: center;
  color: #007bff;
  margin-bottom: 20px;
}
.testimonial_box h5 {
  line-height: 1.9;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0;
  color: #5e6d7b;
  font-style: italic;
}
.testimonial_box img {
  height: 60px;
  width: 60px;
  display: inline-block !important;
  margin: 5px 0;
  border-radius: 50px;
}
.testimonial_box h6 {
  color: #000000;
  font-size: 14px;
  left: 1px;
  font-weight: 500;
  margin: 8px 0 0;
  text-transform: capitalize;
}
.testimonial_box P {
  font-size: 11px;
  color: #007bff;
  text-transform: capitalize;
}

.testimonial_box_light i {
  color: #ffffff;
}
.testimonial_box_light h5 {
  line-height: 1.9;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0;
  color: #FFFFFF;
  font-style: italic;
}
.testimonial_box_light img {
  height: 60px;
  width: 60px;
  display: inline-block !important;
  margin: 5px 0;
  border-radius: 50px;
}
.testimonial_box_light h6 {
  color: #ffffff;
  font-size: 14px;
  left: 1px;
  font-weight: 500;
  margin: 8px 0 0;
  text-transform: capitalize;
}
.testimonial_box_light P {
  font-size: 13px;
  color: #f9f9f9;
  text-transform: capitalize;
}

.owl-carousel .owl-dots .owl-dot span {
  width: 7px;
  height: 7px;
  margin: 5px;
  background: rgba(51, 51, 51, 0.6);
  display: block;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-backface-visibility: visible;
  border-radius: 30px;
}

/*  ----------------------------------------------------
12 blog
-------------------------------------------------------- */
.card_box_one {
  position: relative;
  border-radius: 5px;
  padding: 0;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #f7f7f7;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.card_box_one .card_box_img {
  display: block;
  height: 225px;
  overflow: hidden;
}
.card_box_one .card_box_img img {
  width: 100%;
  max-width: 100%;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.card_box_one .card_box_body {
  padding: 30px 25px;
  position: relative;
}
.card_box_one .card_box_body h4 {
  font-size: 14px;
  color: #000000;
  text-transform: capitalize;
  font-weight: 400;
}
.card_box_one .card_box_body span {
  display: block;
  width: 100%;
  padding: 10px 0;
  color: #007bff;
  font-size: 11px;
}
.card_box_one .card_box_body a {
  font-size: 14px;
  color: #000000;
  font-weight: 400;
}
.card_box_one .card_box_body a:hover {
  color: #007bff;
}
.card_box_one .card_box_footer {
  position: relative;
  border-top: 1px solid #f7f7f7;
}
.card_box_one .card_box_footer a {
  color: #007bff;
  font-size: 13px;
  margin-top: 10px;
  padding: 5px 30px 12px;
  display: inline-block;
  text-transform: capitalize;
}
.card_box_one .card_box_footer a:hover {
  color: #000000;
}
.card_box_one:hover {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
}
.card_box_one:hover .card_box_img img {
  transform: scale(1.02);
  -ms-transform: scale(1.02);
  -webkit-transform: scale(1.02);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.blog_carousel .item {
  padding: 15px;
}

.card_box_blog {
  position: relative;
  border-radius: 0;
  padding: 0;
  margin: 0 0 30px 0;
  overflow: hidden;
  text-align: center;
  background-color: #fff;
  border: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.card_box_blog .post_content {
  padding: 25px;
}
.card_box_blog .post_header h6 {
  font-weight: 500;
  text-transform: capitalize;
  font-size: 12px;
  padding: 0px 0 3px;
  margin: 0;
  color: #495057;
  margin-bottom: 10px;
  margin-top: 5px;
}
.card_box_blog .post_header h6 i {
  padding: 0 3px 0 10px;
  color: #007bff;
  font-size: 14px;
}
.card_box_blog .post_header h4 {
  margin: 0;
  font-size: 14px;
  margin-bottom: 15px;
  text-transform: capitalize;
}
.card_box_blog .post_img {
  margin: 0;
}
.card_box_blog .post_text {
  padding: 10px;
}
.card_box_blog .post_text p {
  font-size: 13px;
}
.card_box_blog .post_footer .readmore_btn {
  padding: 7px 0;
}
.card_box_blog .post_footer .readmore_btn a {
  color: #007bff;
  font-size: 13px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 12px 15px;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.card_box_blog .post_footer .readmore_btn a:hover {
  color: #333333;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.card_box_blog .post_footer .readmore_btn a:focus {
  color: #333333;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.blog_nav {
  width: 100%;
  display: inline-block;
}
.blog_nav nav {
  display: inline-block;
  width: 100%;
}
.blog_nav .btn.nav-btn {
  background-color: #ffffff;
  color: #000000;
  text-transform: capitalize;
  font-weight: 500;
  -webkit-box-shadow: 0 0 24px rgba(0, 0, 0, 0.04) !important;
          box-shadow: 0 0 24px rgba(0, 0, 0, 0.04) !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.blog_nav .btn.nav-btn:hover {
  background-color: #007bff;
  color: #ffffff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.blog_nav .btn_left {
  margin-left: 0;
  display: inline-block;
  float: left;
}
.blog_nav .btn_right {
  margin-right: 0;
  display: inline-block;
  float: right;
}

.post-tags {
  display: inline-block;
  width: 100%;
  margin: 25px 0;
}
.post-tags a {
  background-color: #ffffff;
  padding: 15px 25px;
  margin: 10px;
  font-size: 13px;
  border-radius: 5px;
  text-transform: capitalize;
  border: solid 1px #f3f3f3;
}
.post-tags a:before {
  content: "\f2aa";
  font-family: "Ionicons";
  padding: 0 5px 0 0;
  color: #868e96;
}
.post-tags a:hover {
  color: #007bff;
}

.comments-title {
  font-size: 14px;
  color: #000000;
}

.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.comment-list .comment-body {
  position: relative;
  padding-left: 100px;
  border-top: solid 1px #f7f7f7;
  padding-top: 25px;
}
.comment-list .comment-body .comment-author h4 {
  font-size: 14px;
  margin-bottom: 5px;
  color: #000;
  text-transform: capitalize;
  font-weight: 500;
}
.comment-list .comment-body .comment-author img {
  position: absolute;
  left: 0;
  height: 80px;
  width: 80px;
  border-radius: 50%;
}
.comment-list .comment-body .comment-meta {
  padding: 2px 0 10px;
}
.comment-list .comment-body .comment-meta a {
  display: inline-block;
  position: relative;
  left: 0;
  font-size: 11px;
  color: #4f5963;
  margin-right: 20px;
}
.comment-list .comment-body .comment-meta .reply {
  display: inline-block;
}
.comment-list .comment-body .comment-meta .reply a {
  display: inline-block;
  right: 0;
  position: relative;
  margin-right: 0;
  font-size: 12px;
  color: #007bff;
  text-transform: capitalize;
}
.comment-list .comment-body .comment-meta .reply a:hover {
  color: #000000;
}
.comment-list .comment-body .comment-content {
  padding: 0 0 35px;
}
.comment-list .children li {
  list-style: none;
  padding: 0;
}

.comment-respond {
  padding: 25px;
  border-top: solid 1px #f7f7f7;
  margin-top: 50px;
}
.comment-respond .title {
  font-size: 14px;
  color: #000000;
}

.comment-form .form-control {
  font-size: 13px;
  padding: 12px 15px;
  height: 50px;
  border-radius: 4px;
  border: solid 1px #e1e6ea;
  margin-bottom: 25px;
  outline: 0 !important;
  -webkit-box-shadow: 0 0 0;
  box-shadow: 0 0 0;
}
.comment-form .submit-comment {
  border-radius: 50px;
  padding: 15px 50px;
  text-transform: capitalize;
  background-color: #007bff;
}
.comment-form .submit-comment:hover {
  background-color: #000000;
  color: #ffffff;
}

/*  ----------------------------------------------------
12 blog
-------------------------------------------------------- */
/*  ----------------------------------------------------
. PRICING SECTION
-------------------------------------------------------- */
.price_box_one {
  background-color: #ffffff;
  text-align: center;
  border-radius: 5px;
  padding: 60px 35px;
  margin-top: 30px;
  -webkit-box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.07);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.price_box_one .price_box_header {
  padding-bottom: 1px;
  border-bottom: 1px solid rgba(213, 215, 220, 0.37);
}
.price_box_one .price_box_header i {
  display: block;
  font-size: 56px;
  margin-bottom: 10px;
  color: #007bff;
  opacity: 0.2;
}
.price_box_one .price_box_header h5 {
  font-weight: 700;
  text-transform: capitalize;
  font-size: 56px;
  color: #000;
  margin-bottom: 0;
}
@media (max-width: 767px){
  .price_box_one .price_box_header h5 {  margin-top: 18px; }
}
.price_box_one .price_box_header h5 .mount {
  font-weight: 700;
  text-transform: capitalize;
  font-size: 56px;
  color: #000;
  margin-bottom: 0;
}
.price_box_one .price_box_header h5 sup {
  top: -1.5em;
  font-size: 18px;
  font-weight: 600;
  left: 10px;
}
.price_box_one .price_box_header h5 span {
  font-size: 11px;
  padding: 0;
  display: inline-block;
  text-transform: capitalize;
  color: #000000;
}
.price_box_one .price_box_header h6 {
  font-size: 12px;
  font-weight: 400;
  margin-top: 7px;
  color: #007bff;
  margin-bottom: 7px;
  text-transform: capitalize;
}
.price_box_one .price_box_header span {
  padding-left: 0;
  text-transform: uppercase;
  color: #000000;
  font-size: 13px;
  font-weight: 500;
  margin: 0;
}
.price_box_one .price_box_content {
  margin: 25px;
}
.price_box_one .price_box_content ul {
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
}
.price_box_one .price_box_content ul li {
  padding: 10px;
  color: #333;
  font-size: 13px;
  text-transform: capitalize;
}
.price_box_one .price_footer a {
  padding: 15px 40px;
  border-radius: 5px;
  display: block;
  text-transform: capitalize;
  color: #ffffff;
  background-color: #007bff;
  border: solid 1px #007bff;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
.price_box_one .price_footer a:hover {
  display: block;
  background-color: #c51f0e;
  color: #ffffff;
  border: solid 1px #c51f0e;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
.price_box_one:hover {
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  box-shadow: 0 0 32px 0 rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0 0 32px 0 rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: 0 0 32px 0 rgba(0, 0, 0, 0.06);
  -o-box-shadow: 0 0 32px 0 rgba(0, 0, 0, 0.06);
}

.price_active {
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  box-shadow: 0 0 32px 0 rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0 0 32px 0 rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: 0 0 32px 0 rgba(0, 0, 0, 0.06);
  -o-box-shadow: 0 0 32px 0 rgba(0, 0, 0, 0.06);
}
.price_active .price_title h5 {
  color: #007bff;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
.price_active .price_footer a {
  padding: 15px 40px;
  border-radius: 5px;
  display: block;
  text-transform: capitalize;
  color: #ffffff;
  background-color: #c51f0e;
  border: solid 1px #c51f0e;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
.price_active .price_footer a:hover {
  display: block;
  background-color: #007bff;
  border: solid 1px #007bff;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}

/*  ----------------------------------------------------
12 forms
-------------------------------------------------------- */
.domain_form {
  position: relative;
}
.domain_form .form-control-plaintext {
  min-height: 60px;
  border-radius: 50px;
  padding: 0 70px 0 30px;
  width: 100%;
  outline: 0;
  border: solid 4px #007bff;
}
.domain_form .btn {
  min-height: 60px;
  border-radius: 50px;
  font-size: 26px;
  background-color: transparent;
  color: #007bff;
  padding: 6px 30px;
  position: absolute;
  right: 10px;
  z-index: 999;
  top: 0;
}
.domain_form .btn:hover {
  color: #000000;
}

/*  ----------------------------------------------------
13 contact box
-------------------------------------------------------- */
.contact_box {
  padding: 35px;
  background-color: #ffffff;
  border-radius: 4px;
}
.contact_box label {
  color: #000;
  font-size: 13px;
  text-transform: capitalize;
}

.form-control {
  font-size: 13px;
  padding: 12px 15px;
  height: 50px;
  border-radius: 4px;
  border: solid 1px #f7f7f7;
  margin-bottom: 25px;
  outline: 0 !important;
  -webkit-box-shadow: 0 0 0;
          box-shadow: 0 0 0;
}
.form-control:focus {
  color: #000000;
  border-color: #f7f7f7;
  outline: 0;
}

.btn_contact {
  text-align: center;
  margin: 0 auto;
  padding: 16px 40px;
  font-size: 14px;
  max-width: 250px;
  background-color: #007bff;
  color: #ffffff;
  border-radius: 50px;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
.btn_contact:hover {
  background-color: #333333;
  color: #ffffff;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
.btn_contact:focus {
  background-color: #333333;
  color: #ffffff;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}

.contact_section_one .contact-col {
  padding: 150px 6% 200px;
}
.contact_section_one .form-control {
  font-size: 13px;
  padding: 12px 15px;
  height: 50px;
  border-radius: 4px;
  border: solid 1px #dddfe0;
  margin-bottom: 25px;
  outline: 0 !important;
  -webkit-box-shadow: 0 0 0;
          box-shadow: 0 0 0;
}
.contact_section_one .form-control:focus {
  color: #000000;
  border: solid 1px #e9ecef;
  outline: 0;
}
.contact_section_one .map-col {
  min-height: 450px;
}
.contact_section_one .map-col .map_inner {
  padding: 0;
  overflow: hidden;
  z-index: 0;
  position: absolute;
  left: 0;
  right: 0;
  height: 100%;
  top: 0;
  bottom: 0;
}
.contact_section_one .map-col .map_inner iframe {
  width: 100%;
  height: 100%;
}

.contact_section_one .control-group {padding-bottom: 30px;}
.contact_section_one .input-append {display: -webkit-box;}
.contact_section_one .input-append .btn {background-color: #007bff; margin-left: 10px;}
.contact_section_one .input-append .btn:hover{background-color: #333333;
  color: #ffffff;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;}

.input-recaptcha{
  width:172px;
}

/*  ----------------------------------------------------
14 progressbar
-------------------------------------------------------- */
.single_progressbar .skill_text {
  margin-bottom: 5px;
  color: #007bff;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
}
.single_progressbar .skill_text span.skill_bar {
  color: #007bff;
}
.single_progressbar .progress {
  height: 2px;
  margin-bottom: 35px;
  overflow: hidden;
  background: #333333;
  /* The Fallback */
  background: rgba(51, 51, 51, 0.2);
  border-radius: 1px;
  -webkit-box-shadow: 0 0 0;
          box-shadow: 0 0 0;
}
.single_progressbar .progress .progress-bar {
  height: 100%;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  background-color: #333333;
}
.single_progressbar .progress_light {
  background: #ffffff;
  /* The Fallback */
  background: rgba(255, 255, 255, 0.4);
}
.single_progressbar .progress_light .progress-bar {
  height: 100%;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  background-color: #ffffff;
}

/*  ----------------------------------------------------
15 FOOTER
-------------------------------------------------------- */
.footer {
  position: relative;
  background-color: #f7f7f7;
}
.footer .footer_top {
  position: relative;
  width: 100%;
  background: #404040;
  margin: 0 0 30px;
  border-radius: 6px;
}
.footer .footer_top .footer_top_inner {

  border-radius: 5px;
  padding: 15px 25px;
}
.footer .footer_bottom {
  background-color: #f7f7f7;
  margin-top: -30px;
}
.footer .footer_logo {
  font-size: 24px;
  text-transform: capitalize;
  margin-bottom: 10px;
  margin-top: 25px;
  line-height: 30px;
}
.footer .footer_about {
  color: #999;
}
.footer .copy_right {
  font-size: 12px;
  color: #000;
}
.footer .footer_title {
  padding: 0;
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 16px;
}
.footer .footer_menu {
  padding: 0;
  margin: 0;
}
.footer .footer_menu .nav-item {
  display: block;
  padding: 1px 0;
}
.footer .footer_menu .nav-item .nav-link {
  font-size: 13px;
  text-transform: capitalize;
  color: #858585;
  padding: 5px 0;
}
.footer .footer_menu .nav-item .nav-link:hover {
  color: #007bff;
}
.footer .subscripe_title {
  font-size: 14px;
  font-weight: 400;
  color: #000;
}
.footer .subscribe_form {
  position: relative;
}
.footer .subscribe_form .input-group {
  width: 100%;
}
.footer .subscribe_form .form-control-plaintext {
  min-height: 60px;
  border-radius: 50px;
  padding: 0 25px;
  width: 100%;
  outline: 0;
}
.footer .subscribe_form .btn {
  min-height: 60px;
  border-radius: 5px;
  background-color: #c41f0e;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  color: #ffffff;
  padding: 6px 20px;
  position: absolute;
  right: 0;
  z-index: 999;
  top: 0;
  font-size: 16px;
}
.footer .social_list {
  display: block;
  margin-top: 15px;
}
.footer .social_list li {
  display: inline-block;
  font-size: 24px;
  margin: 0 7px;
}
.footer .social_list li a {
  padding: 7px;
  color: #000000;
}
.footer .social_list li a:hover {
  color: #007bff;
}

.footer_dark {
  background-color: #000000;
  color: #FFFFFF;
}
.footer_dark h4 {
  color: #ffffff;
}
.footer_dark p {
  color: #ddd;
}
.footer_dark a {
  color: #ffffff;
}
.footer_dark a:hover {
  color: #f7f7f7;
}
.footer_dark a:focus {
  color: #f7f7f7;
}

.footer_light {
  background-color: #ffffff;
  color: #333333;
}
.footer_light h4 {
  color: #000000;
}
.footer_light p {
  color: #555555;
}

.footer_gray {
  background-color: #f9f9f9;
  color: #333333;
}
.footer_gray h4 {
  color: #000000;
}
.footer_gray p {
  color: #555555;
}

/*  ----------------------------------------------------
16 Tables
-------------------------------------------------------- */
table.table-striped-shadow {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
}
table.table-striped-shadow thead th {
  vertical-align: bottom;
  border-bottom: 0;
  color: #000;
  font-weight: 500;
}
table.table-striped-shadow tbody tr:nth-of-type(odd) {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 32px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 32px rgba(0, 0, 0, 0.08);
}
table.table-striped-shadow td {
  padding: 25px 10px;
  text-align: center;
  vertical-align: top;
  border-top: 0;
  color: #000;
  font-weight: 500;
}
table.table-striped-shadow th {
  text-transform: capitalize;
  padding: 25px 10px;
  text-align: center;
  vertical-align: top;
  border-top: 0;
  color: #007bff;
  font-weight: 500;
}

.hosting-benifits {padding: 50px 0 0;}
.hosting-benifits h6 {font-size: 18px;}