/* =========================================================
   Courses – CSS
   File: courses.css
   Sections:
   1) Admin meta box (editor screen)
   2) Archive listing (/courses)
   3) Single course
   4) Media queries
   ========================================================= */


/* =========================================================
   1) Admin meta box (editor screen)
   Scope to meta box id to avoid conflicts
   ========================================================= */
html {
  scroll-behavior: smooth !important;
}
/* 
p{
	font-family: 'Creato Display', sans-serif !important;
} */

#course_fields .course-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.course-faqs .faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 12px;
}
/* FAQ Section Styles */




.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #f8f9fa;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}


.faq-question:focus{
	border:none !important;
	outline:none !important;
}

.faq-question:hover{
	border:none !important;
	outline:none !important;
}

.faq-item.open {
  background: #ffffff;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #273874 !important;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question:hover {
  color: #4F46E5;
}

.faq-item.open .faq-question {
  color: #273874;
  padding-bottom: 16px;
}

.faq-question:focus {
  outline: none;
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #273874;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 300;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-left: 16px;
}

.faq-item.open .faq-icon {
  transform: rotate(135deg);
  
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.faq-item.open .faq-answer {
  max-height: 1000px;
  opacity: 1;
  padding: 0 24px 20px 24px;
}

.faq-answer p {
  margin: 0;
  color: #273874;
  font-size: 15px;
  line-height: 1.7;
  white-space: pre-line;
}

/* Animation for new items */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-item {
  animation: fadeInUp 0.5s ease forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }

/* Responsive Design */
@media (max-width: 768px) {
  .course-faqs {
    padding: 20px;
    margin: 30px 0;
  }

  .course-faqs .cs-head {
    font-size: 24px;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 15px;
  }

  .faq-item.open .faq-answer {
    padding: 0 18px 16px 18px;
  }

  .faq-icon {
    width: 28px;
    height: 28px;
    font-size: 18px;
    margin-left: 12px;
  }

  .faq-answer p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .course-faqs {
    padding: 16px;
    border-radius: 8px;
  }

  .course-faqs .cs-head {
    font-size: 20px;
  }

  .faq-question {
    padding: 14px 16px;
    font-size: 14px;
    line-height: 1.4;
  }

  .faq-item.open .faq-answer {
    padding: 0 16px 14px 16px;
  }

  .faq-icon {
    width: 26px;
    height: 26px;
    font-size: 16px;
  }
}



@media (prefers-reduced-motion: reduce) {
  .faq-item,
  .faq-answer,
  .faq-icon,
  .faq-question {
    animation: none;
    transition: none;
  }
}

/* .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  margin: 10px 0 20px;
  color: #555;
  line-height: 1.6;
} */

.tLeft, .tRight.red{
	font-weight:600;
}

#course_fields .course-full {
  grid-column: 1 / -1;
}

#course_fields .repeat-wrap .item {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

#course_fields .tag {
  background: #f1f1f1;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 12px;
}

#course_fields .thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border: 1px solid #ddd;
  border-radius: 6px;
}

#course_fields .top-actions {
  margin: 8px 0;
}

#course_fields .button-small {
  padding: 4px 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
}

.privacy-policy-wrapper p, ul li{
	color:#273874;
}
/* ---------------------------
   Category Tabs
---------------------------- */
.cat-tabs {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  margin: 8px 0 20px;
	justify-content:left;
}

.cat-tabs .tab {
  position: relative;
  display: inline-block;
  padding: 10px 6px;
  color: #6b7280;
  text-decoration: none;
  font-weight: 500;
}

.cat-tabs .tab.is-active {
  color: #ef4444;
}

.cat-tabs .tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  border-radius: 3px;
  background: #ef4444;
}


/* ---------------------------
   Grid Layout
---------------------------- */
.courses-wrap {
  width: 100%;
  margin: 32px auto;
  padding: 0 4rem;
}



.grid{
    display: flex;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    flex-wrap: wrap;
	margin-bottom: 101px;
}



.img-left{
	position: relative;
    top: 18px;
	left: -40px;
}

.img-right{
    position: relative;
    top: -18px;
    left: 0px;
}
/* Layout */
.courses-wrap { padding: 0 4rem; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }


/* Category tabs */
.cat-tabs { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; margin: 70px 0 30px; }
.cat-tabs .tab { 
	position: relative;
    display: inline-block;
    padding: 0px 6px;
    color: #273874;
    text-decoration: none;
    font-weight: 400; 
}
.cat-tabs .tab.is-active { color: #ef4444; }
.cat-tabs .tab.is-active::after { content: ""; position: absolute; left: 0; right: 0; bottom: 13px; height: 1px; border-radius: 3px; background: #ef4444; }

/* Card: image on top, content below */
.course-card{
  width: 100%;           
  height: auto;               
  border: 0.0625rem solid #0000001A;
  border-radius: 1rem;      
  background:#fff;
  overflow:hidden;
  display:flex;
  flex-direction:column;
/*  justify-content: space-around;	 */
}
.course-card .card-media{ position: relative; }
.course-card .thumb {
    width: 100%;
    height: 15rem;
    object-fit: cover;
    display: block;
    
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding: 5px;
    border-radius: 1rem;
}

.courses-grid{
	display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
	    margin-bottom: 4rem;
}
@media (max-width: 640px){ .course-card .thumb { height: 280px; }
	.courses-grid{
		grid-template-columns:1fr !important;
	}
}

/* Category badge on image */
.course-card .badge{
  position:absolute; top:0.75rem; right:0.75rem;   /* 12px */
  background:#EDF2FF; color:#1E3A8A; border:0.0625rem solid #DDE3FF;
  padding:0.375rem 0.625rem;   
  border-radius: 999rem;
  font-size:0.75rem;           
  line-height:1;
}

/* Content */
.course-card .card-body{ 
	padding: 16px 19px 16px 19px !important; 
} 
.course-card .course-title {
    margin: 0 0 24px;
    font-size: 22px;
    line-height: 1.3;
    width: 75%;
	    min-height: 100px;

}

.slider-section, .slider-section-courses, .faq-section {
	display:none !important;
}
.course-card .course-title a{ 
	color: #273874; 
	text-decoration:none; 
	font-weight: 700;
}
.course-card .course-title a:hover{ 
	text-decoration:underline; 
}

/* Skills line — simple, no vendor prefixes */
.course-card .skills{ 
	margin:0 0 48px; 
	font-size:0.8125rem; 
	line-height:1.4; 
	color:#334155; 
}
.course-card .skills .label {
    font-weight: 600;
    color: #273874;
    margin-right: 0.375rem;
    white-space: nowrap;
    font-size: 16px;
}
.course-card .skills .text{ word-break:break-word; overflow-wrap:anywhere;font-size: 16px; color: #273874;  }

/* Footer */
.course-card .meta{ display:flex; justify-content:space-between; align-items:center; gap:0.75rem; }
.course-card .duration {
    font-size: 16px;
    color: #273874;
}
.course-card .btn {
    display: inline-block;
    padding: 0.5rem 0.875rem;
    font-size: 0.875rem;
    color: #273874;
    text-decoration: none;
    border: 0.0625rem solid #273874;
    border-radius: 0.625rem;
    line-height: 25px !important;
}
.course-card .btn:hover{ border-color:#0f172a; }
@media (max-width: 34rem){ /* ~544px incl. gap */
  .grid{ grid-template-columns: 1fr; }
  .course-card{ width:100%; }
}
/* Pagination */
.pagination { margin-top: 24px; }

.course-card .card-top{
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;              
  padding: 0.75rem 0.75rem 0 0.75rem;
}


.course-card .card-top .badge{
  position: static;         
  background: #EDF2FF;
  color: #1E3A8A;
  border: 0.0625rem solid #DDE3FF; 
  padding: 0.375rem 0.625rem;       
  border-radius: 999rem;
  font-size: 0.75rem;      
  line-height: 1;
}
.course-card .badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    /* background: #111; */
    color: #273874;
    padding: 10px 16px;
    border-radius: 14px;
    font-size: 0.75rem;
    line-height: 1;
    z-index: 2;
    backdrop-filter: blur(4px);
 
}
.course-card .card-media {
  position: relative;
}

.banner-container {
    width: 100%;
    padding: 65px;
    display: flex;
    align-items: center;
    /* justify-content: center; */
}
.banner-card-details{
	width: 60%;
    padding: 6rem 2rem;
    background: #fff;
    border-radius: 16px;
}
.banner-container h1{
	font-size: 48px;
    font-weight: 500;
	line-height: 57.6px;
}



.banner-wrap{
	height: 100%;
	padding-left: 0rem;
    padding-right: 5rem;
/* 	padding-top: 1rem; */
	display:flex;
}
.banner-card-details p {
    line-height: 27px;
    font-size: 16px;
    color: #273874;
/*     width: 31rem; */
}

.single-page-enroll{
	font-size:18px;
	    background: #DE2830;
    color: #FFFFFF !important;
    padding: 10px 30px;
    border-radius: 40px;
}

.more-details-section{
	padding-left: 5rem;
    padding-right: 5rem;
}

.more-details{
	margin-top: 8rem;
    display: flex;
	flex-direction:row;
		margin-bottom: 5rem;
    gap: 30px;
    justify-content: space-between;
}
.left-wrap{
	width:50%;
}
.description-content{
	font-size: 16px;
    line-height: 28px;
	color: #273874;
	margin-top:1.8rem;
}
.cs-head{
	font-size: 32px;
    color: #273874;
	font-weight: 500;
}

.wpcf7-form-control-wrap input, select {
  color: #27387466;
}


.wpcf7-form-control-wrap input::placeholder, select {
  color: #27387466;
  opacity: 1; 
}

.what-u-learn-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 40px;
}

.what-u-learn{
margin-top:2rem;	
}
.what-u-learn-list p {
  display: flex;
  align-items: center;
  margin: 0;
  font-size: 16px;
  color: #1e3a8a;
  white-space: nowrap; 
	line-height:38px;
	gap:12px;
}

.what-u-learn-list p img {
    width: 12px;
    height: 12px;
    margin-right: 5px;
}

.skills-u-gain-list{
	display: flex;
  flex-wrap: wrap;
  gap: 16px 40px;
}

.skills-u-gain{
	margin-top:2rem;
}

.what-u-learn .underline, .skills-u-gain .underline, .certifications-included .underline, .slider-section .underline, .slider-section-courses .underline{
	margin-bottom:3.5rem;
	    border-top: 1px solid #27387433;
}
.skills-u-gain-list p {
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 16px;
    color: #1e3a8a;
    line-height: 38px;
    padding: 4px 8px;
    background: #2738741A;
    border-radius: 4px;
}

.skills-u-gain-list img{
	border-style: none;
    height: auto;
    width: 180px;
    object-fit: contain;
}
    
.certifications-included{
	margin-top:2rem;
}


.right-wrap{
	width:50%;
}

.video-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 7px;
  max-width: 600px;
  margin: auto;
  background: #fff;
  text-align: center;
	width: 42rem;
}


.video-thumbnail {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: fit-content;
  background: grey;
}

.video-thumbnail > img {
  /* this targets the YT thumbnail only */
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.talk-to-us {
    border: 1px solid #273874;
    border-radius: 10px;
    margin: auto;
    padding: 2rem;
    max-width: 600px;
    margin-top: 2rem;
}

.talk-to-us p, .talk-to-us ul li{
	color:#273874;
	font-size:16px;
	line-height:32px;
}

.talk-to-us ul li{
	margin-bottom:1rem;
}
.talk-to-us .talk-to-us-q{
	font-size:26px;
	font-weight: 500;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.play-button img {
  width: 20px;   /* size of the red triangle image */
  height: auto;
}
.video-content p {
  font-size: 16px;
  color: #1e3a8a;
  margin-bottom: 16px;
  line-height:27px;
  text-align:left;
	
}
.video-content {
	padding:20px;
}
#single-page-enroll-cus{
	position: relative;
    left: -200px;
}



.slider-head{
	display:flex;
	justify-content: space-between;
}
.slider-section{
	margin-bottom:4rem;
}

.see-all{
	font-size:18px;
	    background: #fff;
    color: #DE2830 !important;
    padding: 10px 30px;
    border-radius: 40px;
	border: 1px solid;
}

.slider-left p{
	font-size: 48px;
    color: #273874;
	font-weight: 500;
}

.learners-highlight{
	color:#DE2830;
}

/* container */
.ts-desktop { display: block; }
.ts-mobile { display: none; }
/* Wrapper */
.studentTestimonials .ts-wrap {
  display: grid;
  grid-template-columns: 400px 882px; /* left image | right slider */
  gap: 2rem;
  justify-content: center;
      align-items: flex-start;
  max-width: calc(400px + 882px + 2rem);
  margin: 0 auto;
	padding:2rem;
}

/* Left image */
.studentTestimonials .ts-left {
  width: 400px;
  height: 443px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
	background-color:#fff;
}

/* Right slider area */
.studentTestimonials .ts-right {
  width: 882px;
  display: flex;
  flex-direction: column;
}

.studentTestimonials .ts-viewport {
  overflow: hidden;
  width: 100%;
  position: relative;
}


.studentTestimonials .ts-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.studentTestimonials .ts-slide {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 0 8px;
}


.studentTestimonials .ts-card {
  background: #fff;
 padding: 40px 114px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 90%;
}

/* Controls */
.studentTestimonials .ts-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -1rem;
}
.studentTestimonials .ts-dots {
  display: flex;
  gap: 8px;
}
.studentTestimonials .ts-dots button {
  width: 10px;
  height: 10px;
  padding: 0;              
  line-height: 1;          
  border-radius: 50%;      
  border: none;
  background: #ccc;
  cursor: pointer;
  display: inline-block;   
}
.studentTestimonials .ts-dots button.active {
  background: #fff;
}
.studentTestimonials .ts-nav button {
 width: 40px;
    height: 40px;
    font-size: 22px;
    font-weight: bold;
    line-height: 1;
    border-radius: 50%;
    border: 1px solid #fff;
    /* background: #d11b1b; */
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
	padding-bottom:5px;
}

.ts-nav{
	display:flex;
	gap:18px;
}

.ts-quote p{
	line-height:27px;
	color:#DE2830;
/* 	padding: 20px; */
	font-size:24px;
	font-weight:400;
}

.ts-name{
	line-height:27px;
	color:#DE2830 !important;
	font-size:24px;
	margin-bottom:0px;
	font-weight: 700;
}

.ts-place{
	line-height:27px;
	color:#DE2830;
	font-size:16px;
	margin-bottom: 68px;
}

.studentTestimonials .ts-nav button:hover {
  background: #cbb9b900; /* darker on hover */
}

/* Desktop (≥1440px) — 3 cards */
/* Navigation arrows container */
.coursesSlider .cs-nav {
  display: flex;
  gap: 12px;
}

/* Arrows */
.coursesSlider .cs-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
   width: 39px;
    height: 38px;
    border: 1px solid #273874;
    border-radius: 50%;
    background: transparent;
    color: #273874;
    font-size: 20px;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s 
ease;
}

/* Hover effect */
.coursesSlider .cs-nav a:hover {
  background: #333;
  color: #fff;
  transform: scale(1.1);
}
.cs-controls {
    margin-top: 20px;
    display: flex;
    /* justify-content: space-between; */
    float: right;
}
.cs-grid{
	display:flex;
	gap:50px;
}


.coursesSlider .cs-dots {
  display: none;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

/* Each dot */
.coursesSlider .cs-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  padding: 0;
}

/* Hover effect */
.coursesSlider .cs-dots button:hover {
  background: #999;
  transform: scale(1.1);
}

/* Active dot */
.coursesSlider .cs-dots button.active {
  background: #333;
  transform: scale(1.2);
}

@media (max-width: 1314px) {
	.studentTestimonials .ts-left{
		display:none;
	}
}
@media (min-width: 1500px) {
  .course-card {
    width: 100%;
   
}
}
/* Hide slider on tablet & mobile */
/* @media (max-width: 1023px) {
  .coursesSlider {
    display: none;
  }
/* 	.right-wrap{
		padding:4rem;
	} */
} */

.coursesSlider{
	margin-bottom:2rem;
}

@media (min-width: 1025px) and (max-width: 1457px) {

	    .grid {
        display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    }


}

@media (min-width: 1201px) and (max-width: 1314px) {
 .studentTestimonials .ts-viewport{
    overflow: hidden;
    width:auto;
    position: relative;
}
	.studentTestimonials .ts-wrap {
    display: flex;
   
}
	.studentTestimonials .ts-controls {
   display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 1rem;
        flex-direction: column;
        gap: 30px;
}
}



@media (max-width: 1200px) {
	.courses-grid{
		grid-template-columns:1fr 1fr;
	}
	 .grid {
        
       grid-template-columns: repeat(2, 1fr);
    }
	.ts-desktop { display: none; }
      .ts-mobile {
        display: block;
        padding: 2rem 1rem;
    }
	.banner-container {
		width: 100%;
/* 		padding:0; */
	}
	.banner-container h1 {
		font-size: 40px;
		font-weight: 500;
		line-height: 39.6px;
	}
	.left-wrap, .right-wrap {
    	width: 100%;
	}
	.video-card {
    	width: 100%;
	}
	.certifications-included, .skills-u-gain, .what-u-learn {
    	margin-bottom: 4rem;
	}
	.more-details {
        margin-bottom: 2rem;
        flex-direction: column;
		margin-top: 2.5rem;
		gap:0px;
    }
	.studentTestimonials .ts-left{
		background-color:none;
	}
	.slider-left p{
		font-size:25px;	
		line-height:38px;
	}
	.slider-head {
            display: flex;
        justify-content: space-between;
       
        flex-direction: column;
    }
	
.more-deatils{
	display:flex;
	flex-direction:column;
	margin-top: 5rem;
}
	.slider-section {
		margin-top:2rem;
	}
	
	#single-page-enroll-cus {
    position: unset;

}
	.ts-track{
		width:100% !important;
/* 		justify-content: center; */
    padding: 2rem 0;
	}
	    .course-card {
        justify-content: space-between;
			width: 100%;
			height:auto;
    }
	.cs-grid {
    display: grid;
    gap: 50px;
    grid-template-columns: 1fr 1fr 1fr; 
}
	.studentTestimonials .ts-wrap {
    display: grid;
    grid-template-columns: 1fr ;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 2rem;
}
}


@media (max-width: 1090px) {
	.nts-controls {
   
    flex-direction: column;
}
	.cat-tabs{
		gap:10px;
	}
	.cat-tabs .tab.is-active::after{
		bottom:8px;
	}
	.what-u-learn .underline, .skills-u-gain .underline, .certifications-included .underline, .slider-section .underline, .slider-section-courses .underline{
	margin-bottom:1.5rem;
	    border-top: 1px solid #27387433;
}
	.cs-controls {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}
    .cs-grid {
        display: grid;
        gap: 50px;
        grid-template-columns: 1fr 1fr;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        flex-direction: column;
    }
.cs-track.cs-grid > article.card.course-card:nth-of-type(3) {
  display: none !important;
}

	.banner-card-details p {

    	width: 100%;
	}
	.banner-card-details {
		width: 100%;
		padding: 50px;
		background: #fff;
		border-radius: 16px;
	}
	.banner-wrap{
		padding-right:0;
		height: auto;
	}
}
.video-embed-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  background: #000;
}

.video-embed-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
@media (max-width: 768px) {
	.video-thumbnail {
    
    height: 100%;
   
}
.cat-tabs {
    display: flex;
    gap: 0px;
    flex-wrap: nowrap;
    align-items: flex-start;
    margin: 30px 0 30px;
    flex-direction: column;
	line-height: 45px;
}
	.wpcf7 form .wpcf7-response-output{
		line-height:30px;
	}
	.nts-nav{
		display:flex;
		gap:70px;
	}
	.course-card .course-title {

    font-size: 20px;
   
}
	.cs-head {
    line-height: 45px;
    font-size: 25px;
}
	.single-page-enroll {
		font-size: 14px;
	}
	.img-right {
  
    top: -46px;

}
	.what-u-learn-list p {
    white-space: unset;
		    align-items: baseline;
   
}
	.talk-to-us p, .talk-to-us ul li {
    line-height: 27px;
}
	    .banner-container h1 {
        font-size: 25px;

    }
	.studentTestimonials .ts-card {
    padding: 40px 58px;
}
	.ts-place {
   margin-bottom:30px;
    font-size: 15px;
}
	.ts-name {
    font-size: 18px;
}
	.ts-quote p {
    	font-size: 16px;
}
	.banner-card-details {
        width: 100%;
        padding: 25px;
        background: #fff;
        border-radius: 16px;
    }
	.banner-container h1 {
        font-weight: 500;
        line-height: 39.6px;
    }
	.courses-wrap {
    padding: 0 1.5rem;
}
	.banner-container{
		padding:0;
	}
  .slider-head {
        justify-content: space-between;
       
        flex-direction: column;
    }
.banner-wrap {
        height: auto;
       padding: 1.125rem;
        margin-bottom: 0rem !important;
       
    }
	.more-details-section {
    padding-left: 2rem;
    padding-right: 2rem;
}
		.grid { 
		grid-template-columns: 1fr;
	}
	.cs-grid{
		grid-template-columns:1fr;
	}

}
.main-div{
	max-width: 1320px;   
  width: 100%;         
  margin: 0 auto;      
  
}





