/*-----------------
    @Typography
-----------------*/
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900");
/*---------------------------
** Global Scss
---------------------------*/
.slicknav_menu {
  display: none; }
  a{
	  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  }
.boxed-btn {
  display: inline-block;
  background-color: #ed1c24;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 15px 45px;
  border-radius: 5px;
  border: 2px solid transparent;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in; }
  .boxed-btn:hover {
    background-color: transparent;
    border-color: #ececec;
    color: #fff; }
  .boxed-btn.blank {
    background-color: transparent;
    border-color: #ececec; }
    .boxed-btn.blank:hover {
      background-color: #ed1c24;
      border: 2px solid transparent;
      color: #fff; }

.section-title {
  margin-bottom: 76px; }
  .section-title h3 {
    margin-top: 20px;
    margin-bottom: 8px; }

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #ed1c24;
  color: #ed1c24;
  line-height: 40px;
  font-size: 20px;
  text-align: center;
  z-index: 9;
  cursor: pointer; }

/*-----------------
    Preloader
-----------------*/
.preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-image:url(../img/bg/header-bg.jpg);
	background-repeat:no-repeat;
	background-position:top center;
	background-size:cover;
	
  }
  .preloader .loader .image-1 {
    display: inline-block;
    padding-left:0px;
    margin-bottom:0px;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    -webkit-animation-duration: 3s;
    -moz-animation-duration: 3s;
    -o-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: rotate;
    -moz-animation-name: rotate;
    -o-animation-name: rotate;
    animation-name: rotate;
    -webkit-animation-direction: linear;
    -moz-animation-direction: linear;
    -o-animation-direction: linear;
    animation-direction: linear;
	}

@-webkit-keyframes rotate {
  0% {
    -ms-transform: rotate(360deg);
    /* IE 9 */
    -webkit-transform: rotate(360deg);
    /* Chrome, Safari, Opera */
    transform: rotate(360deg); }
  100% {
    -ms-transform: rotate(-360deg);
    /* IE 9 */
    -webkit-transform: rotate(-360deg);
    /* Chrome, Safari, Opera */
    transform: rotate(-360deg); } }

@-moz-keyframes rotate {
  0% {
    -ms-transform: rotate(360deg);
    /* IE 9 */
    -webkit-transform: rotate(360deg);
    /* Chrome, Safari, Opera */
    transform: rotate(360deg); }
  100% {
    -ms-transform: rotate(-360deg);
    /* IE 9 */
    -webkit-transform: rotate(-360deg);
    /* Chrome, Safari, Opera */
    transform: rotate(-360deg); } }

@-o-keyframes rotate {
  0% {
    -ms-transform: rotate(360deg);
    /* IE 9 */
    -webkit-transform: rotate(360deg);
    /* Chrome, Safari, Opera */
    transform: rotate(360deg); }
  100% {
    -ms-transform: rotate(-360deg);
    /* IE 9 */
    -webkit-transform: rotate(-360deg);
    /* Chrome, Safari, Opera */
    transform: rotate(-360deg); } }

@keyframes rotate {
  0% {
    -ms-transform: rotate(360deg);
    /* IE 9 */
    -webkit-transform: rotate(360deg);
    /* Chrome, Safari, Opera */
    transform: rotate(360deg); }
  100% {
    -ms-transform: rotate(-360deg);
    /* IE 9 */
    -webkit-transform: rotate(-360deg);
    /* Chrome, Safari, Opera */
    transform: rotate(-360deg); } }

/*====================
** Normalize
====================*/
html {
  font-family: "Roboto", sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

body {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  /*  base font size  15px= 1em*/
  margin: 0;
  color: #777777;
  overflow-x: hidden;
  background:#fef9e6;
  }

h1 {
  font-size: 72px;
  line-height: 1.0833333333333333; }

h2 {
  font-size: 62px;
  line-height: 1.4444444444444444; }

h3 {
  font-size: 52px;
  line-height: 1.0833333333333333; }

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

h1, h2, h3, h4, h5, h6 {
  color: #222222;
  font-weight: 700;
  font-family: "Roboto", sans-serif; }

p {
  font-size: 14px;
  color: #777777;
  line-height: 1.625;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto; }

a {
  color: #777777;
  text-decoration: none; }

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

a i {
  padding: 0 2px; }

img {
  max-width: 100%; }

/*input and button type focus outline disable*/
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
select:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #ddd; }

/**
 * 5.0 - Alignments
 */
.alignleft {
  float: left; }

.alignright {
  float: right; }

.aligncenter {
  clear: both;
  display: block;
  margin: 0 auto 1.75em; }

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

/*------------------------------
    Navbar Area
------------------------------*/
.navbar-area{position:relative; z-index:999;}
.navbar-area ul {
  text-align: right; }
  .navbar-area ul li {
    display: inline-block;
    padding: 50px 18px; 
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
	position:relative;
	-webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
	}

.navbar-area ul li a a{padding-left:0px !important; padding-right:0px !important;}
.slicknav_nav .slicknav_arrow{float:right;}
.navbar-area ul li:hover ul{display:block;}
.navbar-area ul li ul{
	position:absolute;
	text-align:left;
	background-color:#ed1c24;
	display:none;
	left: 0px;
	top: 120px;
	-webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
	min-width:200px;
}
.navbar-area ul li ul li{
	padding-top:10px;
	padding-bottom:10px;
	display:inline-block;
	width:100%;
}
.navbar-area ul li ul li:hover{background:#0593BF;}
.navbar-area ul li ul li a{color:#fff; display:inline-block; width:100%;}
.navbar-area ul li ul li a:hover{color:#fff;}
	
    .navbar-area ul li a {
      color: #fff;
      -webkit-transition: all 0.3s ease-in;
      -moz-transition: all 0.3s ease-in;
      -o-transition: all 0.3s ease-in;
      transition: all 0.3s ease-in; }
      .navbar-area ul li a:hover {
        color: #ed1c24; }
        .navbar-area ul li a {
		    position: relative;
		}
.navbar-area ul li a.active:after,
.navbar-area ul li a.active:before{
	visibility: visible;
	opacity: 1;
}
.navbar-area ul li a:after {
    position:  absolute;
    left:  0;
    bottom: -50px;
    background: #ed1c24;
    content:  '';
    width:  100%;
    height: 4px;
    visibility: hidden;
    opacity: 0;
}

.navbar-area ul li a:before {
    position:  absolute;
    left: 50%;
    bottom: -46px;
    content:  '';
    width:  10px;
    height:  10px;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #ed1c24;
    transform: translateX(-50%);
     visibility: hidden;
    opacity: 0;
}

/*------------------------------
    Header Area
------------------------------*/
.header-area {
  position: relative;
  z-index:9; }
  .header-area.header-area-bg {
    background-color: #ddd;
    background-image: url(../img/bg/header-bg.jpg);
    background-size: cover;
    background-position: center; }
  .header-area:after {
    position: absolute;
    left: 0;
    content: '';
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: -1; }
  .header-area .single-slide-item {
    padding: 0px 0 50px 0; }
    .header-area .single-slide-item h1 {
      font-size:55px;
      font-weight: 400;
      color: #fff;
      line-height:70px; }
	  
	  .header-area .single-slide-item h2{font-size:45px;}
	  .header-area .single-slide-item h3{font-size:45px;}
	  
      .header-area .single-slide-item h1 span {
        font-weight: 600;
        font-size: 55px; }
    .header-area .single-slide-item .btn-wrapper {
      margin-top: 47px; }
      .header-area .single-slide-item .btn-wrapper .boxed-btn {
        margin: 0 19px; }

/*---------------------------
    Features
----------------------------*/
.feature-area {
  padding:80px 0; }
  .feature-area .our-feature-wrapper ul {
    font-size: 0; }
    .feature-area .our-feature-wrapper ul li {
      display: inline-block;
      width: 25%;
      margin: 0;
      padding: 0; }
      .feature-area .our-feature-wrapper ul li .single-feature-item {
        display: inline-block;
        padding: 40px 30px 25px 30px;
        padding-left: 40px;
        padding-right: 40px;
        border-collapse: collapse;
        border-top: 2px solid #f6f6f6;
        border-bottom: 2px solid #f6f6f6;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in; }
        .feature-area .our-feature-wrapper ul li .single-feature-item:hover {
          border-color: #ed1c24; }
        .feature-area .our-feature-wrapper ul li .single-feature-item:first-child {
          border-left: 2px solid #f6f6f6; }
        .feature-area .our-feature-wrapper ul li .single-feature-item.border-right {
          border-right: 2px solid #f6f6f6; }
        .feature-area .our-feature-wrapper ul li .single-feature-item .icon {
          margin-bottom: 17px; }
          .feature-area .our-feature-wrapper ul li .single-feature-item .icon i {
            font-size: 40px;
            line-height: 40px; }
            .feature-area .our-feature-wrapper ul li .single-feature-item .icon i:before {
              font-size: 60px;
              line-height: 60px;
              color: #ed1c24;
              margin-left: 0; }
        .feature-area .our-feature-wrapper ul li .single-feature-item .content {
          padding-top: 20px; }
          .feature-area .our-feature-wrapper ul li .single-feature-item .content h4 {
            font-size: 20px;
            margin-top: 0;
            margin-bottom: 18px; }
          .feature-area .our-feature-wrapper ul li .single-feature-item .content p {
            font-size: 14px; }

/*------------------------
    Suitable Business
-------------------------*/
.suitable-business-area {
  position: relative;
  padding: 138px 0 120px 0;
  z-index: 1;
  overflow: hidden;
   }
  .suitable-business-area.suitable-business-bg {
    background-image: url(../img/bg/suitable-business-bg.jpg);
    background-color: #fff;
    background-position: center;
    background-size: cover; }
  .suitable-business-area .left-content .section-title {
    position: relative;
    z-index: 1;
    margin-bottom: 35px; }
    .suitable-business-area .left-content .section-title .bg-text {
      position: absolute;
      left: -80px;
      top: -100px;
      font-size: 200px;
      font-weight: 700;
      color: #fff;
      z-index: -1; }
    .suitable-business-area .left-content .section-title h2 {
      padding-top: 30px;
      font-size: 62px;
      color: #ed1c24;
      font-weight: 700;
      margin-bottom: 0;
      line-height: 1.2; }
    .suitable-business-area .left-content .section-title h4 {
      margin-top: 0;
      font-size: 32px;
      font-weight: 400; }
  .suitable-business-area .left-content .content .boxed-btn {
    margin-top: 28px;
    margin-bottom: 0; }
    .suitable-business-area .left-content .content .boxed-btn:hover {
      border-color: #ed1c24;
      color: #ed1c24; }
  .suitable-business-area .left-content .content p {
    line-height: 26px; }

/*---------------------------
    Our Service 
---------------------------*/
.our-service-area {
  padding: 120px 0 90px 0; }
  .our-service-area .single-service-box {
    padding: 40px 20px 25px 20px;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    border: 1px solid #f1f1f1;
    margin-bottom: 30px; }
    .our-service-area .single-service-box:hover {
      background-color: #fbfbfb; }
    .our-service-area .single-service-box .icon {
      display: block;
      margin-bottom: 30px; }
      .our-service-area .single-service-box .icon i {
        font-size: 60px;
        line-height: 60px;
        color: #ed1c24; }
        .our-service-area .single-service-box .icon i:before {
          font-size: 60px;
          line-height: 60px;
          margin-left: 0; }
    .our-service-area .single-service-box .content h4 {
      margin-bottom: 25px;
      color: #222222;
      font-weight: 500;
      font-size: 28px; }
    .our-service-area .single-service-box .content p {
      font-size: 14px;
      color: #777777; }

/*-----------------------
    Portfolio Area
------------------------*/
.portfolio-area {
  padding: 120px 0 90px 0;
  background-color: #fbfbfb; }
  .portfolio-area .portfolio-filter-menu {
    text-align: center;
    margin-bottom: 40px; }
    .portfolio-area .portfolio-filter-menu ul {
      font-size: 0; }
      .portfolio-area .portfolio-filter-menu ul li {
        display: inline-block;
        font-size: 16px;
        font-weight: 500;
        color: #222222;
        cursor: pointer;
        padding: 10px 30px;
        border-radius: 5px;
        margin: 0 5px;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in; }
        .portfolio-area .portfolio-filter-menu ul li:hover {
          background-color: #ed1c24;
          color: #fff; }
        .portfolio-area .portfolio-filter-menu ul li.active {
          background-color: #ed1c24;
          color: #fff; }
  .portfolio-area .portfolio-masonary-wrapper .single-portfolio-item {
    margin-bottom: 30px; }
    .portfolio-area .portfolio-masonary-wrapper .single-portfolio-item .thumb {
      position: relative;
      overflow: hidden; }
      .portfolio-area .portfolio-masonary-wrapper .single-portfolio-item .thumb:hover .hover {
        visibility: visible;
        opacity: 1;
        top: 0; }
      .portfolio-area .portfolio-masonary-wrapper .single-portfolio-item .thumb .hover {
        position: absolute;
        left: 0;
        top: -100%;
        width: 100%;
        height: 100%;
        background-color: rgba(237, 28, 36, 0.8);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in; }
        .portfolio-area .portfolio-masonary-wrapper .single-portfolio-item .thumb .hover a {
          display: inline-block;
          width: 50px;
          height: 50px;
          text-align: center;
          border: 2px solid #fff;
          color: #fff;
          line-height: 50px;
          font-size: 20px;
          border-radius: 50%;
          -webkit-transition: all 0.3s ease-in;
          -moz-transition: all 0.3s ease-in;
          -o-transition: all 0.3s ease-in;
          transition: all 0.3s ease-in; }
          .portfolio-area .portfolio-masonary-wrapper .single-portfolio-item .thumb .hover a:hover {
            -ms-transform: rotate(360deg);
            /* IE 9 */
            -webkit-transform: rotate(360deg);
            /* Chrome, Safari, Opera */
            transform: rotate(360deg); }

/*-----------------------
    Our Mission
-----------------------*/
.progressbar {
  width: 100%;
  margin-top: 5px;
  margin-bottom: 25px;
  position: relative;
  background-color: #f4f4f4; }

.proggress {
  height: 8px;
  width: 10px;
  background-color: #ed1c24; }

.percentCount {
  float: right;
  font-size: 18px;
  color: #ed1c24;
  margin-top: -42px;
  clear: both; }

.our-mission-area {
  padding: 88px 0 85px 0;
  overflow: hidden;
   }
  .our-mission-area .left-conter {
    position: relative;
    z-index: 1;
    padding-right: 50px; }
    .our-mission-area .left-conter .bg-text {
      position: absolute;
      font-size: 200px;
      top: -50px;
      left: -180px;
      font-weight: 700;
      z-index: -1;
      color: #f8f8f8; }
    .our-mission-area .left-conter h3 {
      font-size: 32px;
      font-weight: 500;
      margin-bottom: 20px;
      margin-top: 17px; }
    .our-mission-area .left-conter .icon {
      display: block;
      color: #ed1c24; }
      .our-mission-area .left-conter .icon i {
        font-size: 60px;
        line-break: 60px; }
        .our-mission-area .left-conter .icon i:before {
          font-size: 60px;
          line-height: 60px;
          margin-left: 0; }
    .our-mission-area .left-conter p {
      color: #777777;
      font-size: 14px;
      line-height: 26px; }
  .our-mission-area .right-content {
    padding-top: 50px; }
    .our-mission-area .right-content .studio-progressbar .progress-name {
      font-size: 18px;
      color: #222;
      display: block;
      margin-bottom: 8px; }

/*-------------------------------
    Counter Area
--------------------------------*/
.counter-area {
  position: relative;
  z-index: 2;
  padding: 120px 0 105px 0;
  overflow: hidden;
   }
  .counter-area:after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #ed1c24;
    opacity: .90;
    z-index: -1; }
  .counter-area.counter-bg {
    background-image: url(../img/bg/counter-bg.jpg);
    background-size: cover;
    background-position: center; }
  .counter-area .bg-text {
    position: absolute;
    left: 10%;
    top: 10%;
    font-size: 200px;
    color: #fff;
    font-weight: 700;
    z-index: -1; }
  .counter-area .single-counter-box .icon {
    margin-bottom: 25px; }
    .counter-area .single-counter-box .icon i {
      font-size: 60px;
      line-height: 60px;
      color: #fff; }
      .counter-area .single-counter-box .icon i:before {
        font-size: 60px;
        line-height: 60px; }
  .counter-area .single-counter-box .content .counter-text {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    display: block;
    margin-bottom: 5px; }
  .counter-area .single-counter-box .content .counter-number {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    display: block; }

/*-----------------------
    Team Member Area
-----------------------*/
.our-angels-area {
  padding: 120px 0 90px 0; }
  .our-angels-area .single-team-member {
    margin-bottom: 80px; }
    .our-angels-area .single-team-member .image-box {
      position: relative; }
      .our-angels-area .single-team-member .image-box img {
        min-height: 290px;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in; }
        .our-angels-area .single-team-member .image-box img:hover {
          opacity: .8;
          -ms-transform: scale(1.02);
          /* IE 9 */
          -webkit-transform: scale(1.02);
          /* Chrome, Safari, Opera */
          transform: scale(1.02); }
      .our-angels-area .single-team-member .image-box .member-details {
        position: absolute;
        left: 0;
        bottom: -30px;
        width: 85%;
        background-color: #ed1c24;
        margin-left: 20px;
        margin-right: 20px;
        padding: 25px 30px 15px 30px;
        text-align: center;
        border-top-right-radius: 5px;
        border-top-left-radius: 5px; }
        .our-angels-area .single-team-member .image-box .member-details:after {
          position: absolute;
          left: 0;
          bottom: -10px;
          content: '';
          width: 100%;
          height: 20px;
          border-radius: 5px;
          background-color: #ed1c24;
          -ms-transform: skewY(4deg);
          /* IE 9 */
          -webkit-transform: skewY(4deg);
          /* Chrome, Safari, Opera */
          transform: skewY(4deg); }
        .our-angels-area .single-team-member .image-box .member-details .member-name {
          font-size: 18px;
          font-weight: 500;
          color: #fff; }
        .our-angels-area .single-team-member .image-box .member-details .post {
          display: block;
          font-size: 14px;
          color: #fff; }

/*--------------------------
    Video Area
--------------------------*/
.minimal-video-area {
  position: relative;
  padding: 180px 0 167px 0;
  z-index: 1;
  overflow: hidden;
   }
  .minimal-video-area .bg-text {
    position: absolute;
    left: 0;
    top: 150px;
    width: 100%;
    height: 100%;
    font-size: 200px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
    text-align: center;
    z-index: -1; }
  .minimal-video-area.video-area-bg {
    background-image: url(../img/bg/video-bg.jpg);
    background-position: center;
    background-size: cover; }
  .minimal-video-area:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #ed1c24;
    opacity: .90;
    content: '';
    z-index: -1; }
  .minimal-video-area .minimal-video-wrapper .icon {
    margin-bottom: 50px; }
    .minimal-video-area .minimal-video-wrapper .icon i {
      font-size: 80px;
      line-height: 80px;
      color: #fff; }
      .minimal-video-area .minimal-video-wrapper .icon i:before {
        font-size: 80px;
        line-height: 80px;
        margin-left: 0; }
  .minimal-video-area .minimal-video-wrapper .content h3 {
    font-size: 52px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 28px; }
  .minimal-video-area .minimal-video-wrapper .content p {
    color: #fff;
    font-size: 14px; }

/*------------------------
    News Area
-------------------------*/
.news-feeds-area {
  padding: 120px 0; }
  .news-feeds-area .single-news-box-item .content {
    border: 2px solid #f1f1f1;
    border-top: none;
    padding: 38px 38px 28px 38px; }
    .news-feeds-area .single-news-box-item .content .date-meta {
      font-size: 14px;
      font-weight: 400;
      color: #ed1c24; }
    .news-feeds-area .single-news-box-item .content h4 {
      font-size: 24px;
      font-weight: 500; }

/*--------------------
    Subscribe Area
---------------------*/
.subscribe-area {
  padding: 65px 0 100px 0;
  position: relative;
  background-color: #ed1c24;
  z-index: 1;
  overflow: hidden;
   }
  .subscribe-area .bg-text {
    position: absolute;
    left: 0;
    top: 0px;
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 200px;
    color: rgba(255, 255, 255, 0.05);
    font-weight: 700;
    z-index: -1;
    padding-top: 80px; }
  .subscribe-area .subscriber-wrapper h2 {
    font-size: 52px;
    color: #fff;
    font-weight: 500; }
  .subscribe-area .subscriber-wrapper .form-wrapper {
    margin-top: 50px;
    position: relative; }
    .subscribe-area .subscriber-wrapper .form-wrapper input[type=email] {
      background-color: transparent;
      padding: 13px 25px;
      border-radius: 25px;
      border: 4px solid rgba(255, 255, 255, 0.5);
      width: 100%;
      padding-right: 150px;
      color: #fff; }
      .subscribe-area .subscriber-wrapper .form-wrapper input[type=email]::-webkit-input-placeholder {
        /* WebKit browsers */
        color: rgba(255, 255, 255, 0.5); }
      .subscribe-area .subscriber-wrapper .form-wrapper input[type=email]:-moz-placeholder {
        /* Mozilla Firefox 4 to 18 */
        color: rgba(255, 255, 255, 0.5); }
      .subscribe-area .subscriber-wrapper .form-wrapper input[type=email]::-moz-placeholder {
        /* Mozilla Firefox 19+ */
        color: rgba(255, 255, 255, 0.5); }
      .subscribe-area .subscriber-wrapper .form-wrapper input[type=email]:-ms-input-placeholder {
        /* Internet Explorer 10+ */
        color: rgba(255, 255, 255, 0.5); }
    .subscribe-area .subscriber-wrapper .form-wrapper input[type=submit] {
      padding: 12px 25px;
      border-radius: 25px;
      border: none;
      text-align: center;
      font-size: 16px;
      font-weight: 500;
      background-color: #fff;
      color: #ed1c24;
      position: absolute;
      top: 4px;
      right: 3px;
      -webkit-transition: all 0.3s ease-in;
      -moz-transition: all 0.3s ease-in;
      -o-transition: all 0.3s ease-in;
      transition: all 0.3s ease-in; }
      .subscribe-area .subscriber-wrapper .form-wrapper input[type=submit]:hover {
        opacity: .8; }

/*---------------------
    Logo Carousel
----------------------*/
.logo-carousel-area {
  padding: 100px 0; }
  .logo-carousel-area .logo-carousel .single-logo-item {
    padding: 20px;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in; }
    .logo-carousel-area .logo-carousel .single-logo-item:hover {
      -webkit-box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.2);
      -moz-box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.2);
      box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.2); }

/*-----------------------
    Footer Area
------------------------*/
.footer-area {
  position: relative;
  z-index: 1;
  padding: 100px 0; }
  .footer-area.footer-bg {
    background-image: url(../img/bg/footer-bg.jpg);
    background-size: cover;
    background-position: center; }
  .footer-area:after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #ed1c24;
    opacity: .90;
    z-index: -1; }
  .footer-area .copyright-area {
    padding-top: 50px; }
    .footer-area .copyright-area span {
      color: #fff;
      font-size: 22px;
      font-weight: 500; }
  .footer-area .footer-socials {
    padding-top: 30px;
    text-align: right; }
    .footer-area .footer-socials ul li {
      display: inline-block;
      margin: 0 10px; }
      .footer-area .footer-socials ul li:last-child {
        margin-right: 0; }
      .footer-area .footer-socials ul li a {
        display: inline-block;
        width: 60px;
        height: 60px;
        line-height: 60px;
        text-align: center;
        font-size: 20px;
        color: #fff;
        border: 2px solid rgba(255, 255, 255, 0.8);
        border-radius: 50%;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in; }
        .footer-area .footer-socials ul li a:hover {
          -ms-transform: rotate(360deg);
          /* IE 9 */
          -webkit-transform: rotate(360deg);
          /* Chrome, Safari, Opera */
          transform: rotate(360deg); }
  .footer-area .footer-logo {
    text-align: center; }

.text-shadow{
	text-shadow: 4px 4px 2px rgba(0, 0, 0, .3);
}

/* Our Upcoming Schedules */
.tabs-holder{ border: 1px solid #ccc;}
.schedules-tab-nav{ text-align: center; margin: -45px 0 0;}
.schedules-tab-nav ul{ display: inline-block; border: 1px solid #ccc;}
.schedules-tab-nav ul li{ float: left; border-right: 1px solid #ccc;}
.schedules-tab-nav ul li:last-child{ margin: 0; border: 0;}
.schedules-tab-nav ul li a{ position: relative; padding: 15px 30px; font-size: 24px; outline: none; background: #fff; display:block;}
.schedules-tab-nav ul li a span{ display: block; font-size: 16px; font-weight: 400; color: #444; font-family:'Open Sans', Arial, sans-serif; text-transform: uppercase;}
.schedules-tab-nav ul li.active a,
.schedules-tab-nav ul li.active a span{ color: #fff; display:block;}
.schedules-tab-nav ul li:last-child a::before{ display: none;}
.schedules-tab-nav ul li.active a::after{ content: "\e5c5"; position: absolute; left: 0; font-family: 'icomoon' !important;
height: 100%; width: 100%; top: 100%; margin: -26px 0 0; font-size: 40px; color:#ed1c24;}

.tab-content{ padding: 30px 60px 30px 30px;}
.schedules-widget{ position: relative; margin: 0 0 30px; padding: 0 0 30px;}
.schedules-widget:last-child{ margin: 0; padding: 0;}
.schedules-widget:last-child::before{ display: none;}
.schedules-widget .detail{ margin-left: 134px; padding: 10px 0 10px 30px; position: relative; border-left: 1px solid #ccc;}
.schedules-widget::before{ content: ""; position: absolute; right: 0; height: 100%; width: 84%; border-bottom: 1px dashed #ccc; bottom: 0; 
z-index: -1;}
.schedules-widget h3{margin: 0 0 15px; font-size:24px;}
.schedules-widget p{ margin: 0;}

.time-location{ overflow: hidden; margin: 0 0 10px;}
.time-location li{ float: left; margin: 0 30px 0 0; font-family:'Open Sans', Arial, sans-serif; font-weight: 700;}
.time-location li:last-child{ margin: 0;}
.time-location li i{ margin: 0 5px 0 0; color: #999; font-size: 12px;}

.speaker-name{ overflow: hidden; padding: 15px 0 0;}
.speaker-name li{ float: left; font-family:'Open Sans', Arial, sans-serif; font-weight: 700; margin: 0 10px 0 0;}
.speaker-name li:last-child{ margin: 0;}
.speaker-name li i{ margin: 0 5px 0 0; color: #999; line-height: 0;}
.speaker-name li span{ font-family: 'Open Sans', sans-serif; font-weight: 100; font-style: italic; color: #999; margin: 0 0 0 5px;}

.speaker-imgs{ position: absolute; top: 50%; margin: -67px 0 0;}
.speaker-imgs ul li{ float: left; margin: 0 5px 5px 0;}
.speaker-imgs ul li:last-child{ margin: 0;}
.speaker-imgs ul li a{ position: relative;}
.speaker-imgs ul li a img{ border-radius: 100%;}
.speaker-imgs ul li a::after{ visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0;}
.speaker-imgs ul li a .toltip{ position: absolute; top: 130%; padding: 7px 10px; background: #000; color: #fff; font-size: 12px; min-width: 100px; z-index: 100;
visibility: hidden; opacity: 0; text-align: center; left: 0; margin: -10px 0 0;}
.speaker-imgs ul li a .toltip::before{ content: "\e5c7"; position: absolute; left: 50%; bottom: 100%; color: #000; font-family: icomoon; font-size: 40px; 
margin: 0 0 -27px -20px;}
.speaker-imgs ul li a:hover .toltip{ opacity: 1; visibility: visible; top: 118%;}

.break-widget{ margin: 0 0 5px;}
.break-widget .title,
.break-widget .time{ padding: 30px 0; text-align: center;}
.break-widget .title h2,
.break-widget .time h2{ font-size: 36px; margin: 0; line-height: 20px; font-weight: 300; color: #fff; position: relative;
z-index: 1;  font-family: 'Open Sans', sans-serif;}
.break-widget .title::before{ content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 100%; background: rgba(0,0,0,0.8); }
.break-widget .title{ background: url(../img/beack-bg.jpg) no-repeat; position: relative;}

.more-btn{ text-align: center;}
.more-btn .btn{ margin: 30px 0 0; min-width: 265px;}
.more-btn .btn:hover{ border-color: #ccc;}

.seprater-line{ background: url(../img/heading-patern.png) repeat-x; height: 4px; width: 80%; margin: 50px auto 0;}
.team.style-2 .seprater-line{ width: 50%;}
.time-location li{color:#ed1c24;}
.schedules-tab-nav li a{color:#ed1c24;}
.detail h3 a{color:#222;}

.schedules-tab-nav li.active a{background: #ed1c24;}

.kongre-programi .boxed-btn:hover {
	border-color: #ed1c24;
	color: #ed1c24; 
}
	
.text-color1{color:#ed1c24 !important;}
.text-color2{color:#0593BF !important;}
.text-color3{color:#222222 !important;}
.text-color4{color:#fff !important;}

.bg-color1{background-color:#f8f8f8;}

.address-widget h3 {font-size: 24px;}

.main-nav-scrolled #main-menu > li > a{color:#000;}
.main-nav-scrolled .logo img{width:95px;}
.main-nav-scrolled{
  position: fixed;
  top: 0;
  width: 100%;
  z-index:999;
  background:rgba(255,255,255, .9);
}

.container-fluid {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
/*==============================================
			Event Counter Style					
==============================================*/
.tg-counterarea{
	width:100%;
	float:left;
}
.tg-eventinfo{
	width:35%;
	float:left;
}
.tg-eventinfo .tg-themepostimg:after{display:none;}
.tg-eventinfo .tg-themepostimg figcaption{
	top:0;
	left:0;
	content:'';
	width:100%;
	height:100%;
	padding:0 90px;
	position:absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	align-content: center;
	z-index:99;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
		-ms-flex-direction: column;
			flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
		-ms-flex-pack: center;
			justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
		-ms-flex-align: center;
			align-items: center;
	-webkit-align-content: center;
		-ms-flex-line-pack: center;
			align-content: center;
}
.tg-timedate{
	color:#fff;
	display:block;
	font-size:20px;
	line-height:20px;
	font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.tg-eventinfo h2{
	margin:0;
	color:#fff;
	font-size:40px;
	font-weight:500;
	line-height:50px;
	padding:0 0 22px;
	position:relative;
	text-transform:none;
}
.tg-eventinfo h2:before{
	left:0;
	bottom:0;
	content:'';
	height:4px;
	width:100px;
	background:#fff
;	border-radius:3px;
	position:absolute;
}
.tg-eventinfo h2 span{display:block;}
.tg-btnaddtocalendar{
	right:20px;
	width:60px;
	bottom:20px;
	height:60px;
	font-size:24px;
	background:#fff;
	line-height:60px;
	border-radius:50%;
	text-align:center;
	position:absolute;
}







.tg-upcomingeventcounter{
	width:65%;
	float:left;
	background:#fcfcfc;
}
.tg-eventcounter{
	width:25%;
	float:left;
	padding:73px 0;
	text-align:center;
}
.tg-eventcounter:nth-child(even){background:#f7f7f7;}
.tg-eventcounter span:first-child{
	display:block;
	font-size:60px;
	margin:0 0 30px;
	line-height:50px;
	padding:0 0 30px;
	position:relative;
}
.tg-eventcounter span:first-child:before{
	left:50%;
	bottom:0;
	content:'';
	width:70px;
	height:4px;
	position:absolute;
	border-radius:3px;
	margin:0 0 0 -35px;
	background:#dbdbdb;
}
.tg-eventcounter span:last-child{
	color:#444349;
	display:block;
	font-size:20px;
	line-height:20px;
}
.tg-bgtestimonials{
	position:relative;
	background:url(../images/testimonial-bg.jpg) no-repeat;
	background-size:cover;
}
.tg-bgtestimonials:before{
	top:0;
	left:0;
	content:'';
	z-index:1;
	width:100%;
	height:100%;
	position:absolute;
	background:
		-moz-linear-gradient(-45deg,
		rgba(246,115,13,0.7) 0%,
		rgba(217,8,69,0.7) 80%);
	background:
		-webkit-linear-gradient(-45deg,
		rgba(246,115,13,0.7) 0%,
		rgba(217,8,69,0.7) 80%);
	background:
		linear-gradient(135deg,
		rgba(246,115,13,0.7) 0%,
		rgba(217,8,69,0.7) 80%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b3f6730d', endColorstr='#b3d90845',GradientType=1 );
}
.tg-testimonials{
	width:100%;
	float:left;
	z-index:3;
	padding:0 20px;
	position:relative;
	text-align:center;
}
.tg-testimonials:before,
.tg-testimonials:after{
	left:50%;
	z-index:2;
	content:'';
	max-width:460px;
	width:100%;
	max-height:115px;
	height:100%;
	position:absolute;
	margin:0 0 0 -230px;
	border-left:14px solid #fff;
	border-right:14px solid #fff;
}
.tg-testimonials:before{
	top:0;
	border-bottom:0;
	border-top:14px solid #fff;
}
.tg-testimonials:after{
	bottom:0;
	border-top:0;
	border-bottom:14px solid #fff;
}
.tg-testimonial,
.tg-testimonial .item{
	width:100%;
	float:left;
}
.tg-testimonialcontent{
	width:100%;
	float:left;
	z-index:3;
	padding:100px 0 140px;
	position:relative;
}
.tg-clientname{
	color:#fff;
	display:block;
	font-size:20px;
	margin:0 0 20px;
	line-height:20px;
	font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
blockquote{
	border:0;
	margin:0;
	padding:0;
	width:100%;
	float:left;
	quotes:none;
	color:#fff;
	font-size:40px;
	font-weight:500;
	line-height:50px;
	font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.tg-testimonialcontent > img{
	left:50%;
	bottom:60px;
	position:absolute;
	margin:0 0 0 -35px;
	width:auto !important;
}

.tg-appbg::before, .tg-hallimg::before, .tg-bgsignup::before, .tg-askquestions::after, .tg-bgcontactus::before, .tg-themepostimg::before, .tg-registerholder::before, .tg-bgtestimonials::before {

    background: -moz-linear-gradient(-45deg, rgba(87,69,134,0.7) 0%, rgba(87,69,134,0.7) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(87,69,134,0.7) 0%, rgba(87,69,134,0.7) 100%);
    background: linear-gradient(135deg, rgba(87,69,134,0.7) 0%, rgba(87,69,134,0.7) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b3574586', endColorstr='#b3574586',GradientType=1 );

}
.tg-themepostimg::before {
    top: 0;
    left: 0;
    content: '';
    z-index: 1;
    width: 100%;
    height: 100%;
    position: absolute;
    background: -moz-linear-gradient(-45deg, rgba(246,115,13,0.7) 0%, rgba(217,8,69,0.7) 80%);
    background: -webkit-linear-gradient(-45deg, rgba(246,115,13,0.7) 0%, rgba(217,8,69,0.7) 80%);
    background: linear-gradient(135deg, rgba(246,115,13,0.7) 0%, rgba(217,8,69,0.7) 80%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b3f6730d', endColorstr='#b3d90845',GradientType=1 );
}

.tg-themepostimg {
    margin: 0;
    width: 100%;
    float: left;
    position: relative;
}

.tg-themepostimg > img {

    width: 100%;
    height: auto;
    display: block;

}

.mb-show{display:none;}

/* ------------------------------------------------------------------------ Menu Css ------------------------------------------------------------ */
/* 2 Navigation */
/* 2.1 Navbar Top / .navbar-top */
.navbar {
    min-height: auto !important;
}
.navbar-top {
  position: relative;
  z-index: 10;
  padding:0px; margin-bottom:0px;}
  .menu-visible .bar3{display:none !important;}
  .menu-visible .mb-icon-menu-a .bar1, .menu-visible .mb-icon-menu-a .bar2{background:#fff !important;}
  @media screen and (min-width: 992px) {
    .navbar-top {
      /* position: fixed;
      top: 0;
      left: 0;
      right: 0;
      padding: 32px 40px;
      padding-bottom: 0; */
	  }
}
  .navbar-top .navbar-brand {
    display: flex;
    align-items: center;
    padding: 0; }
    .navbar-top .navbar-brand img {
      height: 40px; }
      @media screen and (min-width: 992px) {
        .navbar-top .navbar-brand img {
          height: 48px; } }
    .navbar-top .navbar-brand .logo {
      margin-right: 16px; }
    .navbar-top .navbar-brand .text {
      font-size: 1rem; }
      @media screen and (min-width: 992px) {
        .navbar-top .navbar-brand .text {
          font-size: 1.25rem; } }
      .navbar-top .navbar-brand .text .line {
        display: block;
        line-height: 1; }
  .navbar-top .menu-toggler {
    padding-top: 8px;
    padding-bottom: 8px; }

/* 2.2 Sidebar navigation / .navbar-sidebar */
.navbar-sidebar {
  position: absolute;
  z-index: 10;
  display: none;
  -webkit-transform: translateY(-100%) rotate(-90deg) translateY(100%) translateX(-100%);
          transform: translateY(-100%) rotate(-90deg) translateY(100%) translateX(-100%);
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom; }
  .navbar-sidebar .navbar-group {
    transition: 0.6s;
    transition-delay: 0.6s; }
  .navbar-sidebar:after {
    position: absolute;
    content: "";
    width: 40px;
    height: 2px;
    top: 50%;
    right: 0;
    background: currentColor;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    opacity: 0.25; }
  @media screen and (min-width: 768px) {
    .navbar-sidebar {
      position: absolute; } }
  @media screen and (min-width: 992px) {
    .navbar-sidebar {
      position: absolute;
      top: 32px;
      left: 40px;
      padding: 0;
      display: inline-block;
      padding-right: 40px;
      margin-top: 64px; } }
  @media screen and (min-width: 1200px) {
    .navbar-sidebar {
      position: fixed; } }
  .navbar-sidebar .navbar-nav {
    display: flex;
    flex-direction: row; }
  .navbar-sidebar .nav-item,
  .navbar-sidebar a {
    color: currentColor;
    padding: 0 8px;
    line-height: 1;
    position: relative;
    transition: 0.3s; }
    .navbar-sidebar .nav-item:before,
    .navbar-sidebar a:before {
      content: "";
      position: absolute;
      top: 50%;
      left: 0;
      width: 0%;
      border-bottom: 2px solid currentColor;
      transition: 0.3s;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%); }
    .navbar-sidebar .nav-item:hover,
    .navbar-sidebar a:hover {
      opacity: 0.5;
      text-decoration: none; }
      .navbar-sidebar .nav-item:hover::before,
      .navbar-sidebar a:hover::before {
        width: 100%; }

.loading-anim .navbar-sidebar .navbar-group {
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateX(-64px);
          transform: translateX(-64px); }

/* 2.3 Fullscreen navigation menu / .navfull-menu */

.menu-visible .mb-icon-menu-a .bar1,
.mb-icon-menu-a.menu-close .bar1 {
  width: 100%;
  -webkit-transform: rotate(45deg) scaleX(0.8);
          transform: rotate(45deg) scaleX(0.8);
  -webkit-transform-origin: center;
          transform-origin: center; }

.menu-visible .mb-icon-menu-a .bar2,
.mb-icon-menu-a.menu-close .bar2 {
  width: 100%;
  -webkit-transform: rotate(-45deg) scaleX(0.8);
          transform: rotate(-45deg) scaleX(0.8);
  -webkit-transform-origin: center;
          transform-origin: center; }

.navfull-menu {
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:#626366;
  color: #ffffff;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  transition: 0.6s; }
  .navfull-menu.menu-visible {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    visibility: visible; }
  .navfull-menu .nav-menu {
    /* font-size: 3rem; */}
    @media screen and (min-width: 992px) {
      .navfull-menu .nav-menu {
        font-size:2rem;
        line-height: 1.4; } }

    .navfull-menu .nav-menu a:hover{color:#ffb71b !important; font-weight:800;}
    .navfull-menu .nav-menu a:hover:after{
		/* content:" ";
		position:absolute;
		left:0px; top:50%;
		width:100%;
		height:3px;
		background:#fff; */
	}
    .navfull-menu .nav-menu a {
      /* color: currentColor;
      -webkit-text-stroke: 1px #ffffff; */
      color:#fff;
      transition: 0.3s;
      font-size:30px;
      padding:0px;
	  line-height:1.6;
	  font-family:'AvantGardeLTExtraLight',sans-serif;
	  position:relative;
	  padding-left:10px; padding-right:10px;
    }

      .navfull-menu .nav-menu a:hover {
        text-decoration: none;
        color: #ffffff; }
.mb-btn {
  font-size: 1.2rem; }

.mb-btn-line-a {
  color: currentColor;
  border: none;
  background: none;
  padding: 0.75em 0;
  display: inline-flex;
  align-items: center;
  transition: 0.3s;
}

  .mb-btn-line-a .icon {
    display: inline-flex; }
  .mb-btn-line-a .icon ~ .text {
    margin-left: 1em; }
  .mb-btn-line-a .text ~ .icon {
    margin-left: 1em; }
  .mb-btn-line-a:active, .mb-btn-line-a:hover {
    color: currentColor;
    background: none;
    box-shadow: none;
    opacity: 0.7; }
    .mb-btn-line-a:active::before, .mb-btn-line-a:hover::before {
      -webkit-transform: rotate(-45deg);
              transform: rotate(-45deg);
      -webkit-transform-origin: 100%;
              transform-origin: 100%;
      width: 1rem; }
    .mb-btn-line-a:active::after, .mb-btn-line-a:hover::after {
      -webkit-transform: rotate(45deg);
              transform: rotate(45deg);
      -webkit-transform-origin: 100%;
              transform-origin: 100%;
      width: 1rem; }

.mb-btn-line-a.btn-primary {
  color: #0094D8; }

.mb-btn-line-a.btn-secondary {
  color: #3f4b62; }

.mb-btn-line-a.btn-white {
  color: #ffffff; }

.mb-btn-line-a.btn-black {
  color: #1d1d1d; }

.mb-btn-line-a.btn-gray {
  color: #8b8b8b; }

.mb-btn-line-a.btn-blue {
  color: #0896e6; }

.mb-btn-line-b {
  border: none;
  background: none;
  padding: 0.75em 0;
  display: inline-flex;
  align-items: center;
  transition: 0.3s; }
  .mb-btn-line-b .icon {
    display: inline-flex; }
  .mb-btn-line-b .icon ~ .text {
    margin-left: 1em; }
  .mb-btn-line-b .text ~ .icon {
    margin-left: 1em; }
  .mb-btn-line-b:active, .btn-line-b:hover {
    color: #0094D8;
    background: none;
    box-shadow: none;
    opacity: 0.7; }
    .mb-btn-line-b:active::before, .btn-line-b:hover::before {
      -webkit-transform: rotate(-45deg);
              transform: rotate(-45deg);
      -webkit-transform-origin: 100%;
              transform-origin: 100%;
      width: 1rem; }
    .mb-btn-line-b:active::after, .btn-line-b:hover::after {
      -webkit-transform: rotate(45deg);
              transform: rotate(45deg);
      -webkit-transform-origin: 100%;
              transform-origin: 100%;
      width: 1rem; }

.mb-btn-line-b.btn-primary {
  color: #0094D8; }

.mb-btn-line-b.btn-secondary {
  color: #3f4b62; }

.mb-btn-line-b.btn-white {
  color: #ffffff; }

.mb-btn-line-b.btn-black {
  color: #1d1d1d; }

.mb-btn-line-b.btn-gray {
  color: #8b8b8b; }

.mb-btn-line-b.btn-blue {
  color: #0896e6; }
/* Menu icon */
.mb-icon-menu-a {
  display: inline-flex;
  align-items: center;
  justify-content: center; }
  .mb-icon-menu-a .bars {
    width: 38px;
    display: flex;
    flex-direction: column;
    position: relative;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px); }
    .mb-icon-menu-a .bars.align-right {
      align-items: flex-end; }
  .mb-icon-menu-a .bar1,
  .mb-icon-menu-a .bar2,
  .mb-icon-menu-a .bar3 {
    display: flex;
    height: 2px;
    background:#fff;
    transition: 0.3s;
    position: absolute;
    top: 50%; }
  .mb-icon-menu-a .bar1 {
    width: 100%;
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px); }
  .mb-icon-menu-a .bar2 {
    width: 100%;
    -webkit-transform: translateY(3px);
            transform: translateY(3px); }
  .mb-icon-menu-a .bar3 {
    width: 100%;
    -webkit-transform: translateY(10px);
            transform: translateY(10px); }

.mb-menu-visible .icon-menu-a .bar1,
.mb-icon-menu-a.menu-close .bar1 {
  width: 100%;
  -webkit-transform: rotate(45deg) scaleX(0.8);
          transform: rotate(45deg) scaleX(0.8);
  -webkit-transform-origin: center;
          transform-origin: center; }

.mb-menu-visible .icon-menu-a .bar2,
.mb-icon-menu-a.menu-close .bar2 {
  width: 100%;
  -webkit-transform: rotate(-45deg) scaleX(0.8);
          transform: rotate(-45deg) scaleX(0.8);
  -webkit-transform-origin: center;
          transform-origin: center; }

.mb-live-btn{
	color:#19e678 !important; 
	background:#fff; 
	padding-left:80px; 
	padding-right:80px; 
	font-size:16px !important; 
	border-radius:30px; 
	padding-top:10px !important; 
	padding-bottom:10px !important; 
	display:inline-block;}
.mb-live-btn:hover{border:none !important;background:#19e678 !important; color:#fff !important;}
/* ------------------------------------------------------------------------ Menu Css ------------------------------------------------------------ */

body{background:#888a8c;}

.home-area{height: 100vh;}
.home-page h1{font-size:40px; margin:0px; color:#626366;}
.home-page h2{font-size:40px; margin:0px; color:#fff;}
.container-table{
	text-align: center;
	display: table;
	height: 100%;
	width: 100%;
	margin: auto;
}
.container-table-inner{
	vertical-align: middle;
	text-align: center;
	display: table-cell;
}
.social-icons li{display:inline-block; margin-left:3px; margin-right:3px;}
.liner-left{border-left: solid 1px #636569;}
.liner-right{border-right: solid 1px #636569;}
.home-logo{width:100px;}

.navbar-nav > li {float:none;}
.navbar-nav > li a{}

.in-page h1{font-size:33px !important; color:#DCDDDD;}
.page-header{border:none !important;}

.header-liner{border-bottom:solid 1px #636569;}

.content-area{background:#fff !important;}
.content-area p, .content-area li{font-size:20px; color:#59595C; line-height:1.4;}

.text-liner:before{
	content:"";
	position:absolute;
	left:0px; top:0px;
	width:100%;	height:141px;
	background-image:url(../images/liner-top.png);
	background-repeat:no-repeat;
	background-position:left top;
}
.text-liner:after{
	content:"";
	position:absolute;
	left:0px; bottom:0px;
	width:100%;	height:141px;
	background-image:url(../images/liner-bottom.png);
	background-repeat:no-repeat;
	background-position:right top;
}

footer{}
.footer-menus li{display:block;}
.footer-menus li a{color:#DCDDDD; font-size:16px; line-height:1.3;font-family:'AvantGardeLTBook-Bold',sans-serif;}
.footer-menus li a:hover{color:#fff;}

.footer-isler-menus{display:inline-block; margin-left:20px; margin-right:20px;}
.footer-isler-menus li a{color:#DCDDDD; font-size:16px; line-height:1.3;font-family:'AvantGardeLTExtraLight',sans-serif; position:relative;}
.footer-isler-menus li a:hover{color:#fff;}
.footer-isler-menus li a:hover::after {
    content: " ";
    position: absolute;
    left: 0px;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #fff;
}
.footer-isler-menus li.current a:after {
    content: " ";
    position: absolute;
    left: 0px;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #fff;
}
.footer-logo{width:100px;}
footer .social-icons img{width:20px;}

.footer-mail{color:#DCDDDD; font-size:16px; line-height:1.3;}
.footer-mail:hover{color:#fff;}

#isler-boxes li{
	padding:0px;
	-webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  border:solid 1px #fff;
}

#isler-boxes-out2:hover .tabs-content { }
#isler-boxes-out2:hover #isler-boxes img {opacity:0;}

#isler-boxes-out3{padding:3px; border:solid 1px #626469; display:inline-block;}
#isler-boxes-out2{padding:3px; border:solid 1px #626469; display:inline-block;}
#isler-boxes li img{}
.tabs-content{overflow:hidden;}
#isler-boxes li:hover{
	/* -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.4);
	-moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.4);
	box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.4); */
}
#isler-boxes li img{
	width:100%;
	-webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.references{padding:30px; border:solid 1px #636569;}
.references ul{display:inline-block}
.references ul li{position:relative; padding-left:18px;}
.references ul li:before{
	content:" ";
	display:inline-block;
	position:absolute;
	width:5px;
	height:9px;
	left:0px;
	top:50%;
	margin-top:-5px;
	background:#c8c9cb;
}

.text-right{text-align:right;}


 /* Web Fonts */
.AvantGarde-Book{font-family:'AvantGarde-Book',sans-serif;}
.AvantGardeLTBook-Bold{font-family:'AvantGardeLTBook-Bold',sans-serif;}
.AvantGardeLTExtraLight{font-family:'AvantGardeLTExtraLight',sans-serif;}
.AvantGardeLTMedium{font-family:'AvantGardeLTMedium',sans-serif;}
.ITCAvantGardeGothicLTBook{font-family:'ITCAvantGardeGothicLTBook',sans-serif;}
.ITCAvantGardeStd-Md{font-family:'ITCAvantGardeStd-Md',sans-serif;}


/* --------------------------------------------------------------Gallery---------------------------------------------------------------------- */
@media(max-width:768px) {
 .tabs.interactive-slider a::before {
  bottom:14px;
  height:10px
 }
}
.tabs.interactive-slider a:hover::before {
 width:100%
}
.tabs.interactive-slider .tabs-header li.active a::before {
 width:100%
}
.interactive-slider .tabs-content {
position: absolute;
height: 100%;
left: 0px;
top: 0px;
width: 100%;
}


.interactive-slider .tabs-item.active {
 -webkit-transform:scale(1);
 -moz-transform:scale(1);
 -ms-transform:scale(1);
 -o-transform:scale(1);
 transform:scale(1);
 visibility:visible;
 opacity:1
}
.tabs-header{position:relative; z-index:1;}
.tabs-header .container{width:auto !important; padding:0px !important;}
.interactive-slider .tabs-item {
 visibility:hidden;
 opacity:0;
 position:absolute;
 top:0;
 left:0;
 width:100%;
 height:100%;
 background-size:cover;
 background-position:center;
 -webkit-transform:scale(1.1);
 -moz-transform:scale(1.1);
 -ms-transform:scale(1.1);
 -o-transform:scale(1.1);
 transform:scale(1.1);
 -webkit-transition:all 450ms ease;
 -moz-transition:all 450ms ease;
 -ms-transition:all 450ms ease;
 -o-transition:all 450ms ease;
 transition:all 450ms ease
}
.interactive-slider .tabs-item::before {
 content:'';
 position:absolute;
 top:0;
 left:0;
 width:100%;
 height:100%;
 background-color:rgba(0,0,0,.2)
}
@media only screen and (max-width:767px) {
 .tabs.interactive-slider a {
  font-size:24px
 }
}

.interactive-slider{position:relative;}

@media all and (min-width: 140px) and (max-width:500px) {
	.home-page h1 {font-size: 35px;}
}
@media all and (min-width: 240px) and (max-width:1020px) {
	.interactive-slider .tabs-item.active{
		background-size: 100%;
		background-position: left top;
		background-repeat: no-repeat;
	}
}	
@media all and (min-width: 240px) and (max-width:760px) {	
	.navbar-area ul li ul li a{padding:0px !important;}
	.navbar-area ul li:hover ul a{color:#000 !important;}
	.schedules-tab-nav ul{width:100%;}
	.schedules-tab-nav ul li{float:inherit; width:100%; margin-bottom:5px;}
	.tabs-holder{position:relative; z-index:99;}
	.our-angels-area .single-team-member .image-box img{width:100%;}
	.our-angels-area .single-team-member .image-box .member-details::after{bottom: -18px; height: 33px;}
	
	.suitable-business-area .left-content .section-title h2{font-size: 30px;margin-bottom: 20px;}
	.section-title h3{font-size: 30px !important;}
	.tg-eventcounter span:first-child{font-size:30px;}
	.tg-eventcounter span:last-child{font-size:14px;}
	
	.mb-show{display:block;}
	.mb-hide{display:none;}
	
	.mb-text-center{text-align:center !important;}
	.footer-isler-menus{display:block !important; margin-left:0px; margin-right:0px; margin-bottom:20px; text-align:center;}
	.footer-logo{width:100px;}
	#isler-boxes li img {/* height:50px; */}
	.navbar-top { position: absolute;width: 93%;top: -32px;}
}





