/**********CSS**********/
:root {
  --primary: #413dfd;
  --secondary: #ffc448;
  --light: #fafafb;
  --dark: #12141d;
}

.clear {
  clear: both !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

.bi-arrow-right:hover {
  color: red;
  transition: 0.9s !important;
  transform: rotateY(180deg) !important;
}

.bi-arrow-right {
  color: #ffcd63;
}

.top-bar {
  padding: 8px 0;
  background: var(--yellow-bg);
  position: relative;
  color: #fff;
  margin-top: 75px;
  background-color: #000;
}

.top-bar ul {
  list-style: none;
  margin-bottom: 0px !important;
}

.my-6 {
  /* margin-top: 6rem; */
  margin-bottom: 6rem;
}

.py-6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.but_list h3 {
  margin-top: 5% !important;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

.small_section_title {
  letter-spacing: 0px;
  font-size: 17px;
  margin-bottom: 0 !important;
  padding-bottom: 10px;
  color: #413dfd;
}

.small_section_title a {
  color: #fff;
}

.small_section_title a:hover {
  color: #413dfd;
  text-decoration: underline;
}

.small_section_title_heading {
  background: #413dfd;
  padding: 7px;
  border-radius: 5px;
  margin-top: 5%;
  margin-bottom: 0 !important;
  font-size: medium;
  color: #ffc448;
}

.grid1 {
  background: #293151;
}

.grid1 {
  text-align: center;
  padding: 25px 40px;
  /* background: rgba(57, 67, 110, 0.5); */
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  margin-bottom: 30px;
}

.grid1 p {
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #fff;
  line-height: 1.8em;
  border-bottom: 1px solid #555;
  padding: 3px 0;
  margin: 0;
}

.grid1:hover {
  background: #000;
}

.about_main_content .about_card {
  margin: 10px 0px;
  border-radius: 0.15em;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 20px 6px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 20px 6px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 20px 6px rgba(0, 0, 0, 0.2);
}

/*** Button ***/
.btn {
  font-weight: 500;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/
.navbar.fixed-top {
  display: none;
  transition: 0.5s;
}

.navbar .navbar-nav .nav-link {
  padding: 20px 15px;
  color: var(--dark);
  font-size: 18px;
  font-weight: 600;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    padding: 10px 0;
  }
}

/* navbar 2 */
.navbar.fixed-top {
  display: none;
  transition: 0.5s;
}

.navbar2 .navbar-nav .nav-link {
  padding: 20px 15px;
  color: var(--dark);
  font-size: 18px;
  font-weight: 600;
  outline: none;
}

.navbar2 .navbar-nav .nav-link:hover,
.navbar2 .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .navbar2 .navbar-nav .nav-link {
    padding: 10px 0;
  }
}

@media (max-width: 576px) {
  .breadcrumb-area {
    margin-top: 0px !important;
  }

  .top-info {
    padding-left: 35px;
  }

  .top-bar {
    margin-top: 60px;
  }
}


#home {
  margin-bottom: 1rem;
  position: relative;
  background-image: url('../images/background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 1% 0;
  color: white;
  /* height: 528px; */
}

@media (max-width: 768px) {
  #home {
    height: 50vh;
    /* Adjust for smaller screens */
  }
}

@media (max-width: 576px) {
  #home {
    padding-top: none !important;
    height: 100%;
    /* padding: 30px 0; */
    content: "";
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
    /* width: 100%; */
    /* height: 100%; */
    /* background: rgb(205 194 194 / 80%); */
    /* z-index: 1; */
    /* opacity: inherit; */
    background: #dddddb;
  }
}

/* #home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); 
  z-index: 1;
}

#home .container {
  position: relative;
  z-index: 2;
} */

.typed-cursor {
  font-size: 30px;
  color: var(--dark);
}

.btn-play {
  position: relative;
  display: block;
  box-sizing: content-box;
  width: 16px;
  height: 26px;
  border-radius: 100%;
  border: none;
  outline: none !important;
  padding: 18px 20px 20px 28px;
  background: var(--primary);
}

.btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 100%;
  animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 100%;
  transition: all 200ms;
}

.btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  left: -1px;
  border-left: 16px solid var(--primary);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
    opacity: 0;
  }
}

.modal-video .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

.modal-video .modal-body {
  position: relative;
  padding: 0px;
}

.modal-video .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  font-weight: normal;
  color: #ffffff;
  background: #000000;
  opacity: 1;
}

/*** About ***/
#about .years .display-1 {
  font-size: 10rem;
  line-height: 9rem;
}

#about .years h5 {
  letter-spacing: 30px;
  margin-right: -30px;
}

/*** Skills ***/
#skill .progress {
  height: 5px;
  border-radius: 5px;
}

#skill .progress .progress-bar {
  width: 0px;
  border-radius: 5px;
  transition: 3s;
}

#skill .nav-pills .nav-link {
  color: var(--dark);
}

#skill .nav-pills .nav-link.active {
  color: #ffffff;
}

#skill .tab-content hr {
  width: 30px;
}

/*** Service ***/
.service-item .bg-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/bg-icon.png) center center no-repeat;
  background-size: cover;
}

/*** Project Portfolio ***/
#portfolio-flters li {
  display: inline-block;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  transition: 0.5s;
  border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
  color: var(--primary);
  border-color: var(--primary);
}

.portfolio-img {
  position: relative;
}

.portfolio-btn {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 196, 72, 0.5);
  /* background: rgba(98, 68, 197, 0.9); */
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 30px;
  padding-bottom: 100px !important;
  opacity: 0;
  transition: 0.5s;
}

.portfolio-btn1 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /* background: rgba(255, 196, 72, 0.5); */
  background: rgba(98, 68, 197, 0.9);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 30px;
  padding-bottom: 100px !important;
  opacity: 0;
  transition: 0.5s;
}

.portfolio-item:hover .portfolio-btn {
  opacity: 1;
  padding-bottom: 30px !important;
}

.portfolio-item:hover .portfolio-btn1 {
  opacity: 1;
  padding-bottom: 30px !important;
}

/*** Team ***/
.key_speakers .team-item img {
  transition: 0.5s;
  width: 100%;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}

.team-item img {
  transition: 0.5s;
  width: 98.5%;
}

.team-item:hover img {
  opacity: 1;
}

.key_speakers .team-item {
  border: 3px solid #ffc107;
  border-radius: 10px;
}

.key_speakers .team-item .team-text {
  position: relative;
  left: 0px;
  right: 6px;
  /* bottom: 30px; */
  /* display: flex; */
  align-items: center;
  justify-content: space-between;
  /* opacity: 0; */
  transition: 0.5s;
  /* background-color: #413dfd !important; */
  background-color: #fff !important;
  border: 0px !important;
}

.team-item .team-text {
  position: relative;
  left: -3px;
  right: 6px;
  /* bottom: 30px; */
  /* display: flex; */
  align-items: center;
  justify-content: space-between;
  /* opacity: 0; */
  transition: 0.5s;
  /* background-color: #413dfd !important; */
  background-color: #fff !important;
  min-height: 150px;
}

.team-item .team-text h5 {
  color: #000;
}

.team-item .team-text span {
  color: #5A5A5A;
}

.team-item:hover .team-text {
  right: 0px;
  opacity: 1;
}

/* .team-item:hover {
  margin-bottom:120px;
} */

#team .text-lg-center {
  background-color: #ffc448 !important;
}

#team .text-lg-center h2 {
  color: #fff !important;
}

.team-item .team-text div {
  transition: 0.5s;
  text-align: center;
}

/* .team-item:hover .team-text div {
  margin-left: 30px;
} */

/*** Testimonial ***/
.testimonial-left,
.testimonial-right {
  position: relative;
}

.testimonial-left img,
.testimonial-right img {
  position: absolute;
  padding: 5px;
  border: 1px solid var(--secondary);
  border-radius: 70px;
}

.testimonial-left img:nth-child(1),
.testimonial-right img:nth-child(3) {
  width: 70px;
  height: 70px;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-left img:nth-child(2),
.testimonial-right img:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}

.testimonial-left img:nth-child(3),
.testimonial-right img:nth-child(1) {
  width: 50px;
  height: 50px;
  bottom: 10%;
  right: 10%;
}

.testimonial-carousel .owl-item img {
  width: 120px;
  height: 120px;
}

.testimonial-carousel .testimonial-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid var(--secondary);
  border-radius: 60px;
}

.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: 30px;
  height: 30px;
  background: #ffffff;
  border: 2px solid var(--secondary);
  border-radius: 30px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  top: 5px;
  left: 5px;
  border-radius: 16px;
  background: var(--secondary);
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active::after {
  background: var(--primary);
}

.all-title-box {
  background: url(img/banner.jpg) no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
  min-height: 250px;
}

.area-box .session1 {
  border-radius: 100px;
  position: absolute;
  z-index: 9;
  width: 60px;
  height: 60px;
  left: -4%;
  top: -3%;
}

.text-justify {
  text-align: justify !important;
}

.breadcrumb-area {
  padding-top: 3rem !important;
  padding-bottom: 5rem !important;
}

.rounded{
  border-radius: 7px !important;
}