/* global css start */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700;900&display=swap");
:root {
/*   --color-primary: rgb(255, 0, 0); */
  --color-primary: rgb(3 46 252);
  --color-secondary: #fdf4f3;
  --color-heading: #3c424f;
  --font-roboto: "Roboto", sans-serif;
  --font-serif: serif;
}
body {
  font-size: 0.9rem;
  font-family: var(--font-roboto);
}
.form-control:focus {
  box-shadow: unset;
}
a,
a:hover {
  color: var(--color-primary);
  text-decoration: none;
  transition: 0.5s ease-out;
}
.color-primary {
  color: var(--color-primary);
}
.color-secondary {
  color: var(--color-secondary);
}
.background-primary {
  background-color: var(--color-primary);
}
.background-secondary {
  background-color: var(--color-secondary);
}
/* max width 90% only in pc */
@media only screen and (min-width: 768px) {
  .container-pc-90 {
    max-width: 90%;
  }
}
/* @media only screen and (max-width: 768px){ */
/* @media only screen and (min-width: 768.1px) and (max-width: 992px){ */

.btn-global {
  color: #fff;
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
  font-weight: 500;
}
.btn-global:hover {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}
.btn-outline-global{
	background-color: transparent;
	color: var(--color-primary);
}
.btn-outline-global:hover{
	background-color: var(--color-primary);
	color: #fff;
}
.font-serif{
	font-family: var(--font-serif);
}
.btn-shine {
  position: relative;
}
.btn-shine:before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 80px;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  opacity: 1;
  transition: opacity 0.3s ease;
  animation: shine 2s linear infinite;
  transform: skewX(30deg); /* Adjust the angle as needed */
}
@keyframes shine {
  0% {
    left: -5%;
  }

  100% {
    left: 60%;
  }
}
/* global css end */

/* header start */
.navbar-brand img{
	width: 200px;
}
.navbar-nav .nav-item .nav-link {
  font-weight: 500;
  font-size: 16px;
  color: #000;
  margin-left: 0.3rem;
  margin-right: 0.3rem;
}
.navbar-nav .nav-item .nav-link:hover {
  color: var(--color-primary);
}
.topbar a {
  color: #fff;
}
.topbar a:hover {
  color: var(--color-primary);
}
.offcanvas.offcanvas-start {
  width: 350px;
}
.dropdown-item:hover{
  background-color: var(--color-primary);
  color: #fff;
}
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
      display: block;
	  animation: slideIn 0.3s ease-in-out;
    }
    @keyframes slideIn {
      from {
        transform: translateY(20px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }
}
/* header end */

/* footer start */
footer {
  color: #fff;
  background-image: url("../images/footer-bg.webp");
  background-repeat: no-repeat;
  background-size: 150% 150%;
  background-position: center;
}
.footer-ul {
  list-style: none;
  padding-left: 0;
}
.footer-ul li a {
  color: #fff;
}
.footer-ul li a:hover {
  color: var(--color-primary);
}
.footer-ul li {
  padding-bottom: calc(30px / 2);
}
.footer-fluid1 {
  padding-top: 4rem;
}
.footer-heading {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 14px;
}
.search-links a {
  color: #fff;
  border-right: 1px solid #fff;
  padding-right: 4px;
  line-height: 25px;
  padding-top: -13px;
  padding-bottom: -13px;
}
.search-links a:last-child {
  border-right: 0;
}
.search-links a:hover {
  color: var(--color-primary);
}
/* footer end */

/* hero start */
.hero-img {
  height: 24rem;
  object-fit: cover;
  border-top: 1px solid;
  border-bottom: 2px solid var(--color-primary);
}
@media only screen and (max-width: 768px) {
  .hero-img {
    height: 7rem;
  }
}
/* hero end */

/* testimonial start */
.testimonial {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-size: cover;
}
.testimonial-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.testimonial-box > img {
  width: 40px !important;
}
.testimonial-box-inner {
  display: flex;
  align-items: center;
}
.testimonial-box-inner img {
  width: 55px !important;
  height: 55px !important;
  border-radius: 50%;
}
.testimonial-box-inner h6 {
  font-weight: 600;
}
.testimonial-box-inner p {
  font-size: 0.9rem;
}
/* testimonial end */

/* contact us start */
.contact-map {
  height: 400px;
}
.cf2-control,
.cf2-control:focus {
  background-color: #f7f7f8;
  color: #282828;
  padding: 10px 15px;
  font-size: 14px;
}

.btn-cf2 {
  background-color: var(--color-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
}

.btn-cf2:hover {
  background-color: #000;
  color: #fff;
}

.btn-cf2:active {
  background-color: #000 !important;
  color: #fff !important;
}

.cf2-social div {
  margin-bottom: 14px;
}

.cf2-social div a {
  text-decoration: none;
  color: #363636;
}

.cf2-social div a:hover {
  color: var(--color-primary);
}
.cf2-social div:nth-child(1) i{
  font-size: 18px;
}
.cf2-social div:nth-child(2) i{
  font-size: 18px;
}
.soc-img{
  width: 35px;
}
/* contact us end */

/* section1 start */
.section1-img {
  text-align: center;
}
.section1-img img {
  width: 400px;
}
.counter-box div:first-child {
  font-weight: 700;
  font-size: 35px;
}
.counter-box div:last-child {
  font-weight: 500;
  font-size: 20px;
  color: #808080;
}
.man-walk{
	position: absolute;
    left: -15px;
    bottom: -48px;
    width: 200px;
}
@media only screen and (max-width: 768px) {
  .section1-img img {
    width: 250px;
  }
  .man-walk{
	left: unset;
    right: 0;
    bottom: 255px;
    width: 180px;
  }
}
/* section1 end */

/* inner banner start */
.inner-banner img {
  height: 250px;
  object-fit: cover;
  filter: brightness(0.8);
}
.inner-banner h1 {
  font-weight: 600;
}
.breadcrumb-inner li a {
  color: #fff;
}
.breadcrumb-inner li a:hover {
  color: var(--color-primary);
}
.breadcrumb-inner .breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}
.breadcrumb-item.active {
  color: #fff;
}
/* inner banner end */

/* Back to top button start */
#btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background-color: var(--color-primary);
  font-size: 0;
  padding: 12px 12px;
  border-radius: 0;
  width: 40px;
  height: 40px;
  z-index: 1;
}

#btn-back-to-top:hover {
  background-color: #000;
}

/* Back to top button end */

/* whatsapp start */
.sd-whatsapp {
  width: 60px;
  height: 60px;
  background: #2bb140;
  text-align: center;
  font-size: 35px;
  /* line-height: 62px; For Font Awesome */
  line-height: 55px; /* For Img */
  border-radius: 50%;
  position: fixed;
  bottom: 45px;
  left: 20px;
  z-index: 999;
  animation: sd-bounce 1s infinite alternate;
  -webkit-animation: sd-bounce 1s infinite alternate;
}
.sd-whatsapp a,
.sd-whatsapp a:hover,
.sd-whatsapp a:focus {
  color: #fff;
  display: block;
}

@keyframes sd-bounce {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-15px);
    box-shadow: 0 0 7px 7px rgba(131, 0, 174, 0.55);
  }
}
@-webkit-keyframes sd-bounce {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-15px);
  }
}
.sd-whatsapp a img{
  width: 45px;
}
/* whatsapp end */



/* single course page start */
.course-border{
  padding: 20px 20px;
  border: 1px solid #dee2e6;
  border-radius: 10px;
}
.accordion-button.collapsed::after {
  content: "+";
  background-image: unset !important;
  font-size: 1.8rem;
  margin-top: -15px;
}
.accordion-button::after {
  content: "-";
  background-image: unset !important;
  font-size: 1.8rem;
  margin-top: -15px;
  transform: unset !important;
}
.accordion-item {
  border: 0;
  border-bottom: 1px solid #dee2e6;
}
.accordion-item:last-child {
  border-bottom: 0;
}
.accordion-button {
  font-weight: 500;
  font-size: 1.2rem;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-button:not(.collapsed) {
  background: transparent;
  border-bottom: 1px solid #ecf1f9;
}
.accordion-div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 0.9rem;
  padding-top: 1rem;
}
.accordion-div img{
  width: 20px;
}
.accordion-div div img{
  margin-top: -3px;
}
.product-list-group .list-group-item{
	display: flex;
	justify-content: space-between;
}
/* single course page end */

/* team start */
.team-div img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
}
.team-div {
  margin-bottom: 2rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .team-div img {
    height: 11rem;
  }
}
/* team end */

/* our courses start */
.star-icons {
  display: flex;
  align-items: center;
}
.star-icons img {
  width: 22px;
  display: inline;
  margin-right: 2px;
}
.new-gif {
    width: 55px;
    position: absolute;
    top: -12px;
    left: 4px;
}
/* our courses end */

/* blog start */
.card-blog a img {
  height: 200px;
  object-fit: cover;
}
.card-blog {
  transition: 1.1s cubic-bezier(0.16, 0.84, 0.442, 0.98);
}
.card-blog:hover {
  transform: translateY(-7.5px);
}
.card-blog h5 a{
	color: #000;
}
.card-blog h5 a:hover{
	color: var(--color-primary);
}
.card-blog .card-body a.rbtn{
	color: #000;
	font-weight: 500;
}
.card-blog .card-body a.rbtn:hover{
	color: var(--color-primary);
}
.single-banner img {
  height: 32rem;
  object-fit: cover;
  filter: brightness(0.4);
}
.single-banner .card-img-overlay {
  bottom: -20%;
}
.single-head {
  font-size: 18px;
  background-color: #dededf;
  padding: 8px 15px 6px 15px;
  display: inline-block;
  margin: 0;
}
.single-head-div {
  border-bottom: 2px solid #dededf;
  margin-bottom: 2rem;
}
.recent-box {
  display: flex;
  margin-bottom: 1rem;
}
.recent-box-img a img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 3px;
}
.recent-box-content a h5 {
  font-size: 19px;
  color: #000;
}
.recent-box-content a h5:hover {
  color: var(--color-primary);
  transition: all 0.4s ease-in-out;
}
.tags-sidebar a {
  box-shadow: 0 10px 20px -5px rgb(0 0 0/10%);
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 6px 14px;
  border-radius: 6px;
  transition: 1.1s cubic-bezier(0.16, 0.84, 0.442, 0.98);
}
.tags-sidebar a:hover {
  transform: translateY(-3.5px);
}
.ul-circle {
  list-style: circle;
}
.ul-circle li {
    margin-bottom: 1rem;
    border-bottom: 1px solid #d9d9d9;
}
.ul-circle li a {
  color: #484848;
}
.ul-circle li a:hover {
  color: var(--color-primary);
}
/* blog end */

/* extra css start */
li#wp-admin-bar-wp-logo {
  display: none;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
	background-color: var(--color-primary);
}
.youtube-iframe{
	width: 100%;
	height: 250px;
}
.youtube-iframe iframe{
	width: 100%;
	height: 250px;
}
.video-dimension iframe{
	width: 100%;
	height: 180px;
}
.after-h4 ul{
	margin-top: 1rem;	
}
/* extra css end */