:root {
  /* --brand: #00bfe7; */
  --brand: #ffa329;
  --sub: #D10024;
  --body: #516171;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}

/* Hero Video */
.outter.hero-video {
  width: 100%;
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;

  @media (max-width: 767px) {
    height: 525px;
  }
}

.hero-video {

  .video-container {
    height: 550px;
    width: 100%;
    position: relative;
    overflow: hidden;

    @media (max-width: 767px) {
      height: 325px;
    }
  }
}
  video {
    object-fit: cover;
    position: absolute;
    height: 550px;
    width: 100%;
    top: 0;
    left: 0;

    @media (max-width: 767px) {
      height: 325px;
    }
  }

  .video-container:after {
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(black, .2);
    z-index: 1;
  }

  .callout h1 {
    text-transform: uppercase;
    margin: 0 0 1rem;
    padding: 0;
    line-height: 1;
    color: white;

    @media (max-width: 767px) {
      font-size: 32px;
    }

    @media (max-width: 500px) {
      font-size: 22px;
    }

    @media (min-width: 768px) {
      font-size: 52px;
    }
  }

  .desc {
    color: white;
    font-weight: 400;
    font-size: 18px;
  }

  .callout {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    text-align: center;
    position: relative;
    z-index: 10;
    width: 70%;
    margin: auto;

    @media (max-width: 767px) {
      width: 90%;
    }
  }

  /* .button {
    text-transform: uppercase;
    background-color: transparent;
    margin-top: 20px;
    background-color: red;
    padding: 15px 30px;
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;

    @media (max-width: 767px) {
      padding: 10px 20px;
    }
  }

  .button:hover {
    cursor: pointer;
    background-color: red;
    /* background: #ffff; */
    /* box-shadow: 0px 2px 20px 10px red;
    color: #000;
  }
} */ 

/* secound section  */
.video-two {
  position: relative;
}

.video-two #bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
  /* Adjust brightness as needed */
}

.video-two .content {
  color: white;
  margin-top: 50px;
  /* Adjust spacing */
}

.video-two .image-container {
  position: relative;
}

.video-two .img-fluid {
  width: 100%;
  height: auto;
}

.video-two .shadow {
  position: absolute;
  bottom: -10px;
  /* Adjust shadow position as needed */
  left: 0;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
}

@media (max-width: 768px) {
  .video-two .shadow {
    display: none;
    /* Hide shadow on smaller screens if desired */
  }
}

/* ---  */
.image-container {
  position: relative;
  overflow: hidden;
}

.image-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  /* Adjust opacity as needed */
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-container:hover::after {
  opacity: 1;
}

/* list of course  */
.video-container1 {
  position: relative;
  overflow: hidden;
  height: 250px;
  padding: 3%;
}

.video-container1 video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* -------------------  */
.pathway-gothic {
  font-family: "Pathway Gothic One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.text-styled {
  font-family: "Pathway Gothic One", sans-serif;
  letter-spacing: 5px;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
}

.image-with-reflection {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
  overflow: hidden;
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;

}

.reflection {
  object-fit: cover;
  margin: 10px 0;
  /* Adjust margin as needed */
  padding: 0;
  background: #fff;
  overflow: hidden;
}

.image-with-reflection:hover {
  -webkit-transform: scale(1);
  transform: scale(1);
  /* Adjust the scale factor for desired hover effect */
}

/* marquee  */
.custome-marquee {
  width: 100%;
  height: 100px;
  overflow: hidden;
  position: relative;
}

.custome-marquee div {
  background-color: #29375F;
  display: block;
  width: 200%;
  height: 100px;

  position: absolute;
  overflow: hidden;

  animation: marquee 15s linear infinite;
}

.custome-marquee span {
  float: left;
  padding-top: 10px;

  margin-left: 50px;
  font-size: 4rem;
  font-weight: bolder;
  word-spacing: 1rem;
  letter-spacing: 0.8rem;
  /* text-stroke:1px; */
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  -webkit-text-stroke: 2px #000;
  color: white;

  text-shadow: -1px 1px 0 #000, 1px 1px 0 #000, 1px -1px 0 #000, -1px -1px 0 #000;
  text-align: center;


}

@keyframes marquee {
  0% {
    left: 0;
  }

  50% {
    left: -50%;
  }

  100% {
    left: 0;
  }
}

/* ------------------------  */

/* contact form  */
.contact-image {
  width: 100%;
  height: 80%;
  object-fit: cover;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .contact-image {
    height: 250px;
    /* Adjust height for smaller screens */
  }
}

@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    align-items: center;
  }

  .contact-image {
    display: none;
  }
}

/* -----------------------  */
.image-hover {
  width: 100%;
  min-height: 100vh;
  /* Minimum height of viewport */
  height: auto;
  /* Adjust height dynamically */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(34, 34, 34);
  background-image: url("../image/house2.jpg");
  background-size: cover;
  background-position: center;
  animation-name: backgroundpan;
  animation-duration: 110s;
  animation-iteration-count: infinite;
}

@keyframes backgroundpan {
  0% {
    left: -30%;
  }

  50% {
    left: 0;
  }

  100% {
    left: -30%;
  }
}

.wrapper {
  display: flex;
  gap: 40px;
}

.card {
  position: relative;
  width: 350px;
  height: 350px;
}

.face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
  transition: .5s;
}

.face h2 {
  margin-bottom: 10px;
}

.card .front {
  transform: perspective(600px) rotateY(0deg);
  box-shadow: 0 5px 10px #fff;
}

.card .front img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-h1 {
  position: absolute;
  bottom: 10px;
  width: 100%;
  height: 40px;
  line-height: 40px;
  font-size: x-large;
  color: #fff;
  background: rgba(0, 0, 0, .4);
  text-align: center;
}

.card .back {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: perspective(600px) rotateY(180deg);
  background: rgb(3, 35, 54);
  padding: 15px;
  color: crimson;
  text-align: center;
  box-shadow: 0 5px 10px #fff;
}

.links {
  border-top: 1px solid crimson;
  height: 50px;
  line-height: 50px;
}

.link-a {
  color: crimson;
}

.card .back .text-h2 {
  font-size: 30px;
  letter-spacing: 2px;
}

.card .back .text-p {
  letter-spacing: 1px;
}

.card:hover .front {
  transform: perspective(600px) rotateY(180deg);
}

.card:hover .back {
  transform: perspective(600px) rotateY(360deg);
}

@media (max-width: 768px) {
  .wrapper {
    flex-direction: column;
    align-items: center;
  }

  .card {
    margin-bottom: 20px;
  }
}

.button {
  text-transform: uppercase;
  background-color: transparent;
  border-radius: 0px;
  margin-top: 20px;
  background-color: red;
  padding: 15px 30px;
  border-radius: 20px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;

  @media (max-width: 767px) {
    padding: 10px 20px;
  }
}

.button:hover {
  cursor: pointer;
  background-color: red;
  background: #ffff;
  box-shadow: 0px 2px 10px 5px red;
  color: #000;
}

/* faq  */


.faq {
  text-align: center;
  justify-content: center;
  padding: 20px;
  width: 80%;
}

.faq-icon {
  height: 18px;
  width: 18px;
  margin-top: 3px;
}

.accordion {
  background-color: khaki;
  color: #282A35;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  border-radius: 10px;
  outline: none;
  transition: 0.4s;
}


.accordion:hover {
  background-color: yellow;
  color: #282A35;
}

/* .active {
            border-radius: 10px 10px 0px 0px;
        } */

.details-description {
  font-size: 22px;
  margin-top: 20px
}

.panel {
  padding: 0 10px;
  padding-left: 40px;
  padding-right: 40px;
  background-color: #f3ecea;
  margin-top: -28px;
  color: #282A35;
  display: none;
  overflow: hidden;
  border-radius: 0px 0px 10px 10px;
  text-align: left;
}

.panel,
.accordion {
  margin-bottom: 2rem;
}

button.accordion {
  font-weight: bold;
  font-size: 16px;
}

.paragraphs {
  margin-top: 10px;
  margin-bottom: 10px;
  white-space: pre-wrap;
}

.header {
  font-size: 40px;
  font-weight: 600;
  font-family: 'Verdana', sans-serif;
  color: #b393d3;
  text-transform: uppercase;
  text-shadow: 1px 1px 0px #957dad,
    1px 2px 0px #957dad,
    1px 3px 0px #957dad,
    1px 4px 0px #957dad,
    1px 5px 0px #957dad,
    1px 6px 0px #957dad,
    1px 10px 5px rgba(16, 16, 16, 0.5),
    1px 15px 10px rgba(16, 16, 16, 0.4),
    1px 20px 30px rgba(16, 16, 16, 0.3),
    1px 25px 50px rgba(16, 16, 16, 0.2);
}

/* ad3d animation starts  */

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.moving-bady {

  display: grid;
  place-items: center;

}

.moving-border {
  width: 100%;
  height: 100%;
  position: relative;

  padding: 4px;
}

.moving-border::before,
.moving-border::after {
  content: "";
  position: absolute;
  inset: -0.2rem;
  z-index: -1;
  background: linear-gradient(var(--angle),
      #032146, #C3F2FF, #b00);
  animation: rotate-move 10s linear infinite;
}

.moving-border::after {
  filter: blur(10px);
}

@keyframes rotate-move {
  0% {
    --angle: 0deg;
  }

  100% {
    --angle: 360deg;
  }
}

.submit {
  display: block;
  margin: 0 auto;
  animation: pulse 1.5s infinite;
  background: linear-gradient(var(--angle),
      #032146, #b00);
  width: 30%;
  color: white;
}

.content-p p {
  font-size: large;
}

/* icon start  */
.i-con-container {
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  background: rgb(31, 32, 41);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}

.course-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: fit-content;
}

.course-media {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.course-media li {
  display: flex;
  align-items: center;
}

.course-media li a {
  text-decoration: none;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  position: relative;
  transition: .5s ease all;
  font-size: 1.8rem;
}

.course-media li a .icon-img {
  font-size: 2rem;
  display: flex;
  color: rgb(12, 187, 169);
  will-change: transform;
  transition: .5s ease all;
  z-index: 5;
}

.course-media li h3 {
  margin-top: 3rem;
  color: white;
}

.course-media li a:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-color: rgb(48, 40, 121, 0.6);
  transition: .25s ease-out;
  transform: scale3d(1, 1, 1);
  will-change: transform;
}

.course-media li a:hover:after {
  transform: scale3d(0, 0, 0);
  transition: .25s ease-in;
}

.course-media li a:hover .icon-img {
  color: rgb(19, 26, 71);
  transform: scale3d(1.5, 1.5, 1);
}

/* icon- end  */
/* hr animation start  */
@keyframes continuousAnimation {
  0% {
    transform: scaleX(0);
  }

  50% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(0);
  }
}

hr.continuous-animation {
  height: 10px;
  width: 100px;
  color: var(--brand);
  border-radius: 10px;
  animation: continuousAnimation 2s infinite;
  /* Adjust duration and timing as needed */
}

/* hr animation end  */
/* faq accordation start  */

.faq-accordation {
  font-family: 'Roboto', sans-serif;
  /* background-color: rgba(246, 242, 242, 0.4);  */
  margin: 0;
  padding: 0;
  height: fit-content;
  width: 100%;
}

/* .accordion-container {
  width: 80%;
  max-width: 600px;
} */

.accordion-item {
  background-color: #FFFFFF;
  /* White background for items */
  border: 1px solid #E0E0E0;
  /* Light border */
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  /* Softer shadow */
}

.accordion-header {
  background-color: var(--brand);
  /* Soft purple */
  color: #FFFFFF;
  /* White text */
  padding: 15px;
  font-size: 18px;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px 8px 0 0;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: var(--sub);
  /* Darker shade of purple */
}

.accordion-content {
  background-color: #FAFAFA;
  overflow: hidden;
  padding: 0 15px;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.accordion-content p {
  margin: 15px 0;
  line-height: 1.5;
}

.icon-faq {
  transition: transform 0.3s ease;
}

.active .icon-faq {
  transform: rotate(45deg);
}

/* faq accordation End */
/* swing image start  */
.swing {
  animation: swing ease-in-out 1s infinite alternate;
  transform-origin: center -20px;
  float: left;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  width: 70%;
  height: auto;
  /* Ensure the swing container takes full width of the column */
  /* Limit the maximum width to prevent overflow */
  margin: 0 auto;
  /* Center the swing container horizontally */
}

.swing img {
  border: 5px solid #f8f8f8;
  display: block;
  width: 100%;
  /* Make the image take full width of its container */
}

.swing:after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1px solid #999;
  top: -10px;
  left: calc(50% - 10px);
  /* Position the pseudo-element in the center horizontally */
  z-index: 0;
  border-bottom: none;
  border-right: none;
  transform: rotate(45deg);
}

.swing:before {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  top: -14px;
  left: calc(50% - 2.5px);
  /* Position the nail in the center horizontally */
  z-index: 5;
  border-radius: 50% 50%;
  background: #000;
}

@keyframes swing {
  0% {
    transform: rotate(3deg);
  }

  100% {
    transform: rotate(-3deg);
  }
}

/* swing image End  */
/* hover image start  */
figure.snip1384 {
  font-family: 'Raleway', Arial, sans-serif;
  position: relative;
  overflow: hidden;
  margin: 10px;
  min-width: 300px;
  max-width: 500px;
  width: 100%;

  color: #ffffff;
  text-align: left;
  font-size: 16px;
  background-color: #000000;
}

figure.snip1384 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

figure.snip1384 img {
  max-width: 100%;
  backface-visibility: hidden;
  vertical-align: top;
}

figure.snip1384:after,
figure.snip1384 figcaption {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

figure.snip1384:after {
  content: '';
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  opacity: 0;
  height: fit-content;
}

figure.snip1384 figcaption {
  z-index: 1;
  padding: 40px;
}

figure.snip1384 h3,
figure.snip1384 .links {
  width: 100%;
  margin: 5px 0;
  padding: 0;
}

figure.snip1384 h3 {
  line-height: 1.1em;
  font-weight: 700;
  font-size: 1.4em;
  text-transform: uppercase;
  opacity: 0;
}

figure.snip1384 p {
  font-size: 0.8em;
  font-weight: 300;
  letter-spacing: 1px;
  opacity: 0;
  top: 50%;
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
}

figure.snip1384 i {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 20px 25px;
  font-size: 34px;
  opacity: 0;
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}

figure.snip1384 a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

figure.snip1384:hover img,
figure.snip1384.hover img {
  zoom: 1;
  filter: alpha(opacity=50);
  -webkit-opacity: 0.5;
  opacity: 0.5;
  height: 400px;
}

figure.snip1384:hover:after,
figure.snip1384.hover:after {
  opacity: 1;
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
}

figure.snip1384:hover h3,
figure.snip1384.hover h3,
figure.snip1384:hover p,
figure.snip1384.hover p,
figure.snip1384:hover i,
figure.snip1384.hover i {
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  opacity: 1;
}

/* hover image end  */





/**Gallery**/

/*---------------------
  Work
-----------------------*/
.work {
  overflow: hidden;
  /* background: #100028; */
  background: transparent;
}

.work__gallery {
  margin-right: -10px;
}

.work__item {
  height: 311px !important;
  width: calc(16.67% - 10px);
  margin-right: 10px;
  margin-bottom: 10px;
  float: left;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.work__item:hover .work__item__hover {
  bottom: 0;
}

.work__item.large__item {
  height: 633px !important;
  width: calc(33.33% - 10px);
}

.work__item.wide__item {
  width: calc(33.33% - 10px);
  height: 311px !important;
}

.work__item .play-btn {
  display: inline-block;
  color: #ffffff;
  font-size: 20px;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

.grid-sizer {
  width: calc(16.67% - 10px);
}

.work__item__hover {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  bottom: -300px;
  width: 100%;
  padding: 25px 30px 20px;
  -webkit-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
}

.work__item__hover h4 {
  font-size: 22px;
  color: #ffffff;
  font-weight: 700;
}

.work__item__hover ul li {
  color: #adadad;
  list-style: none;
  font-size: 16px;
  margin-right: 23px;
  position: relative;
  display: inline-block;
}

.work__item__hover ul li:after {
  position: absolute;
  right: -18px;
  top: 1px;
  content: "/";
}

.work__item__hover ul li:last-child {
  margin-right: 0;
}

.work__item__hover ul li:last-child:after {
  display: none;
}

.set-bgs {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

@media only screen and (max-width: 767px) {
  .grid-sizer {
    width: calc(50% - 10px);
  }

  .work__item.wide__item {
    width: calc(50% - 10px);
  }

  .work__item {
    width: calc(50% - 10px);
  }

  .work__item.large__item {
    width: calc(50% - 10px);
  }
}

@media only screen and (max-width: 479px) {
  .grid-sizer {
    width: 100%;
  }

  .work__item.wide__item {
    width: 100%;
  }

  .work__item {
    width: 100%;
    margin-right: 0;
  }

  .work__item.large__item {
    width: 100%;
  }

  .work__gallery {
    margin-right: 0;
  }
}

/*---------------------
  Testimonial
-----------------------*/
.testimonial-carousel .owl-dots {
  height: 40px;
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: transparent;
  border: 2px solid var(--sub);
  transition: .5s;
}

.testimonial-carousel .owl-dot.active {
  width: 30px;
  height: 30px;
  background: var(--brand);
}

.testimonial{
  border: 2px solid var(--brand);
}
/* ------------------------------------  */
.section-title {
  margin-bottom: 50px;
}

.section-title.center-title {
  text-align: center;
}

.section-title.center-title h2:after {
  right: 0;
  margin: 0 auto;
}

.section-title span {
  /* color: #ffffff; */
  display: block;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.section-title h2 {
  /* color: #ffffff; */
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 25px;
}

.section-title h2:after {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 70px;
  background: var(--brand);
  content: "";
}


/*---------------------
  About
-----------------------*/
.about {
  /* background: #100028; */
  background: transparent;
  padding-bottom: 50px;
}

.about__pic__item {
  height: 235px;
  margin-right: -10px;
  margin-bottom: 20px;
}

.about__pic__item.about__pic__item--large {
  height: 490px;
}

.about__text {
  padding-left: 30px;
}

.about__text .services__item .services__item__icon:after {
  border-color: #281A3E;
}

.about__text__desc {
  margin-top: -10px;
}

/* .about__text__desc p{
  color: white;
} */

.about__pic {
  margin-bottom: 50px;
}

.services__item {
  margin-bottom: 45px;
}

.services__item h4 {
  /* color: #ffffff; */
  font-size: 22px;
  font-weight: 700;
  margin-top: 26px;
  margin-bottom: 18px;
}

.services__item p {
  margin-bottom: 0;
  /* color: white; */
}

.services__item__icon {
  position: relative;
  height: 70px;
  width: 70px;
  line-height: 70px;
  text-align: center;
  background-color: var(--brand);
}

.services__item__icon:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--brand);
  content: "";
  -webkit-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
}

.services__item:hover .services__item__icon:after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.services__item__icon img {
  height: 35px;
  color: white;
}
.services__item__icon .bi {
  width: 50px;
  color: white;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
/* .faqs{
  overflow: hidden;
  background: url(../img/image/slide-3.jpg) center no-repeat fixed;
  background-size: cover;
} */

.faqs .faq-list {
  overflow: hidden;
  padding: 0 100px;
}

.faqs .faq-list ul {
  padding: 0;
  list-style: none;
}

.faqs .faq-list li+li {
  margin-top: 15px;
}

.faqs .faq-list li {
  padding: 20px;
  background: #100028;
  border-radius: 4px;
  position: relative;
}

.faqs .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faqs .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: white;
}

.faqs .faq-list .icon-show,
.faqs .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faqs .faq-list p {
  color: #fff;
  margin-bottom: 0;
  padding: 10px 0 0 0;
}
.faqs .faq-list p ul li {
  color: #fff;
 
}

.faqs .faq-list .icon-show {
  display: none;
}

.faqs .faq-list a.collapsed {
  color: rgb(217, 216, 216);
}

.faqs .faq-list a.collapsed:hover {
  color: white;
}

.faqs .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faqs .faq-list a.collapsed .icon-close {
  display: none;
  color: white;
}

.faqs .faq-list ul li i {
  color: white;
}

@media (max-width: 1200px) {
  .faqs .faq-list {
    padding: 0;
  }
}

/*---------------------
  Contact 
-----------------------*/

/*** Section Title ***/
.section-titles {
  /* color: white; */
  position: relative;
  display: inline-block;
}

.section-titles::before {
  position: absolute;
  content: "";
  width: 45px;
  height: 2px;
  top: 50%;
  left: -55px;
  margin-top: -1px;
  background: var(--brand);
}

.section-titles::after {
  position: absolute;
  content: "";
  width: 45px;
  height: 2px;
  top: 50%;
  right: -55px;
  margin-top: -1px;
  background: var(--brand);
}

.section-titles.text-start::before,
.section-titles.text-end::after {
  display: none;
}


/* .section-header h3, .section-header h4{
  color: white;
} */

/* .contact-widges p{
  color: rgb(255, 255, 255);
} */

.form-control,
.form-control:active,
.form-control:focus {
  /* color: white; */
  /* background-color: rgb(195, 193, 193); */
  background-color: rgb(255, 255, 255);
}

/* .form-floating .form-control::placeholder{
  color: rgb(255, 255, 255) !important;
} */

.contact-img {
  background: url(../img/image-3/contact-img.avif) center no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
}


.hero-wrap {
  width: 100%;
  height: 850px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  z-index: 0;
}

@media (max-width: 991.98px) {
  .hero-wrap {
    background-position: top center !important;
  }
}

.hero-wrap .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  opacity: .1;
  background: #0f0f13;
  background: black;
  background: -moz-linear-gradient(45deg, black 0%, white 100%);
  background: -webkit-linear-gradient(left bottom, right top, color-stop(0%, black), color-stop(100%, white));
  background: -webkit-linear-gradient(45deg, black 0%, white 100%);
  background: -o-linear-gradient(45deg, black 0%, white 100%);
  background: -ms-linear-gradient(45deg, black 0%, white 100%);
  background: linear-gradient(45deg, black 0%, white 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#ffffff', GradientType=1);
  height: 850px;
}

.hero-wrap.hero-wrap-2 {
  height: 400px !important;
  position: relative;
}

.hero-wrap.hero-wrap-2 .overlay {
  width: 100%;
  opacity: .1;
  height: 600px;
}

.hero-wrap.hero-wrap-2 .slider-text {
  height: 400px !important;
}

.hero-wrap.hero-wrap-2 .slider-text h1:after {
  display: none;
}

/* @media (max-width: 991.98px) {
      .hero-wrap.hero-wrap-2 {
        height: 700px !important;
       }
       .hero-wrap.hero-wrap-2 .slider-text {
        height: 700px !important; }
       } */


.degree-right {
  position: relative;
  z-index: 0;
}

.degree-right:after,
.degree-right:before {
  position: absolute;
  content: '';
  height: 50px;
  /* background: #100028 !important; */
  background: var(--brand) !important;
  z-index: 2;
  bottom: -25px;
}

.degree-right:before {
  width: 65%;
  left: 0;
  -ms-transform: matrix(1, 0.102, 0, 2, 0, 0);
  /* IE 9 */
  -webkit-transform: matrix(1, 0.102, 0, 2, 0, 0);
  transform: matrix(1, 0.102, 0, 2, 0, 0);
  /* Standard syntax */
}

.degree-right:after {
  width: 35%;
  right: 0;
  -ms-transform: matrix(1, -0.19, 0, 2, 0, 0);
  /* IE 9 */
  -webkit-transform: matrix(1, -0.19, 0, 2, 0, 0);
  transform: matrix(1, -0.19, 0, 2, 0, 0);
  /* Standard syntax */
}


.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters>.col,
.no-gutters>[class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.slider-text {
  height: 850px;
}

.slider-text p {
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.slider-text .breadcrumbs {
  font-size: 14px;
  margin-bottom: 20px;
  z-index: 99;
  text-transform: uppercase;
  font-weight: 500;
}

.slider-text .breadcrumbs span {
  color: rgba(255, 255, 255, 0.7);
}

.slider-text .breadcrumbs span i {
  color: #d1002c;
  font-size: 13px;
}

.slider-text .breadcrumbs span a {
  color: rgba(255, 255, 255, 0.7);
}

.slider-text .breadcrumbs span a:hover,
.slider-text .breadcrumbs span a:focus {
  color: #d1002c;
}

.slider-text .breadcrumbs span a:hover i,
.slider-text .breadcrumbs span a:focus i {
  color: #d1002c;
}

.slider-text .bread {
  font-weight: 900;
  position: relative;
  color: #fff;
  text-transform: uppercase;
}

/* 
  .breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: #e9ecef;
    border-radius: 0.25rem; } */

.course-heading {
  color: var(--brand);
  color: black;
}

.snip1384 img {
  object-fit: cover;
}

.content-p i {
  margin: 0px 10px;
}

/* ----------------------------------------------------------  */
.img-hover-container-s {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.img-hover-row-s {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.card-new-s {
  position: relative;
  height: 400px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  cursor: pointer;
  border-radius: 10px;
  width: 100%;
}

.intro-new-s {
  position: absolute;
  height: 80px;
  width: 100%;
  bottom: 0;
  overflow: hidden;
  padding: 10px;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.5);
  transition: .4s ease-in-out;
}

.card-new-s:hover .intro-new-s {
  height: 100%;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.65);
}

.card-new-s:hover .text-p-new-s {
  opacity: 1;
  visibility: visible;
}

.card-new-s:hover .img-new-s {
  transform: scale(1.1);
}

.img-new-s {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform .4s ease-in-out;
}

.text-h1-new-s {
  margin: 10px;
  text-transform: uppercase;
  font-size: 20px;
}

.text-p-new-s {
  font-size: 16px;
  padding: 10px;
  visibility: hidden;
  opacity: 0;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .img-hover-row-s {
      flex-direction: column;
      margin-top: 0;
  }
  .card-new-s {
      height: 300px;
  }
}

@media (max-width: 992px) {
  .img-hover-row-s {
      margin-bottom: 20px;
  }
  .card-new-s {
      height: 300px;
  }
}

@media (max-width: 768px) {
  .img-hover-container-s {
      height: auto;
  }
  .card-new-s {
      height: 300px;
  }
}

@media (max-width: 576px) {
  .card-new-s {
      height: 300px;
  }
  .text-h1-new-s {
      font-size: 16px;
  }
  .text-p-new-s {
      font-size: 14px;
  }
}

.lets-talk:hover{
  background-color: transparent;
  border: 1px solid var(--brand);
  color: var(--brand);
}

/* ----------------------- our team ---------------------------  */

.team-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.team-member {
  text-align: center;
  margin: 20px;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.21);
  transition: transform 0.3s ease-in-out;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.team-member h3 {
  font-weight: 700;
  margin: 0;
}

.team-member .role {
  color: #888;
  margin-bottom: 10px;
}

.team-member i {
  font-size: 24px;
  margin: 0 10px;
  color: #000;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
  text-decoration: none;
}

.team-member:hover i {
  transform: scale(1.2);
  color: var(--brand);
}
.read-more{
  padding:10px 30px;
}
.read-more:hover{
  background-color: var(--sub);
  color: #fff;
  border: 1px solid var(--sub);
}
/* ---------------------  */
.client-img{
  width: 70%;
}
.client-col:hover{
  border-bottom: 1px solid var(--brand);
  border-left: 1px solid var(--brand);
  border-top: 1px solid var(--sub);
  border-right: 1px solid var(--sub);
}
.client-row{
  padding: 10px 10px;
  border-bottom: 1px solid var(--brand);
}
.client-col{
  padding: 20px;
}
.view-more{
  padding: 10px 20px;
  background-color: transparent;
  color: var(--sub);
  border: 1px solid var(--sub);
  border-radius: 15px;

}
.view-more:hover{
background-color: var(--sub);
color: whitesmoke;
}
.download{
  padding: 10px 10px;
  background-color: transparent;
  color: var(--sub);
  border: 1px solid var(--sub);
  border-radius: 15px;
  width: 40%;
  cursor: pointer;

}
.download:hover{
  background-color: var(--sub);
  color: whitesmoke;
  }


  /**Banner Modal**/

  .modalsize {
    max-width: 500px;
  }
  
  .myModal-content {
    border: none;
    position: relative;
    padding: 0 !important;
    font-size: 14px;
    color: white;
    border-radius: 10px;
    background-color: rgb(229, 229, 229);
    -webkit-box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
    -moz-box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
    box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24); 
  }
  
  .modal-content .modal-body {
    border: none;
    position: relative;
    z-index: 0; 
  }
  .modal-content .modal-body h5 {
    text-decoration: underline;
    font-size: 20px;
    color: black;
  }
  .modal-content .modal-body p {
    font-size: 12px;
    color: black;
  }
  .modal-content .modal-body button {
    border: none;
    border-radius: 5px;
  }
  
  .modal-btn {
    background-color: #2ecc71;
    color: white;
    font-size: 12px;
    text-align: center;
  }
  .modal-btn:hover {
    background-color: #1da255;
    color: white;
  }
  
  @media (max-width: 767.98px) {
    .modal-content .img {
        height: 300px; 
    } 
  }

/* Service column styling */
.service-33 {
  background-color: #1b0038;
  border-radius: 20px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  margin: 0 15px; /* Adds margin on the sides for spacing */
}

/* Prevent wrapping by adjusting column width */
@media (min-width: 992px) {
  .service-33 {
    width: calc(33.33% - 30px); /* Subtract total margin (15px on each side) */
  }
}

/* Hover effect */
.service-33:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

/* Glowing border background effect */
.service-33::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  box-shadow:5px 5px 10px linear-gradient(45deg, #ff006e, #00f7ff, #8e44ad, #28b485);
  z-index: -1;
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-33:hover::before {
  opacity: 0.8;
}

/* Styling for headings */
.service-33 h3 {
  color: orange;
  font-size: 1.6rem;
  font-weight: bold;
}

/* Styling for paragraphs */
.service-33 p {
  color: white;
  font-size: 1rem;
  line-height: 1.5;
}

/* Horizontal rule styling */
.service-33 hr {
  border-color: white;
}

/* Adjust responsive layout */
@media (max-width: 991px) {
  .service-33 {
    margin-bottom: 20px;
    width: 100%;
  }
}
