:root {
  --brand: #6C2196;
  --sub: #cf728b;
  --body: #D4AF37;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
  --background: #FDF7FF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* SECTION */
.slider-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
@media only screen and (max-width:480px){

.slider-section {
  position: relative;
  height: 300px;
  overflow: hidden;
}
}

/* SLIDES */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* IMAGE */
.bg-media {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1);
  transition: transform 6s ease;
}

.slide.active .bg-media {
  transform: scale(1.08);
}

/* 🔥 UNIQUE OVERLAY (LEFT DARK → RIGHT LIGHT) */
.slider-overlay-dark {
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.85) 25%,
    rgba(0,0,0,0.60) 50%,
    rgba(0,0,0,0.30) 75%,
    rgba(0,0,0,0.08) 100%
  );
}

/* CONTENT */
.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left !important;
  padding-left: 8%;
}

/* ANIMATION */
.slide-inner {
  max-width: 600px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
  /* align-items: start !important; */
}

.slide.active .slide-inner {
  opacity: 1;
  transform: translateY(0);
}

/* BADGE */
.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 30px;
  background: rgba(255,255,255,0.15);
  margin-bottom: 15px;
  font-size: 12px;
  letter-spacing: 1px;
  color: #fff;
}

/* TEXT */
.slide-head {
  font-size: 50px;
  color: #fff;
  margin-bottom: 15px;
  text-shadow: 0 3px 15px rgba(0,0,0,0.6);
  text-align: left;
}

.slide-head em {
  color: #d4af37;
}

.slide-text {
  font-size: 18px;
  color: #eee;
  margin-bottom: 25px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* BUTTONS */
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.primary {
  background: #d4af37;
  color: #fff;
}

.primary:hover {
  background: #b8962e;
}

.secondary {
  border: 1px solid #fff;
  color: #fff;
}

.secondary:hover {
  background: #fff;
  color: #000;
}
/* MOBILE VIEW ONLY */
@media (max-width: 490px) {

  .badge {
    font-size: 10px;
    padding: 4px 12px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
  }

  .slide-head {
    font-size: 25px !important;
    margin-bottom: 10px;
    line-height: 1;
  }

  .slide-text {
    font-size: 14px;
    margin-bottom: 18px;
    line-height: 1.5;
  }

  .actions {
    gap: 8px;
  }

  .btn {
    padding: 10px 18px;
    font-size: 12px;
  }

}
/* CONTROLS */
.controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
}

.controls button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.5);
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

/* DOTS */
.dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: .4;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  width: 25px;
  border-radius: 10px;
  opacity: 1;
  background: #d4af37;
}

/* MOBILE */
@media(max-width:768px) {
  .slide-content {
    justify-content: start;
    text-align: center;
    padding-left: 20px;
  }

  .slide-head {
    font-size: 32px;
  }

  .slide-text {
    font-size: 14px;
  }

  .controls {
    bottom: 10px;
    gap: 10px;
  }

  .controls button {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .btn {
    padding: 8px 14px;
    font-size: 12px;
  }
}


:root {
  --brand: #b5697c;
  --brand-dark: #8c3f55;
  --brand-light: #f3dde3;
  --brand-pale: #fdf7f8;
  --gold: #c8a96e;
  --gold-light: #f0e2c8;
  --dark: #1e1010;
  --text: #3a2020;
  --muted: #7a5a60;
  --white: #ffffff;
  --bg: #faf8f6;
  --border: #ecddd5;
}

/* body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--bg);
} */

/* ── SECTION WRAPPER ── */
#about {
  padding: 60px 0 60px;
  overflow: hidden;
  position: relative;
}

/* subtle background watermark */
#about::before {
  content: '✿';
  position: absolute;
  top: -40px;
  right: -60px;
  font-size: 400px;
  color: var(--brand-light);
  opacity: 0.25;
  pointer-events: none;
  line-height: 1;
  user-select: none;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  /* padding: 0 40px; */
}

/* ── GRID LAYOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

/* ──────────────────────────
   LEFT  – TEXT CONTENT
────────────────────────── */

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.about-heading {
  /* font-family: 'Cormorant Garamond', serif; */
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 10px;
}

.about-heading em {
  display: block;
  font-style: italic;
  color: var(--brand);
  font-weight: 400;
}

.about-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.about-blockquote {
  border-left: 3px solid var(--brand);
  padding: 14px 20px;
  border-radius: 0 10px 10px 0;
  margin-bottom: 32px;
}

.about-blockquote p {
  line-height: 1.75;
  color: var(--muted);
  font-weight: 300;
}

/* Feature bullets */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-dark);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-text h5 {
  /* font-size: 14px; */
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.feature-text p {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.5;
}

/* Stats row */

.about-stats {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  margin-bottom: 36px;
}

.stat-box {
  flex: 1;
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat-box:last-child {
  border-right: none;
}

.stat-box .number {
  /* font-family: 'Cormorant Garamond', serif; */
  font-size: 32px;
  font-weight: 700;
  color: var(--brand-dark);
  line-height: 1;
  display: block;
}

.stat-box .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-top: 5px;
  display: block;
  font-weight: 400;
}

/* CTA buttons */
.about-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--brand);
  color: var(--white);
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-decoration: none;
  transition: all 0.28s ease;
  border: 1.5px solid var(--brand);
}

.btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(140, 63, 85, 0.28);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--brand-dark);
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-decoration: none;
  transition: all 0.28s ease;
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-2px);
}

/* ──────────────────────────
   RIGHT – IMAGE COLLAGE
────────────────────────── */
.about-right {
  position: relative;
  height: 520px;
}

/* Decorative ring behind images */
.deco-ring {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1.5px dashed var(--border);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.deco-ring-2 {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid var(--brand-light);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Main (large) image */
.img-main {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 260px;
  height: 340px;
  border-radius: 140px 140px 140px 30px;
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: 0 20px 50px rgba(181, 105, 124, 0.18);
  z-index: 2;
  background: var(--brand-light);
}

.img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Second image */
.img-secondary {
  position: absolute;
  bottom: 20px;
  right: 10px;
  width: 220px;
  height: 270px;
  border-radius: 30px 140px 140px 140px;
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: 0 20px 50px rgba(181, 105, 124, 0.14);
  z-index: 2;
  background: var(--gold-light);
}

.img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Image placeholder (when no real images) */
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--brand-pale);
}

.img-placeholder i {
  font-size: 32px;
  color: var(--brand);
  opacity: 0.5;
}

.img-placeholder span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  font-weight: 500;
}

/* Floating badge: experience */
.badge-exp {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 20px;
  text-align: center;
  z-index: 3;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  min-width: 120px;
}

.badge-exp .big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--brand-dark);
  line-height: 1;
}

.badge-exp .small {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-top: 4px;
  display: block;
  font-weight: 500;
}

/* Floating badge: rating */
.badge-rating {
  position: absolute;
  bottom: 50px;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 18px;
  z-index: 3;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge-rating .stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
}

.badge-rating .rating-text .num {
  /* font-family: 'Cormorant Garamond', serif; */
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.badge-rating .rating-text .sub {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
}

/* Decorative icon (lips outline from the image) */
.deco-icon {
  position: absolute;
  top: 20px;
  right: 40px;
  z-index: 1;
  opacity: 0.18;
}

.deco-icon svg {
  width: 70px;
  height: 70px;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-right {
    height: 440px;
  }

  .img-main {
    width: 220px;
    height: 290px;
  }

  .img-secondary {
    width: 190px;
    height: 240px;
  }
}

@media (max-width: 600px) {
  #about {
    padding: 70px 0;
  }

  /* .container {
    padding: 0 24px;
  } */

  .about-right {
    height: 380px;
  }

  .img-main {
    width: 190px;
    height: 250px;
    left: 0;
    top: 10px;
  }

  .img-secondary {
    width: 170px;
    height: 220px;
    right: 0;
    bottom: 10px;
  }

  .badge-exp {
    right: -10px;
    padding: 12px 14px;
  }

  .badge-exp .big {
    font-size: 30px;
  }

  .badge-rating {
    left: -10px;
  }

  .about-stats {
    flex-direction: column;
    border: none;
    gap: 0;
  }

  .stat-box {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .stat-box:last-child {
    border-bottom: none;
  }
}

/* ── FADE-IN ANIMATION on scroll ── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) {
  transition-delay: 0.1s;
}

.fade-up:nth-child(3) {
  transition-delay: 0.2s;
}

.fade-up:nth-child(4) {
  transition-delay: 0.3s;
}

.fade-up:nth-child(5) {
  transition-delay: 0.4s;
}

.fade-up:nth-child(6) {
  transition-delay: 0.5s;
}

/* .img-main,
.img-secondary {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.img-main {
  transform: translateX(-20px);
}

.img-secondary {
  transform: translateX(20px);
  transition-delay: 0.2s;
}

.img-main.visible,
.img-secondary.visible {
  opacity: 1;
  transform: translate(0);
} */

.home_course{
  /* background:#F9F9F9; */
  padding-bottom:50px;
}

/* .ser{
  gap: 25px 0;
} */
/* .Explore{
  display: inline-block;
  background: var(--sub);
  color: #fff;
  border-radius: 5px;
  padding: 5px 20px;
}
.Explore:hover{
  color: white;
} */
/* .single_course {
	background: #fff;
	border-radius: 20px;
	position: relative;
	box-shadow:10px 15px 18px rgba(23, 23, 36, 0.03);
	margin-bottom: 20px;
	text-align:center;
  height: 100%;
}

.single_c_img{
  margin-bottom:20px;
  position: relative;
}
.single_c_img img {
	width: 100%;
	position: relative;
}
.single_c_img span {
	position: absolute;
	bottom: 60%;
	left: -2%;
	background: #525fe1;
	color: #fff;
	padding: 2px 10px;
	border-radius: 5px;
	transform: rotate(-90deg);
	transition: 0.3s;
}
.single_course:hover .single_c_img span{background: #f26b65;} 
.single_course i {
	color: #f26b65;
	margin: 0 1px;
}
.single_course h4 {
	margin-bottom: 15px;
	padding: 0 20px;
}
.single_course h4 a {
	font-weight: 600;
	font-size: 22px;
	margin-top: 10px;
	display: block;
	line-height: 32px;
  color:white;
}
.single_course h4 a:hover{color:#fff;}
.single_course p{margin-right:5px;display: inline;}
.single_course p span{color:#525fe1;font-weight: 600;}
.single_course .price {
	background: #fff;
	color: #525fe1;
	text-align: center;
	padding: 10px 20px;
	border-radius: 5px;
	margin-top: 15px;
	font-size: 18px;
	transition: 0.3s;
	
	font-weight: 600;
	border-top: 1px solid #e8e8e9;
	padding-bottom: 20px;
}
.single_course:hover .price{color: #f26b65;} 
.cour_btn{
	float: right;
	margin-top:70px;
}
@media only screen and (max-width:480px){
.cour_btn {
	float: none;
	margin-top:0px;
	margin-bottom:60px;
} */


/*START SINGLE COURSE SIDEBAR CSS*/
.course_features h3 {
	font-weight: 800;
	margin-bottom: 20px;
	background: #525fe1;
	color: #fff;
	text-align: center;
	padding: 20px 10px;
}
.course_features ul li {
	/* font-weight: 600; */
	padding-top: 10px;
	color: #1a2d62;
	overflow: hidden;
	font-size: 18px;
}
.course_features ul li i{
color:#525fe1;
margin-right:8px;
}
.course_features ul li b {
	font-weight: 800;
	float: right;
	background: #525fe1;
	color: #fff;
	padding: 5px 10px;
	overflow: hidden;
	border-radius: 10px;
}
.course-content p {
	margin-bottom: 30px;
}
.related_course{
margin: 30px 0;
box-shadow:0px 10px 40px rgba(0, 0, 0, 0.07);
padding:30px;
}
.related_course h3{
margin-bottom:30px;
font-size: 22px;
font-weight: 800;
}
.single_rc{
margin-bottom:30px;
padding-bottom:30px;
border-bottom:1px solid #eee;
}
.single_rc img {
	float: left;
	margin-right: 15px;
	margin-bottom: 15px;
}
.single_rc i{color:#ffbd35;margin-right: 8px;}
.single_rc h4 a {
	color: #1a2d62;
	font-size: 18px;
	font-weight: 800;
	margin: 10px 0;
	display: block;
	transition: 0.3s;
}
.single_rc h4 a:hover{color:#525fe1;}
.single_rc span {
	color: #525fe1;
	font-weight: 800;
	font-size: 20px;
}
.single_langu span a {
	color: #1a2d62;
	display: inline-block;
	font-size: 18px;
	line-height: 36px;
	transition: 0.3s;
}
.single_langu span a:hover{color:#525fe1;}
.single_rat a {
	line-height: 42px;
	/* font-size: 40px; */
	display: inline-block;
}
/*END SINGLE COURSE SIDEBAR CSS*/
/*START COURSE DETAILS TAB CSS*/
.course-details-content {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
	background-color: #F1F5F9;
	margin-top:40px;
}

.course-details-content .nav {
    border: none;
    text-align: center;
    border: 1px solid #DDDDDD;
    border-bottom: none;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
}

.course-details-content .nav li {
    margin-left: -1px;
    flex-grow: 1;
    padding: 0;
    border-left: 1px solid #DDDDDD;
    border-bottom: 1px solid #DDDDDD;
}

.course-details-content .nav li:first-child {
    border-left: none;
}

.course-details-content .nav li a {
    font-weight: 700;
    padding: 14px;
    color: #07294D;
    text-transform: uppercase;
    display: block;
}

.course-details-content .nav li a.active {
    background: #525fe1;
    color: #ffffff;
}

.course-details-content .overview {
    padding-top: 25px;
}

.course-details-content .overview p {
    margin: 0;
    margin-bottom: 1rem;
}
.course-details-content .overview iframe {
width:100%;
margin:30px 0;
}

.course-details-content .tab-content {
    padding: 0 30px 30px;
}

@media (max-width: 575px) {
    .course-details-content .tab-content {
        padding: 0 15px 20px;
    }

    .course-details-content .nav li a {
        font-size: 14px;
        padding: 5px 10px;
    }
}

.course-details-content .instructor-item .instructor-content .title {
    font-size: 20px;
    margin: 0;
    margin-bottom: 2px;
}

.details-buttons-area {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -5px -5px;
}

.details-buttons-area .custom-button {
    margin: 5px;
}

.details-buttons-area .social-icons {
    margin: 0;
    margin-left: auto;
}

.details-buttons-area .social-icons li a {
    color: #07294D;
    background: #ffffff;
}

.details-buttons-area .social-icons li a.active {
    background: #525fe1;
    color: #ffffff;
}

@media (max-width: 767px) {
    .details-buttons-area {
        justify-content: center;
    }

    .details-buttons-area .social-icons {
        width: 100%;
        margin: 0;
        justify-content: center;
    }
}

.ser-p{
  padding: 0 20px 20px;
  font-size: 15px !important;
  font-family: 'Poppins', sans-serif !important;
}

.review-form .client-form input {
    border-color: #DDDDDD;
    background: #ffffff;
    height: 50px;
    margin-bottom: 15px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding-left: 10px;
}

.review-form .client-form .rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 15px;
}

.review-form .client-form .rating .rating-title {
    padding-right: 5px;
}

.review-form .client-form .rating ul {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.review-form .client-form .rating ul li a i {
    color: #FF7700;
}

.review-form .client-form textarea {
    border-color: #DDDDDD;
    padding: 10px;
    height: 130px;
    margin-bottom: 20px;
}

.review-form .client-form button {
    background-color: #FF7700;
    color: #ffffff;
    font-weight: 500;
    outline: none;
    height: 50px;
    cursor: pointer;
    border: none;
}

.client-review {
    padding-top: 30px;
}

.client-review .review-title {
	text-transform: capitalize;
	margin-bottom: 10px;
	font-weight: 800;
	margin-bottom: 20px;
	font-size: 21px;
}

.review-contents {
    margin-bottom: 35px;
}

.review-contents li {
    padding: 0;
    margin-bottom: 25px;
}

.review-contents li:last-child {
    margin-bottom: 0;
}

.review-contents li .thumb {
	width: 100px;
	float: left;
	margin-right: 20px;
}

.review-contents li .thumb img {
    width: 100%;
}

.review-contents li .cont {
    padding-left: 20px;
    width: calc(100% - 100px);
    font-size: 14px;
    line-height: 26px;
}

.review-contents li .cont .subtitle {
	margin: 0;
	font-size: 18px;
	margin-bottom: -3px;
	font-weight: 700;
	margin-bottom: 5px;
}

.review-contents li .cont .ratings {
    margin-bottom: 15px;
}

@media screen and (max-width: 450px) {
    .review-contents li .thumb {
        width: 80px;
    }

    .review-contents li .cont {
        width: 100%;
        padding: 15px 0 0 0;
    }
}
.cl-theme {
	color: #FF7700 !important;
}
.review-form .client-form input {
	border-color: #DDDDDD;
	background: #ffffff;
	height: 50px;
	margin-bottom: 15px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	padding-left: 10px;
	border: none;
}
.review-form .client-form textarea {
	border-color: #DDDDDD;
	padding: 10px;
	height: 130px;
	width:100%;
	margin-bottom: 20px;
	border: none;
}
.custom-button {
    color: #ffffff;
    text-transform: uppercase;
    line-height: 48px;
    background: #FF7700;
    padding: 0 35px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    border-radius: 25px;
    border: 1px solid #FF7700;
}

.custom-button i {
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
    display: inline-block;
}

.custom-button i:last-child {
    padding-left: 10px;
}

.custom-button i:first-child {
    padding-right: 10px;
}

.custom-button:hover {
    color: #525fe1;
}

.custom-button.btn-sm {
    padding: 0 18px;
    font-size: 14px;
    line-height: 45px;
}

.custom-button.theme-one {
    border-color: #525fe1;
    background: #525fe1;
    box-shadow: 0 0 15px rgba(255, 119, 0, 0.1);
}

.custom-button.theme-one:hover {
    color: #525fe1;
	background:#fff;
	border:1px solid #525fe1;
}
.custom-button.bg-white {
    background: #ffffff;
    color: #07294D;
    border-color: rgba(7, 41, 77, 0.2);
}

.custom-button.bg-white:hover {
    background: #FF7700 !important;
    border-color: #FF7700 !important;
    color: #ffffff;
}

.social-icons {
    margin: -10px;
}

.social-icons li {
    padding: 10px;display: inline-block;
}

.social-icons li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
	display: block;
}

.social-icons li a:hover, .social-icons li a.active {
    background: #525fe1;
    color: #ffffff;
    box-shadow: 0 5px 20px rgba(255, 119, 0, 0.31);
}
/*END SINGLE EVENT DESIGN*/
/*START SINGLE EVENT DESIGN*/
.single_event_single img {
	width: 100%;
}

.single_event_text_single h4{
font-size: 36px;
font-weight: 700;
margin-bottom: 20px;
margin-top: 20px;
}
.single_event_text_single span i{
color:#525fe1;
margin-right:8px;
}
.single_event_text_single span {
	color: #333;
	margin-bottom: 5px;
	display: inline-block;
	margin-right: 20px;
}
.single_event_text_single p{margin-top:20px;}

.single_event_text_single_description{margin-top:30px;}
.single_event_text_single_description h3{
font-size: 36px;
font-weight: 700;
margin-bottom: 15px;
}
.event_info {
	border: 1px solid #eee;
	padding: 10px;
	border-radius: 5px;
	box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.07);
	padding: 30px;
}
.event_info h3{
background: #525fe1 none repeat scroll 0 0;
color: #fff;
font-size: 26px;
font-weight: 800;
text-align: center;
padding: 20px;
}
.event_info ul{list-style: none;}
.event_info ul li{margin: 30px 0;}
.event_info ul i{
background: #525fe1 none repeat scroll 0 0;
border-radius: 30px;
color: #fff;
float: left;
font-size: 20px;
height: 45px;
line-height: 45px;
margin-right: 15px;
text-align: center;
width: 45px;
}
.event_info ul h4 {
	font-weight: 700;
	text-transform: capitalize;
	overflow: hidden;
	font-size: 22px;
}
.event_info ul li p{overflow: hidden;}

.event_info_price h4{
background: #525fe1 none repeat scroll 0 0;
border-radius: 5px;
box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
color: #fff;
font-size: 24px;
font-weight: 800;
margin: 30px 0;
padding: 10px;
text-align: center;
}

.event_info_register a {
	width: 100%;
	text-align: center;
}
.event_info_register a {
	display: block;
}
/*END SINGLE EVENT DESIGN*/
