.html,
body {
  font-family: 'Poppins', Sans Serif;
  color: rgba(5, 74, 145, 1);
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 178px 0;
}

input::placeholder {
  color: rgba(5, 74, 145, 0.5)
}

p {
  color: rgba(5, 74, 145, 1);
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 20px 0;
}

.container {
  max-width: 1410px;
  padding: 0 15px;
  margin: 0 auto;
}

.mobile-img {
  display: none;
}

header {
  position: relative;
  z-index: 22;
}

header::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.04) 50%);
}


header .container {
  padding-top: 25px;
  padding-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.whatsapp {
  display: inline-flex;
  gap: 10px;
  color: rgb(5, 74, 145);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}

.whatsapp:hover {
  color: #0d81fd;
  text-decoration: none;
}

.right-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.menu-container.active {
  display: block;
}

.right-content nav.menu-container {
  display: flex;
  gap: 15px;
}

.right-content .menu-header-menu-container {
  border-right: 1px solid;
  padding-right: 15px;
}

.right-content ul.main-menu li a {
  color: #054a91;
  font-weight: 600;
}

.right-content ul.main-menu li a:hover {
  text-decoration: none;

}

.right-content ul.main-menu {
  margin-bottom: 0;
}

.right-content ul.main-menu li {
  display: inline-block;
  margin-left: 0px;
}

ul.slimmenu li .sub-toggle {
  width: auto;
  background: none;
}

ul.slimmenu li a {
  padding: 12px 20px 12px 0px;
}

ul.slimmenu li a:hover {
  background-color: transparent;
}

ul.slimmenu>li:hover,
ul.slimmenu>li {
  border-left: 0;
  background-color: transparent;
}

ul.slimmenu li>ul {
  width: 250px;
  box-shadow: 0px 4px 12px -6px rgba(0, 0, 0, 0.5);
  margin: 0;
  padding: 0;
}

ul.slimmenu li ul li {
  background: #fbf650;
  width: 100%;
}

ul.slimmenu li ul li a {
  padding: 12px 20px;
}

ul.slimmenu li ul li:hover {
  background-color: #054a91;
}

ul.slimmenu li ul li a:hover,
ul.slimmenu li ul li:hover a {
  color: #fff;
}

ul.slimmenu li .sub-toggle>i {
  display: none;
}

ul.slimmenu li .sub-toggle::before {
  height: 10px;
  width: 10px;
  border-left: 2px solid #054a91;
  border-bottom: 2px solid #054a91;
  transform: rotate(-45deg);
  right: 10px;
  top: 16px;
  position: absolute;
}

.right-content ul.main-menu li.menu-item-has-children {
  margin-right: 10px;
}

.right-content ul.main-menu .current-menu-ancestor>a {
  color: #0d81fd;
}

.right-content ul.main-menu .current-menu-ancestor .sub-toggle:before {
  border-color: #0d81fd;
}

.right-content ul.main-menu li.has-submenu .current-menu-item a {
  background-color: #054A91;
  color: #fff;
}



* {
  box-sizing: border-box;
}

.white-bg {
  background-color: #fff;
}

.bg-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-img.fixed-bg {
  background-attachment: fixed;
}

.space {
  padding: 150px 0;
}

.space-medium {
  padding: 100px 0;
}

.space-small {
  padding: 75px 0;
}

.space-small-top {
  padding-top: 75px;
}

h1 {
  font-size: 64px;
  line-height: 70px;
  font-weight: 600;
  margin-bottom: 30px;
  margin-top: 0px;
  width: 100%;
}

h2 {
  font-size: 48px;
  line-height: 52px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 0px;
}

h3 {
  font-size: 32px;
  line-height: 35px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 0px;
}


h4 {
  font-size: 24px;
  line-height: 38px;
  font-weight: 400;
  margin-top: 0px;
}

.btn {
  text-transform: uppercase;
  font-size: 16px;
  padding: 12px 30px;
  display: inline-block;
  text-decoration: none;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
}

.btn.btn-primary {
  background-color: rgba(5, 74, 145, 1);
  border: 1px solid rgba(5, 74, 145, 1);
  color: #fff;
}

.btn.btn-primary:hover {
  border: 1px solid rgba(40, 175, 250, 1);
}

.btn.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn.btn-primary:before {
  content: "";
  height: 0;
  width: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all ease-in-out 0.3s;
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: rgba(40, 175, 250, 1);
}

.btn.btn-primary:hover:before {
  height: 700px;
  width: 700px;
  transition: all ease-in-out 0.3s;
}

.btn.btn-secondary {
  background-color: rgba(40, 175, 250, 1);
  border: 0;
  color: #fff;
}

.btn.btn-secondary span {
  position: relative;
  z-index: 1;
}

.btn.btn-secondary:before {
  content: "";
  height: 0;
  width: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all ease-in-out 0.3s;
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: #054A91;
}

.btn.btn-secondary:hover:before {
  height: 700px;
  width: 700px;
  transition: all ease-in-out 0.3s;
}

.col-wrapper {
  display: flex;
  justify-content: flex-start;
}

/* .col-wrapper.negtive-margin {
  margin: 0 -16px;
}

.col-wrapper .col-lg-6 {
  width: calc(50% - 16px);
}

.col-wrapper .col-lg-4 {
  width: calc(33% - 20px);
}
.col-lg-3 {
  width: 25%;
  padding: 0 16px;
}
.col-lg-6:has(.large-card) {
  width: 50%;
  padding: 0 16px;
}

.col-wrapper .col-lg-8 {
  width: calc(67% - 20px);
} */


.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

/*hero section start*/
.hero {
  position: relative;
  height: 100vh;
  max-height: 900px;
  overflow: hidden;
}

.hero h1 {
  color: rgba(5, 74, 145, 1);
  background: -webkit-linear-gradient(left, #0d81fd, #054a91, #0d81fd);
  background-size: 1600px 200px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-name: animationgradienttitle;
  animation-name: animationgradienttitle;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes animationgradienttitle {
  0% {
    background-position: 0 1600px;
  }

  100% {
    background-position: 1600px 0;
  }
}

@keyframes animationgradienttitle {
  0% {
    background-position: 0 1600px;
  }

  100% {
    background-position: 1600px 0;
  }
}

@media (min-width:992px) {
  .hero h1{
    font-size: 42px;
      line-height: normal;
  }
}
.hero .mobile-img,
.hero .desktop-img {
  position: absolute;
  left: 0%;
  top: 0%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: scaleAnimation 30s ease-in-out infinite;
}

@keyframes scaleAnimation {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.25);
  }

  100% {
    transform: scale(1);
  }
}

.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}


.hero .content {
  max-width: 650px;
}

.hero .image {
  width: 730px;
  height: 100vh;
  max-height: 900px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  padding-right: 100px;
}

.hero .content h4 {
  max-width: 450px;
}

.animated-blocks {
  gap: 20px;
  display: flex;
  justify-content: flex-start;
  margin-top: 50px;
}

.animated-blocks .service-block {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  width: 150px;
  text-decoration: none;
}

.animated-blocks .service-block p {
  color: #fff;
  text-decoration: none;
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  line-height: normal;
  padding-inline: 12px;
}

.animated-blocks .service-block img {
  position: absolute;
  left: 0;
  top: 0;
  display: none;
}


@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.rotate-animation {
  animation: rotate360 5s linear infinite;
  /* Adjust duration as needed */
}

.animated-blocks .service-block:hover .rotate-animation {
  animation-play-state: paused;
}


.hero .kavneet-main-img {
  max-height: 700px;
}

.bubbles-wrapper .josh-talk img,
.bubbles-wrapper .celta img,
.bubbles-wrapper .idp img,
.bubbles-wrapper .best-mentor img {
  max-width: 200px;
}

.bubbles-wrapper .josh-talk {
  position: absolute;
  top: 80px;
  right: 50px;
}

.bubbles-wrapper .celta {
  position: absolute;
  top: 260px;
  right: -50px;
}

.bubbles-wrapper .idp {
  position: absolute;
  top: 440px;
  right: -50px;
}

.bubbles-wrapper .best-mentor {
  position: absolute;
  top: 610px;
  right: -0px;
}

/*hero section end*/

.yellow {
  background-color: #FFF952;
}

.white {
  background-color: #fff;
}

.dark-blue {
  background-color: #054A91;
}

.light-blue {
  background-color: #28AFFA;
}

.blue {
  background-color: rgba(5, 74, 145, 1);
  color: #fff;
}

.blue p {
  color: #fff;
}

.grey {
  background-color: rgba(5, 74, 145, 0.1);
}

.light-gray {
  background-color: rgba(40, 175, 250, 0.1);
}

.section-title {
  text-align: center;
  margin-bottom: 64px;
}

.section-title.extra-space {
  margin-bottom: 130px;
}

.course-card {
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.course-card a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.course-card:hover img {
  opacity: 0.6;
  transition: all ease-in-out 0.3s;
}

.course-card .img-wrap {
  position: relative;
  background-color: #000;
  border-radius: 16px 16px 0 0;
}

.course-card .img-wrap:after {
  content: "";
  display: block;
  padding-bottom: 55%;
}

.course-card .img-wrap img {
  transition: all ease-in-out 0.3s;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 16px 16px 0 0;
}

.course-card .course-body {
  padding: 20px;
  text-align: center;
  color: #fff;
}

.course-card .course-body h3 {
  margin: 0 0 5px 0;
}

.course-card .course-body p {
  font-size: 16px;
  margin: 0;
  color: #fff;
}

.course-card.white {
  color: rgba(5, 74, 145, 1);
}

.course-card.light-blue {
  color: rgba(40, 175, 250, 0.1);
}

.bottom-links {
  margin-top: 60px;
  gap: 15px 0;
}

.bottom-links .link-item {
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}



.bottom-links .link-item a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.bottom-links .link-item h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  z-index: 1;
  position: relative;
}

.bottom-links .link-item p {
  font-size: 14px;
  margin: 0;
  z-index: 1;
  position: relative;
}

.bottom-links .white {
  color: rgba(5, 74, 145, 1);
}

.course-card.yellow h3,
.course-card.yellow p,
.course-card.yellow {
  color: rgba(5, 74, 145, 1);
}

.bottom-links .white p {
  color: rgba(5, 74, 145, 1);
}

.bottom-links .grey {
  border: 1px solid rgba(5, 74, 145, 1);
}

.bottom-links .light-gray {
  border: 1px solid rgba(40, 175, 250, 1);
}

.bottom-links .blue {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #fff;
}

.bottom-links .dark-blue {
  background-color: rgba(40, 175, 250, 0.1);
  border: 1px solid rgba(40, 175, 250, 1);
}

/*on white background*/
.bottom-links .link-item:before {
  content: "";
  height: 0;
  width: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all ease-in-out 0.3s;
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: #054A91;
}

.bottom-links .link-item:hover {
  border-color: transparent;
  background-color: transparent;
}

.bottom-links .link-item:hover:before {
  height: 500px;
  width: 500px;
  transition: all ease-in-out 0.3s;
}

.bottom-links .link-item:hover h5,
.bottom-links .link-item:hover p {
  color: #fff;
}

/*on dark background*/
.blue .bottom-links .link-item:before {
  content: "";
  height: 0;
  width: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all ease-in-out 0.3s;
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: #FFF952;
}

.blue .bottom-links .link-item:hover {
  border-color: transparent;
  background-color: transparent;
}

.blue .bottom-links .link-item:hover:before {
  height: 500px;
  width: 500px;
  transition: all ease-in-out 0.3s;
}

.blue .bottom-links .link-item:hover h5,
.blue .bottom-links .link-item:hover p {
  color: #054A91;
}









footer {
  background-color: rgba(234, 247, 255, 1);
  border: 1px solid rgba(5, 74, 145, 0.1);
  position: fixed;
  left: 0;
  width: 100%;
  bottom: 0;
  z-index: -1;
}

footer .footer-top {
  padding-top: 25px;
  padding-bottom: 25px;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

footer hr {
  margin: 0;
  border: 0;
  border-top: 1px solid rgba(5, 74, 145, 0.1);
}

footer .footer-bottom {
  padding-top: 25px;
  padding-bottom: 25px;
}

footer .menu-left ul {
  margin: 0;
  padding: 0;
}

footer .menu-left ul li {
  display: inline-block;
  margin-right: 10px;
}

footer .menu-left ul li a {
  text-transform: uppercase;
  font-size: 14px;
  text-decoration: none;
  color: #054A91;
  font-weight: 500;
}

footer .menu-right p {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
}

footer .social-links a {
  text-decoration: none;
  display: inline-block;
  margin-right: 15px;
}

footer .social-links a svg {
  vertical-align: middle;
}

/*feature block*/
.feature-block {
  background-color: #fff;
  position: relative;
  box-shadow: 0 8px 12px -2px rgba(0, 0, 0, 0.5);
  padding: 0 24px 90px 24px;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  align-items: flex-start;
  flex-direction: column;
}

.feature-block::before {
  content: "";
  height: 30px;
  width: 100%;
  background-image: url("../images/page-top.png");
  background-repeat: repeat-x;
  background-position: left top;
  display: block;
  position: absolute;
  left: 0;
  top: -20px;
}

.feature-block:after {
  content: "";
  height: 67px;
  width: 100%;
  background-image: url("../images/page-bottom.png");
  background-repeat: repeat-x;
  background-position: center top;
  display: block;
  position: absolute;
  left: 0;
  bottom: -66px;
}

.feature-block.large-card::before {
  height: 63px;
  background-image: url("../images/large-top.png");
  background-repeat: repeat-x;
  background-position: left top;
  top: -43px;
}

.feature-block.large-card:after {

  height: 67px;

  background-image: url("../images/large-bottom.png");
  background-repeat: repeat-x;
  background-position: center top;

  bottom: -66px;
}


.feature-block p {
  font-weight: 600;
  margin: 0;
}

.feature-block ul {
  font-size: 16px;
  color: rgb(5, 74, 145);
  font-weight: 400;
  list-style-type: none;
  margin: 0 0 20px 0;
  padding: 0;
  width: 100%;
}

.feature-block ul li {
  border-bottom: 1px solid rgba(5, 74, 145, 0.16);
  line-height: 28px;
  padding: 14px 0 14px 15px;
  position: relative;
}

.feature-block ul li strong {
  color: #28AFFA;
}

.feature-block ul li:before {
  position: absolute;
  left: 0;
  top: 25px;
  height: 7px;
  width: 7px;
  border-radius: 50%;
  background-color: rgba(40, 175, 250, 1);
  content: "";

}

.feature-block ul li:last-child {
  border-bottom: 0;
}

.feature-block .btn {
  padding: 10px 30px;
  width: calc(100% - 48px);
  text-align: center;
  font-weight: 700;
  text-transform: capitalize;
  position: absolute;
  left: 24px;
  bottom: 50px;
}

.feature-block h5 {
  clear: both;
  width: 100%;
  font-size: 24px;
  font-weight: 600;
  margin: 10px 0 22px 0;
  float: left;
}


.feature-block .feature-img {
  width: 100%;
  position: relative;
  float: left;
  margin: 20px 0 15px 0;
}

.portrait.feature-block .video-block {
  position: relative;
  width: 100%;
  margin: 15px 0 15px 0;
  border: 1px solid #dfdfdf;
  border-radius: 5px;
}

.portrait.feature-block .video-block::after ,
.feature-block .feature-img:after {
  display: block;
  padding-bottom: 115%;
  content: "";
}
.portrait.feature-block .video-block video,
.feature-block .feature-img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  border-radius: 5px;
}

.feature-block .badge {
  position: absolute;
  left: 50%;
  top: -41px;
  transform: translateX(-50%);
  z-index: 1;
  display: block;
}

.feature-block .badge.large {
  top: -43px;
}

.feature-block.large-card h5 {
  margin-bottom: 0;
}

.feature-block.large-card h6 {
  margin: 5px 0 30px 0;
  font-weight: 400;
  font-size: 18px;
}

.article-wrapper {
  max-width: 910px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.article-wrapper article {
  width: calc(50% - 16px);
  margin-bottom: 32px;
  position: relative;
}

.space-medium:has(.article-wrapper .post) .section-title h1 {
  margin-bottom: 0;
  font-size: 48px;
  line-height: 110%;
}

.article-wrapper article a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.article-wrapper .post-img {
  position: relative;
}

.article-wrapper .post-img:after {
  content: "";
  display: block;
  padding-bottom: 60%;
}

.article-wrapper .post-img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px 8px 0 0;
}

.article-wrapper .body-content {
  border-left: 1px solid rgba(5, 74, 145, 0.15);
  border-right: 1px solid rgba(5, 74, 145, 0.15);
  border-bottom: 1px solid rgba(5, 74, 145, 0.15);
  border-radius: 0 0 8px 8px;
  padding: 24px 16px;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-wrap: wrap;
  min-height: 163px;
}

.article-wrapper .body-content h4 {
  font-weight: 600;
  margin: 0 0 10px 0;
  line-height: 120%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-wrapper .body-content p {
  color: rgba(5, 74, 145, 1);
  font-weight: 400;
}

.article-wrapper .post .body-content .post-excerpt {
  font-size: 16px;
  line-height: 160%;
}

.article-wrapper article:hover .body-content {
  background-color: #FFF952;
  border-left-color: #FFF952;
  border-right-color: #FFF952;
  border-bottom-color: #FFF952;
  transition: all ease-in-out 0.3s;
}

.article-wrapper article:hover .body-content h4,
.article-wrapper article:hover .body-content p {
  color: #054A91;
  transition: all ease-in-out 0.3s;
}

.pagination .page-numbers {
  background: #054A91;
  border: 1px solid #054A91;
  min-width: 40px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 0 10px;
}

.pagination .page-numbers.current {
  background-color: #fff;
  color: #054A91;
}

.sidebar {
  background: rgb(234, 247, 255);
  border-radius: 8px;
  padding: 24px 16px;
  max-width: 321px;
  float: right;
  width: 100%;
  margin-bottom: 20px;
}

.sidebar h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.sidebar ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.sidebar ul li {
  border-bottom: 1px solid rgba(5, 74, 145, 0.05);
}

.sidebar ul li:last-child {
  border-bottom: 0;
}

.sidebar ul li a {
  text-transform: uppercase;
  font-weight: 400;
  color: #054A91;
  text-decoration: none;
  display: block;
  padding: 15px 10px;
}

.sidebar .category-list li a {
  padding: 16px 0;
  font-size: 16px;
  line-height: 160%;
}

.archive-page .section-title {
  text-align: left;
}



.single-post-wrapper h1.post-title {
  font-size: 36px;
  line-height: 42px;
  margin-bottom: 10px;
}

.single-post-wrapper .img-wrapper {
  margin-bottom: 24px;
}

.single-post-wrapper .img-wrapper img {
  max-width: 100%;
  border-radius: 8px 8px 0 0;
}

.single-post-wrapper .post-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 32px;
  justify-content: flex-start;
}


.quote-modal .modal-dialog {
  max-width: 675px;

}

.quote-modal .modal-content {
  padding: 40px;
}

.quote-modal .modal-body {
  padding: 0px;
}

.quote-modal .modal-header {
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
  padding: 0;
  border: 0;
}

.quote-modal .modal-header h3 {
  font-weight: 600;
  margin: 0;
}

.quote-modal .modal-header p {
  font-size: 16px;
  width: 100%;
}

.quote-modal .modal-body label {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
}
.quote-modal .modal-body .wpcf7-radio .wpcf7-list-item.first{
  margin-left: 0;
}
.quote-modal .modal-body .intl-tel-input.separate-dial-code .selected-flag{
  border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    background-color: rgb(39 175 250 / 16%);
}
.quote-modal .modal-body input[type=radio]{
accent-color: rgb(5, 74, 145);
}
.quote-modal .modal-body .form-control {
  border: 1px solid rgb(5, 74, 145);
  border-radius: 25px;
  height: 45px;
  background: rgba(40, 175, 250, 0.05);
}

.quote-modal .modal-body .btn {
  width: 100%;
  font-weight: 600;
  margin-top: 15px;
}

.quote-modal .close {
  position: absolute;
  right: 10px;
  top: 10px;
  font-weight: 400;
  opacity: 1;
  color: #000;
  font-size: 32px;
}

.hurry-up {
  border: 2px solid rgb(255, 249, 82);
  background: rgba(255, 249, 82, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-radius: 15px;
  margin: 40px 0 30px 0;
}

.hurry-up p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.hurry-up strong {
  font-weight: 600;
}

.secure {
  font-size: 14px;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  opacity: 0.6;
}


canvas {
  display: block;
  vertical-align: bottom;
}


/* ---- stats.js ---- */

.count-particles {
  background: #000022;
  position: absolute;
  top: 48px;
  left: 0;
  width: 80px;
  color: #13E8E9;
  font-size: .8em;
  text-align: left;
  text-indent: 4px;
  line-height: 14px;
  padding-bottom: 2px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
}

.js-count-particles {
  font-size: 1.1em;
}

#stats,
.count-particles {
  -webkit-user-select: none;
  margin-top: 5px;
  margin-left: 5px;
}

#stats {
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}

.count-particles {
  border-radius: 0 0 3px 3px;
}


/* ---- particles.js container ---- */

#particles-js {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  z-index: 1;
}

.parent {
  position: relative;

  .container {
    position: relative;
    z-index: 2;
  }
}

.sucess-stories .small-card {
  margin-bottom: 175px;
}

.sucess-stories .small-card .feature-block {
  padding: 0 24px 35px 24px;
}

.sucess-stories .small-card .feature-block h5 {
  margin-bottom: 10px;
}

.sucess-stories .small-card .feature-block p {
  margin: 0px 0 25px 0;
}


.sucess-stories .small-card .feature-block .btn {
  position: relative;
  width: 100%;
  left: 0;
  bottom: auto;
}

.sucess-stories .small-card .feature-block .feature-img {
  border: 1px solid #dfdfdf;
  border-radius: 5px;
}

.sucess-stories .small-card .feature-block .badge {
  top: -81px;
}


.success-modal .modal-lg {
  max-width: 1300px;
  text-align: center;
  display: flex;
  height: 100vh;
  align-items: center;
}

.success-modal .modal-content {
  border: 0;
  border-radius: 12px;
}

.success-modal .img-wrapper {
  width: 400px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.success-modal .body-content {
  width: calc(100% - 450px);
  text-align: left;
}

.success-modal .modal-header {
  border: 0;
}

.success-modal .modal-header h3 {
  text-align: center;
  width: 100%;
}

.success-modal h4 {
  text-transform: uppercase;
  font-weight: 600;
  margin: 20px 0 2px 0;
}

.success-modal h5 {
  font-size: 20px;
  font-weight: 600;
  margin: 0px 0 20px 0;
}

.success-modal .img-wrapper img {
  display: inline-block;
  margin: 0 !important;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center bottom;
}

 

.success-modal .modal-body {
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.success-modal #storyContent {
  text-align: left;
  font-size: 16px;
  line-height: 150%;
}

.success-modal .modal-header .close {
  margin: 0;
  padding: 0;
  font-weight: 400;
  opacity: 1;
  font-size: 36px;
  position: absolute;
  right: 16px;
  top: 15px;
}

/*achievements */

.achievements-stories .row {
  padding: 0 20px;
}

.achievements-stories .small-card {
  margin-bottom: 40px;
  position: relative;
  cursor: pointer;
}


.achievements-stories .feature-block .feature-img {
  margin: 15px 0 15px 0;
}

.achievements-stories .small-card .feature-block {
  padding: 35px 0px 35px 0px;
}

.achievements-stories .small-card .feature-block h5 {
  margin-bottom: 10px;
}

.achievements-stories .small-card .feature-block p {
  margin: 0px 0 25px 0;
}


.achievements-stories .small-card .feature-block .btn {
  position: relative;
  width: 100%;
  left: 0;
  bottom: auto;
}

.achievements-stories .small-card .feature-block .feature-img {
  border: 1px solid #dfdfdf;
  border-radius: 5px;
}

.achievements-stories .feature-block::before,
.achievements-stories .feature-block::after {
  display: none;
}

.achievements-stories .small-card {
  background-color: #fff;
}


.achievements-stories .small-card .feature-block {
  box-shadow: none;
}

.achievements-modal .modal-lg {
  max-width: 1300px;
  text-align: center;
  display: flex;
  height: 100vh;
  align-items: center;
}

.achievements-modal .modal-content {
  border: 0;
  border-radius: 12px;
}

.achievements-modal .img-wrapper {
  text-align: center;
  display: inline-block;
}

.achievements-modal .modal-header {
  border: 0;
}

.achievements-modal .modal-header h3 {
  text-align: center;
  width: 100%;
}

.achievements-modal h4 {
  text-transform: uppercase;
  font-weight: 600;
  margin: 0px 0 2px 0;
}

.achievements-modal h5 {
  font-size: 20px;
  font-weight: 600;
  margin: 0px 0 20px 0;
}

.achievements-modal .img-wrapper img {
  display: inline-block;
  margin: 0 !important;
  width: 100%;
  max-width: 100%;
}

.achievements-modal .img-wrapper {
  width: 400px;
  border-radius: 8px;
}

.achievements-modal .body-content {
  width: calc(100% - 440px);
  max-height: 80vh;
  overflow: auto;
}

.achievements-modal .modal-body {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;

}

.achievements-modal .modal-body p {
  font-size: 16px;
}

.achievements-modal #storyContent {
  text-align: left;
  font-size: 16px;
  line-height: 150%;
}

.achievements-modal .modal-header .close {
  margin: 0;
  padding: 0;
  font-weight: 400;
  opacity: 1;
  font-size: 36px;
  position: absolute;
  right: 16px;
  top: 15px;
}

.filter-serach {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: end;
}

.filter-serach select {
  font-size: 16px;
  padding: 11px 40px 11px 12px;
  /* Increased right padding for the icon */
  border: 1px solid #cfe8ff;
  border-radius: 16px;
  background-color: #f5fbff;
  color: #1a3c75;
  outline: none;
  appearance: none;
  /* Hide default arrow */
  background-image: url('data:image/svg+xml;utf8,<svg fill="%231a3c75" width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 16.5l-6-6 1.41-1.41L12 13.67l4.59-4.58L18 10.5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 24px;
  cursor: pointer;
}

/* Optional: Style for Safari/Firefox compatibility */
.filter-serach select::-ms-expand {
  display: none;
  /* Remove default arrow for IE/Edge */
}

.filter-serach .btn {
  border-radius: 16px;
}

.mock-card-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  justify-content: flex-start;
}

.mock-card {
  background-color: #E9F7FF;
  border: 1px solid #28AFFA;
  border-radius: 16px;
  padding: 48px;
}

.mock-card-wrap .course-card .course-body {
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mock-card-wrap .course-card .course-body h4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  /* min-height: 74px; */
  margin-bottom: 0;
  font-weight: 600;
}

.mock-card-wrap .course-card .course-body .course-title-wrap {
  display: flex;
  gap: 10px;
  /* flex-wrap: wrap; */
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 8px;
}

.mock-card-wrap .course-card .course-body p {
  margin-bottom: 6px;
}

.mock-card-wrap .course-card .btn {
  position: relative;
  display: inline-block;
  border: 1px solid rgba(40, 175, 250, 1);
  margin-top: 24px;
  border-radius: 16px;
  height: auto;
}

.mock-card-wrap .course-card .btn:hover {
  border: 1px solid #fff;
}

.mock-test-page .pagination {
  margin-top: 32px;
  justify-content: center;
  gap: 6px;
}

/* woocommerce */
.woocommerce #customer_login form input {
  border-radius: 16px;
  background: rgba(40, 175, 250, 5%);
  border: 1px solid rgba(5, 74, 145, 15%);
}

.woocommerce #customer_login .u-column1.col-1,
.woocommerce #customer_login .u-column2.col-2 {
  max-width: 100%;
  width: 100%;
}

.woocommerce #customer_login form input:-internal-autofill-selected {
  background-color: rgba(40, 175, 250, 5%) !important;
}

/* .single-post-wrapper:has(form.login) {
  max-width: inherit;
} */

.woocommerce #customer_login form .password-input {
  width: 100%;
}

.woocommerce #customer_login form label {
  width: 100%;
  margin-bottom: 0;
}

.woocommerce #customer_login form .lost_password a {
  color: #054A91;
  font-weight: 600;
}

.woocommerce #customer_login form .woocommerce-privacy-policy-text a.woocommerce-privacy-policy-link {
  color: #054A91;
  font-weight: 600;
}

form input:focus-visible {
  outline: 0;
}

form.woocommerce-form.woocommerce-form-login.login {
  margin-bottom: 10px;
}

.register-toggle a,
.login-toggle a {
  cursor: pointer;
}

.register-toggle a b,
.login-toggle a b {
  color: #28affa;
  transition: all 0.3s;
}

.single-post-wrapper:has(#customer_login) {
  max-width: 600px;
}

.space.white-bg:has(#customer_login) {
  padding: 75px 0;
}

.register-toggle a b:hover,
.login-toggle a b:hover {
  color: #054A91;
}

.woocommerce-privacy-policy-text p {
  font-size: 15px;
  line-height: 20px;
  padding: 0 3px;
}

.woocommerce-privacy-policy-text p a {
  color: #054A91;
  text-decoration: underline;
}

.woocommerce-notices-wrapper .woocommerce-message .button.wc-forward:hover,
button.button[name="apply_coupon"]:hover,
button.button[name="update_cart"]:hover,
.woocommerce table.my_account_orders .button:hover,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info .button.wc-forward:hover,
.woocommerce-MyAccount-content .woocommerce-EditAccountForm .woocommerce-Button[type="submit"]:hover,
.return-to-shop .button.wc-backward:hover {
  background: rgba(40, 175, 250, 1);
  color: #fff;
}

.woocommerce-notices-wrapper .woocommerce-message .button.wc-forward,
button.button[name="apply_coupon"],
button.button[name="update_cart"],
.woocommerce table.my_account_orders .button,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info .button.wc-forward,
.woocommerce-MyAccount-content .woocommerce-EditAccountForm .woocommerce-Button[type="submit"],
.return-to-shop .button.wc-backward {
  background-color: rgba(5 74 145);
  border: 0;
  color: #fff !important;
  text-transform: uppercase;
  font-size: 16px;
  padding: 12px 30px;
  display: inline-block;
  text-decoration: none;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.woocommerce table.my_account_orders .button {
  font-size: 16px !important;
  text-transform: capitalize;
  padding: 8px 30px;
}

.coupon button,
button[name="update_cart"] {
  padding: 7px 30px;
}


form.woocommerce-cart-form table.shop_table thead tr th {
  font-weight: 500;
  font-size: 16px;
}

.woocommerce-notices-wrapper .woocommerce-message a.button.wc-forward {
  margin-top: -8px;
}

.woocommerce-cart .cart-collaterals .cart_totals table tr th {
  font-weight: 600;
  font-size: 16px;
}

.woocommerce-cart .cart-collaterals .cart_totals table tr td p strong {
  font-weight: 600;
}

.woocommerce-cart .cart-collaterals .cart_totals table tr td p,
.woocommerce-cart .cart-collaterals .cart_totals table tr td,
form.woocommerce-cart-form table.shop_table tbody tr td,
.woocommerce-notices-wrapper .woocommerce-message {
  font-size: 16px;
}

.wc-proceed-to-checkout .checkout-button {
  font-size: 16px !important;
  padding: 7px 15px !important;
}

.woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper .form-row {
  width: 100%;
  flex-direction: column;
}

.woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper .form-row label,
.woocommerce-additional-fields .form-row.notes label {
  display: block;
  width: 100%;
  font-size: 16px;
  margin-bottom: 0;
}

.woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper .form-row input,
.woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper .form-row .select2 .selection .select2-selection,
.woocommerce-MyAccount-content .woocommerce-EditAccountForm .woocommerce-form-row input {
  border: 1px solid rgb(5, 74, 145, 0.15);
  border-radius: 5px;
  height: 45px;
  background: rgba(40, 175, 250, 0.05);
  font-size: 16px;
}

.woocommerce-MyAccount-content .woocommerce-EditAccountForm .woocommerce-form-row input {
  background: #fff;
  font-size: 15px;
  padding-left: 15px;
}

.woocommerce-notices-wrapper .woocommerce-message {
  padding-bottom: 15px;
  font-size: 16px;
  padding-top: 20px;
}

.wc-empty-cart-message .cart-empty {
  font-size: 16px;
}

.woocommerce-additional-fields .form-row.notes textarea {
  border: 1px solid rgb(5, 74, 145, 0.15);
  border-radius: 25px;
  height: 115px;
  background: rgba(40, 175, 250, 0.05);
  font-size: 16px;
}

.woocommerce-additional-fields .form-row.notes span.woocommerce-input-wrapper {
  width: 100%;
}

.woocommerce nav.woocommerce-MyAccount-navigation ul {
  padding-left: 0;
}

.woocommerce nav.woocommerce-MyAccount-navigation ul li a {
  color: rgba(5, 74, 145, 1);
  font-size: 16px;
}

.woocommerce nav.woocommerce-MyAccount-navigation ul li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(5, 74, 145, 0.15);
  list-style-type: none;
}

.woocommerce:has(nav) {
  background: #eaf7ff;
  padding: 20px;
}

.woocommerce nav.woocommerce-MyAccount-navigation ul li:last-child {
  padding-bottom: 0;
  border: 0;
}

.woocommerce nav.woocommerce-MyAccount-navigation ul li:first-child {
  padding-top: 0;
}

.woocommerce-account .woocommerce-MyAccount-content p {
  font-size: 16px;
}

.woocommerce-orders-table__cell-order-actions .woocommerce-button.view {
  padding: 7px 20px;
  font-size: 14px;
}

.woocommerce-info:has(.browse-products)::before {
  top: 1.9rem;
}

.woocommerce-orders-table__cell-order-actions .button.view {
  background-color: rgba(5 74 145);
  border: 0;
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  padding: 12px 30px;
  display: inline-block;
  text-decoration: none;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals h2 {
  font-size: 28px;
  margin-bottom: 0;
  text-transform: capitalize;
}

.cart-collaterals .cart_totals .wc-proceed-to-checkout a.checkout-button {
  background-color: rgba(5 74 145) !important;
  border: 0;
  color: #fff !important;
  text-transform: uppercase;
  font-size: 14px !important;
  padding: 16px 30px !important;
  display: inline-block;
  text-decoration: none;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  font-weight: 600;
}

.u-columns.woocommerce-Addresses .woocommerce-Address {
  max-width: 100%;
  width: 100%;
}

.u-columns.woocommerce-Addresses .woocommerce-Address h2 {
  font-size: 24px;
}

.u-columns.woocommerce-Addresses .woocommerce-Address a,
.u-columns.woocommerce-Addresses .woocommerce-Address address {
  font-size: 16px;
}

.woocommerce-MyAccount-content .woocommerce-EditAccountForm .woocommerce-form-row .password-input {
  width: 100%;
}

.woocommerce-MyAccount-content .woocommerce-EditAccountForm .woocommerce-form-row label {
  margin-bottom: 0;
}

.woocommerce-MyAccount-content .woocommerce-EditAccountForm .woocommerce-form-row em {
  font-size: 14px;
  font-style: normal;
}

.woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset {
  margin-top: 25px;
}

.woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset legend {
  font-size: 20px;
  font-weight: 600;
}

.woocommerce-MyAccount-content .woocommerce-EditAccountForm .woocommerce-Button[type="submit"] {
  margin-top: 12px;
}

.woocommerce-MyAccount-content .woocommerce-EditAccountForm .woocommerce-form-row.form-row-first,
.woocommerce-MyAccount-content .woocommerce-EditAccountForm .woocommerce-form-row.form-row-last {
  width: 49%;
}

.woocommerce table.shop_table tbody th,
.woocommerce table.shop_table tfoot td,
.woocommerce table.shop_table tfoot th {
  font-weight: 600;
}

.woocommerce-form-coupon-toggle .woocommerce-info {
  font-size: 16px;
}

.menu-toggle:focus-visible {
  outline: none;
}

.stop-recording {
  z-index: 0;
  position: relative;
}

.stop-recording:before {
  z-index: -1;
}

.main-wrapper {
  min-height: calc(100vh - 288px);
}


.register-modal .xoo-el-header {
  display: none !important;
}

#signup-modal [data-section="login"].xoo-el-section {
  display: none;
}

#signup-modal [data-section="register"].xoo-el-section {
  display: block;
}

#login-modal [data-section="login"].xoo-el-section {
  display: block;
}

#login-modal [data-section="register"].xoo-el-section {
  display: none;
}

.register-modal .modal-header {
  flex-wrap: wrap;
  justify-content: center;
  border: 0;
  text-align: center;
}

.register-modal h3 {
  width: 100%;
  margin-bottom: 10px;
}

.register-modal .modal-header p {
  font-size: 16px;
  margin: 0;
}

.modal-header button {
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  color: #054a91;
  text-decoration: underline;
  cursor: pointer;
}

.xoo-el-section a {
  font-size: 14px;
  color: #054a91;
  font-weight: 400;
}

.xoo-el-section label a {
  color: #054a91;
}

.xoo-el-section label {
  font-size: 15px;
  font-weight: 400;
}

.register-modal p {
  font-size: 12px;
  text-align: center;
  color: #054a91;
}

.xoo-el-form-container button.btn.button.xoo-el-action-btn {
  height: 50px;
  background-color: #054a91;
  border: 1px solid #054a91;
}

.xoo-el-form-container button.btn.button.xoo-el-action-btn:hover {
  background-color: #fff;
  color: #054a91;
}

.xoo-el-form-lostpw .xoo-el-form-txt {
  font-size: 14px;
}

.header-cart {
  position: relative;
  display: inline-block;
}

.cart-icon {
  display: inline-block;
  position: relative;
  padding: 0 0 10px 0;
  margin-top: 15px;
}

.cart-icon span {
  position: absolute;
  background-color: #054a91;
  color: #fff;
  right: -15px;
  top: -12px;
  min-height: 14px;
  min-width: 22px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
}

.header-cart .mini-cart-content {
  background-color: #fff;
  position: absolute;
  left: -230px;
  top: 40px;
  width: 250px;
  padding:
    20px;
  z-index: 2;
  box-shadow: 0 2px 12px -2px rgba(0, 0, 0, .5);
  opacity: 0;
  pointer-events: none;
}

.header .my-account {
  display: inline-block;
  position: relative;
  margin-left: 15px;
}

.header .my-account button {
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
  color: #054a91;
  text-transform: capitalize;
  font-weight: 500;
  padding: 13px 0;
}

.header .my-account .account-info {
  position: absolute;
  right: -30px;
  top: 40px;
  background: #fff;
  padding: 20px;
  box-shadow: 0px 2px 12px -7px rgba(0, 0, 0, .4);
  width: 200px;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

.header .my-account .account-info p {
  margin-bottom: 5px;
  text-transform: capitalize;
}

.header .my-account .account-info ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.header .my-account .account-info ul a {
  text-decoration: none;
  color: #000;
  font-size: 15px;
  display: block;
  padding: 5px 0;
}

.header .my-account:hover .account-info {
  opacity: 1;
  pointer-events: inherit;
}

.header-cart:hover .mini-cart-content {
  opacity: 1;
  pointer-events: inherit;
}

.cart-icon svg path {
  fill: #000;
}

.woocommerce-page .container {
  position: relative;
}

.woocommerce-notices-wrapper {
  position: absolute;
  left: 15px;
  top: -80px;
  width: 100%;
  max-width: 1380px;
}

.woocommerce-message {
  border-top-color: #054A91;
}

.showcoupon {
  color: #054A91;
}

.woocommerce-cart .single-post-wrapper .woocommerce {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.woocommerce-cart .single-post-wrapper .woocommerce .woocommerce-cart-form {
  width: 70%;
}

.woocommerce-cart .single-post-wrapper .woocommerce .cart-collaterals {
  width: 30%;
}

.woocommerce-cart .single-post-wrapper .woocommerce .cart-collaterals .cart_totals {
  width: calc(100% - 30px);
  margin-top: -17px;
}

.single-post-wrapper h1+.post-meta {
  display: none;
}

.woocommerce .product-remove a.remove {
  background-image: url('../images/trash.png');
  height: 24px;
  width: 24px;
  background-repeat: no-repeat;
  background-position: center;
  color: transparent !important;
  background-size: 20px;
  border-radius: 0;
}

.woocommerce table.shop_table td a {
  color: #054a91;
  text-decoration: none;
}

.woocommerce table.shop_table td {
  font-size: 14px !important;
}

.woocommerce table.shop_table td button {
  font-size: 14px;
  font-weight: 600;
  position: relative;
  right: -2px;
  padding: 15px 20px;
}


.woocommerce-cart table.cart td.actions .coupon .input-text {
  width: calc(100% - 144px);
  border-radius: 25px;
  margin: 0;
  padding: 7px 12px 7px;
  border: 0;
}

.woocommerce-cart table.cart td.actions .coupon input {
  width: 100%;
}

.woocommerce-cart table.cart td.actions .coupon {
  width: 100%;
  max-width: 450px;
  display: flex;
  border: 1px solid #054a91;
  border-radius: 25px;
  margin: 5px 0;
}

.woocommerce-cart table.cart td.actions .coupon+button {
  display: none;
}

form.woocommerce-checkout {
  display: flex;
  flex-wrap: wrap;
}

.woocommerce-checkout .col2-set {
  width: calc(65% - 30px);
}

.woocommerce-checkout #order_review {
  width: 35%;
}

#order_review_heading {
  display: none;
}

.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1 {
  width: 100%;
  max-width: 100%;
}

.link {
  background: none;
  border: 0;
  padding: 0;
  color: #054a91;
  text-decoration: underline;
}

#ielts-loader img {
  max-width: 60px;
}

.woocommerce-additional-fields {
  display: none;
}

.select2-results__option {
  margin: 0;
  font-size: 14px;
}

.register-modal p a {
  color: #054A91;
  text-decoration: underline;
}

.xoo-el-notice-error,
.xoo-el-notice-success,
.xoo-el-notice-warning {
  font-size: 14px;
}

.play-audio-btn {
  background: #054A91;
  border: 1px solid #054A91;
  padding: 10px 20px;
  border-radius: 25px;
  color: #fff;
  cursor: pointer;
}

.play-audio-btn:hover {
  color: #054A91;
  background: #fff;
}

.woocommerce-account .woocommerce-MyAccount-content p a {
  color: #054A91;
  text-decoration: underline;
}

.woocommerce-address-fields label {
  display: block;
  width: 100%;
}

.woocommerce-address-fields p {
  width: 100%;
}

.woocommerce-address-fields__field-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 20px;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-input-wrapper,
.woocommerce-account .woocommerce-MyAccount-content p {
  width: 100%;
  display: block;
}

:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button {
  background: #054A91;
  border: 1px solid #054A91;
  padding: 12px 20px;
  border-radius: 25px;
  color: #fff;
  cursor: pointer;
  text-transform: capitalize;
}

:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:hover {
  color: #054A91;
  background: #fff;
}

.woocommerce-cart table.cart td.actions .coupon p {
  position: absolute;
  bottom: 0px;
}

.header-cart .mini-cart-content ul {
  padding: 0;
}

.header-cart .mini-cart-content li {
  list-style-type: none;
  margin: 0 0 10px 0;
  padding: 0;
  display: flex;
}

.header-cart .mini-cart-content li img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  object-position: center;
}

.header-cart .mini-cart-content .mini-cart-details {
  padding-left: 10px;
}

.header-cart .mini-cart-content h4 {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  margin: 0;
}

.header-cart .mini-cart-content h4 a {
  color: #000;
  text-decoration: none;
}

.header-cart .mini-cart-content .mini-cart-quantity-price {
  font-size: 12px;
  display: inline-block;
}

.value,
.quantity,
.single_add_to_cart_button,
.variations {
  display: none;
}

.header-cart .mini-cart-content .mini-cart-quantity-price {
  font-size: 12px;
}

.header-cart .mini-cart-content a.remove {
  color: #000;
  font-size: 20px;
  text-decoration:
    none;
  display: none;
}

.header-cart .woocommerce-mini-cart__buttons {
  margin: 0;
  display: flex;
  justify-content: space-between;
}

.header-cart .woocommerce-mini-cart__buttons a {
  display: inline-block;
  background: #054a91;
  text-decoration: none;
  color: #fff;
  padding: 7px 14px;
  border: 1px solid #054a91;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
}

form.submitting .btn::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 24px;
  background: url(../images/loading.svg)no-repeat;
  height: 25px;
  width: 25px;
  background-size: 30px;
  background-position: center;
}

.columns-2 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
}

.columns-2 h2 {
  font-size: 30px;
  line-height: 150%;
  font-weight: 400;
}

.columns-1 img,
.columns-2 img,
.columns-3 img {
  width: 100%;
  height: auto;
}

.column-2,
.column-1 {
  width: 50%;
  padding: 100px;
}

.column-3:has(img),
.column-2:has(img),
.column-1:has(img) {
  padding: 0;
}

.columns-2 h1 {
  font-size: 30px;
  line-height: 150%;
  font-weight: 400;
  background-color: #FFF952;
}

.columns-3 {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}

.columns-3 h2 {
  text-transform: uppercase;
  transform: rotate(-90deg);
  width: 250px;
  top: 50%;
  position: relative;
  right: 50%;
  margin: 0;
}

.columns-3 .column-2 {
  width: 60%;
}

.columns-3 .column-3,
.columns-3 .column-1 {
  width: 20%;
}

.columns-3-equal {
  display: flex;
  flex-wrap: wrap;
  padding: 0 20px;
}

.columns-3-equal .column-3,
.columns-3-equal .column-2,
.columns-3-equal .column-1 {
  width: 33.33%;
  padding: 60px 30px;
}


.columns-3-equal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.columns-2-divider {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}

.columns-2-divider .column-2,
.columns-2-divider .column-1 {
  width: 50%;
  padding: 100px;
}

.columns-2-divider .column-2 img,
.columns-2-divider .column-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.columns-1 {
  padding: 0;
}

.columns-1 .column-1 {
  width: 100%;
}

.columns-1 img {
  width: 100%;
}

.question-block[data-question-type="fill_blank"] p {
  margin: 0;
}

.question-block[data-question-type="option_select"] p {
  display: inline-block;
  margin: 0;
}

.question-block[data-question-type="individual_blank"] p {
  display: inline-block;
}

.question-block[data-question-type="individual_blank"] input[type="text"],
.question-block[data-question-type="fill_blank"] input[type=text] {
  max-width: 145px;
  width: 100%;
  margin: 5px 0 6px;
  border: 1px solid rgb(5, 74, 145, 0.7);
  border-radius: 24px;
  text-align: center;
  font-weight: 500;
}

.question-block[data-question-type="fill_blank"] input[type=text]::placeholder {
  color: rgb(5, 74, 145, 0.7);
}

.question-block[data-question-type="option_select"] select,
.question-block .paragraph-with-dropdown select {
  width: auto;
  padding: 8px 40px 8px 12px;
}

.question-block .paragraph-with-dropdown select {
  margin: 10px 0;
}

.question-wrap {
  display: flex;
  gap: 5px;
}

.question-wrap p.question-text {
  word-wrap: break-word;
}

form.ielts-test-form .table-with-input table input {
  width: fit-content;
  max-width: 180px;
  border: 1px solid rgba(5, 74, 145, 0.16);
  border-radius: 24px;
  text-align: center;
  font-weight: 400;
  color: rgb(0, 122, 255);
  background-color: rgba(40, 175, 250, 0.05);
  height: 34px;
}

form.ielts-test-form .table-with-input table input::placeholder {
  color: rgb(0, 122, 255, 0.7);
}

.table-with-input .with-table table,
.table-with-dropdown .with-table table {
  border: 1px solid #28AFFA;
  border-collapse: collapse;
}

.table-with-input .with-table,
.table-with-dropdown .with-table table,
.table-with-input .without-table {
  margin-top: 20px;
}

.table-with-input .with-table table th,
.table-with-input .with-table table td,
.table-with-dropdown .with-table table th,
.table-with-dropdown .with-table table td {
  border: 1px solid #28AFFA;
  padding: 10px;
}

.table-with-input .with-table table input {
  margin-top: 5px;
}

.without-table table {
  border-collapse: collapse;
}

.without-table table th,
.without-table table td {
  padding: 10px;
}

.with-table table .input-wrapper {
  display: inline-block;
}

.with-table table .input-wrapper .input-number {
  padding-right: 5px;
}

.with-table table select {
  width: auto;
  padding: 8px 40px 8px 12px;
}

.checkbox-question br {
  display: none;
}

.fill-blank-question .question-text p {
  margin-bottom: 0 !important;
}

.score-container .skills-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 1100px;
  margin: 30px auto 0;
}

.score-container .skill {

  font-size: 28px;
  font-weight: bold;
  text-align: center;
  position: relative;


}

.score-container .skill .circle {
  color: #054A91;
  padding: 20px;
  border-radius: 50%;
  max-width: 150px;
  width: 100%;
  height: 150px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid #054a91;
}

.score-container .skill-label,
.score-wrap p {
  font-size: 18px;
  font-weight: 500;
  margin-top: 10px;
}

.two-col-block.score-main-wrapper {
  justify-content: space-between;
}

.score-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}

.score-wrap .overall-score {
  background-color: #054A91;
  color: #fff;
  padding: 20px;
  border-radius: 50%;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  width: 200px;
  height: 200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 68px;
  font-weight: bold;
}

.score-wrap p {
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0;
  display: block;
  width: 100%;
  text-align: center;
  border-top: 2px solid;
  padding: 6px 0;
  border-right: 2px solid;
  border-left: 2px solid;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.score-container .with-border {
  padding-bottom: 12px;
  border-bottom: 2px solid #054A91;
}

.tab-wrapper {
  padding-top: 50px;
}

.tab-wrapper .nav-tab-wrapper {
  display: flex;
  /* flex-wrap: wrap; */
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  gap: 10px;
  overflow: auto;
}

.tab-wrapper .nav-tab-wrapper li {
  margin: 0;
}

.tab-wrapper .nav-tab-wrapper .nav-tab {
  display: inline-block;
  padding: 10px 20px;
  background: #ffff;
  color: #054A91;
  border: 1px solid #054A91;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tab-wrapper .nav-tab-wrapper .nav-tab:hover {
  background-color: #f4f2f2;
}

.tab-wrapper .nav-tab-wrapper .nav-tab.nav-tab-active {
  background: #054A91;
  color: #fff;
  border-color: #054A91;
}

.tab-wrapper .tab-content {
  border: 1px solid #054A91;
  padding: 20px;
  border-radius: 0 0 8px 8px;
  background: #fff;
}

.section-tab {
  display: none;
}

.section-tab.active {
  display: block;
}

/* Optional: Style table inside tab content */
.widefat {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.widefat th,
.widefat td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
}

.widefat th {
  background-color: #f8f8f8;
  font-weight: 600;
}

.widefat td:has(img.icon-img) {
  text-align: center;
}

.responsive-table {
  overflow: auto;
}

a.btn.btn-back {
  padding: 0;
  color: #054a91;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 0;
}

a.btn.btn-back:hover {
  color: #0d81fd;

}

a.btn.btn-back:hover svg polyline,
a.btn.btn-back:hover svg line {
  stroke: #0d81fd !important;
  /* Change the fill color if needed */
}

.header .my-account .icon {
  display: none;
}




.woocommerce-MyAccount-content .button {
  font-size: 14px !important;
  font-weight: 400 !important;
  padding: 10px 20px !important;
}

.woocommerce-MyAccount-content td {
  font-size: 14px;
}

.two-col-block.score-main-wrapper h4 {
  font-size: 18px;
}

.page-template-page-view-results table p,
.page-template-page-view-results table td {
  font-size: 14px;
}

.page-template-page-view-results h3 {
  font-size: 26px;
}

.page-template-page-view-results .nav-tab {
  font-size: 16px;
}

.woocommerce-customer-details h2,
.woocommerce-order-details h2 {
  font-size: 28px;
}

.woocommerce .woocommerce-customer-details address {
  font-size: 16px;
}

.course-card.free {
  background-color: rgba(40, 175, 250, 1);
}

.course-card.free .btn {
  background-color: #054A91;
  height: auto;
}

.course-card.free .btn:before {
  background-color: rgba(40, 175, 250, 1);
}

.mock-card-wrap .course-card .course-body .course-title-wrap p {
  font-size: 20px;
  margin: 0;
}

.course-card.free .badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #FFF952;
  color: rgba(5, 75, 145, 0.70);
  border-radius: 16px;
  padding: 10px 20px;
  bottom: auto;
}

.course-card.free .badge p {
  color: rgba(5, 75, 145, 0.70);
  margin: 0;
  text-transform: uppercase;
}

.course-card .badge {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 10px 16px;
  border-radius: 16px 0 0 0;
}

.course-card .badge p {
  margin: 0 !important;
  font-weight: 500;
  color: #fff;

}

.course-card.valid .badge {
  background-color: #43BE4C;

}

.course-card.lock .badge {
  background: #D24444;
}

.course-card .btn {
  font-weight: 700;
}

.course-card .btn span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.course-card .btn span svg {
  height: 2ch;
}

.course-card.free .btn span svg {
  display: none;
}

.course-card:not(.lock) .btn span svg {
  display: none;
}

.course-card.lock .btn {
  background-color: #ACACAC;
  border-color: #ACACAC;
}

.global-time-section {
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.global-time-section .global-time::before {
  content: "";
  display: inline-block;
  height: 30px;
  width: 30px;
  background: url('../images/stop-watch.png')no-repeat;
  background-position: center;
  margin-right: 2px;
  margin-top: -5px;
  background-size: 30px;
}

.global-time-section .global-time {
  display: inline-flex;
  align-items: center;
  margin-right: 5px;
  width: 80px;
}

.part-navigation {
  display: flex;
  width: 100%;
  margin-top: 20px;
  justify-content: flex-end;
  gap: 15px;
}

.part-navigation img {
  cursor: pointer;
  max-width: 40px;
}

.portrait.feature-block .video-block::after {
  padding-bottom: 150%;
}
.portrait.feature-block .feature-img::after {
  padding-bottom: 150%;
}


.question-block.celpip {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.question-block.celpip .left-block {
  width: calc(50% - 15px);
}

.question-block.celpip .right-block {
  width: calc(50% - 15px);
}

.ielts-part.celpip .two-col-block {
  margin-bottom: 20px;
}

.ielts-part.celpip .two-col-block .para-block {
  width: 100%;
  height: auto;
}

.ielts-part.celpip .two-col-block .para-block audio {
  max-width: none;
}

.ielts-part.celpip .ielts-test-form {
  background: linear-gradient(90deg, rgb(255, 255, 255) 50%, rgb(233, 247, 255) 50%);
  border-color: #E9F7FF;
}

.ielts-part.celpip .submit-button {
  width: 100%;
}

.ielts-part.celpip .submit-button button {
  margin-left: auto;
}

.video-thumbnail img,
.video-thumbnail video,
.video-thumbnail iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.video-thumbnail::after {
  content: "";
  display: block;
  padding-bottom: 160%;
}
 
.video-thumbnail {
  position: relative;
}
.slider-video {
  width: 100%;
  overflow: hidden;
}
.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.video-thumbnail img + div img {
  height: 60px;
  width: 60px !important; 
  position: absolute;
  z-index: 1;
  border: 0;   
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  opacity: 0.7;
}
.video-block .playPauseBtn,
.video-thumbnail .playPauseBtn{
  height: 60px;
  width: 60px;
  position: absolute;
  z-index: 1;
  border: 0;   
  left: 50%;
  top: 50%;
  background: url('../images/play.png')no-repeat; 
  background-size: 60px;
  transform: translate(-50%, -50%);
  cursor: pointer;
  opacity: 0.7;
}
.video-block .pause,
.playPauseBtn.pause {
  background: url('../images/pause.png')no-repeat; 
  background-size: 60px;
  opacity: 0;
}

.video-block:hover .playPauseBtn.pause ,
.video:hover .playPauseBtn.pause { 
  opacity: 1;
}
.space:has(.sucess-stories) {
  padding-bottom: 0;
}

.slider-video .youtube-wrapper {
  aspect-ratio: inherit !important;
  max-width: none !important;
}
.slider-video h1{
  color: #fff;
}

@media(max-width: 991px) {
  .question-block.celpip .left-block {
    width: 100%;
    padding: 20px;
  }

  .question-block.celpip .right-block {
    width: 100%;
    padding: 20px;
    background: #E9F7FF;
  }

  form.ielts-test-form .question-block,
  form.ielts-test-form {
    flex-wrap: wrap;
    height: auto;
  }

  .ielts-part.celpip .ielts-test-form {
    background: none;
    padding: 0;

  }

  .ielts-part.celpip #next-question {
    margin: 20px 20px 0 auto;
    padding: 5px 20px;
    font-size: 14px;
  }

  .ielts-part.celpip .submit-button {
    background: #e9f7ff;
    padding: 0 20px 20px 0px;
  }

  .ielts-part.celpip .ielts-test-form {
    gap: 0;
  }


}

@keyframes swing {
  20% {
    transform: rotate(3deg);
  }

  40% {
    transform: rotate(-3deg);
  }

  60% {
    transform: rotate(3deg);
  }

  80% {
    transform: rotate(-3deg);
  }

  100% {
    transform: rotate(0deg);
  }
}
.hero-btn {
  transition: transform 0.5s ease-in-out;
  transform-origin: center;
}
.hero-btn:hover {
  animation: swing 0.5s ease-in-out;
  display: inline-block;
}

@media (max-width:767px) {
  .hero h1 {
      font-size: 34px;
      line-height: normal;
    }
    .single-post-wrapper h1.post-title {
      font-size: 28px;
    }
}

.animated-blocks .service-block.lelts, .animated-blocks .service-block.pte {
  background: #28affa;
  border-radius: 50%;
  border: 1px solid #fff;
}
.animated-blocks .service-block:after {
  content: "";
  border: 2px solid #fff;
  width: 88%;
  height: 88%;
  position: absolute;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.animated-blocks .service-block.celpip {
  background: #054a91;
  border-radius: 50%;
  border: 1px solid #fff;
}
.hero-btn {
  position: fixed;
  right: 0;
  top: 230px;
  border-radius: 0;
  width: 45px;
  height: 180px;
  padding: 5px 5px;
  border: 0 !important;
  z-index: 9999;
}
.hero-btn span {
  display: block;
  transform: rotate(270deg);
  top: 132px;
}
.whatsapp-button:hover {
  background-color: #128C7E;
  color: #fff;
}
.whatsapp-button i {
  line-height: 60px;
}
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}
@keyframes backgroundShift {
  0% {
    background-color: #054A91;
  }
  50% {
    background-color: #28AFFA;
  }
  100% {
    background-color: #054A91;
  }
}

.bg-animate {
  animation: backgroundShift 2s ease-in-out infinite;
  color: #fff;
  border: none;
}

.three-columns-block {
  background-color: #F9F9F9;
  text-align: center;
}
.three-columns-block h2 {
    margin-bottom: 50px;
}
.columns-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.column-box {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  width: calc(33.33% - 30px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  text-decoration: none !important;
}
.column-box:hover {
  transform: translateY(-10px);
}
.column-icon {
  font-size: 40px;
  color: #007BFF;
  margin-bottom: 15px;
}
.column-title {
  font-size: 1.2rem;
  color: #333;
  font-weight: 600;
}
.column-box.box1 {
    background: #E8F7FF;
}
.column-box.box2 {
   background: #F0FFF5;
}
.column-box.box3 {
    background: #FFFEEC;
} 
.column-box img {
    width: 128px;
    height: 128px;
    object-fit: cover;
}
html{
  scroll-behavior: smooth;
}
.single-post-wrapper h1.page-title {
  margin-bottom: 70px;
  font-size: 48px;
    line-height: 110%;
}

.achivements-slider .section-title {
  margin-bottom: 0;
}
.achivements-slider .feature-block {
  background: #054a91 !important;
}
.achivements-slider h1 {
  color: #fff;
}
.achivements-slider .swiper-slide {
  margin-bottom: 0;
}
.achivements-slider .feature-block{
  padding-bottom: 0 !important;
}
.video-block .pause:focus, .playPauseBtn.pause:focus {
  outline: 0;
}
.achivements-slider .btn-secondary:hover:before {
  background: transparent;
}
.achivements-slider .btn-secondary:hover {
  background: #fff !important;
  color: #054a91;
}
.achivements-slider .small-card:after, .achivements-slider .small-card:before {
  display: none;
}
.achivements-slider .achievements-stories {
  z-index: 0;
}
.filter-serach input[name="search"] {
  background-image: url(/wp-content/uploads/2025/06/search.png);
  background-repeat: no-repeat;
  background-position: 93%;
  background-size: 15px;
}
.filter-serach input[name="search"] {
  padding: 11px 40px 11px 12px;
  border: 1px solid #cfe8ff;
  border-radius: 16px;
  background-color: #f5fbff;
  font-size: 16px;
    color: #1a3c75;
}
.filter-serach input[name="search"]::placeholder {
  font-size: 16px;
  color: #1a3c75;
  font-weight: 300;
}
.consultation-from form textarea {
  height: 120px;
}
.consultation-from form .cf-common-form .col-2 {
  max-width: 100%;
  padding: 0;
}

.consultation-from input::placeholder {
  font-size: 14px;
}
.consultation-from p {
  margin-bottom: 12px;
}
.consultation-from select {
  padding: 5px 10px !important;
  color: #7c8083;
}
.consultation-from input, .consultation-from select {
  font-size: 14px;
  background: #f3f3f3;
  padding: 10px 15px;
}
.consultation-from .submit input {
  width: 100%;
}
.consultation-from select {
  padding: 5px 10px !important;
  color: #7c8083;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%231a3c75" width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 16.5l-6-6 1.41-1.41L12 13.67l4.59-4.58L18 10.5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 24px;
  cursor: pointer;
}
.consultation-from .wpcf7-not-valid-tip {
  font-size: 12px;
  font-weight: 600;
}
.sticky-form .consultation-from {
  position: sticky;
  top: 40px;
}
.videoslider .owl-nav{
  display: block !important;
}
.videoslider .owl-nav .owl-prev {
  background-image: url(/wp-content/uploads/2025/06/left-arrow.png);
  position: absolute;
  transform: translate(-50%, -50%);
  left: 3%;
  top: 48%;
  width: 50px;
  height: 50px;
  background-size: 50px;
  background-repeat: no-repeat;
  background-position: center;
  font-size: 0;
  padding: 10px;
  filter: brightness(0) saturate(100%) invert(98%) sepia(9%) saturate(3155%) hue-rotate(348deg) brightness(98%) contrast(109%);
}
.videoslider .owl-nav .owl-next {
  background-image: url(/wp-content/uploads/2025/06/left-arrow.png);
  position: absolute;
  transform: translate(-50%, -50%);
  right: 0%;
  top: 45%;
  width: 50px;
  height: 50px;
  background-size: 50px;
  background-repeat: no-repeat;
  background-position: center;
  font-size: 0;
  padding: 10px;
  filter: brightness(0) saturate(100%) invert(98%) sepia(9%) saturate(3155%) hue-rotate(348deg) brightness(98%) contrast(109%);
    transform: rotate(180deg);
}
.inner-page-title {
  background: #054a91;
  padding: 50px 0;
  margin-bottom: 50px;
}
.inner-page-title h1 {
  color: #fff;
  margin-bottom: 0;
}

/* 24-06-2025 */

.select-question .question-number {
  float: left;
}
.select-question .question-text {
  margin-left: 18px;
}
button#next-question {
  overflow: visible;
}