/* 1.1 typography */
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,700|Poppins:300,400,500,600,700|Work+Sans:400,500,600");


p, .paragraph {
  font-weight: 400;
  color: #ffffff;
  font-size: 18px;
  line-height: 30px;
  font-family: "Open Sans", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  color: #222;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

h1, .h1 {
  font-size: 36px;
  color: #fff;
}

h2, .h2 {
  font-size: 36px;
}

h3, .h3 {
  font-size: 30px;
}

h4, .h4 {
  font-size: 20px;
}

h5, .h5 {
  font-size: 18px;
}

h6, .h6 {
  font-size: 14px;
  font-weight: bold;
}

/* 1.3 Button style */
.btn {
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    text-transform: capitalize;
    /* padding: 12px 37px; */
    border-radius: 14px;
    font-weight: 600;
    border: 0;
    position: relative;
    z-index: 1;
    transition: .2s ease;
}

.btn:focus {
  outline: 0;
  box-shadow: none !important;
}

.btn:active {
  box-shadow: none;
}

.btn-primary {
  background: #e84444;
  color: #fff;
}

.btn-primary:active {
  background: #e84444 !important;
}

.btn-primary:hover {
  background: #ee7171;
}

.btn-secondary {
  background: #000;
  color: #fff!important;
  padding: 3px 5px;
}

.btn-secondary:active {
  background: #e84444 !important;
  color: #fff!important;
}

.btn-secondary:hover {
  background: #e84444 !important;
  color: #fff!important;
  /* padding: 5px; */
  /* border-radius: 15px; */
}

.btn-light {
  background: #fff;
  color: #222;
  border: 2px solid #fff;
}

.btn-light:hover {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #222;
  border: 2px solid #303032;
}

.btn-outline:hover {
  background: #303032;
  color: #fff;
}

.btn-sm {
  padding: 13px 40px !important;
}

/* 1.2 common style */


::-moz-selection {
  background: #ee7171;
  color: #fff;
}

::selection {
  background: #ee7171;
  color: #fff;
}

/* preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

ol,
ul {
  list-style-type: none;
  margin: 0px;
}

img {
  vertical-align: middle;
  border: 0;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a {
  transition: .2s ease;
}

a:hover {
  color: #e84444;
}

a.text-dark:hover,
a.text-white:hover {
  color: #e84444 !important;
}

a,
button {
  cursor: pointer;
}

.outline-0 {
  outline: 0;
}

.d-unset {
  display: unset !important;
}

.slick-slide {
  outline: 0;
}


.centralized {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.hilighted {
  background: #303032;
  color: #919E4D;
  border-radius: 3px;
  padding: 2px 5px;
}

#summit{
	padding:0px;
}

.section {
  padding: 60px 0;
	    background-color: #000;
/*background-image: url("../img/deadline-img.png")*/
}

.section-sm {
  padding: 80px 0;
}

.section-title {
  margin-bottom: 55px;
  margin-top: 30px;
}

.section-title-sm {
  margin-bottom: 10px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  color: #fff;
}

.overlay {
  position: relative;
}

.overlay::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: .6;
}

.overlay-dark {
  position: relative;
}

.overlay-dark::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: .8;
}

.overlay-primary {
  position: relative;
}

.overlay-primary::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #e84444;
  opacity: .6;
}

.overlay-white {
  position: relative;
}

.overlay-white::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
  opacity: .7;
}

.overlay-rounded::before {
  border-radius: 5px;
}

.section-title-border {
  position: relative;
}

/*.section-title-border::before {
  position: absolute;
  content: '';
  height: 2px;
  width: 120px;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #f9b233;
}

.section-title-border::after {
  position: absolute;
  content: '';
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #f9b233;
  box-shadow: 0 0 0 5px #fff;
  bottom: -14px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}*/

.section-title-border-gray {
  position: relative;
}

.section-title-border-gray::before {
  position: absolute;
  content: '';
  height: 2px;
  width: 120px;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #f9b233;
}

.section-title-border-gray::after {
  position: absolute;
  content: '';
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #f5f5f5;
  border: 2px solid #f9b233;
  box-shadow: 0 0 0 5px #f5f5f5;
  bottom: -14px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.section-title-border-half {
  position: relative;
}

.section-title-border-half::before {
  position: absolute;
  content: '';
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #e84444;
  bottom: -14px;
  left: 0;
}

.section-title-border-half::after {
  position: absolute;
  content: '';
  height: 2px;
  width: 50px;
  left: 15px;
  bottom: -10px;
  background: #e84444;
}

.section-title-border-half-white {
  position: relative;
}

.section-title-border-half-white::before {
  position: absolute;
  content: '';
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #fff;
  bottom: -14px;
  left: 0;
}

.section-title-border-half-white::after {
  background: #fff;
  position: absolute;
  content: '';
  height: 2px;
  width: 50px;
  left: 15px;
  bottom: -10px;
}

/* 1.2.1 page title */
.page-title {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 160px 0 100px;
}

/* breadcrumb */
.breadcrumb {
  background-color: transparent !important;
  justify-content: center;
}

.breadcrumb li,
.breadcrumb a {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 12px;
  margin: 0 4px;
}

.breadcrumb a {
  position: relative;
}

.breadcrumb a::before {
  position: absolute;
  content: '/';
  right: -15px;
  top: -2px;
  height: 12px;
}

.breadcrumb-item.active {
    color: #ffffff;
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: 15px;
    text-transform: uppercase;
}

.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: 0px;
    color:#323131;
    content: none;	
}

/* 1.2.2 404 page start */
.page-404 {
  padding: 600px 0 60px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-404 h1 {
  font-size: 40px;
}

/* 404 page end */
/* play-icon */
.play-icon {
  width: 85px;
  height: 85px;
  border: 3px solid #fff;
  border-radius: 50%;
  display: block;
  text-align: center;
}

.play-icon:focus {
  outline: 0;
}

.play-icon i {
  line-height: 79px;
  display: block;
  font-size: 30px;
  color: #fff;
}

/* round icon */
.round-icon {
  height: 70px;
  min-width: 70px;
  max-width: 70px;
  border-radius: 50%;
  border: 1px solid #e5e5e5;
  background: #fff;
  text-align: center;
  line-height: 70px;
  font-size: 30px;
  color: #e84444;

  display: inline-block;
}

/* 18. squre icon */
.square-icon {
  height: 65px;
  width: 65px;
  background: #e84444;
  color: #fff;
  font-size: 35px;
  line-height: 65px;
  border-radius: 5px;
  text-align: center;
  display: inline-block;
}

/* team social icon */
.social-icon-lg {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
  color: #fff;
  font-size: 25px;
  display: inline-block;
}

.social-icon-lg i {
  margin: 0;
  color: #fff;
}

.box-shadow {
  box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.1);
}

.golden {
  color: #efaf27 !important;
}

.bg-white {
  background-color: #ffffff;
}

.bg-gray {
  background-color: #585753;
}

.bg-primary {
  background-color: #e84444 !important;
}

.bg-secondary {
  background-color: #000000 !important;
}

.text-primary {
  color: #e84444 !important;
}

.bg-facebook {
  background-color: #4267b2;
}

.bg-twitter {
  background-color: #449de8;
}

.bg-linkedin {
  background-color: #2f6ea3;
}

.bg-google {
  background-color: #e62211;
}

.text-color {
  color: #666;
}

.text-dark {
  color: #222;
}

.text-underline {
  text-decoration: underline;
}

.text-underline:hover {
  text-decoration: underline;
}

.font-primary {
  font-family: "Poppins", sans-serif;
}

.font-secondary {
  font-family: "Open Sans", sans-serif;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}


.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

.py-10 {
  padding: 10px 0;
}

.py-50 {
  padding: 50px 0;
}

.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.py-160 {
  padding: 160px 0;
}

.ml-65 {
  margin-left: 65px;
}

.pb-xl-200-lg-100 {
  padding-bottom: 200px;
}

.mb-xl-150-lg-100 {
  margin-bottom: 150px;
}

.translateY-25 {
  -webkit-transform: translateY(25px);
          transform: translateY(25px);
}

.translateY-10 {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.translateY-33 {
  -webkit-transform: translateY(-33px);
          transform: translateY(-33px);
}

/* 2. Navigation */
.top-header {
  background: #303032;
}

.top-header ul li {
  margin: 15px 0;
}

.top-header ul li a {
  display: inline-block;
  padding: 0 20px;
  border-right: 1px solid #e5e5e5;
  color: #bcbcbd;
}

.top-header ul li a span {
  color: #e84444;
}

.top-header ul li:last-child a {
  padding-right: 0;
  border-right: 0;
}

.navigation .navbar {
  padding: 0;
  background: #fff !important;
  position: relative;
}

.navigation .navbar-brand {
  position: absolute;
  left: 0;
  /* top: -52px; */
  height: 170px;
  width: 220px;
  /* background: #fff; */
  text-align: center;
  /* box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1); */
  /* z-index: 9; */
}

.navigation .navbar-brand img {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.navigation .navbar .nav-item {
  padding: 28px 0;
}

.navigation .navbar .nav-item .nav-link {
  padding: 15px 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #222;
  text-transform: uppercase;
  transition: .2s ease;
  font-size: 14px;
}


.navigation .navbar .nav-item .nav-link:hover {
  color: #e84444;
}

/*.navigation .navbar .nav-item:last-child {
  padding: 28px 0 28px 30px;
}*/

/*.navigation .navbar .nav-item:last-child .nav-link {
  color: #fff;
}*/

.navigation .navbar .nav-item.active .nav-link {
  color: #e84444;
}

.navigation .navbar .dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.navigation .navbar .dropdown-menu {
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
  padding: 10px 13px;
  border: 0;
  border-radius: 0;
  top: 80%;
  left: -20px;
  display: block;
  visibility: hidden;
  transition: .3s ease;
  opacity: 0;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
}


.navigation .navbar .dropdown-menu.show {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.navigation .navbar .dropdown-item {
  position: relative;
  color: #848484;
  transition: .2s ease;
}

.navigation .navbar .dropdown-item:not(:last-child) {
  margin-bottom: 6px;
}

.navigation .navbar .dropdown-item:hover {
  color: #e84444;
  text-decoration: underline;
  background: transparent;
}

.navigation .navbar .dropdown-item::before {
  position: absolute;
  content: '';
  left: 5px;
  top: 12px;
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background: #848484;
  border: 1px solid #fff;
  display: inline-block;
  box-shadow: 0 0 0 2px #848484;
}

/* 3. hero area */
.img-fill{
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
  text-align: center
}

.img-fill img {
  height: 100%;
  width: 100%;
  position: relative;
  display: inline-block;
  max-width: none;
}

.blocks-box,
.slick-slider {
  margin: 0;
  padding: 0!important;
}

.slick-slide {
  float: left /* If RTL Make This Right */ ;
  padding: 0;
}

/* ==== Slider Style === */
.slideshow .item .img-fill{
  height:auto;
}


.slideshow .NextArrow{
  position:absolute;
  top:50%;
  right:0px;
  width:45px;
  height:45px;
  background:#000;
  border:0 none;
  margin-top:-22.5px;
  text-align:center;
  font:20px/45px FontAwesome;
  color:#e84444;
  z-index:5;
}


.slideshow .PrevArrow{
  position:absolute;
  top:50%;
  left:0px;
  width:45px;
  height:45px;
  background:#000;
  border:0 none;
  margin-top:-22.5px;
  text-align:center;
  font:20px/45px FontAwesome;
  color:#e84444;
  z-index:5;
}


.slideshow .slick-dots{
  position:absolute;
  height:5px;
  background:rgba(255,255,255,.20);
  bottom:0px;
  width:100%;
  left:0px;
  padding:0px;
  margin:0px;
  list-style-type:none;
}
.slideshow .slick-dots li button{display:none;}
.slideshow .slick-dots li{
  float:left;
  width:0px;
  height:5px;
  background:#e84444;
  position:absolute;
  left:0px;
  bottom:0px;
}

.slideshow .slick-dots li.slick-active{
  width:100%;
  -webkit-animation:ProgressDots 6s both;
          animation:ProgressDots 6s both;
}

.slideshow .item h3{
  font-family: 'Century Gothic', sans-serif;
  font-size: 1.6rem;
  text-transform:uppercase;
  color:#e84444;
  -webkit-animation:fadeIn 1s both;
          animation:fadeIn 1s both;
  margin:0;
  padding:0;
}

.slideshow .item.slick-active h3{
  -webkit-animation:fadeIn 1s both 1s;
          animation:fadeIn 1s both 1s;
}


.slideshow .item img{
  -webkit-animation:fadeIn 1s both;
          animation:fadeIn 1s both;
}

.slideshow .item.slick-active img{
  -webkit-animation:fadeIn 1s both;
          animation:fadeIn 1s both;
}


@-webkit-keyframes ProgressDots{from{width:0px;}to{width:100%;}}
@keyframes ProgressDots{from{width:0px;}to{width:100%;}}

/* 5. progrgess bar start */
.progressbar-title {
  font-size: 17px;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 7px;
  color: #222 !important;
}

.progress {
  border-radius: 35px;
  overflow: visible;
  margin-bottom: 35px;
  /* 5.2 progressbar value */
}

.progress-bar {
  background-color: #303032;
  border-radius: 35px;
  position: relative;
}

.progress-bar-value {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  color: #fff;
  background: #303032;
  padding: 5px 9px;
  position: absolute;
  top: -35px;
  right: -15px;
  border-radius: 5px;
}

.progress-bar-value::before {
  position: absolute;
  content: '';
  bottom: -5px;
  left: 50%;
  background: #303032;
  height: 10px;
  width: 10px;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}

/* progrgess bar End */
/* 6. mission section start */
.card-header:first-child {
  border-radius: 35px;
}

/* 7. promo video section start */
.promo-video {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}


.promo-video p {
  font-family: "Work Sans", sans-serif;
}

/* promo video section end */


/* card */
.card-img-wrapper {
  position: relative;
}

.card-img-wrapper::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  background: #000;
  opacity: 0;
  top: 0;
  left: 0;
  transition: .2s;
}


.card:hover .card-img-wrapper::before {
  opacity: .4;
}


.overlay-rounded-top::before {
  border-radius: 5px 5px 0 0;
}


/* 14.3 clients */
.clients {
  background-position: center right;
  background-size: 50%;
  background-repeat: no-repeat;
}


.clients ul li {
  height: 66px;
}

.clients ul li img {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
}


.work-slider-image {
  position: relative;
}

.work-slider-image .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(86, 93, 103, 0.75);
  height: 100%;
  width: 100%;
  padding: 15px 25px;
  opacity: 0;
  transition: .2s;
}

.work-slider-image .image-overlay .member-info {
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
	z-index: 2;
}

.work-slider-image .image-overlay .member-info-content {
  margin-top: -50px;
  transition: margin 0.2s;
}

.work-slider-image .image-overlay:hover .member-info {
  background: #292727;
  opacity: 0.6;
  transition: 0.4s;
}

.work-slider-image .image-overlay:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}

.work-slider-image .image-overlay h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

.work-slider-image .image-overlay span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

.work-slider-image .image-overlay .social {
  margin-top: 15px;
}

.work-slider-image .image-overlay .social a {
  transition: color 0.3s;
  color: #fff;
}

.work-slider-image .image-overlay .social a:hover {
  color: #e84444;
}

.work-slider-image .image-overlay .social i {
  font-size: 18px;
  margin: 0 2px;
}

.work-slider-image:hover .image-overlay {
  opacity: 1;
}

.work-slider .slick-dots {
  padding-left: 0;
  position: absolute;
  bottom: -60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.work-slider .slick-dots li {
  margin: 0 14px;
}

.work-slider .slick-dots li:first-child {
  margin-left: 0;
}

.work-slider .slick-dots li button {
  height: 10px;
  width: 40px;
  border-radius: 25px;
  color: transparent;
  overflow: hidden;
  border: 0;
  border: 2px solid #e5e5e5;
  background: transparent;
  outline: 0;
  display: block;
}

.work-slider .slick-dots li button::before {
  display: none;
}

.work-slider .slick-dots li.slick-active button {
  border-color: #e84444;
}

/* 22. contact section */
.form-control {
  border-radius: 5px;
  padding: 0 15px 2px;
  height: 40px;
  margin-bottom: 15px;
  border: 1px solid #e5e5e5;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #666;
}

.form-control:focus {
  border-color: #e84444;
  box-shadow: none !important;
}

.form-control::-webkit-input-placeholder {
  color: #666;
}

.form-control:-ms-input-placeholder {
  color: #666;
}

.form-control::-ms-input-placeholder {
  color: #666;
}

.form-control::placeholder {
  color: #666;
}



/* back to top button */
.back-to-top {
  position: absolute;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  color: #fff;
  background: #303032;
  top: -25px;
  right: 10px;
  border: 1px solid #454547;
  text-align: center;
  display: block;
  transition: .2s ease;
}

.back-to-top i {
  line-height: 50px;
}

.back-to-top:hover {
  border-color: #e84444;
}

.back-to-top:focus {
  outline: 0;
}

.card-img, .card-img-bottom, .card-img-top {
    width: 100%;
}

.mx-2 {
    margin-left: 1.5rem!important;
	margin-right: 1.5rem!important;
}

.slick-carousel {
  margin: 0 auto;
  width: 1200px;
}

.slick-next::before, .slick-prev::before {
  color:#e84444;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 0 0 30px 10px;
}

.counts  span {
  font-size: 30px;
  line-height: 30px;
  color: #2a2a2a;
}

.counts .count p {
  padding: 15px 0 0 0;
  margin: 0 0 0 60px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #505050;
}

.counts .count a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #505050;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .count a:hover {
  color: #777777;
}

.col-sm-3 {
    -ms-flex: 0 0 19%;
    flex: 0 0 23%;
    max-width: 42%;
    padding-top: 20px;
}

.content {
  padding: 30px 0;
  height: 100%;
}

.content h3 {
  font-weight: 700;
  font-size: 34px;
}

.content p {
  margin-bottom: 0;
}

.content .icon-box {
  margin-top: 25px;
}

.content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 0px;
}

.content .icon-box i {
  font-size: 48px;
  float: left;
  color: #cdcdcd;
}

.content .icon-box p {
  font-size: 15px;
  color: #848484;
}

#key .content .icon-box i {
  font-size: 18px;
  float: left;
  color: #cdcdcd;
}

#key .content .icon-box {
  margin-top: 25px;
  margin-left: 35px;
}

#key .content {
	margin: 0 243px;
	clear: both;
}

#key .col-sm-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 3.333333%;
}

/*--------------------------------------------------------------
# Inner page
--------------------------------------------------------------*/

.breadcrumb_bg {
  background-image: url("../img/breadcrumb.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.breadcrumb {
  position: relative;
  z-index: 1;
}

.colored{
	color: #f4897e;
	font-weight: 600;
}

.breadcrumb:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #422820;
  content: "";
  z-index: -1;
}

.breadcrumb .breadcrumb_tittle h2 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin: 10px 0;
  text-transform: uppercase;
}

.breadcrumb .breadcrumb_content p {
  font-size: 15px;
  color: #fff;
	margin: 10px 0;	
}

.breadcrumb .breadcrumb_content span {
  margin: 0px 5px;
  font-size: 12px;
}

.breadcrumb {
  margin: 0px !important;
}

.about_part {
  position: relative;
  z-index: 99;
/*  margin-bottom: 142px;*/
}

.about_part .about_part_text h5 {
  font-family: "Roboto", sans-serif;
  color: #556172;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding-left: 75px;
  text-transform: uppercase;
}

.about_part .about_part_text h5:after {
  position: absolute;
  left: 0;
  top: 10px;
  height: 2px;
  width: 60px;
  content: "";
  background-color: #ff5e13;
}

.about_part .about_part_text h2 {
  font-size: 60px;
  font-weight: 600;
  line-height: 70px;
  margin-bottom: 30px;
  position: relative;
}

.about_part .about_part_text p {
  line-height: 1.929;
  margin-bottom: 7px;
}


.about_part .about_part_text .btn_1 {
  margin-top: 6px;
}

/* 8. testimonial section start */
.testimonial-slider {
  /* box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.1); */
  position: relative;
}

.testimonial-slider .prevArrow,
.testimonial-slider .nextArrow {
  position: absolute;
  top: 200px;
  border: 0;
  font-size: 50px;
  background: transparent;
  color: #e84444;
  z-index: 9;
}
.testimonial-slider .prevArrow:focus,
.testimonial-slider .nextArrow:focus {
  outline: 0;
}

.testimonial-slider .prevArrow {
  left: -90px;
}
.testimonial-slider .nextArrow {
  right: -90px;
}
.mb-lg-0, .my-lg-0 {
    margin-bottom: 50px!important;
}
/*.testimonial-slider .slick-disabled {
  color: #e5e5e5;
}*/

.slick-slide img
{
    display:inline-block!important;
}

.imgfill{
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
  text-align: center
}

.imgfill img {
  height: 100%;
  width: 100%;
  position: relative;
  display: inline-block;
  max-width: 1980px;
  max-height: 584px;
}

.sm-imgfill{
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
  text-align: center
}

.sm-imgfill img {
  /* height: 100%; */
  width: 100%;
  position: relative;
  display: inline-block;
  max-width: 500px;
  max-height: 360px;
  margin: 40px;
}


.bg-dotfill{
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
  text-align: center
}

.bg-dotfill img {
  height: 100%;
  width: 100%;
  position: relative;
  display: inline-block;
  max-width: 100px;
  max-height: 100px;
}

.sm-dotfill{
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
  text-align: center
}

.sm-dotfill img {
  height: 100%;
  width: 100%;
  position: relative;
  display: inline-block;
  max-width: 50px;
  max-height: 50px;
}

	.navbar-nav{
	margin: 0 24%;
}


.regpanel{
	margin: 0px auto;
	position: absolute;
	top: 26%;
	right: -18%;
}


.regpanel2{
    margin: 0px auto;
    position: absolute;
    top: 30%;
    right: -14%;
}

  .boxy{
    display: block;
    margin: 0 auto;
  }
  .cardy{
    position: relative;
    width: 440px;
    height: auto;
    background: #fff;
    margin: 0 auto;
    border-radius: 4px;
    box-shadow:0 2px 10px rgba(0,0,0,.2);
  }
  .cardy:before,
  .cardy:after
  {
    content:"";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    background: #fff;
    transition: 0.5s;
    z-index:-1;
  }
  .cardy:hover:before{
  transform: rotate(20deg);
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
  }
  .cardy:hover:after{
  transform: rotate(10deg);
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
  }
  .cardy .imgBx{
  background: #222;
  transition: 0.5s;
  z-index: 1;
  }
  
  .cardy:hover .imgBx
  {
    bottom: 80px;
  }

  .cardy .imgBx img{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

.speaker-slider-image {
  position: relative;
}

.speaker-slider-image .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(86, 93, 103, 0.75);
  height: 100%;
  width: 100%;
  padding: 15px 25px;
  opacity: 0;
  transition: .2s;
}

.speaker-slider-image .image-overlay .member-info {
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
	z-index: 2;
}

.speaker-slider-image .image-overlay .member-info-content {
  margin-top: -50px;
  transition: margin 0.2s;
}

.speaker-slider-image .image-overlay:hover .member-info {
  background: #292727;
  opacity: 0.6;
  transition: 0.4s;
}

.speaker-slider-image .image-overlay:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}

.speaker-slider-image .image-overlay h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

.speaker-slider-image .image-overlay span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

.speaker-slider-image .image-overlay .social {
  margin-top: 15px;
}

.speaker-slider-image .image-overlay .social a {
  transition: color 0.3s;
  color: #fff;
}

.speaker-slider-image .image-overlay .social a:hover {
  color: #e84444;
}

.speaker-slider-image .image-overlay .social i {
  font-size: 18px;
  margin: 0 2px;
}

.speaker-slider-image:hover .image-overlay {
  opacity: 1;
}

.speaker-slider .slick-dots {
  padding-left: 0;
  position: absolute;
  bottom: -60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.speaker-slider .slick-dots li {
  margin: 0 14px;
}

.speaker-slider .slick-dots li:first-child {
  margin-left: 0;
}

.speaker-slider .slick-dots li button {
  height: 10px;
  width: 40px;
  border-radius: 25px;
  color: transparent;
  overflow: hidden;
  border: 0;
  border: 2px solid #e5e5e5;
  background: transparent;
  outline: 0;
  display: block;
}

.speaker-slider .slick-dots li button::before {
  display: none;
}

.speaker-slider .slick-dots li.slick-active button {
  border-color: #e84444;
}

/*Gallery*/
.gallery{
  background-color: #f7f7f7;
  padding-top: 10px;
}
.gallery a {
    display:inline-flex;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.gallery a img{
    margin: auto;
	width: 100%;
}
.gallery-block {
    margin-bottom: 20px;
}
.gallery-block span{
    display: inline-block;
    text-align: center;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 18px;
    margin-top: 5px;
    border: 1px solid transparent;
    transition: all 0.5s ease;
}


.media-name:hover, .media-name:focus{
    background-color:#FFFFF0;
    cursor: pointer;
    outline: none;
    border: 1px solid blue;
    box-sizing:border-box;

}

/*Gallery Loader*/
#gallery-block-loader{
    display: none;
}

.gallery .col-md-3 {
    max-width: 33%;
	flex: 0 0 34%;
}
.gallery-block-inner{
    min-height: 205px;
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.gallery-block-inner-video{
    min-height: 122px;
    width: 212px;
    position: relative;
    background-color: #fff;
}

.photobox_a{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.media-video img{
    opacity: 0;
}



#progressbar {
    width: 100%;
    display: none;
    position: absolute;
    top: 40%;
    left: 0;
    padding: 1px;
}
#progressbar .bar {
    background-color:#FF6C67;
    width:0%;
}
#progressbar .percent {
    display:inline-block;
    text-align: center;
}

/*Other*/
#gallery-empty{
    padding: 10px;
    font-size: 20px;
}
.button{
	outline: none;
    display: inline-block;
    background-color: #FF6C67;
    color: #FFF;
    text-align: center;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-appearance: none;
    cursor: pointer;
    height: 58px;
    line-height: 58px;
    font-size: 21px;
    padding: 0 30px;
    min-width: 100px;
    text-transform: uppercase;
    font-weight: bold;
    box-shadow: 0 1px 2px rgba(64, 64, 64, 0.1);
    border: 1px solid #d2d2d2;
    transition: all 0.5s ease;
    border-radius: 2px;
}
.button:hover, .button:focus{
	text-decoration: none;
    color: #FFF;
    background: #E9615F;
}



.button-blue{
    background-color: #0098D3;
}
.button-blue:hover, .button-blue:focus{
    background-color: #337AB7;
}

.text-field {
    border: 1px solid #AAA;
    padding: 0 15px;
    margin: 0 0 18px 0;
    background: #FFF;
    position: relative;
    border-width: 1px 1px 2px 1px;
    border-color: #C9C9C9;
    min-height: 60px;
    display: block;
    font-size: 22px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    width: 100%;
}

@media (max-width: 1200px) {

    .gallery-block-inner{
        min-height: 210px;
    }
}

@media (max-width: 991px) { 
    .gallery-block-inner{
        min-height: 143px;
    }
}

@media (max-width: 480px) {
    .button{
        width: 100%;
    }
    .gallery-block-inner{
        min-height: 100px;
    }
}

.block{
	background:#292929;
	width: 100%;
	/* float: left; */
	/* text-align: left; */
	color: #fff;
	padding: 40px 60px;
	display: flex;
	justify-content: center;
}
.block h3{font-size:25px;margin:0px;padding:0px;margin-bottom:35px;color: #fff;}
.block p{ font-size:14px; color: #fff;}
.block strong{ font-size:14px; color: #fff;}
.block h4 {font-size: 14px;  margin: 0px;  padding: 0px;  margin-bottom: 5px;  margin-top:15px; color: #fff;}

/*-------------------------------------------------*/
/* Start Contact Section                           */
/*-------------------------------------------------*/

.contact {
    background: url(images/contact-bg.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding-top: 80px;
    padding-bottom: 100px;
}

.contact .btn-primary {
    padding: 20px;
    font-size: 16px;
}

.contact .btn-primary:hover {
    background: transparent;
}

.contact .section-title h3{
    color: #fff;
}

.contact .section-heading {
    color: #fff;
}

.contact .form-group {
    margin-bottom: 25px;
}

.contact .form-group input,
.contact .form-group textarea {
    padding: 20px;
}

.contact .form-group input.form-control {
    height: auto;
}

.contact .form-group textarea.form-control {
    height: 236px;
}

.contact::-webkit-input-placeholder {
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 700;
    color: #bbb;
}

.contact:-moz-placeholder {
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 700;
    color: #bbb;
}

.contact::-moz-placeholder {
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 700;
    color: #bbb;
}

.contact:-ms-input-placeholder {
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 700;
    color: #bbb;
}

.contact .text-danger {
    color: #e74c3c;
}

.contact button {
    font-weight: 400;
    margin-top: 30px;
}

.contact .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .error-message br+br {
  margin-top: 25px;
}

.contact .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.footer-contact-info {
    color: #fff;
    padding: 20px 30px;
    margin-top: 80px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}

.footer-contact-info ul {
    padding-bottom: 10px;
}

.footer-contact-info h4 {
    padding-bottom: 10px;
	color: #fff;
}

.footer-contact-info li strong {
    font-weight: 600;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #5c9f24;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(42, 42, 42, 0.7);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(42, 42, 42, 0.7);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info span {
  font-size: 13px;
  color: #fff;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #8ed851;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/

.portfolio .portfolio-wrap .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(86, 93, 103, 0.75);
  height: 100%;
  width: 100%;
  padding: 15px 25px;
  opacity: 0;
  transition: .2s;
}

.portfolio .portfolio-wrap .image-overlay .member-info {
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
	z-index: 2;
}

.portfolio .portfolio-wrap .image-overlay .member-info-content {
  margin-top: -50px;
  transition: margin 0.2s;
}

.portfolio .portfolio-wrap .image-overlay:hover .member-info {
  background: #292727;
  opacity: 0.6;
  transition: 0.4s;
}

.portfolio .portfolio-wrap .image-overlay:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}

.portfolio .portfolio-wrap .image-overlay h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

.portfolio .portfolio-wrap .image-overlay span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

.portfolio .portfolio-wrap .image-overlay .social {
  margin-top: 15px;
}

.portfolio .portfolio-wrap .image-overlay .social a {
  transition: color 0.3s;
  color: #fff;
}

.portfolio .portfolio-wrap .image-overlay .social a:hover {
  color: #e84444;
}

.portfolio .portfolio-wrap .image-overlay .social i {
  font-size: 18px;
  margin: 0 2px;
}

.portfolio .portfolio-wrap:hover .image-overlay {
  opacity: 1;
}

