@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,200..900;1,200..900&display=swap');

:root {
    --thm-font: "Outfit", sans-serif;
    --heading-font: "Outfit", sans-serif;
    --secondary-font: "Crimson Pro", serif;
    --thm-primary: #AB0C2F;
    --thm-secondary: #1A73E8;
    --thm-body: #1E1E2F;
    --thm-font-white: #fff;
    --thm-dark-red: #880824;
    --thm-grey: #84807B;
    --thm-footer: #55585b;
}

body {
    font-family: var(--thm-font);
    font-size: 16px;
    font-weight: 400;
    color: var(--thm-body);
    line-height: 1.5;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
  outline: none;
}

.disable{
  pointer-events: none;
  opacity: 0.5;
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}
.btn-red {
  padding: 12px 30px;
  font-size: 1.125rem;
  font-weight: 600;
  background-color: var(--thm-primary);
  border: none;
  text-decoration: none;
  color: var(--thm-font-white);
  border-radius: 5px;
  transition: background-color 0.3s ease;
  z-index: 5;
}
.btn-white {
  padding: 12px 30px !important;
  font-size: 1.125rem;
  font-weight: 600;
  background-color:#fff ;
  border: none;
  text-decoration: none;
  color: var(--thm-primary);
  border-radius: 5px;
  transition: background-color 0.3s ease;
  z-index: 5;
}
.btn-white:hover{
  background: #ed1f24;
  color: #ffffff;
  border-color: #fff;
}

/* Top Bar */

.top-bar {
  background-color: var(--thm-primary);
  color: var(--thm-font-white);
  padding: 10px 0;
  }
  
.top-bar a {
  color: var(--thm-font-white);
  border-right: 1px solid #dee2e652;
  margin-right: 15px;
  padding-right: 15px;
  font-size: 16px;
  font-weight: 500;
}

#flagIcon{
  font-size: 14px;
}

.top-links-right a{
  text-transform: uppercase;
}

.top-bar .language-selector {
  display: flex;
  align-items: center;
}

.top-bar .language-selector select {
  background: transparent;
  border: none;
  color: var(--thm-font-white);
  padding: 0;
}
.social-icons a {
  color: #ffffff; 
  margin: 0 5px;
  font-size: 20px; 
  text-decoration: none;
  transition: color 0.3s ease;
  border-right: 0;
}

.social-icons a:hover {
  color: #007bff; 
}
.main-menu{
  position: absolute;
  z-index: 10; 
  width: 100%;
}
/* Nav Bar */
.navbar {
  background-color: transparent !important;

  margin-top: 0px;
  width: 100%;
  
}

.navbar .navbar-brand, .navbar-custom .navbar-nav .nav-link {
  color: var(--thm-font-white);
}
.navbar .navbar-toggler-icon {
  background-color: var(--thm-font-white);
}

.navbar-brand{
    color: var(--thm-font-white);
} 
.cat-logo img{
  height: 75px;
}

.navbar-nav .nav-link {
  color: var(--thm-font-white) !important;
  font-weight: 500;
  padding: 10px 15px; 
  margin-right: 20px; 
  font-size: 18px;
}

.navbar-nav .nav-link:hover {
  color: var(--thm-primary)!important;
}

.promotion-course .nav-link{
  background-color: var(--thm-primary);
  border-radius: 6px;
  padding: 7px 14px 9px;
  transition: all 0.3s 0s ease-out;
  color: var(--thm-font-white);
  font-weight: 500;
}

.promotion-course .nav-link:hover {
  background-color: var(--thm-font-white)!important;
  color: var(--thm-primary);
}

.header2 .navbar-nav .promotion-course-2 .nav-link{
  background-color: var(--thm-primary);
  border-radius: 6px;
  padding: 7px 14px 9px;
  transition: all 0.3s 0s ease-out;
  color: var(--thm-font-white)!important;
  border: 1px solid #ed1f24;
  font-weight: 500;
}

.header2 .navbar-nav .promotion-course-2 .nav-link:hover {
  background-color: var(--thm-white);
}

.search-icon {
  font-size: 16px;
  color: var(--thm-font-white);
  margin-right: 20px; 
}

.search-icon:hover {
  color: rgba(255, 255, 255, 0.7);
}

.thm-btn {
  font-size: 16px;
  font-weight: 500;
  border-radius: 6px;
  padding: 7px 24px 9px;
  color: var(--thm-font-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s 0s ease-out;
}

.thm-btn:hover {
  background-color: var(--thm-font-white);
  color: var(--thm-primary);
}
  
/* Hero Section */

.hero {
  position: relative;
  height: 82vh;
  overflow: hidden;
  padding: 0;
}

.hero .carousel-img {
  background-color: #00000069;
}

.hero-carousel img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); 
  z-index: 1; 
}

.carousel-inner img {
  position: relative;
  z-index: -1;
}

.carousel-item {
  position: relative;
}

.carousel-caption {
  position: absolute;
  top: 30%;
  left: 45%;
  transform: translate(-50%, -50%);
  z-index: 5; 
  color: var(--thm-font-white);
  text-align: left;
  width: 100%; 
}

.hero-text-container {
  z-index: 5; 
  width: 50%;
  margin-left: 98px;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 500;
  text-transform: uppercase;
  display: inline-block;
}

.hero-title {
  font-size: 6.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1;
  letter-spacing: -2px;
}

.hero-btn .btn {
  padding: 12px 30px;
  font-size: 1.125rem;
  font-weight: 600;
  background-color: var(--thm-primary);
  border: none;
  text-decoration: none;
  color: var(--thm-font-white);
  border-radius: 5px;
  transition: background-color 0.3s ease;
  z-index: 5; 
}

.hero-btn .btn:hover {
  box-shadow: 0 10px 15px -5px rgba(21, 36, 34, 0.1);
  background-color: var(--thm-font-white)!important;
  border-color: var(--thm-dark-red)!important;
}

/* study card area */
.why-study{
  padding-bottom: 80px;
  background-color: var(--thm-primary);
}
.why-study .section-title{margin-bottom: 50px;}
.why-study .section-title h3, .why-study .section-title p, .why-study .section-title .underline-red{color: #fff;}
.study-logo img{
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}
.study-card{
  position: relative;
  margin-top: -50px;
  border-radius: 14px;
  padding:0px;
  margin-bottom: 38px;
  position: relative;
  z-index: 1;
  height: 100%;
}
.card-body{padding: 20px;text-align: left;}
.card-title{
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 15px;
}
.duration{margin-bottom: 10px;}
.duration i{margin-right: 5px;}
.study-logo i{
  font-size: 35px;
  margin: 0 auto 25px;
  color: var(--thm-primary);
}

.study-card .btn-card{
  border: 5px solid var(--thm-primary); 
  border-radius: 14px; 
  font-size: 20px;
  width: auto; 
  background-color: var(--thm-font-white);
}

.btn-round{
  display: inline-block;
  position: relative;
  z-index: 1;
  line-height: 50px;
  text-align: center;
  align-self: center;
}

.service-study{
  margin-top: 20px;
}

.service-content{
  padding: 0px 12px;
}

.service-study a{
  padding: 15px 40px;
}

.service-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.trust{
  color: var(--thm-font-white);
  font-size: 14px;
}

.btn-trust {
  position: relative;
  display: inline-block; 
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--thm-font-white);
  text-decoration: none; 
}

.btn-trust::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: #fdfdfd69;
}

.btn-trust::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px; 
  background: var(--thm-font-white);
  transition: width 0.3s ease-in-out;
}

.btn-trust:hover::after {
  width: 100%;
}

.btn-trust:hover {
  color: var(--thm-font-white); 
}

.btn-trust:hover::before{
  width: 100%;
}

/* About section */

.about{
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #f6f4ee;
}

.about-wrapper{
  margin-bottom: 50px;
}

.about-us{
  padding-left: 20px;

}

.about-subtitle{
  color: var(--thm-primary);
  font-family: var(--secondary-font);
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.section-title{
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 10px 0px;
}

.section-title h3{
  font-size: 60px;
  line-height: 1.07;
  letter-spacing: -0.6px
}

.underline-red{
  display: inline-block;
  color: var(--thm-primary);  position: relative;
}

.underline-red::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 27%;
  width: 50%;
  border-top: solid 3px var(--thm-dark-red);
  border-radius: 50%;
  height: 20px;
}

.underline-white{
  display: inline-block;
  color: var(--thm-font-white);  position: relative;
}

.underline-white::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 27%;
  width: 50%;
  border-top: solid 3px var(--thm-font-white);
  border-radius: 50%;
  height: 20px;
}


.two-images {
  position: relative;
}

.two-images img{
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.image1 {
  position: absolute;
  top: 0;
  left: 0;
}

.image2 {
  position: absolute;
  max-width: 100%;
  top: 90px;
  right: 10%;
}


.about-content{
  margin: 0px 0px 0px 10px;
  padding: 2px 0px 0px 20px;
  border-style: solid;
  border-width: 0px 0px 0px 3px;
  border-color: var(--thm-dark-red);

}

.about-list {
  gap: 35px 0px;
  margin-top: 17px;
}

.hero-btn{
  padding-top: 30px;
}

.data-title{
  font-family: var(--secondary-font);
  color: var(--thm-font-white);
  font-style: italic;
  font-weight: 400;
  font-size: 100px;
}

/* Academic Programs */
.programs{
  padding-bottom: 80px;
  padding-top: 80px;
}

.programs.programs-home{
  background-color: var(--thm-primary);
  color: var(--thm-font-white);
}

.programs .section-title{
  text-align: center;
}

.card-wrapper {
  margin: 20px;
  max-width: 100%;
  overflow: hidden;
  margin: 20px 10px 50px;
}

.swiper-wrapper{
  padding-left: 0;
}

.program-course{
  text-align: center;
}

.program-course a{
  font-size: 22px;
  color: var(--thm-body);
}

 .card-item{
  display: block;
  background: #fff;
  padding: 15px 15px;
  user-select: none;
  border-radius: 14px;
  text-decoration: none;
  border: 2px solid transparent;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
  transition: 0.2s ease;
}
.card-item:hover{
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.2);
}
.card-item:active {
  cursor: grabbing;
}

 .card-image-container{
  overflow: hidden;
  position: relative;
}

 .card-image {
  border-radius: 14px;
  object-fit: cover;
  height: auto;
  max-width: 100%;
  min-height: 181px;
  transition: all 0.4s 0s ease-out;
}
.card-item:hover .card-image {
  transform: scale(1.1);
}

 .card-content {
  color: #000;
  padding: 0px 17px;
}
.programs-btn{display: flex; gap: 14px;}
.programs-btn a, .programs-btn a.btn-outline-primary:hover{
  color: var(--thm-font-white);
  background-color: var(--thm-primary);
  font-size: 16px;
  font-weight: 500;
  display: block;
  text-align: center;
  border-radius: 6px;
  line-height: 1;
  padding: 12px 20px;
  width: 100%;
  border: solid 1px var(--thm-primary);;
}

.programs-btn a:hover, .programs-btn a.btn-outline-primary{
  color: var(--thm-primary);
  background-color: var(--thm-font-white);
  border: solid 1px var(--thm-primary);
}
.swiper-pagination{
  padding-top: 40px;
}

.card-wrapper .swiper-pagination-bullet {
  background: #c7c4bd;
  height: 12px;
  width: 12px;
  opacity: 1;
}

.card-wrapper .swiper-pagination-bullet-active {
  background: var(--thm-primary);
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    display: none;
}

.card-wrapper .swiper-slide-button {
  color: #5372F0;
  margin-top: -35px;
}

/* Responsive media query code for small screens */
@media (max-width: 768px) {
  .card-wrapper {
    margin: 0 10px 25px;
  }
  .card-wrapper .swiper-slide-button {
    display: none;
  }
}

.programs .service-study span{
  color: var(--thm-body);
}

.programs .service-study a{
  color: var(--thm-primary);
}

.btn-programs {
  position: relative;
  display: inline-block; 
  font-size: 18px;
  font-weight: 600;
  text-decoration: none; 
  color: inherit; 
}

.btn-programs::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: rgba(171, 12, 47, 0.3);
}

.btn-programs::after {
  content: ''; 
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0; 
  height: 1px;
  background-color: var(--thm-primary);
  transition: width 0.3s ease-in-out;
}

.btn-programs:hover::after{
  width: 100%;
}

.btn-programs:hover::before{
  width: 0;
}

/* events area */
.events{
  padding-top: 80px;
  padding-bottom: 80px;
  background: #f6f4ee;
}

.event-btn {
  align-content: end;
}

.events .hero-btn{
  padding-bottom: 30px;
}

.title-row{
  padding: 25px 0 40px 0;
  border-bottom: 1px solid rgba(1, 15, 28, 0.1)
}

.event-row{
  align-items: center;
  padding: 25px 0 27px 0;
  border-bottom: 1px solid rgba(1, 15, 28, 0.1)
}

.event-date-day{
  color: var(--thm-primary);
  font-family: var(--secondary-font);
  font-size: 60px;
  font-style: italic;
  font-weight: 400;
  line-height: 0.85;
  margin-bottom: 0;
  letter-spacing: -1.2px;
}

.event-date-month-year{
  text-transform: uppercase;
}

.event-title{
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 0;
  margin-bottom: 5px;
}

.event-info-box span {
  color: var(--thm-grey);
  font-size: 15px;
}

.event-info-box span i{
  margin-right: 7px;
  font-size: 13px;
}

.event-info-box a{
  margin-left: 10px;  
}

.event-info-box a span i{
  margin-right: 7px;
  font-size: 13px;
}

.event-arrow-link a{
  color: var(--thm-body);
}

.event-arrow-link a:hover{
  color: var(--thm-primary);
  transition: 0.3s ease-in;
}

/* testimonials area */
.testimonials{
  background-color: #880824;
}
.video-icon a{
  display: inline-block;
  margin-bottom: 50px;
}

.video-icon a span{
  display: inline-block;
  color: var(--thm-primary);
  height: 74px;
  width: 74px;
  line-height: 74px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--thm-font-white);
  box-shadow: 0px 10px 10px 10px rgba(0, 0, 0, 0.2);
}

.video-border-animation{
  position: relative;
}

.video-border-animation::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 90%;
  height: 90%;
  transform: scale(1);
  border: 1px solid var(-thm-font-white);
  animation: video-border 1.5s linear infinite;
  border-radius: 50%;
}

.video-icon p {
  color: var(--thm-font-white);
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 0;
}

/* blog area */
.blog{
  padding-top: 80px;
  padding-bottom: 80px;
}

.blog .blog-header{
  align-items: center;
  text-align: center;
  padding-bottom: 30px;
}

.blog .blog-subtitle{
  color: var(--thm-primary);
  font-family: var(--secondary-font);
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.blog .blog-item{
  background-color: #f6f4ee;
  border-radius: 20px;
  padding: 15px 15px 0 15px;
  align-items: center;
  text-align: center;
}

.blog .blog-image{
  margin-bottom: 32px;
  border-radius: 10px;
  height: 350px;
  overflow: hidden;
}

.blog .blog-image img{
  border-radius: 10px !important;
  max-width: 100%;
  height: 100% !important;
  object-fit: cover;
  transition: all 0.4s 0s ease-out;
  object-position: top center;
}

.blog .blog-image img:hover{
  transform: scale(1.1);
}

.blog .blog-tag{
  display: inline-block;
  color: var(--thm-primary);
  font-size: 18px;
  margin-bottom: 8px;
}

.blog .blog-title a{
  color: var(--thm-body);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.18;
  margin-bottom: 14px;
  transition: all 0.4s 0s ease-out;
}

.blog .blog-title a:hover{
  color: var(--thm-primary);  
}

.blog-meta{
  margin-bottom: 12px;
}

.blog-meta > span a{
  color: var(--thm-grey);
  font-size: 15px;
  margin: 0 8px;
}

.blog-meta > span {
  color: var(--thm-grey);
  font-size: 15px;
  margin: 0 8px;
}

.blog-meta > span svg {
  margin-right: 3px;
}

.blog .btn-round{
  display: inline-block;
  position: relative;
  z-index: 1;
  height: 60px;
  width: 60px;
  line-height: 60px;
  text-align: center;
  align-self: center;
}

.blog .btn-card {
  transform: translateY(20px);
  border: 8px solid #f6f4ee;
  border-radius: 50%;
  font-size: 20px;
  height: 100%;
  width: 100%;
  background-color: var(--thm-font-white);
}

.blog .btn-card i{
  font-size: 16px;
  text-align: center;
  align-self: center;
}
/* instagram feed */
.instagram-feed{
  padding-top: 80px;
  padding-bottom: 20px;
  background: #f6f4ee;}

.card-image-container img.card-image {
  border-radius: 10px;
}

/* Ad Banner */
.banner{
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 15px;
  padding-right: 15px;
  background: var(--thm-primary);
}

.banner-content{
  color: var(--thm-font-white);
  padding-top: 20px;  
}

.banner-subtitle{
  font-family: var(--secondary-font);
  font-size: 24px;
  font-weight: 500;
  font-style: italic;
}

.banner-title{
    font-size: 40px;
    font-weight: 500;
}

.banner-btn{
  padding-top: 30px;
}

.banner-btn a{
  display: inline-block;
  color: var(--thm-primary);
  justify-content: center;
  background-color: var(--thm-font-white);
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: var(--thm-primary);
  border-radius: 6px 6px 6px 6px;
  padding: 17px 35px 17px 35px;
}

.banner-btn a:hover{
  color: var(--thm-primary);
  background-color: var(--thm-font-white);
}

.banner-btn a>i{
  margin: 0px 0px -3.5px 10px;
}

/* faq */
.faq-section {
    position: relative;
    background-image: url(../images/bg-img2.jpg);
    background-size: cover;
    background-position: left center;
    background-color: var(--thm-primary);
    padding-top: 0;
    padding-bottom: 100px;
    background-size: 68%;
    background-repeat: no-repeat;
}
.faq-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Add transparency */
}
.faq-content {
  position: relative;
  z-index: 2;
}
.faq-box {
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 8px;
}
.faq-header {
  color: #d71a28;
}

/* Footer */

.footer{
  padding-top: 80px;
  padding-bottom: 80px;
  background: #F6F4EE;
}

.footer p{
  color: var(--thm-footer);
  font-size: 16px;
  font-weight: 400;
}

p.footer-call-us{
  color: var(--thm-footer);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  margin: 0;
}

p.footer-phone {
  margin: 0 !important;
}


.section-title img{
  max-height: 94px;
}

.footer-contact a{
  color: var(--thm-footer);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  transition: color .3s;
}

.footer-contact a:hover{
  color: var(--thm-primary) !important;
}

.footer-contact p:hover{
  color: var(--thm-primary) !important;
}

.footer-links li{
  padding-bottom: 10px;
}

.footer-links li{
  padding-bottom: 10px;
}

.footer-links li a{
  color: var(--thm-footer) !important;

}

.footer-links li a:hover{
  color: var(--thm-primary) !important;
}

.footer-title{
  color: var(--thm-body);
  font-size: 22px;
  font-weight: 600;
}

.footer-nav-social a {
  font-size: 18px;
  height: 50px;
  width: 50px;
  line-height: 1;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border-style: solid;
  border-width: 1px;
  border-color: #e4e2dc;
  transition: all 0.4s;
}
.footer-nav-social {
  display: flex;
  align-items: center;
  gap: 25px;
}
.footer-nav-social a i {
  color: #7e7c7c;
  font-size: 24px;
  transition: all 0.4s;
}
.footer-nav-social a:hover i{
  color: var(--thm-primary) !important;
}

.footer-newsletter-input{
  padding-top: 20px;
  padding-bottom: 20px;
}
.subscription{
  position: relative;
}
.footer-newsletter-input .subscription input{
border-style: solid;
border-width: 2px 2px 2px 2px;
border-color: #E4E2DC;
border-radius: 8px 8px 8px 8px;
padding: 15px 120px 15px 15px;
color: #161616;
}
.footer-newsletter-input .subscription button{
  position: absolute;
  left: 72%;
  padding: 6px 15px !important;
  top: 7px;
}


input, select {
  outline: none;
  background-color: #fff;
  min-height: 54px;
  width: 100%;
  line-height: 56px;
  font-size: 16px;
}
section {
  padding-bottom: 80px;
  padding-top: 80px;
}
.registration-form{
    margin: 10px 0px 0px 0px;
    padding: 50px;
    border-radius: 15px 15px 15px 15px;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.16);
}

.btn-primary{
  background-color: var(--thm-primary);
  color: var(--thm-font-white);
  padding: 15px 40px;
  font-size: 18px;
  border:solid 1px var(--thm-primary);
}
.btn-primary:hover, .btn-primary:focus{
  color: var(--thm-primary);
  background-color: var(--thm-font-white);
  border-color: var(--thm-primary);
}
.newsletter-form .form-control{min-height: 80px; font-size: 20px;}
.newsletter-form .btn-primary{
  position: absolute;
  top: 10px;
  right: 10px;
}
.newsletter-form .btn-primary:hover{
  border-color: var(--thm-primary);
}
.testimonial-wrapper {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
  padding: 73px 88px 30px 58px;
  position: relative;
  z-index: 1;
  border-radius: 0 0 20px 20px;
  background: #fefdfc;
}

.client {
  width: 100%;
  height: 100%;
}

.carousel-icon i {
font-size: 5rem;
color: rgba(255, 255, 255, 0.3);
}

.carousel-item i {
font-size: 1.6rem;
color: rgba(255, 255, 255, 0.3);
}

.t-card {
color: #000;
height: auto;
}

.arrow-down {
width: 0;
height: 0;
border-left: 1.5625rem solid transparent;
border-right: 1.5625rem solid transparent;
border-top: 1.25rem solid rgba(0, 0, 0, 0.5);
}
.tp-section-subtitle {
  color: var(--tp-theme-primary);
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.testimonial-wrapper .tp-section-title {
  font-size: 40px;
  letter-spacing: 0;
}
.controls a{
  color: #000 !important;
    border-color: #999;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    line-height: 23px;
}
.controls a:hover{
  background-color: #AB0C2F;
  color: #fff !important;
}
/* Main CSS */
.grid-wrapper>div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.grid-wrapper>div>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.grid-wrapper {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: 25% 25% 25% 0%;
  margin-left: 12.5%;
  grid-auto-rows: 200px;
}

.grid-wrapper .box1 {
  grid-column: span 2;
}

.grid-wrapper .box2 {
  grid-column: span 1;
}

.grid-wrapper .tall {
  grid-row: span 2;
  background-color: #ffffff;
}
.services{
  background-color: var(--thm-primary);
}
.services .card{
  background-color: transparent;
  color: #fff;
  border: none;
  flex-direction: row;
  gap: 20px;
}
.card-body {padding: 0;}
.card-img{max-width: 80px;}
.programs .col-lg-3 {margin-bottom: 24px;}

.sub-contact-section a{
  font-weight: 600; 
  font-size: 18px;
  color: var(--thm-dark-red);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.sub-contact-section a:hover {
  color:  var(--thm-footer);
}

.tp-contact-info-item {
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  border: 1px solid #e6e8f0;
  background-color: #f6f4ee;
  box-shadow: 0px 1px 4px 0px rgba(48, 54, 81, .06) inset, 0px 1px 1px 0px rgba(48, 54, 81, .06);
}

a.tp-el-info, a.tp-el-phone{
  font-size: 24px;
}

.tp-contact-info-icon {
  margin-bottom: 30px;
}
.tp-contact-info-icon span {
  display: inline-block;
  text-align: center;
  line-height: 42px;
  height: 46px;
  width: 46px;
  border-radius: 6px;
  border: 1px solid #e6e8f0;
  background: var(--tp-common-white);
  box-shadow: 0px 1px 4px 0px rgba(48, 54, 81, .06) inset, 0px 1px 1px 0px rgba(48, 54, 81, .06);
}
.tp-contact-info-title {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -.4px;
  color: var(--tp-heading-2);
}
.tp-el-subtitle {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -.4px;
  color: var(--tp-heading-2);
}
.header2{
  position: relative;
}
.header2 .navbar-nav .nav-link{
  color: var(--thm-body) !important;
}
.header2 .navbar-nav .nav-link:hover{
  color: var(--thm-dark-red) !important;
}
.header2 .thm-btn{
  color: var(--tp-heading-2);
  border-color: var(--tp-heading-2);
}
.header2 .thm-btn:hover{
  background-color: var(--thm-dark-red);
  color: var(--thm-font-white);
}
.inner-header{
  padding: 80px 0;
  background-color: var(--thm-dark-red);
  text-align: center;
}
.inner-header h1{
  color: #fff;
  font-size: 3rem;
}

/* new-page css */

.course-header {
  font-weight: bold;
  color: #000;
}
.course-rating {
  color:#AB0C2F;
  font-weight: bold;
}
.course-highlights {
  background-color: #f7f7f7;
  padding: 20px;
  border-radius: 8px;
}
.highlights-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.highlights-item i {
  color:#AB0C2F;
}
.tab-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
}
.nav-tabs .nav-link {
  color: #000;
  padding: 0px 0 0 0;
  font-size: 20px;
  font-weight: 500;
}
.nav-tabs .nav-link.active {
  color: #AB0C2F;
  background-color: transparent;
  border-bottom: 2px solid #AB0C2F !important;

  border: 0;
}
.details-tab {
  justify-content: center;
  border-bottom: 0;
  display: flex;
  gap: 15px;
}
.nav-tabs.details-tab .nav-link:focus, .nav-tabs.details-tab .nav-link:hover{
  border: none;
}
.details-tab .nav-link:focus-visible {
  box-shadow: none;
}
.our-highlight{
  background-color: #e2e2e2;
  padding: 15px 25px;
}
.our-highlight h3{
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 20px;
}
ul.highlight-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  padding-left: 0;
}
ul.highlight-list li {
  list-style-type: none;
  display: flex;
  gap: 15px;
  font-size: 17px;
  font-weight: 500;
  align-items: center;
}
ul.highlight-list li svg{
  fill: var(--thm-dark-red);
}
.learn-box{
  background-color: #ffffff;
  padding: 15px 25px;
}
ul.highlight-list.what-learn {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  padding-left: 0;
}
.overview-title{
  font-size: 24px;
  font-weight: 700;
}
.txt-red{
  color: var(--thm-dark-red);
}
.details-img{
  padding: 20px;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.16);
  border-radius: 15px;
}
.details-vid{
  padding: 20px;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.16);
  border-radius: 15px;
  max-width: 100%;
  height: auto;
}
.details-box-right{
  padding: 30px 30px 0 30px;
}
.details-box-right ul li {
  padding: 8px;
  border-bottom: 1px solid #ddd;
  display: flex;
  gap: 30px;
  align-items: center;
}
.details-box-right ul li:last-child{
  border-bottom: 0;
}
.details-tab .nav-item {
  border-right: 2px solid #ddd;
  padding-right: 15px;
}
.details-tab .nav-item:last-child{
  border: 0;
}
.f-24{
  font-size: 24px;
  font-weight: 700;
    padding-bottom: 13px;
}
.training-benefit h4{
  padding: 10px 15px;
  background: #1E1E2F;
  color: #fff;
  font-size: 22px;
}
.training-benefit ul{
  display: flex;
  gap: 15px;
  flex-direction: column;
  padding-left: 0;
  margin-top: 20px;
}
.training-benefit ul li{
  list-style-type: none;
  font-size: 18px;
  display: flex;
    gap: 10px;
    align-items: center;
}
.training-benefit img{
  border-radius: 15px;
}
.training-benefit-details{
  padding: 0 30px;
}
/* faq */
.faq-course .accordion-button {
  padding: 17px 45px 17px 30px;
  border-radius: 10px 10px 0 0;
  border: none;
  box-shadow: none;
  font-size: 18px;
  font-weight: 600;
  -webkit-transition: .3s;
  transition: .3s;
}
.faq-course .accordion-button:not(.collapsed) {
  background-color: #ab0c2f;
  color: #ffffff;
}
.faq-course .accordion-item {
  margin-bottom: 25px !important;
  border-radius: 10px !important;
  overflow: hidden;
  box-shadow: 0px 10px 50px 0px rgba(26, 46, 85, 0.1);
}
.accordion-button:focus {
  box-shadow: none;
}
.faq-sec .accordion{
  max-width: 920px;
  margin: 0 auto;
  width: 100%;
}
.accordion-header , .accordion-button {
  border: none !important;
  border-radius: 0;
}
.faq-title {
  font-size: 48px;
  padding-bottom: 30px;
}
.faq-course .accordion-body p {
  font-size: 15px;
  margin-bottom: 5px;
  color: #505050;
}
.about-list{margin-top: 20px;}
.about-list li{
  display: flex;
  gap: 10px;
}

/* digital marketing */
.card.shadow.right-side-form-details {
  margin-top: 20px;
  padding: 30px 40px;
}
.txt-price b {
    font-size: 28px;
    font-weight: 700;
}
.course-price p {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
    font-size:17px;
}
.call-wha {
    font-size: 18px;
    color: black;
}
.course-price {
    padding-bottom: 10px;
}

.panel {
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: #fff;
  background: none;
  box-shadow: none;
}

.panel:last-child {
  border-bottom: none;
}

.panel-group > .panel:first-child .panel-heading {
  border-radius: 4px 4px 0 0;
}

.panel-group .panel {
  border-radius: 0;
}

.panel-group .panel + .panel {
  margin-top: 0;
}

.panel-heading {
  background-color: #009688;
  border-radius: 0;
  border: none;
  color: #fff;
  padding: 0;
}

.panel-title a {
  display: block;
  color: #fff;
  padding: 15px;
  position: relative;
  font-size: 16px;
  font-weight: 400;
}

.panel-body {
  background: #fff;
}

/* Carrer Section */
.career-left {
  padding: 20px;
}

.career-title h4 {
  font-size: 24px; 
  margin-bottom: 20px;
}

.career-body {
  font-size: 16px; 
}

.career-body ul {
  padding: 0 10px;
}

.career-body li {
  margin: 10px 0;
}

.career-right{
  max-width: 700px;
  margin-left: 75px;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.career-image-section img {
  width: 100%;
  display: block;
}

.stats-section {
  display: flex;
  justify-content: space-around;
  padding: 20px;
  background-color: #f9f9f9;
}

.stat {
  padding-left: 20px;
  text-align: center;
  max-width: 200px;
}

.stat h2 {
  margin: 0;
  color: #333;
  font-size: 1.5em;
}

.stat p {
  margin: 5px 0 0;
  color: #555;
  font-size: 0.9em;
}

/* Resume Section */
.resources-section {
  margin-top: 40px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 5px;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
}

.resume-body{
  max-width: 75%;
  font-size: 14px;
}

.icon {
  font-size: 26px;
  margin-bottom: 10px;
}

/* course-details */
.course-details{
  background-color: #f6f4ee;
}

.course-details .list-unstyled li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.course-details .list-unstyled li::before {
  content: "\2713"; /* Unicode for a tick mark */
  position: absolute;
  left: 0;
  color: #ab0c2f; 
  font-size: 18px;
  font-weight: bold;
}

/* Certificate */
.certificate-wrapper{
  margin-top: 40px;
}
.certificate-card {
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 20px;
  position: relative;
  overflow: visible;
}

.certificate-card .card-title {
  color: #333;
}

.certificate-card .card-text {
  color: #555;
}

.certificate-image {
  max-width: 300px;
  height: auto;
  margin-left: auto;
  position: absolute;
  top: -20px; 
  right: 20px; 
  z-index: 1; 
  box-shadow: 4px 8px 12px rgba(0, 0, 0, 0.1);
}

/* Digital-home */
.digital-home{
    padding-bottom: 0;
}

.digital-home .digital-header {
  position: relative;
}

.digital-home .section-title h3{
  font-size: 65px;
  font-weight: 600;
  line-height: 1.5!important;
  margin-bottom: 16px;
  color: #090b0e;
}

.space-20{
  height: 20px;
}

.digital-home .digital-button{
  display: inline-block;
  font-size: 18px;
  padding: 12px 30px !important;
  border: solid 1px #ed1f24;
  color: var(--thm-body);
  font-weight: bold;
  transition: all 0.4s;
  line-height: 18px;
  background-color:#fff ;
  text-decoration: none;
  border-radius: 5px;
}

.digital-home .digital-button:hover{
  letter-spacing: 1px;
  background: #ed1f24;
  color: #ffffff;
  border-color: #fff;
}

.digital-button2{
  display: inline-block;
  font-size: 18px;
  padding: 12px 30px !important;
  margin-left: 20px;
  border: solid 1px #ed1f24;
  color: var(--thm-font-white);
  font-weight: bold;
  transition: all 0.4s;
  line-height: 18px;
  background-color:#ed1f24 ;
  text-decoration: none;
  border-radius: 5px;
}

.digital-button2:hover{
  letter-spacing: 1px;
  background: #ed1f24;
  color: #ffffff;
  border-color: #fff;
}

.header-images-area {
  position: relative;
  margin-top: 60px;
}

.header-images-area .bg1 img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.header-images-area .img1 {
  position: relative;
  bottom: 0px;
  /* right: 27%; */
  z-index: 1;
  /* left: 25%; */
  background: url(../images/backgrounds/header-bg4.png) no-repeat bottom center;
  background-size: 60% 90%;
}

.header-images-area .img1 img{
  height: 380px;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.header-images-area .img2 .header-img6 {
  position: absolute;
  top: 350px;
  left: -100px;
}

.header-images-area .img2 .elements10 {
  position: absolute;
  top: 250px;
  left: 35px;
}

.header-images-area .img3 .header-img6 {
  position: absolute;
  top: -90px;
  left: -50px;
}

.header-images-area .img3 .elements9 {
  position: absolute;
  top: 100px;
  left: 25px;
}

.header-images-area .img4 .header-img6 {
  position: absolute;
  right: -100px;
  top: 0;
}

.header-images-area .img4 .elements10 {
  position: absolute;
  right: 75px;
  top: 100px;
}