@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

:root {
  --font-rubik: "Rubik", sans-serif;
  --font-jost: "Jost", sans-serif;
  --white: #ffffff;
  --bg-white: #ffffff;
  --topbar-bg: #000000;
  --topbar-txt-color: #ffffff;
  --header-bg: #ffffff;
  --header-txt-color: #000000;
  --tts-buttton-bg: #1a70a2;
  --tts-buttton-bg1: #f38221;
  --tts-buttton-txt: #ffffff;
  --tts-buttton-txt1: #ffffff;
  --footer-Bg: #ffffff;
  --box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

/* ::-webkit-scrollbar {
	width: 5px;
	height: 5px;
	border-radius: 10px;
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, var(--tts-buttton-bg), var(--tts-buttton-bg1));
	border-radius: 10px;
	background-clip: content-box;
	transition: background 0.3s ease, transform 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(180deg, var(--tts-buttton-bg1), var(--tts-buttton-bg));
	transform: scale(1.1);
}

::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 10px;
	box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-track:hover {
	background: #e9ecef;
} */

.form-control,
.form-select {
  padding: 10px;
  font-size: 14px;
  color: #292323;
}

.form-control:focus,
.form-select:focus {
  box-shadow: none;
  outline: 0;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: #333;
  font-family: var(--font-rubik);
}

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;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-rubik);
}

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

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: #292323;
  padding: 30px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

.mb-120 {
  margin-bottom: 120px;
}


.primary-btn4 {
  padding: 5px;
  border: 1px dashed var(--tts-buttton-bg1);
  border-radius: 2px;
  display: inline-block;
}

.primary-btn4 span {
  border-radius: 5px;
  background-color: var(--tts-buttton-bg1);
  font-weight: 600;
  color: var(--tts-buttton-txt1);
  letter-spacing: 0.48px;
  text-transform: capitalize;
  line-height: 1;
  padding: 17px 41px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 0.5s, transform 0.5s;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.primary-btn4 span::after {
  content: "";
  position: absolute;
  top: 0%;
  left: 15%;
  right: -20%;
  bottom: 0;
  height: 150%;
  width: 150%;
  background-color: #ffffff;
  border-radius: 2px;
  transform: skewX(45deg) scale(0, 1);
  transition: transform 0.5s ease-out;
  z-index: -1;
}

.primary-btn4:hover span {
  color: var(--tts-buttton-bg1);
}

.primary-btn4:hover span::after {
  transform: skewX(45deg) scale(1, 1);
}

.primary-btn4.two span {
  padding: 17px 22px;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  margin-bottom: 30px;
}

.section-title .badge {
  position: relative;
  padding-left: 25px;
  background: rgba(207, 52, 37, 0.1);
  color: #CF3425;
}

.section-title .badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  left: 10px;
  top: 50%;
  background: #CF3425;
  transform: translateY(-50%);
}

.section-title h2 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 25px;
  position: relative;
}

.section-title h2 .text-primary {
  color: #CF3425 !important;
  opacity: 1;
}

.sec-head-btn {
  margin-bottom: 40px;
  border-radius: 40px;
  padding: 9px 16px;
  font-size: 14px;
  transition: all 0.5s;
  font-weight: 500;
  background-color: var(--tts-buttton-bg1);
  border: 1px solid var(--tts-buttton-bg1);
  color: var(--tts-buttton-txt);
}

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


.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 {
  max-height: 60px;
  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 .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-bg1);
  color: var(--tts-buttton-txt1);
  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);
  }

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

  .login-navbar .navbar-nav .nav-link {
    padding: 5px;
    text-align: left;
  }
}

.login-5 {
  background: url('../../webroot/img/login/login-banner.png') top left repeat;
  background-size: cover;
  top: 0;
  width: 100%;
  text-align: center;
  bottom: 0;
  opacity: 1;
  z-index: 999;
  min-height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
}

.login-5 .form-section a {
  text-decoration: none;
}

.login-5 .form-inner {
  max-width: 570px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 70px 90px;
  background: #fff;
  position: relative;
  z-index: 0;
  box-shadow: 0 0 35px rgb(0 0 0 / 10%);
}

.login-5 .form-inner:before {
  content: "";
  width: 75px;
  height: 150px;
  position: absolute;
  top: 30px;
  right: 0;
  background: url('../../webroot/img/login/login-left.png') top left repeat;
  background-size: cover;
  z-index: -1;
}

.login-5 .form-inner:after {
  content: "";
  width: 75px;
  height: 150px;
  position: absolute;
  bottom: 30px;
  left: 0;
  background: url('../../webroot/img/login/login-right.png') top left repeat;
  background-size: cover;
  z-index: -1;
}

.login-5 .form-section .extra-login {
  float: left;
  width: 100%;
  text-align: center;
  position: relative;
}

.login-5 .form-section .extra-login::before {
  position: absolute;
  left: 0;
  top: 10px;
  width: 100%;
  height: 1px;
  background: #e4e4e4;
  content: "";
}

.login-5 .form-section .extra-login>span {
  width: auto;
  float: none;
  display: inline-block;
  padding: 1px 20px;
  z-index: 1;
  position: relative;
  font-size: 14px;
  color: #535353;
  text-transform: capitalize;
  background: #fff;
}

.login-5 .form-section p {
  color: #535353;
  margin-bottom: 0;
}

.login-5 .form-section p a {
  color: var(--tts-buttton-bg);
}

.login-5 .form-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.login-5 .form-section .thembo {
  margin-left: 4px;
}

.login-5 .form-section h3 {
  margin: 0 0 25px;
  font-size: 24px;
  font-weight: 400;
  color: #040404;
}

.login-5 .form-section .form-group {
  margin-bottom: 25px;
}

.login-5 .form-section .form-box {
  float: left;
  width: 100%;
  text-align: left;
  position: relative;
}


.login-5 .form-section .form-control {
  padding: 14.5px 0;
  outline: none;
  background: transparent !important;
  color: #535353;
  border-radius: 0;
  border: none;
  border-bottom: solid 2px #bdbdbd;
}

.login-5 .form-section .form-box i {
  position: absolute;
  top: 15px;
  right: 0;
  font-size: 23px;
  color: #777575;
}

.login-5 .form-section .checkbox .terms {
  margin-left: 3px;
}

.login-5 .form-section .terms {
  margin-left: 3px;
}

.login-5 .form-section .form-check {
  padding-left: 25px;
  color: #535353;
}

.login-5 .form-section .form-check .form-check-input {
  margin-left: -25px;
}

.login-5 .form-section .form-check a {
  color: #535353;
}

.login-5 .form-check-input:focus {
  border-color: #ff013d;
  outline: 0;
  box-shadow: none;
}

.login-5 .form-check-input:checked {
  background-color: var(--tts-buttton-bg);
  color: var(--tts-buttton-txt);
  border-color: var(--tts-buttton-bg);
  color: var(--tts-buttton-txt) !important;
}

.login-5 .form-section .form-check-input {
  width: 20px;
  height: 20px;
  margin-top: 0;
  vertical-align: top;
  position: absolute;
  border: 2px solid #c5c3c3;
  border-radius: 0;
}

.login-5 .form-section a.forgot-password {
  color: #535353;
  float: right;
}

.login-5 .logo img {
  margin-bottom: 15px;
  height: 60px;
}

.login-5 .btn-theme {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%;
  color: #ffffff;
  overflow: hidden;
  overflow: hidden;
  text-transform: capitalize;
  display: inline-block;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  cursor: pointer;
  font-size: 17px;
  font-weight: 400;
  border-radius: 3px;
  border: none;
}

.login-5 .btn-theme:hover {
  color: #fff;
}

.login-5 .btn-theme:hover::before {
  left: 0%;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.login-5 .btn-theme:before {
  position: absolute;
  content: '';
  left: 96%;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 1;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  transform: skewX(-25deg);
}

.login-5 .btn-theme span {
  position: relative;
  z-index: 1;
}

.login-5 .btn-check:focus+.btn,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

.login-5 .btn-lg {
  padding: 0 22px;
  line-height: 50px;
}

.login-5 .btn-md {
  padding: 0 45px;
  line-height: 50px;
}

.login-5 .btn {
  box-shadow: none !important;
}

.login-5 .btn-primary {
  background: var(--tts-buttton-bg);
  color: var(--tts-buttton-txt);
}

.login-5 .btn-theme:before {
  background: #42b4e9;
}

.login-5 .form-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.login-5 .social-list {
  padding: 0;
  text-align: center;
}

.login-5 .social-list li a {
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  bottom: 15px;
}

.login-5 .social-list li {
  display: inline-block;
}

.login-5 .social-list li a {
  margin: 1px;
  font-size: 14px;
  font-weight: 500;
  width: 110px;
  height: 40px;
  line-height: 40px;
  border-radius: 3px;
  display: inline-block;
  text-align: center;
  color: #fff;
}

.login-5 .social-list li a:hover {
  text-decoration: none;
}

.login-5 .facebook-bg {
  background: #4867aa;
}

.login-5 .facebook-bg:hover {
  background: #3d5996;
  color: #fff;
}

.login-5 .twitter-bg {
  background: #33CCFF;
}

.login-5 .twitter-bg:hover {
  background: #56d7fe;
}

.login-5 .google-bg {
  background: #db4437;
}

.login-5 .google-bg:hover {
  background: #dc4e41;
}

@media (max-width: 992px) {
  .login-5 .form-inner {
    padding: 50px 35px;
    font-size: 14px;
  }

  .login-5 .form-inner:before {
    width: 35px;
    height: 70px;
  }

  .login-5 .form-inner:after {
    width: 35px;
    height: 70px;
  }

  .login-5 .form-section h3{
    font-size: 18px;
  }

  .login-5 .form-section p a{
    display: block;
    color: var(--tts-buttton-bg);
  }
}

/** Login 5 end **/

footer {
  background-image: url('../../../webroot/img/bg/footer-bg2.png'), linear-gradient(180deg, #1d231f 0%, #1d231f 100%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  color: rgba(255, 255, 255, 0.6);
}

/* Footer Top Area */
footer.footer-three .footer-top {
  padding-bottom: 50px;
  padding-top: 50px;
}

footer.footer-three .footer-about img {
  max-height: 50px;
  margin-bottom: 20px;
}

footer.footer-three .footer-widget .widget-title {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 20px;
}

/* Footer Widgets */
footer.footer-three .footer-widget h5 {
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.66px;
  margin-bottom: 0px;
}

/* footer.footer-three .footer-widget h5::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    height: 1px;
    width: 100%;
    background: #e0e0e0;
    border-radius: 30px;
} */

footer.footer-three .footer-about {
  max-width: 416px;
  width: 100%;
}

.footer-about p {
  margin-bottom: 16px;
}

.footer-about h5::before {
  display: none;
}

.footer-input .input-group {
  width: 100%;
  border: 1px solid #7D828C;
  padding: 8px 16px;
  border-radius: 54px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-input .input-group-text {
  background-color: transparent;
  border: none;
  border-radius: 50%;
  color: #ffffff;
}

.footer-input .form-control {
  flex: 1;
  border: none;
  box-shadow: none;
  padding: 0 10px;
  height: 38px;
  background-color: transparent;
  color: #ffffff;
}

.footer-input .form-control::placeholder {
  color: #fff;
}

.footer-input .btn {
  background-color: var(--tts-buttton-bg1);
  border: 1px solid var(--tts-buttton-bg1);
  color: var(--tts-buttton-txt1);
  border-radius: 54px !important;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 500;
}

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

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

.footer-menu a {
  text-decoration: none;
  transition: color 0.3s ease;
  color: inherit;
}

.footer-menu a:hover {
  color: var(--tts-buttton-bg1);
}

/* Social Icons */
.social-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  list-style: none;
  margin-bottom: 0px;
}

.social-icon li a {
  width: 42px;
  height: 42px;
  background: #FFF;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease, color 0.3s ease;
}

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

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

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

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

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


.avatar {
  width: 42px;
  height: 42px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-weight: 500;
  position: relative;
}

footer.footer-three .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

footer.footer-three .footer-bottom p {
  color: #ffffff;
  margin-bottom: 0px;
}

footer .footer-bottom p strong {
  color: #ffffff;
}

.footer-contact {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .footer-input .input-group {
    padding: 10px;
  }

  footer{
    font-size: 14px;
  }
  footer.footer-three .footer-widget h5{
    font-size: 15px;
  }
 
}

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;
  margin-bottom: 0px;
}

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

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


.login-5 .form-section .form-box .error {
  font-size: 14px;
}

