body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #5e5e5e;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

a:hover {
  color: #000;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Open Sans", sans-serif;
}

label {
  font-size: 14px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #c0c0c0;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
  font-weight: 600;
}

.back-to-top:hover {
  background: #444444;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  /*background: #fff;*/
  /*background: #2a2a2a;*/
  background: #000000;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #ffffff;
  text-decoration: none;
}

#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Header Social Links
--------------------------------------------------------------*/
.header-social-links {
  margin: 0 0 0 30px;
}

.header-social-links a {
  color: #9ba6af;
  padding-left: 8px;
  display: inline-block;
  line-height: 0px;
  transition: 0.3s;
}

.header-social-links a i {
  line-height: 0;
}

.header-social-links a:hover {
  color: #c0c0c0;
}

@media (max-width: 768px) {
  .header-social-links {
    margin: 0 15px 0 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*padding: 10px 0 10px 30px;*/
  padding: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #c0c0c0;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #ffffff;
}

.navbar > ul > li > a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #106eea;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  color: #21262a;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #979797;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #c0c0c0;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(33, 38, 42, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #384046;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #c0c0c0;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #c0c0c0;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 60vh;
  background: url("../img/hero-bg.jpg") center center;
  background-size: cover;
  position: relative;
  margin-top: 70px;
  padding: 0;
}

#hero:before {
  content: "";
  /*background: rgba(56, 64, 70, 0.7);*/
  /*background: rgba(187, 187, 187, 0.7);*/
  /*background: rgba(7, 14, 32, 0.7);*/
  background: rgba(56, 64, 70, 0.19);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  z-index: 2;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero h1 span {
  border-bottom: 4px solid #3498db;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 2px;
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  transition: ease-in-out 0.3s;
  color: #fff;
  background: #3498db;
  text-transform: uppercase;
}

#hero .btn-get-started:hover {
  background: #4ea5e0;
}


@media (max-width: 768px) {
  #hero h1 {
    font-size: 30px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 50px 0;
}

.section-bg {
  background-color: #f7fbfe;
}

.section-title {
  text-align: center;
  padding-bottom:  15px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 0px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #c0c0c0;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
  padding: 5px;
}

/*--------------------------------------------------------------
# What We Do
--------------------------------------------------------------*/
.what-we-do .icon-box {
  text-align: center;
  padding: 30px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  /*box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);*/
  /*box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);*/
  /*height: 160px;*/
}

.what-we-do .icon-box .icon {
  margin: 0 auto;
  width: 45px;
  height: 45px;
  background: #eaf4fb;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}

.what-we-do .icon-box .icon i {
  color: #666;
  font-size: 28px;
}

.what-we-do .icon-box h4 {
  font-weight: 700;
  margin-bottom: 0px;
  font-size: 18px;
}

.what-we-do .icon-box h4 a {
  color: #384046;
  transition: ease-in-out 0.3s;
}

.what-we-do .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  text-align: left;
}

.what-we-do .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
}

.what-we-do .py-0:hover {
  border-color: #fff;
  box-shadow: 0px 0px 0px 0 rgba(0, 0, 0, 0);
}

.what-we-do .icon-box:hover h4 a,
.what-we-do .icon-box:hover .icon i {
  color: #444;
}
.what-we-do .section-title h4 {
  margin-top: 40px;
}

.inner-page .section-title h4 {
  margin-top: 40px;
}

#what-we-do .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 2px;
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  transition: ease-in-out 0.3s;
  color: #fff;
  background: #3498db;
  text-transform: uppercase;
}

#what-we-do .btn-get-started:hover {
  background: #4ea5e0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding: 20px 10px;
}

.about h3 {
  font-weight: 600;
  font-size: 32px;
}

.about ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
  padding-top: 5px;
}

/*.about ul li+li {
  margin-top: 10px;
}*/

.about ul li {
  position: relative;
  padding-left: 30px;
  margin-top: 5px;
}

.about ul i {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 22px;
  color: #c0c0c0;
}

.about .icon-boxes {
  padding-top: 10px;
}

.about .icon-boxes h4 {
  font-size: 16px;
  font-weight: 700;
  margin-top: 5px;
}

.about .icon-boxes i {
  font-size: 48px;
  color: #c0c0c0;
}

.about .icon-boxes p {
  font-size: 15px;
  color: #444;
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 10px 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #384046;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e8eaec;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #5faee3;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: white;
  padding: 30px 0 40px 0;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #fff;
}

.counts .count-box i {
 /* position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);*/
  font-size: 25px;
  background: #3ca4bb;
  padding: 12px;
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
}

.counts .count-box span {
  font-size: 24px;
  display: block;
  font-weight: 600;
  color: #124364;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  /*padding: 20px;*/
  padding:15px 20px 0px 20px;
  border-radius: 6px;
  /*background: #fff;*/
  transition: ease-in-out 0.3s;
}

.services .icon-box i {
  float: left;
  color: #050507;
  font-size: 40px;
  line-height: 0;
}
/*.services .icon-box i:hover {
  color: #c0c0c0;
}
*/
.services .icon-box h4 {
  margin-left: 70px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .icon-box h4 a {
  color: #384046;
  transition: 0.3s;
}

.services .icon-box p {
  margin-left: 70px;
  line-height: 24px;
  font-size: 14px;
}

/*.services .icon-box:hover {
  box-shadow: 0px 2px 22px rgba(0, 0, 0, 0.08);
}*/

.services .icon-box:hover h4 a {
  color: #c0c0c0;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio {
  padding: 50px 0;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 0 35px 0;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 0 15px 15px 0;
  display: inline-block;
  padding: 10px 20px;
  font-size: 12px;
  line-height: 20px;
  color: #444444;
  border-radius: 4px;
  text-transform: uppercase;
  background: #fff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  background: #333333;
  color: #fff;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.portfolio .portfolio-wrap:hover {
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
}

.portfolio .portfolio-item {
  position: relative;
  /*height: 360px;*/
  overflow: hidden;
}

.portfolio .portfolio-item figure {
  /*background: #000;*/
  overflow: hidden;
  /*height: 240px;*/
  position: relative;
  border-radius: 4px 4px 0 0;
  margin: 0;
  text-align: center;
}

.portfolio .portfolio-item figure:hover img {
  opacity: 0.4;
  transition: 0.4s;
}

.portfolio .portfolio-item figure .link-preview,
.portfolio .portfolio-item figure .link-details {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  line-height: 0;
  text-align: center;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  transition: all 0.2s linear;
  overflow: hidden;
  font-size: 20px;
}

.portfolio .portfolio-item figure .link-preview i,
.portfolio .portfolio-item figure .link-details i {
  color: #384046;
  line-height: 0;
}

.portfolio .portfolio-item figure .link-preview:hover,
.portfolio .portfolio-item figure .link-details:hover {
  background: #c0c0c0;
}

.portfolio .portfolio-item figure .link-preview:hover i,
.portfolio .portfolio-item figure .link-details:hover i {
  color: #fff;
}

.portfolio .portfolio-item figure .link-preview {
  left: calc(50% - 38px);
  top: calc(50% - 18px);
}

.portfolio .portfolio-item figure .link-details {
  right: calc(50% - 38px);
  top: calc(50% - 18px);
}

.portfolio .portfolio-item figure:hover .link-preview {
  opacity: 1;
  left: calc(50% - 15px);
}

.portfolio .portfolio-item figure:hover .link-details {
  opacity: 1;
  right: calc(50% - 15px);
}

.portfolio .portfolio-item .portfolio-info {
  background: #fff;
  text-align: left;
  padding: 10px;
  /*height: 90px;*/
  border-radius: 0 0 3px 3px;
  border-left: 4px solid #c0c0c0;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  /*line-height: 1px;*/
  font-weight: 700;
  margin-bottom: 0px;
  padding-bottom: 0;
  color: #000 !important;
}

.portfolio .portfolio-item .portfolio-info h4 a {
  color: #333;
}

.portfolio .portfolio-item .portfolio-info h4 a:hover {
  color: #c0c0c0;
}

.portfolio .portfolio-item .portfolio-info p {
  padding: 0;
  margin: 0;
  color: #000 !important;
  font-weight: 400;
  font-size: 14px;
  text-align: left;
  /*text-transform: uppercase;*/
}

.portfolio-item .speaker img {
  max-width: 45%;
  width: 600px;
  border-radius: 50%;
  margin: 0 0 5px 0;
  display: block;
}



@media (max-width: 600px){
  .portfolio .portfolio-item .portfolio-info p{
    text-align: center;
  }

.portfolio-item .speaker img {
    max-width: 20%;
    margin: 8px auto;
}
  }


.portfolio .portfolio-item .portfolio-info1 {
  background: #fff;
  text-align: left;
  padding: 10px;
  /*height: 90px;*/
  border-radius: 0 0 3px 3px;
  /*border-left: 4px solid #c0c0c0;*/
}
.portfolio .portfolio-item .portfolio-info1 h6 {
  color: #333;
}

.portfolio .portfolio-item .portfolio-info1 h4 a {
  color: #333;
}

.portfolio .portfolio-item .portfolio-info1 h4 a:hover {
  color: #c0c0c0;
}

.portfolio .portfolio-item .portfolio-info1 p {
  padding: 0;
  margin: 0;
  color: #000 !important;
  font-weight: 400;
  font-size: 14px;
  text-align: left;
  /*text-transform: uppercase;*/
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 0;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #c0c0c0;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #c0c0c0;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(56, 64, 70, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 0 30px;
  margin: 30px 15px;
  text-align: center;
  min-height: 350px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #e1f0fa;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #c0c0c0;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #c0c0c0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  background: #fff;
}

.team .member img {
  max-width: 60%;
  border-radius: 50%;
  margin: 0 0 30px 0;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #6c6c6c;
  text-align: left;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  color: #919191;
  transition: 0.3s;
}

.team .member .social a:hover {
  color: #c0c0c0;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}
.team .btn-get-started 
{

  font-family: "Poppins", sans-serif;
font-weight: 400;
font-size: 13px;
letter-spacing: 2px;
display: inline-block;
padding: 12px 28px;
border-radius: 4px;
transition: ease-in-out 0.3s;
color: #fff;
background: #3498db;
text-transform: uppercase;
}
.team .member h5
{
  text-align: left;
}
.team .member table
{
  font-size: 14px;
}
.team .member table span
{
  font-size: 11px;
}
.team .member table .heading
{
  text-align: left;
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-wrap {
  padding: 30px;
  background: #fff;
  border-radius: 4px;
}

.contact .info i {
  font-size: 20px;
  color: #c0c0c0;
  float: left;
  width: 44px;
  height: 44px;
  background: #eaf4fb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #384046;
}

.contact .info p {
  padding: 0 0 20px 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #65747f;
}

.contact .info:hover i {
  background: #c0c0c0;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  padding: 30px;
  background: #fff;
  border-radius: 4px;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .register-from .php-email-form .form-group input {
  height: 44px;
}
.contact .register-from .php-email-form .form-group select {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #656464;
  border: 0;
  padding: 6px 12px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #515151;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 40px 0;
  /*margin-top: 70px;*/
  padding-top: 90px;
  background: #000000;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
  color: #ffffff;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
  color: #757575;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4f5a62;
  content: "/";
}
.breadcrumbs a:hover {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #ffffff;
  font-size: 15px;
  background: #000000;

  
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #777777;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #c0c0c0;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #c0c0c0;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  text-align: left;
  border: 1px solid #b6daf2;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #c0c0c0;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #57aae1;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}

#footer .social-links a {
  font-size: 24px;
  display: inline-block;
  /*background: #666666;*/
  background: #9f9f9f;  
  color: #1a1a1a;
  line-height: 1;
  padding: 6px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #444444;
  /*background: none;*/
  /*color: #fff;*/
  text-decoration: none;
}
#footer .contact
{
  color: #c0c0c0;
}
#footer .contact:hover
{
  color: #ffffff;
}
.footer-fixed{
/*Added by imay*/
  position: fixed;
  bottom: 0;
  width: 100%;
}
/*Custom*/
.about .portfolio-item .portfolio-info .date
{
  display: flex;
  justify-content: left;
}
.about .portfolio-item .portfolio-info .date h2 {
  display: inline-block;
  margin-right: 10px;
  font-size: 44px;
  font-weight: 700;
  line-height: 39px;
}
.about .portfolio-item .portfolio-info .date p {
  display: inline-block;
  color: #444444 !important;
  font-weight: 600;
}
.about .portfolio-item .portfolio-info .date p span {
  display: block;
  color: #727272;
  margin-top: 0;
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
}
@media (max-width: 768px) {
.about #portfolio-flters li:hover, .portfolio #portfolio-flters li {
  display: block;
  margin: 0 0px 15px 0;
}
.about .portfolio-item .portfolio-info .date
{
  text-align: center;
  display: block;
  margin-bottom: 15px;
}
.about .portfolio-item .portfolio-info .date h2 {
  font-size: 40px;
  text-align: center;
  display: block;
  margin: 0;
    margin-bottom: 0px;
  margin-bottom: 5px;
}
.about .portfolio-item .portfolio-info p {
  text-align: center;
}
}
/*Hero-sub*/

.about .portfolio-item figure {
  background: #fff;
  /*overflow: hidden;*/
  /*height: 240px;*/
  position: relative;
  border-radius: 4px 4px 0 0;
  margin: 0;
  text-align: center;
}

.about .portfolio-item figure:hover img {
    background: #c0c0c0;
}

.about .portfolio-item figure .link-preview,
.about .portfolio-item figure .link-details {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  line-height: 0;
  text-align: center;
  width: 36px;
  height: 36px;
  background: #384046;
  border-radius: 50%;
  transition: all 0.2s linear;
  overflow: hidden;
  font-size: 20px;
}

.about .portfolio-item figure .link-preview i,
.about .portfolio-item figure .link-details i {
  color: #ffffff;
  line-height: 0;
}

.about .portfolio-item figure .link-preview:hover,
.about .portfolio-item figure .link-details:hover {
  background: #c0c0c0;
}

.about .portfolio-item figure .link-preview:hover i,
.about .portfolio-item figure .link-details:hover i {
  color: #fff;
}

.about .portfolio-item figure .link-preview {
  left: calc(50% - 10px);
  top: calc(50% - 18px);
}

.about .portfolio-item figure .link-details {
  right: calc(50% - 38px);
  top: calc(50% - 18px);
}

.about .portfolio-item figure:hover .link-preview {
  opacity: 1;
  left: calc(50% - 10px);
}

.about .portfolio-item figure:hover .link-details {
  opacity: 1;
  right: calc(50% - 44px);
}
.about .portfolio-item p{
 text-align: justify;
 font-size: 14px;
}
.about ul .pl-2
{
  padding-left: 12px;
}

.inner-page h4
{
  text-align: left;
}
.inner-page ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
  padding-top: 5px;
}


/*.about ul li+li {
  margin-top: 10px;
}*/

.inner-page ul li {
  position: relative;
  padding-left: 30px;
  text-align: left;
}

.inner-page ul i {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 22px;
  color: #c0c0c0;
}

.inner-page .icon-boxes {
  padding-top: 10px;
}

.inner-page .icon-boxes h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
  text-align: center;

}

.inner-page .icon-boxes i {
  font-size: 48px;
  color: #c0c0c0;
}

.inner-page .icon-boxes p {
  font-size: 15px;
  color: #444;
}
.inner-page p
{
  text-align: left;
}

.inner-page a
{
  color: #444;
}
.inner-page a:hover
{
  color: #000;
}
.ps-custom {
  padding-left: 22px;
}

@media (min-width: 992px) {
.ps-lg-custom {
  padding-left: 32px;
}

}

.sponsors-logo
  {
/*    border: 1px solid #000;*/
    margin: 0 0 30px;
    min-height: 150px;
    padding: 0 10px;
    display: flex;
/*    flex-direction: column;*/
    justify-content: center;
    align-items: center;
    align-content: center;
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    background: #fff;
  }
  .sponsors-logo-merge
  {
    margin: 0 0 30px;
/*    min-height: 150px;*/
    padding: 20px 10px;
/*    display: flex;*/
    vertical-align: middle;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    background: #fff;
  }
  .sponsors-logo-silver img
  {
    width: 300px;
    height: 300px;
  }
  .sponsors-logo-silver
  {
/*    border: 1px solid #000;*/
    margin: 30px 0 30px 0px;
    min-height: 360px;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
/*    background: #fff;*/
  }
  .btn.btn-success {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
.btn.btn-success:hover {
  background-color: #0d6c40;
  border-color: #0d6c40; 
  }
.btn.btn-info
{
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn.btn-info:hover {
  background-color: #1097b3;
  border-color: #1097b3; 
}


.btn.btn-danger {

color: #fff;
background-color: #dc3545;
border-color: #dc3545;
}
.btn.btn-danger:hover {

color: #fff;
background-color: #9f2934;
border-color: #9f2934;
}
.btn.btn-add {
  color: #fff;
/*  background-color: #198754;*/
  background-color: #4a4a4a;

  border-color: #4a4a4a;
/*  background: linear-gradient(180deg,#e6e6e6 0%,rgba(0, 0, 0, 0.25) 49%, rgba(38, 38, 38, 0.6) 51%,rgba(0, 0, 0, 0.25) 100%);*/
  /*background-color: silver;
  border-color: #198754;*/
}
.btn.btn-add:hover {
  background-color: #373737;
  border-color: #373737; 
  }

.btn.btn-custom
{
  color: #000;
  background-color: #3ca4bb;
  border-color: #3ca4bb;
}
.btn.btn-custom:hover {
  background-color: #1097b3;
  border-color: #1097b3; 
}

  /*Required Css*/
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
      color: #00000066 !important;
      font-size: 14px;
}
     .form-group {
  position: relative;
}
.form-group .placeholder {
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 20px;
  background: none;
  cursor: text;
  font-size: 14px;
}
.req-red {
  color: #ff0d0d;
}
.textfield:focus {
  outline: none;
}
.textfield:focus ~ .placeholder,
.textfield:not(:focus):valid ~ .placeholder {
  visibility: hidden;
}

/*Sponsores @media Layout*/
/*@media only screen and (max-width: 2000px) and (min-width:768px){
  .row-align2
    {
      
    }
  
  }
*/

@media (max-width: 1700px) and (max-width: 768px)
  {
    .merge-sponsors {
      height: 240px !important;
    }
  }
  .short-div {
  height:25px;
  }
@media (min-width: 1200px) {
  .row-align {
    position: absolute;
top: 428px;
width: 28.5%;
  }
  .row-align2 {
    position: absolute;
top: 428px;
width: 28.5%;
right: 100px;
  }
}
@media (min-width: 1400px) {
  .row-align1 {
    position: absolute;
top: 428px;
width: 23%;
  }
  .row-align2 {
    position: absolute;
    top: 428px;
    width: 29%;
    right: 93px;
  }
}
@media (min-width: 2000px) {
  .row-align1 {
    position: absolute;
top: 428px;
width: 19.5%;
  }
  .row-align2 {
    position: absolute;
top: 428px;
width: 23%;
right: 0;

  }
}

/*Programe Page  speaker text class*/
.speaker span
{
  font-style: italic;
  display: block;
  font-size: 13px;
}
/*@media (min-width: 991px) {
  
  }*/

/*Home Page Custom Cover CSS*/
.isc-logo
  {
    width: 200px !important;
    height: 200px !important;
    position: relative;
    top: 0px;
    right: 45px;
  }

.rotate 
  {
    animation: rotation 20s infinite linear;
    position: relative;
    top: 0px;
    left: 230px;
    opacity: 0.8;
  }

  .banner
  {
    width: 100%;
    height: auto;
  }
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

@media (max-width: 991px) {
  .rotate {
    display: none;
  }
  .text-center-sm {
    text-align: center !important;
  }
  .isc-logo {
    width: 250px !important;
    height: 250px !important;
    right: 0px;

  }
  .banner
  {
  width: 100%;
  height: 52vh !important;
}
  
  .banner
  {
  width: 100%;
  height: 52vh !important;
}
}
@media (max-width: 991px) and (min-width: 600px){
  #hero {
    height: calc(100vh - 70px);
  }
  /*.img-fluid.isc-logo
  {
    width: 300px;
    height: 300px;
  }*/
}

/*Registration page Download & registration button*/
@media (max-width: 600px){
  .team .btn-get-started{
    width: 70%;
  }
}


/*Unsubscribe Page Css*/

.maill-success {
  height: 100vh;
  text-align: center;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  background-image: url("../img/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.maill-success::before {
  position: absolute;
  content: "";
  /*background: linear-gradient(45deg, #333333, #333333);*/
  /*background: linear-gradient(45deg, #b6b7d07a, #8385b0a6);*/
  opacity: 0.9;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.maill-success .success-content {
  padding: 50px;
  border-radius: 5px;
  background-color: #fff;
  display: inline-block;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.267);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.267);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .maill-success .success-content {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .maill-success .success-content {
    padding: 30px 20px;
  }
}
.d-table {
  width: 100%;
  height: 100%;
}
.d-table {
  display: table !important;
}
.d-table-cell {
  vertical-align: middle;
}
.d-table-cell {
  display: table-cell !important;
}
.maill-success .success-content i {
  font-size: 40px;
  margin-bottom: 20px;
  color: #333333;
}
.maill-success .success-content h1 {
  font-size: 40px;
  color: #333333;
  margin-bottom: 20px;
  font-weight: 700;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .maill-success .success-content h1 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .maill-success .success-content h1 {
    font-size: 22px;
  }
}
.maill-success .success-content h2 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #333333;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .maill-success .success-content h2 {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .maill-success .success-content h2 {
    font-size: 15px;
  }
}
.maill-success .success-content p {
  font-weight: 400;
  margin-bottom: 30px;
  color: #727272;
  font-style: italic;
  font-size: 17px;
}
.newsletter-form {
  margin-top: 30px;
  position: relative;
}
.newsletter-form .button {
  margin-top: 5px;
}

.msg-error {
  color: #f00000;
}

/*Video Custom CSS*/

.events-schedule {
  background-color: #f4f7fa;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .events-schedule .section-title {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .events-schedule .section-title {
    margin-bottom: 40px;
  }
}
.events-schedule .details-button {
  margin-top: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .events-schedule .details-button {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .events-schedule .details-button {
    margin-top: 40px;
  }
}
.events-schedule .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: none;
  background-color: transparent;
  /*margin-bottom: 60px;*/
  margin-bottom: 30px;
  font-size: 14px;
}
@media (max-width: 767px) {
  .events-schedule .nav {
    display: block;
    width: 100%;
  }
}
.events-schedule .nav .nav-item {
  display: inline-block;
  margin-right: 15px;
}
@media (max-width: 767px) {
  .events-schedule .nav .nav-item {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }
}
.events-schedule .nav .nav-item:last-child {
  margin: 0;
}
.events-schedule .nav .nav-item .nav-link {
  padding: 16px;
  color: #333333;
  font-weight: 500;
  text-align: center;
  padding: 10px 20px;
  background-color: #fff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-radius: 4px;
  border: none;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.082);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.082);
  position: relative;
}
@media (max-width: 767px) {
  .events-schedule .nav .nav-item .nav-link {
    display: block;
    width: 100%;
  }
}
.events-schedule .nav .nav-item .nav-link::before {
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
  border: 10px solid #333333;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0;
  visibility: hidden;
}
.events-schedule .nav .nav-item .nav-link.active::before {
  opacity: 1;
  visibility: visible;
}
.events-schedule .nav .nav-item .nav-link:hover {
  background-color: #333333;
  color: #fff;
}
.events-schedule .nav .nav-item .nav-link:hover::before {
  opacity: 1;
  visibility: visible;
}
.events-schedule .nav .nav-item .nav-link:hover span {
  color: #fff;
}
.events-schedule .nav .nav-item .nav-link.active {
  background-color: #333333;
  color: #fff;
}
.events-schedule .nav .nav-item .nav-link.active span {
  color: #fff;
}
.events-schedule .nav .nav-item .nav-link span {
  font-size: 14px;
  display: block;
  margin-top: 2px;
  font-weight: 400;
  color: #727272;
}
.events-schedule .single-event {
  padding: 30px;
  background-color: #fff;
  border-radius: 6px;
  margin-top: 25px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-left: 4px solid transparent;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.082);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.082);
}
@media (max-width: 767px) {
  .events-schedule .single-event {
    padding: 30px 15px;
  }
}
@media (max-width: 767px) {
  .events-schedule .single-event {
    text-align: center;
    display: block;
  }
}
.events-schedule .single-event:hover {
  /*border-left-color: #333333;*/
  border-left-color: #ed392b;

}
.events-schedule .single-event .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
}
@media (max-width: 767px) {
  .events-schedule .single-event .date {
    text-align: center;
    display: block;
  }
}
.events-schedule .single-event .date h2 {
  display: inline-block;
  margin-right: 10px;
  font-size: 44px;
  font-weight: 700;
  line-height: 39px;
}
@media (max-width: 767px) {
  .events-schedule .single-event .date h2 {
    font-size: 40px;
    text-align: center;
    display: block;
    margin: 0;
    margin-bottom: 5px;
  }
}
.events-schedule .single-event .date p {
  display: inline-block;
  color: #333333;
  font-weight: 500;
}
.events-schedule .single-event .date p span {
  display: block;
  color: #727272;
  margin-top: 0;
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
}
.events-schedule .single-event .event-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
}
@media (max-width: 767px) {
  .events-schedule .single-event .event-info {
    text-align: center;
    display: block;
    margin-top: 15px;
  }
}
.events-schedule .single-event .event-info .image {
  display: inline-block;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .events-schedule .single-event .event-info .image {
    margin: 0;
    margin-bottom: 10px;
  }
}
.events-schedule .single-event .event-info .image img {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  margin-top: 10px;
}
.events-schedule .single-event .event-info .info h4 {
  font-size: 17px;
  font-weight: 500;
  color: #333333;
}
.events-schedule .single-event .event-info .info h4 a {
  font-size: 17px;
  font-weight: 500;
  color: #333333;
}
.events-schedule .single-event .event-info .info h4 a:hover {
  color: #333333;
}
.events-schedule .single-event .event-info .info ul {
  margin-top: 5px;
}
.events-schedule .single-event .event-info .info ul li {
  display: inline-block;
  margin-right: 15px;
}
.events-schedule .single-event .event-info .info ul li a {
  font-size: 14px;
  color: #727272;
  font-weight: 400;
}
.events-schedule .single-event .event-info .info ul li a:hover {
  color: #333333;
}
.events-schedule .single-event .event-info .info ul li i {
  color: #333333;
  display: inline-block;
  margin-right: 4px;
  font-size: 14px;
  margin-top: 4px;
  vertical-align: top;
}
.events-schedule .single-event .event-info .info ul li:last-child {
  margin: 0;
}
.events-schedule .single-event .button {
  float: right;
}
/*Customized*/
.events-schedule .single-event .event-info .user-role
    {
      margin-top: 10px;
    }
.events-schedule .single-event .event-info .user-role a
    {
      font-size: 14px;
      color: #727272;
      font-weight: 400;
    }
@media (max-width: 767px) {
  .events-schedule .single-event .event-info .info ul li {
  display: block;
  margin-right: 0px;
}
  .events-schedule .single-event .button {
    margin-top: 20px;
    float: none;
    text-align: center !important;
  }
}


 


