@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;500;600;700;800;900&family=Quicksand:wght@400;500;600;700&display=swap');

:root {
  --white: #ffffff;
  --bg-white: #ffffff;
  --topbar-bg: #1a618d;
  --topbar-txt-color: #000000;
  --header-bg: #ffffff;
  --header-txt-color: #000000;
  --tts-buttton-bg: #ff2a2a;
  --tts-buttton-bg1: #1a618d;
  --tts-buttton-txt: #ffffff;
  --tts-buttton-txt1: #ffffff;
  --footer-Bg: #1a618d;
}

.light-background {
  background-color:
    color-mix(in srgb, var(--tts-buttton-bg1), transparent 92%);
}

body {
  color: #212529;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
}

a {
  color: var(--tts-buttton-bg);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--tts-buttton-bg), transparent 25%);
  text-decoration: none;
}

section,
.section {
  padding: 60px 0;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }

  .section-title h2 {
    font-size: 25px;
  }
}

.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.section-title p {
  margin-bottom: 0;
}

@media screen and (max-width:480px) {
  .section-title h2 {
    font-size: 25px;
  }
}


.hide {
  display: none;
}

/*================================*/

/* input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: inherit;
  box-shadow: none;
  transition: background-color 5000s ease-in-out 0s;
} */

input[type="text"] {
  font-family: inherit;
}

/*header*/
.login-navbar {
  background: linear-gradient(90deg, #ffffff, #ffffff);
}

.login-navbar .navbar-brand img {
  width: 180px;
  transition: transform 300ms ease;
}

.login-navbar .navbar-toggler {
  border: none;
  background: none;
  outline: none;
}

.login-navbar .navbar-toggler i {
  font-size: 24px;
  color: #000000;
  transition: transform 300ms ease;
}

.login-navbar .navbar-toggler:hover i {
  transform: rotate(90deg);
}

.login-navbar .collapse {
  text-align: right;
}

.login-navbar .navbar-nav {
  gap: 16px;
}

.login-navbar .navbar-nav .nav-item {
  position: relative;
}

.login-navbar .navbar-nav .nav-link {
  color: #000000;
  font-weight: 500;
  transition: background-color 300ms ease, transform 300ms ease;
  padding: 9.6px 19.2px;
}

.login-navbar .navbar-nav .nav-link:hover {
  color: var(--tts-buttton-bg);
}

.login-navbar .navbar-nav .nav-link:focus,
.login-navbar .navbar-nav .nav-link.active {
  background-color: rgba(255, 255, 255, 0.3);
}

.login-navbar .navbar-nav .agent_btn .nav-link {
  background: var(--tts-buttton-bg);
  color: var(--tts-buttton-txt);
  padding: 9.6px 19.2px;
  border-radius: 5px;
}

.login-navbar .navbar-nav .agent_btn .nav-link:hover {
  background: var(--tts-buttton-bg);
  color: var(--tts-buttton-txt);
}

@media (max-width: 991px) {
  .login-navbar .navbar-brand img {
    height: 50px;
  }

  .login-navbar .collapse {
    background: linear-gradient(90deg, #ffffff, #ffffff);
    padding: 16px;
  }

  .login-navbar .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .login-navbar .navbar-nav .nav-link {
    padding: 8px;
    margin: 4.8px 0;
    text-align: left;
  }
}



/*New Login */
.login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 0;
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(6, 106, 130, .85), rgb(255 42 42 / 57%)), url(https://picsum.photos/1600/900) center center / cover no-repeat;
}

.login-wrap {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

/* Banner Image & Carousel */
.login-page .banner_img {
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.login-page .carousel-inner img {
  height: 100%;
  object-fit: cover;
}

.login-page .carousel-inner .carousel-content {
  margin-top: 20px;
  color: #ffff;
}

.login-page .carousel-inner .carousel-content h2 {
  margin-bottom: 15px;
}

.login-page .carousel-inner .carousel-content .agent-slider-btn {
  background: #ffffff;
  font-weight: 500;
  border: none;
  color: var(--tts-buttton-bg);
  padding: 10px 20px;
  border-radius: 5px;
  transition: background 0.3s ease;
  display: inline-block;
}

.login-page .carousel-inner .carousel-content .agent-slider-btn:hover {
  background-color: var(--tts-buttton-bg);
  color: var(--tts-buttton-txt);
}

/* Form Styling */
.login-page .login-top h3 {
  color: #000000;
  margin-bottom: 0px;
  font-weight: bold;
  font-size: 22px;
}

.login-page .login-top p {
  margin-bottom: 30px;
  color: #777;
  font-size: 14px;
}

.password-toggle-icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  cursor: pointer;
}

/* Buttons */
.login-page .btn-primary {
  background: var(--tts-buttton-bg);
  border: none;
  color: var(--tts-buttton-txt);
  padding: 10px 20px;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.login-page .btn-primary:hover {
  background: var(--tts-buttton-bg1);
}

.login-btn-fill {
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
}

.forgot_passwd,
.forgotpasswd {
  color: var(--tts-buttton-bg);
  font-size: 14px;
  text-decoration: none;
}

.forgot_passwd:hover,
.forgotpasswd:hover {
  text-decoration: underline;
}

/* Error Message */
.error-message {
  color: #e74c3c;
  font-size: 12px;
  margin-top: 5px;
}

/* OTP Section */
.card-body {
  background: #fff;
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media screen and (max-width: 600px) {

  .login-wrapper,
  .login-wrap {
    padding: 20px;
  }

  .form-floating input {
    padding: 8px;
  }

  .login-page .btn-primary {
    padding: 8px 16px;
  }

  .footer-call-to .footer-cta {
    flex-direction: column;
    text-align: center;
  }

  .footer-call-to .footer-cta .btn {
    margin-top: 20px;
  }
}



/* OLD footer1*/
.login-footer {
  background-color: var(--footer-Bg);
  color: #ffffff;
  padding: 40px 0 40px 0;
}

.footer-call-to {
  margin-bottom: -70px;
  position: relative;
  z-index: 1;
  padding-top: 50px;
}

.footer-call-to .footer-cta {
  background-color: var(--tts-buttton-bg);
  color: var(--tts-buttton-txt);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  border-radius: 15px;
}

.footer-call-to .footer-cta h2 {
  margin-bottom: 0;
}

.footer-call-to .footer-cta .btn {
  color: var(--tts-buttton-bg);
  background-color: #ffffff;
  border-radius: 5px;
  font-weight: 500;
  padding: 8px 24px;
  display: inline-block;
}

/* 
.login-footer .footer-content {
  padding-bottom: 30px;
} */

.login-footer h5 {
  font-size: 18px;
  color: #ffffff;
  font-weight: 500;
  margin: 0 0 15px 0;
  border-bottom: 1px solid #ffffff8f;
  padding: 0 0 15px 0;
}

.login-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.login-footer ul li {
  display: block;
  margin-bottom: 10px;
}

.login-footer ul li a {
  font-size: 15px;
  color: rgb(255 255 255 / 76%);
  margin: 0px;
  display: flex;
  text-decoration: none;
  padding: 0 0px;
  font-weight: 400;
}

.login-footer ul li a:hover {
  color: var(--tts-buttton-bg);
}

.login-footer ul li a .adtip {
  width: 26px;
  height: 26px;
  line-height: 24px !important;
  text-align: center;
  border-radius: 4px;
  margin-right: 5px;
  border: solid 1px rgb(255 255 255 / 76%);
  color: rgb(255 255 255 / 76%);
  flex-shrink: 0;
}

.login-footer .fa-brands {
  font-size: 20px;
  color: #000000;
  transition: color 300ms;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  background-color: #ffffff;
}

.login-footer .fa-brands:hover {
  color: var(--tts-buttton-bg);
}

.copyright_bottoms {
  background: #282828;
  text-align: center;
  padding: 10px 0;
}

.copyright_bottoms p {
  font-size: 15px;
  color: #fff;
  margin: 0px;
  text-transform: capitalize;
  letter-spacing: 0;
}


.socialLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: end;
  padding: 0;
  margin: 0;
  list-style: none;
}

.socialLink li {
  margin-right: 8px;
  padding-right: 0;
  position: relative;
}


.socialLink li:last-child {
  margin-right: 0;
}

.socialLink li a {
  width: 32px;
  height: 32px;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.socialLink a.facebook {
  background-color: #3b5998;
}

.socialLink a.instagram {
  background-color: #bc2a8d;
}

.socialLink a.twitter {
  background-color: #00aced;
}

.socialLink a.linkedin {
  background-color: #007bb6;
}

.socialLink a.youtube {
  background-color: rgb(255, 0, 51);
}


.login-page .benefit-card {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: 18px;
  transition: .35s;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .04);
}

.login-page .benefit-card:hover {
  transform: translateY(-8px);
  border-color: #0d6efd;
  box-shadow: 0 15px 35px rgba(13, 110, 253, .12);
}

.login-page .benefit-icon {
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.login-page .benefit-content h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #212529;
}

.login-page .benefit-content p {
  margin: 0;
  color: #6c757d;
  line-height: 1.7;
  font-size: 13px;
}

@media (max-width:767px) {

  .login-page .benefit-card {
    padding: 22px;
  }

  .login-page .benefit-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    font-size: 22px;
  }

  .login-page .benefit-content h5 {
    font-size: 18px;
  }

}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/

.pricing .nav-tabs {
  border: 0px;
  background-color: color-mix(in srgb, #212529, transparent 96%);
  border: 1px solid var(--tts-buttton-bg1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: auto;
}

.pricing .nav-item {
  margin: 0px;
  padding: 0px 5px 0px 0px;
}

.pricing .nav-item:last-child {
  padding-right: 0px;
}

.pricing .nav-link {
  color: #2d465e;
  padding: 10px 30px;
  transition: 0.3s;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0px;
  margin: 0px;
  text-transform: uppercase;
}

@media (max-width: 468px) {
  .pricing .nav-link {
    padding: 8px 20px;
  }
}

.pricing .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.pricing .nav-link h4 {
  font-size: 14px;
  font-weight: 500;
  margin: 0px;
}

.pricing .nav-link:hover {
  border-color: color-mix(in srgb, #212529, transparent 80%);
}

.pricing .nav-link:hover h4 {
  color: var(--tts-buttton-bg1);
}

.pricing .nav-link.active {
  background-color: var(--tts-buttton-bg1);
  border-color: var(--tts-buttton-bg1);
}

.pricing .nav-link.active h4 {
  color: #ffffff;
}

.pricing .tab-content {
  margin-top: 50px;
}

.pricing .pricing-card {
  height: 100%;
  padding: 3rem 2rem;
  background: #ffffff;
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-card.popular {
  background: var(--tts-buttton-bg);
  color: #ffffff;
}

.pricing .pricing-card.popular h3,
.pricing .pricing-card.popular h4 {
  color: #ffffff;
}

.pricing .pricing-card.popular .price .currency,
.pricing .pricing-card.popular .price .amount,
.pricing .pricing-card.popular .price .period {
  color: #ffffff;
}

.pricing .pricing-card.popular .features-list li {
  color: #ffffff;
}

.pricing .pricing-card.popular .features-list li i.fa-check,
.pricing .pricing-card.popular .features-list li i.fa-x {
  color: #ffffff;
}

.pricing .pricing-card.popular .btn-light {
  background: #ffffff;
  color: var(--tts-buttton-bg);
}

.pricing .pricing-card.popular .btn-light:hover {
  background: color-mix(in srgb, #ffffff, transparent 10%);
}

.pricing .pricing-card .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  color: var(--tts-buttton-bg);
  padding: 0.5rem 15px;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.08);
}

.pricing .pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.pricing .pricing-card .price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: top;
  line-height: 1;
}

.pricing .pricing-card .price .amount {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.pricing .pricing-card .price .period {
  font-size: 15px;
  color: color-mix(in srgb, #212529, transparent 40%);
}

.pricing .pricing-card .description {
  margin-bottom: 0;
}

.pricing .pricing-card h4 {
  font-size: 1.125rem;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #dedede;
}

.pricing .pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0rem 0;
}

.pricing .pricing-card .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.pricing .pricing-card .features-list li:last-child {
  margin-bottom: 0;
}

.pricing .pricing-card .features-list li i {

  margin-right: 0.75rem;
  font-size: 14px;
}

.pricing .pricing-card .features-list li i.fa-check {
  color: green;
}

.pricing .pricing-card .features-list li i.fa-x {
  color: rgb(255, 0, 0);
}

.pricing .pricing-card .btn {
  width: 100%;
  margin: 20px 0;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
}

.pricing .pricing-card .btn.btn-primary {
  background: var(--tts-buttton-bg);
  border: none;
  color: #ffffff;
}

.pricing .pricing-card .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--tts-buttton-bg), transparent 15%);
}

/*about*/
.about .about-meta {
  color: var(--tts-buttton-bg);
  font-weight: 600;
  margin-bottom: 16px;
  display: inline-block;
}

.about .about-title {
  font-size: 32px;
  margin-bottom: 16px;
  line-height: 1.2;
  font-weight: 700;

}

@media (max-width: 992px) {
  .about .about-title {
    font-size: 32px;
  }
}

.about .about-description {
  margin-bottom: 32px;
  color: color-mix(in srgb, #212529, transparent 20%);
}

.about .feature-list-wrapper {
  margin-bottom: 32px;
}

.about .feature-list {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.about .feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.about .feature-list li i {
  color: var(--tts-buttton-bg);
  background-color:
    color-mix(in srgb, var(--tts-buttton-bg), transparent 92%);
  font-size: 16px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  transition: 0.3s;
}

.about .image-wrapper {
  position: relative;
}

.about .image-wrapper .small-image {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 45%;
  border: 8px solid #ffffff;
}

.info-wrapper a.btn {
  margin: 0px 0 20px 0;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  background: var(--tts-buttton-bg);
  border: none;
  color: var(--tts-buttton-txt);
  border-radius: 5px;
}

.info-wrapper a.btn:hover {
  background: var(--tts-buttton-bg1);
  color: var(--tts-buttton-txt1);
}

/*advantage*/

.advantage-section .container {
  padding: 3rem;
  border-radius: 15px;
  height: 100%;
  background-color:
    color-mix(in srgb, var(--tts-buttton-bg), transparent 92%);
}

.advantage-section .advantage-list {
  padding: 0;
  margin: 0;
}

.advantage-section .advantage-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  padding: 15px;
  border-radius: 10px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}

.advantage-section .advantage-list li:last-child {
  margin-bottom: 0;
}

.advantage-section .advantage-list i {
  color: var(--tts-buttton-bg);
  background-color:
    color-mix(in srgb, var(--tts-buttton-bg), transparent 92%);
  font-size: 16px;
  margin-right: 15px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  transition: 0.3s;
}

.advantage-section .advantage-list p {
  margin: 0;
}

/* Image Section */
.advantage-section .image-section {
  height: 100%;
}

.advantage-section .image-section img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

/* CTA Buttons */
.advantage-section .cta-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--tts-buttton-bg1);
  color: var(--tts-buttton-txt1);
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.25rem;
  transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  text-align: center;
}

.advantage-section .cta-btn:hover {
  background: var(--tts-buttton-bg);
  color: var(--tts-buttton-txt);
}

/* Join Network Section */
.advantage-section .join-network {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.advantage-section .join-network p {
  margin-bottom: 0;
  font-weight: 500;
}


/*services slider*/
.services-slider .owl-carousel .owl-stage-outer {
  padding: 10px 0;
}

.services-slider .owl-carousel .card {
  position: relative;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.services-slider .owl-carousel .card img {
  width: 100%;
  object-fit: cover;
  height: 220px;
}

.services-slider .owl-carousel .card-body {
  padding: 15px;
  text-align: center;
  background-color: #fff;
}

.services-slider .owl-carousel .card-title {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 0px;
}

.services-slider .owl-carousel .card:hover .card-body {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .services-slider .owl-carousel .card {
    margin: 10px 0;
  }
}

@media (max-width: 480px) {
  .services-slider .owl-carousel .card img {
    height: 150px;
  }

  .services-slider .owl-carousel .card-title {
    font-size: 0.875rem;
  }
}

.services-slider .owl-nav {
  display: flex;
  justify-content: center;
  padding-top: 20px;
}

.services-slider .owl-carousel .owl-nav button.owl-prev,
.services-slider .owl-carousel .owl-nav button.owl-next {
  background: var(--tts-buttton-bg1);
  color: var(--tts-buttton-txt1);
  border: none;
  outline: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  margin: 5px;
}

.services-slider .owl-carousel .owl-nav button.owl-prev:hover,
.services-slider .owl-carousel .owl-nav button.owl-next:hover {
  background-color: var(--tts-buttton-bg);
  color: var(--tts-buttton-txt);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.services-slider .owl-carousel .owl-nav button.owl-prev i,
.services-slider .owl-carousel .owl-nav button.owl-next i {
  font-size: 18px;
  color: #ffffff;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .section-title {
  padding-bottom: 20px;
}

.faq .faq-container .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, #3d4348, transparent 85%);
  border-radius: 15px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--tts-buttton-bg);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--tts-buttton-bg);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  transition: 0.3s;
  cursor: pointer;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  color: var(--tts-buttton-bg);
  background-color:
    color-mix(in srgb, var(--tts-buttton-bg), transparent 92%);
  line-height: 30px;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--tts-buttton-bg);
}

.faq .faq-container .faq-active {
  background-color: color-mix(in srgb, #ffffff, transparent 0%);
  border-color: color-mix(in srgb, var(--tts-buttton-bg), transparent 80%);
}

.faq .faq-container .faq-active h3 {
  color: var(--tts-buttton-bg);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--tts-buttton-bg);
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color:
    color-mix(in srgb, var(--tts-buttton-bg), transparent 92%);
  box-sizing: content-box;
  padding: 50px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
  border-radius: 15px;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: var(--tts-buttton-bg);
  margin: 0 1px;
  font-size: 35px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #ffffff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, #3d4348, transparent 40%);
  margin: 0;
}

.testimonials .testimonial-item p {
  margin: 0 auto 15px auto;
}



/*register page*/
.registration-page {
  padding: 70px 0;
  background: #f7faff;
}


/* NEW footer1*/
.footer-section {
  background: linear-gradient(135deg, #0b1f4d 0%, #0b1f4d 50%, #0b1f4d 100%);
  color: #cbd5e1;
  padding: 70px 0 25px;
  font-size: 15px;
}

.footer-section a {
  text-decoration: none;
  transition: .3s;
}

.footer-section p {
  color: #fff;
  line-height: 1.8;
  margin-bottom: 0;
}


.footer-section .footer-logo {
  width: 55px;
  height: 55px;
  background: var(--tts-buttton-bg);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: .3s;
}

.footer-section .footer-logo:hover {
  transform: rotate(-8deg);
}

.footer-section h4 {
  color: #fff;
  font-weight: 700;
}

.footer-section small {
  color: #fff;
}

.footer-section .footer-title {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer-section .footer-img {
  filter: brightness(0) invert(1);
}

/* .footer-section .footer-title::after{
    content:"";
    width:45px;
    height:3px;
    background:var(--tts-buttton-bg);
    position:absolute;
    left:0;
    bottom:0;
    border-radius:30px;
} */

.footer-section ul {
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  list-style: none;
  margin-bottom: 14px;
}

.footer-section ul li:last-child {
  margin-bottom: 0;
}

.footer-section ul li a {
  color: #fff;
}

.footer-section ul li a:hover {
  color: var(--tts-buttton-bg);
  padding-left: 8px;
}

.footer-section .footer-icon {
  width: 42px;
  height: 42px;
  background: #1e293b;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-section .footer-icon:hover {
  background: var(--tts-buttton-bg);
  color: #fff;
  transform: translateY(-4px);
}

.footer-section .fa-map-marker-alt,
.footer-section .fa-phone-alt,
.footer-section .fa-envelope,
.footer-section .fa-headphones {
  color: var(--tts-buttton-bg);
  width: 20px;
  margin-right: 10px;
  flex-shrink: 0;
  margin-top: 5px;
}

.footer-section li span {
  color: #fff;
}

.footer-section hr {
  border-color: rgba(255, 255, 255, .08);
  margin: 45px 0 25px;
}

.footer-section .nav-item {
  margin: 0;
}

.footer-section .nav-link {
  color: #fff;
  padding: .3rem .8rem;
}

.footer-section .nav-link:hover {
  color: var(--tts-buttton-bg);
}

@media (max-width:991px) {
  .footer-section .footer-logo {
    margin: auto;
  }

  .footer-section .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-section .d-flex.gap-2 {
    justify-content: center;
  }
}

@media (max-width:767px) {

  .footer-section {
    padding: 50px 0 20px;
  }

  .footer-section .nav {
    justify-content: center !important;
    margin-top: 15px;
  }

  .footer-section .text-md-start,
  .footer-section .text-md-end {
    text-align: center !important;
  }
}


.footer-middle {
  border-color: rgba(255, 255, 255, .12) !important;
}

.payment-icons img {
  max-height: 50px;
  max-width: 100%;
  /* background:#fff; */
  padding: 6px 10px;
  border-radius: 6px;
  transition: .3s;
  object-fit: contain;
  /* filter: grayscale(1); */
}

.payment-icons img:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

footer {
  background: #F1F4F7;
}

footer .footer-top {
  background: linear-gradient(184.15deg, #FFF 2.72%, #FFF2F2 95.98%);
  padding: 30px 0 0px;
}

footer .footer-top .footer-widget {
  margin-bottom: 20px;
}

footer .footer-top .footer-widget h5 {
  margin-bottom: 22px;
  position: relative;
}

footer .footer-top .footer-widget h5 {
  margin-bottom: 16px;
  font-size: 16px;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer .footer-top .footer-widget .footer-menu li {
  margin-bottom: 8px;
}

footer .footer-top .footer-widget .footer-menu li a {
  position: relative;
  color: #4E5561;
}

footer .footer-top .footer-widget .footer-menu li a:hover {
  color: var(--tts-buttton-bg);
}


.newsletterform {
  margin-top: 20px;
  margin-bottom: 15px;
  border-radius: 7px;
  background:
    color-mix(in srgb, #000000 5%, white 90%);
  border: 1px solid #dedede;
  display: flex;
}

.newsletterform input[type=email] {
  background-color: transparent;
  border: 0;
  padding: 4px 10px;
  width: 100%;
}

.newsletterform button[type=submit] {
  border: 0;
  box-shadow: none;
  background-color: var(--tts-buttton-bg);
  border-color: var(--tts-buttton-bg);
  padding: 8px 20px 10px 20px;
  border-radius: 7px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  color: var(--tts-buttton-txt);
  transition: 0.3s;
}




/* Contact Item */

.footer-contact {
  padding: 10px 0;
}

.contact-item {
  display: flex;
  align-items: center;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.contact-item .icon-wrapper {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tts-buttton-bg);
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.3s ease-in-out;
}

.contact-item i {
  font-size: 18px;
  color: var(--tts-buttton-txt);
}

.contact-details {
  margin-left: 10px;
}

.contact-details p {
  font-size: 14px;
  color: #666;
  margin-bottom: 3px;
}

.contact-details h6 {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  margin: 0;
}


footer .footer-bottom {
  padding: 10px 0 10px;
  border-top: #FBDCD7;
  background: #FEEDEB;
}

footer .footer-bottom p {
  margin-bottom: 0px;
}

.social-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

footer .footer-bottom .social-icon li {
  margin-right: 8px;
  padding-right: 0;
  position: relative;
}


footer .footer-bottom .social-icon li a {
  width: 32px;
  height: 32px;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

footer .footer-bottom .card-links {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

footer .footer-bottom .card-links li a {
  position: relative;
  margin-right: 8px;
  color: #393F4D;
}

footer .footer-bottom .card-links li a img {
  height: 25px;
  width: 35px;
}


footer .footer-bottom .social-icon a.facebook {
  background-color: #3b5998;
}

footer .footer-bottom .social-icon a.instagram {
  background-color: #bc2a8d;
}

footer .footer-bottom .social-icon a.twitter {
  background-color: #00aced;
}

footer .footer-bottom .social-icon a.linkedin {
  background-color: #007bb6;
}

footer .footer-bottom .social-icon a.youtube {
  background-color: rgb(255, 0, 51);
}


/****new code*/
.footer_mains {
  background: var(--footer-Bg);
  padding: 40px 0 40px 0;
  margin: 0px 0 0 0;
}

.footer_menu_tab h5 {
  font-size: 15px;
  color: #ffffff;
  margin: 0 0 10px 0;
  border-bottom: 1px solid #ffffff8f;
  padding: 0 0 15px 0;
}

.footer_menu_tab .nav-link {
  font-size: 13px;
  text-align: left;
  padding: 4px 5px 4px 0px;
  background: transparent;
  border: none;
  border-bottom: solid 1px transparent;
  border-radius: 0;
  color: #ffffffd4;
  font-weight: 500;
}

.footer_menu_tab .nav-link.active {
  color: #fff;
  background-color: transparent;
  border-bottom: solid 1px var(--tts-buttton-bg);
}

.season_content h5 {
  font-size: 15px;
  color: #ffffff;
  margin: 0 0 10px 0;
  border-bottom: 1px solid #ffffff8f;
  padding: 0 0 15px 0;
}

.season_content ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.season_content ul li {
  display: block;
  width: 50%;
  float: left;
}

.season_content ul li a {
  font-size: 13px;
  color: rgb(255 255 255 / 76%);
  margin: 0px;
  display: block;
  text-decoration: none;
  padding: 0 0px;
  font-weight: 400;
  line-height: 28px;
}


.fttab_links h2 {
  font-size: 18px;
  color: #ffffff;
  font-weight: 500;
  margin: 0 0 15px 0;
  border-bottom: 1px solid #ffffff8f;
  padding: 0 0 15px 0;
}

.fttab_links ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.fttab_links ul li {
  display: block;
  margin-bottom: 10px;
}

.fttab_links ul li:last-child {
  margin-bottom: 0;
}

.fttab_links ul li a {
  font-size: 15px;
  color: rgb(255 255 255 / 76%);
  margin: 0px;
  display: flex;
  text-decoration: none;
  padding: 0 0px;
  font-weight: 400;
}

.fttab_links ul li a .adtip {
  width: 26px;
  height: 26px;
  line-height: 24px !important;
  text-align: center;
  border-radius: 4px;
  margin-right: 5px;
  border: solid 1px rgb(255 255 255 / 76%);
  color: rgb(255 255 255 / 76%);
  flex-shrink: 0;
}

.fttab_links ul li a:hover {
  color: var(--tts-buttton-bg);
}


.payments {
  background: var(--footer-Bg);
  padding: 15px 0 15px;
  margin: 12px 0 0px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.175);
}

.payments ul {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.payments ul li {
  position: relative;
  margin-right: 8px;
  color: #393F4D;
}


.socialLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: end;
}

.socialLink li {
  margin-right: 8px;
  padding-right: 0;
  position: relative;
}


.socialLink li:last-child {
  margin-right: 0;
}

.socialLink li a {
  width: 32px;
  height: 32px;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.socialLink a.facebook {
  background-color: #3b5998;
}

.socialLink a.instagram {
  background-color: #bc2a8d;
}

.socialLink a.twitter {
  background-color: #00aced;
}

.socialLink a.linkedin {
  background-color: #007bb6;
}

.socialLink a.youtube {
  background-color: rgb(255, 0, 51);
}

.trustbox_sec .trustpilot-widget {
  position: relative;
  left: 0;
  top: 0;
  border: solid 1px #ffffff52;
  padding: 7px 10px 5px 10px;
  color: #333 !important;
  width: 204px;
  border-radius: 4px;
}


.copyright_bottoms {
  background: #282828;
  text-align: center;
  padding: 10px 0;
}

.copyright_bottoms p {
  font-size: 15px;
  color: #fff;
  margin: 0px;
  text-transform: capitalize;
  letter-spacing: 0;
}