/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/

.header .intro-box .intro .header-title {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  line-height: 1;
  margin-top: 67px;
  margin-bottom: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-word;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

@media (max-width: 47.9rem) {
  .header .intro-box .intro .header-title {
    font-size: 1.999rem;
  }
}

.header .intro-box .intro .header-subtitle {
  font-weight: 400;
  margin: 10px 0 30px;
  font-style: italic;
  color: #d0d0d0;
  font-size: 1.414rem;
}

@media (max-width: 47.9rem) {
  .header .intro-box .intro .header-subtitle {
    font-size: 1rem;
  }
}

.header .intro-box .intro .mountain-btn-group {
  margin-top: 15px;
}

.header .intro-box .intro .mountain-btn-group .btn {
  margin-right: 15px;
}

@media (max-width: 768px) {
  .header .intro-box .intro .mountain-btn-group .btn {
    margin-right: 5px;
  }
}

.header .intro-box .intro .mountain-btn-group .btn:last-child {
  margin-right: 0;
}

.fashion-heading .mountain-btn-group {
  margin-top: 50px;
}

/* ============== Header variation styles ============== */
.gradient-header {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.3;
  /* ff3.6+ */
  background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, red), color-stop(83%, #05c1ff), color-stop(100%, black));
  /* safari4+,chrome */
  background: -webkit-linear-gradient(45deg, red 0%, #05c1ff 83%, black 100%);
  /* safari5.1+,chrome10+ */
  /* opera 11.10+ */
  /* ie10+ */
  background: -webkit-linear-gradient(45deg, red 0%, #05c1ff 83%);
  background: linear-gradient(45deg, red 0%, #05c1ff 83%);
  /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#FF0000',GradientType=1 );
  /* ie6-9 */
}

/*------------------------------  Header Text Rotator --------------------------*/
.header-text-rotator .intro-box {
  text-align: left;
}

.header-text-rotator .intro-box .intro .header-title {
  margin-bottom: 0px;
}

.header-text-rotator .intro-box .intro .header-subtitle {
  width: 100%;
}

@media (min-width: 768px) {
  .header-text-rotator .intro-box .intro .header-subtitle {
    width: 50%;
  }
}

.header-text-rotator .intro-box .intro .mtn-btn-group {
  margin-top: 50px;
}

.header-text-rotator .intro-box .intro .mtn-btn-group .btn {
  margin-right: 20px;
  margin-bottom: 15px;
}

.header-text-rotator:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
  background-color: rgba(0, 0, 0, 0.2);
}

/*------------------------------  Owl Carousel Header --------------------------*/
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  opacity: 0;
  /* make things invisible upon start */
  -webkit-animation: fadeIn ease-in 1;
  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  animation: fadeIn ease-in 1;
  -webkit-animation-fill-mode: forwards;
  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  animation-fill-mode: forwards;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

.fade-in.one {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.fade-in.two {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.fade-in.three {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}

.headerCarousel .item .header-bg:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.headerCarousel .owl-nav .owl-prev, .headerCarousel .owl-nav .owl-next {
  position: absolute;
  top: -webkit-calc(50% - 35px);
  top: calc(50% - 35px);
  background-color: transparent;
  width: 60px;
  color: #fff;
  text-align: center;
  font-size: 50px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.headerCarousel .owl-nav:hover .owl-prev, .headerCarousel .owl-nav:hover .owl-next {
  background-color: #fff;
  color: #111;
}

.headerCarousel .owl-nav .owl-prev {
  left: 0;
}

.headerCarousel .owl-nav .owl-next {
  right: 0;
}

/*-----------------------  Classic Header ---------------------*/
.classic-header {
  background-color: #000;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-position: center center;
}

.classic-header .pad-classic {
  padding-top: 250px;
  padding-bottom: 150px;
}

.classic-header .pad-classic .header-title {
  color: #fff;
}

.classic-header .pad-classic .header-title h1 {
  margin-bottom: 0;
  font-weight: 700;
}

.classic-header .pad-classic .header-title .header-subtitle {
  font-weight: 400;
  font-size: 1.414rem;
  margin: 0;
  color: #fff;
  font-style: italic;
  letter-spacing: 1px;
  line-height: 1.4;
}

@media (max-width: 47.9rem) {
  .classic-header .pad-classic .header-title .header-subtitle {
    font-size: 1rem;
  }
}

.classic-header:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .classic-header .pad-classic {
    padding-top: 140px;
    padding-bottom: 97px;
  }
}

/*----------------------------  Video Background Header---------------------*/
.header-video {
  background: url(../images/header/videobg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.header-video i {
  display: inline-block;
  margin-left: 10px;
  font-size: 20px;
}

.video-controls-box {
  position: absolute !important;
  bottom: 40px;
  left: 0;
  width: 100%;
  z-index: 99;
}

.video-controls-box a {
  display: inline-block;
  color: #fff;
  font-size: 20px;
  margin: 0 20px 0 0;
  text-decoration: none;
}

.video-controls-box a:hover {
  text-decoration: none;
}

/*----------------------------  Subscription Page Header---------------------*/
.subscription-header .intro-box .intro form {
  margin-top: 70px;
}

.subscription-header .intro-box .intro .header-btn-group .btn-mountain-underlined {
  color: #fff;
  font-size: 1.414rem;
}

.subscription-header:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
  background-color: transparent;
}

/*-------------------------  Coming Soon Header ---------------------------*/
.coming-soon-header .countdown-box {
  display: inline-block;
  margin: 0 20px;
  position: relative;
}

.coming-soon-header .countdown-box::after {
  content: ':';
  position: absolute;
  font-size: 45px;
  top: -webkit-calc(50% - 50px);
  top: calc(50% - 50px);
  right: -25px;
}

.coming-soon-header .countdown-box:last-child::after {
  content: '';
}

.coming-soon-header .countdown-box:nth-child(2)::after {
  content: '';
}

.coming-soon-header .countdown-box .counter {
  display: block;
  border: 2px solid #fff;
  font-size: 45px;
  width: 100px;
}

.corporate-header-1 {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.registration-2col {
  position: relative;
  background-size: cover;
  background-position: center center;
  z-index: 4;
}

@media (min-width: 768px) {
  .registration-2col {
    height: 100vh;
  }
}

.registration-2col h3 {
  font-size: 1.414rem;
  text-transform: capitalize;
  font-weight: 600;
  color: #555;
}

.registration-2col blockquote {
  position: relative;
  margin-bottom: 0;
  margin-top: 30px;
  color: #777;
  font-size: 16px;
  border-left: none;
  line-height: 1.7;
  padding: 0px;
}

.registration-2col blockquote footer {
  background-color: transparent;
  padding: 20px 0 0 0;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 70%;
  color: #999;
}

.registration-2col blockquote footer:before {
  font-weight: 600;
}

.registration-2col:after {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
}

.registration-2col .content-wrap {
  position: relative;
  z-index: 5;
  display: table;
  height: 100%;
  width: 100%;
}

@media (min-width: 768px) {
  .registration-2col .content-wrap .content {
    display: table-cell;
    vertical-align: middle;
  }
}

@media (min-width: 768px) {
  .registration-2col .testimonial-wrap {
    margin-top: 10px;
  }
}

.registration-2col .form-wrapper {
  background-color: #fff;
  padding: 25px;
  box-shadow: 0 0 3px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .registration-2col .form-wrapper {
    margin-bottom: 0;
  }
}

.registration-2col .form-wrapper h4 {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #666;
  line-height: 1;
  margin-bottom: 6px;
}

.registration-2col .form-wrapper h5 {
  color: #999;
  margin-bottom: 20px;
}

.registration-2col .form-wrapper input:focus {
  outline: none;
  box-shadow: none;
}

.registration-2col .form-wrapper .fname {
  margin-bottom: 10px;
}

.registration-2col .form-wrapper .pass {
  margin-bottom: 20px;
}

.landing-header-1 {
  padding: 80px 0;
  position: relative;
  background-size: cover;
  background-position: center center;
  z-index: 4;
}

@media (min-width: 768px) {
  .landing-header-1 {
    height: 100vh;
    padding: 0;
  }
}

.landing-header-1:after {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
}

.landing-header-1 .content-wrap {
  position: relative;
  z-index: 5;
  display: table;
  height: 100%;
  width: 100%;
}

.landing-header-1 .content-wrap .content {
  text-align: center;
}

.landing-header-1 .content-wrap .content h2 {
  font-size: 1.999rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.landing-header-1 .content-wrap .content h3 {
  font-size: 1.414rem;
  font-weight: 300;
  margin-bottom: 50px;
}

.landing-header-1 .content-wrap .content .trial-btn, .landing-header-1 .content-wrap .content .subscribe-btn {
  padding: 0;
  border: none;
  display: block;
}

@media (min-width: 768px) {
  .landing-header-1 .content-wrap .content .trial-btn, .landing-header-1 .content-wrap .content .subscribe-btn {
    display: inline-block;
  }
}

.landing-header-1 .content-wrap .content .trial-btn a, .landing-header-1 .content-wrap .content .subscribe-btn a {
  text-transform: uppercase;
  font-size: 0.707rem;
  letter-spacing: 1px;
  color: #fff;
  padding: 9px 30px;
}

@media (min-width: 600px) {
  .landing-header-1 .content-wrap .content .trial-btn a, .landing-header-1 .content-wrap .content .subscribe-btn a {
    padding: 9px 73px;
  }
}

.landing-header-1 .content-wrap .content .trial-btn a {
  background-color: #007fbe;
}

.landing-header-1 .content-wrap .content .subscribe-btn a {
  background-color: #be0f00;
}

.landing-header-1 .content-wrap .content .btn-devider {
  display: inline-block;
  margin: 15px 0;
  color: #999;
  font-size: 1rem;
  text-transform: uppercase;
  font-size: 0.707rem;
}

@media (min-width: 768px) {
  .landing-header-1 .content-wrap .content .btn-devider {
    margin: 0 15px;
  }
}

@media (min-width: 768px) {
  .landing-header-1 .content-wrap .content {
    display: table-cell;
    vertical-align: middle;
  }
}

.split-header {
  position: relative;
  height: 100vh;
  /*overflow: hidden;*/
}

.split-header div[class*='col-']:first-child {
  padding: 0;
}

@media (max-width: 767px) {
  .split-header {
    height: auto;
  }
  .split-header > div[class*='col-']:last-child {
    padding: 4.875em 0;
    position: relative;
    top: 0;
    left: 0;
  }
  .split-header > div[class*='col-']:first-child {
    position: relative;
    height: 32.5em;
    padding: 0;
  }
}

.split-header div[class*='col-'] {
  position: absolute;
  height: 100%;
  top: 0;
}

.split-header .bg-img-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background-size: cover !important;
  background-position: 50% 50% !important;
  background: #000;
}

@media (max-width: 767px) {
  .split-header .bg-img-container {
    position: relative;
  }
}

.split-header .pos-left {
  left: 0;
}

.split-header .pos-right {
  right: 0;
}

.split-header .splitheader-content {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 10px;
  right: 10px;
  padding: 0 50px;
}

@media (max-width: 767px) {
  .split-header .splitheader-content {
    padding: 0 15px;
    top: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.split-header .splitheader-content p {
  font-weight: 400;
  font-size: 1.414rem;
  letter-spacing: 1px;
  line-height: 1.4;
  margin-bottom: 50px;
  font-family: Montserrat, sans-serif;
  color: #838383;
  font-size: 1.214rem;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .split-header .splitheader-content h1 {
    margin-bottom: 0;
  }
}

/* OWL CAROUSEL */
.carousel-items-wraper {
  overflow: hidden;
}

.header-social:before {
  background-color: rgba(0, 0, 0, 0.1);
}

.header-social .wid-social-icons2 ul li a {
  border-color: #fff;
  border-radius: 0;
}

.header-social .wid-social-icons2 ul li a span {
  color: #fff;
}

.header-social .wid-social-icons2 ul li a:hover {
  background-color: #fff;
}

.header-social .wid-social-icons2 ul li a:hover span {
  color: #111;
}

.header-text-button .button-text {
  display: inline-block;
}

.header-multi-text {
  text-transform: uppercase;
}

.header-multi-text .intro {
  padding-top: 110px;
}

.header-multi-text:before {
  background-color: rgba(0, 0, 0, 0.1);
}

.header-multi-text .header-title {
  margin-bottom: 0;
  text-transform: none;
}

.header-multi-text .header-title span {
  letter-spacing: 0.8rem;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
}

.header-multi-text .header-subtitle {
  font-size: 2.827rem !important;
  position: relative;
  margin-top: 0 !important;
}

.header-multi-text .header-subtitle:after {
  content: '';
  height: 45px;
  width: 2px;
  background-color: #fff;
  position: absolute;
  bottom: -50px;
  left: -webkit-calc(50% - 1px);
  left: calc(50% - 1px);
}

.header-multi-text .btn {
  border-radius: 0;
  color: #fff;
  border-color: #fff;
  margin-top: 50px !important;
}

.header-multi-text .btn:hover {
  background-color: #fff;
  color: #111;
}

.header-shape .header-bg {
  position: none;
}

.header-shape .header-bg .intro-box .intro {
  position: inherit;
  padding-top: 50px;
}

.header-shape .header-bg .intro-box .intro .shape {
  width: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.header-shape .header-bg .intro-box .intro .down {
  margin-top: 30px;
}

.header-shape .header-bg .intro-box .intro .title-box {
  z-index: 3;
}

.header-shape .header-bg .intro-box .intro .title-box img {
  max-width: 240px;
}

.header-shape .header-bg .intro-box .intro .title-box .header-title {
  font-size: 45px;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 0;
}

.header-shape .header-bg .intro-box .intro .title-box .header-subtitle {
  letter-spacing: 14px;
  text-transform: uppercase;
  font-size: 32px;
  margin-top: -10px;
}

.header-img img {
  margin-right: auto;
  margin-left: auto;
}


.coming-soon-header .header .intro-box .intro .header-title {
  margin-bottom: 40px;
}

.coming-soon-header h4.upper {
  text-transform: uppercase;
}

.coming-soon-header .header-subtitle {
  display: block;
  margin-bottom: 40px;
}

/*--------------------------------------------------------------
# features
--------------------------------------------------------------*/
/*Icon-col-3*/
/************/
@media (min-width: 48rem) {
  .icon-3-col .row {
    /*margin-top: 40px;  */
    margin-top: 5px;
  }
}

.icon-3-col .item .row {
  padding: 15px 0;
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
  border-radius: 3px;
}

.icon-3-col .item:hover .row {
  background: #fafafa;
}

.icon-3-col .item h4 {
  margin-bottom: 10px;
  margin-top: 0px;
  font-weight: 500;
  line-height: 1.2;
}

.icon-3-col .item .icon {
  font-size: 3.998rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  margin: 0 -15px;
}

.icon-3-col .item .icon .line-top, .icon-3-col .item .icon .line-bottom {
  position: absolute;
  width: 6px;
  height: 20px;
  left: -webkit-calc(50% - 3px);
  left: calc(50% - 3px);
  background-color: #007fbe;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.icon-3-col .item .icon .line-top {
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
}

.icon-3-col .item .icon .line-bottom {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.icon-3-col .item:hover .icon {
  color: #007fbe;
}

.icon-3-col .item:hover .icon .line-top {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}

.icon-3-col .item:hover .icon .line-bottom {
  -webkit-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  transform: translateY(-15px);
}

.icon-3-col .item:hover .icon .line-top, .icon-3-col .item:hover .icon .line-bottom {
  display: block;
}

.icon-3-col .item p.desc {
  font-weight: 400;
  color: #5d5d5d;
}

.icon-3-col .item h6.sub {
  color: #757576;
  margin-bottom: 5px;
  margin-top: 0;
}

/* ----------------------------------------------------
	footer nav
-------------------------------------------------------*/
.footer-nav:before,.footer-nav:after{content:" ";display:table;}
.footer-nav:after{clear:both;}
ul.footer-nav,.footer-nav ol,.footer-nav ul,.footer-nav li{list-style:none;margin:0;padding:0;}
.footer-nav li:before{display:none;}
@media (max-width:767px){.footer-nav{display:none;}}.footer-nav a{display:block;}
.footer-nav .level1:before,.footer-nav .level1:after{content:" ";display:table;}
.footer-nav .level1:after{clear:both;}
.footer-nav 
.level1-item{display:table-cell;width:1%;}
.footer-nav .level1-item > i{font-size:16px;color:#ffffff;margin-bottom:10px;font-style:normal;}
@media (min-width:768px) and (max-width:991px){.footer-nav .level1-item > i{font-size:16px;}}
.footer-nav .level2-item > a{padding:2px 0;}


/* ----------------------------------------------------
	Contact and Office
-------------------------------------------------------*/
.contact, .office{
    background-color: #ffffff;
}
.contact_form {
    overflow: hidden;
    display: block;
    margin-top: 50px;
}
.contact #contactform .btn-primary {
    /* background: #30ad97;  */
	background: #800000;
    border-color: rgba(173, 154, 154, 0.4) !important;
    color: #ccc;
    border-radius: 0 !important;
    font-size: 14px !important;
    float: right;
    clear: both;
}
.contact #contactform .form-control {
    margin-bottom: 20px;
    background: transparent;
    border-color: rgba(173, 154, 154, 0.4);
    height: 45px;
    border-radius: 0;
}
.contact #contactform textarea.form-control {
    height: 175px !important;
}
.contact{
    padding-bottom: 80px;
    border-bottom: 1px solid #ddd;
}


 /* ----------- block   -------------------*/
.block-title {
    font-weight:300;
    font-family:'Roboto Condensed',sans-serif;
    font-size:3em;
    padding:0 40px;
    margin:0;
    line-height:1.6;
    display:inline-block;
    position:relative;
    text-transform:uppercase;
}
.block-title.title-light,.block-title.title-light span {
    color:#fff;
}
.block {
    padding:80px 0;
    overflow:hidden;
    position:relative;
} 

.overflow-visible{
    overflow:visible;
}
  
.animation-box {
    display:inline-block;
    position:relative;
    z-index: 99;
}


/* ///////////////////////////////////////////////////////////////////// 
// 08 - Speciality
/////////////////////////////////////////////////////////////////////*/

#features {
    background-color:#fff;
    padding-bottom: 130px;
}
.feature-box {
   padding:30px 0px; 
    text-align:left;
    max-width:360px;
    margin:0 auto; 
}
.feature-box i {
    font-size:35px;
    line-height:0 !important;
    margin:0;
    padding:0;
    color:#41A1E1;
}
.feature-box p {
    padding:0px 20px;
}
.feature-box h2 {
    margin:0;
    padding:20px 0px;
    font-weight: 300;
}
.card-content h3{
    color#313131;
    font-size: 15px;
    text-transform: capitalize;
    padding:10px;
}
.special-card-wraper{
    margin-top: 30px;
}

.special-card{
    background-color: #fff;
    padding: 10px 0;
    transition-duration: 0.5s;

   
}
.special-card:hover{
     box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}
.card-content p{
    color#969595;
    font-size: 14px;
}
.card-icon-box{
    display: inline-block;
    height: 100px;
    width: 100px;
    left: 0;
    right: 0;
}
.card-icon-box-inner{
    width:100%;
    height:100%; 
    position:relative;
    display:table;
    border-radius: 50%;
}
.card-icon-box .card-icon-box-inner i{
    display: table-cell;
    vertical-align: left;
    color: #fff;
    font-size: 35px;
}
.special-card-outer{
    margin-top: 10px;
    margin-bottom: 10px;
}

.border-default{
    border-color: #15cc9a;
}

.title-under-line-top{
    width: 100px;
    border-top:1px solid #15cc9a;
    margin-bottom: 0px;
}
.title-under-line-bottom{
    width: 80px;
    border-top:1px solid #15cc9a;
    margin-top: 5px;
}

.fa-file-pdf-o {
font-size:2em;}

.fa-file-word-o {
font-size:2em;}
  
 
  
  
  
  
  
  
  
  
  
  
  
  
  
  