@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}
/* ------------------------html------------------------ */
html {
  scroll-behavior: smooth;
  scroll-padding: 113px;
}
@media(max-width: 768px) {
  html {
  scroll-padding: 75px;
} 
}
body{
  font-family: poppins;
}
/* ------------------------loding Animation------------------------ */
#loading {
  width: 100%;
  height: 100vh;
  background: #fff;
  position: fixed;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lds-default {
  display: inline-block;
  position: relative;
  width: 150px;
  height: 150px;
  background: url(tt_img_new/tt-logo-loading.png) center no-repeat;
  background-size: 50%;
}
.lds-default div {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #9e4cce69;
  border-radius: 50%;
  animation: lds-default 1.8s linear infinite;
}
.lds-default div:nth-child(1) {
  animation-delay: 0s;
  top: 70px;
  left: 135px;
}
.lds-default div:nth-child(2) {
  animation-delay: -0.1s;
  top: 50px;
  left: 130px;
}
.lds-default div:nth-child(3) {
  animation-delay: -0.2s;
  top: 35px;
  left: 120px;
}
.lds-default div:nth-child(4) {
  animation-delay: -0.3s;
  top: 20px;
  left: 105px;
}
.lds-default div:nth-child(5) {
  animation-delay: -0.4s;
  top: 11px;
  left: 90px;
}
.lds-default div:nth-child(6) {
  animation-delay: -0.5s;
  top: 5px;
  left: 70px;
}
.lds-default div:nth-child(7) {
  animation-delay: -0.6s;
  top: 11px;
  left: 50px;
}
.lds-default div:nth-child(8) {
  animation-delay: -0.7s;
  top: 20px;
  left: 35px;
}
.lds-default div:nth-child(9) {
  animation-delay: -0.8s;
  top: 35px;
  left: 20px;
}
.lds-default div:nth-child(10) {
  animation-delay: -0.9s;
  top: 50px;
  left: 10px;
}
.lds-default div:nth-child(11) {
  animation-delay: -1s;
  top: 70px;
  left: 5px;
}
.lds-default div:nth-child(12) {
  animation-delay: -1.1s;
  top: 90px;
  left: 10px;
}
.lds-default div:nth-child(13) {
  animation-delay: -1.2s;
  top: 105px;
  left: 20px;
}
.lds-default div:nth-child(14) {
  animation-delay: -1.3s;
  top: 120px;
  left: 35px;
}
.lds-default div:nth-child(15) {
  animation-delay: -1.4s;
  top: 129px;
  left: 50px;
}
.lds-default div:nth-child(16) {
  animation-delay: -1.5s;
  top: 135px;
  left: 70px;
}
.lds-default div:nth-child(17) {
  animation-delay: -1.6s;
  top: 129px;
  left: 90px;
}
.lds-default div:nth-child(18) {
  animation-delay: -1.7s;
  top: 120px;
  left: 105px;
}
.lds-default div:nth-child(19) {
  animation-delay: -1.8s;
  top: 105px;
  left: 120px;
}
.lds-default div:nth-child(20) {
  animation-delay: -1.9s;
  top: 90px;
  left: 130px;
}
@keyframes lds-default {
  0%, 20%, 80%, 100% {
    transform: scale(1);
    background: #9f4cce;
  }
  50% {
    transform: scale(1.8);
    background: #9e4cce8e;
  }
}
/* ------------------------------ menu ------------------------------ */
nav {
  width: 100%;
  height: 113px;
  position: fixed;
  background: #fff;
  z-index: 100;
  box-shadow: rgba(10, 10, 10, 0.671) 0px 5px 10px -8px;
}
.navbar {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.logo {
  width: 25%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo img {
  width: 35%;
  margin-left: 25%;
}
.menu {
  width: 75%;
  height: 100%;
  position: relative;
}
.menu ul {
  width: 100%;
  height: 85%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
.menu ul li {
  display: inline-block;
  padding: 0 3%;
}
.menu ul li a {
  display: block;
  color: #9f4cce;
  font-size: 1rem;
  font-weight: 400;
  font-family: poppins;
  text-decoration: none;
  list-style: none;
  position: relative;
}
.menu ul li a::before {
  content: "";
  width: 0%;
  height: 2px;
  background: #9f4cce;
  transition: all 0.3s ease;
  position: absolute;
  top: 25px;
  left: 0;
}
.menu ul li:hover a::before {
  width: 100%;
}
.menu ul li a.textcolor {
  color: #9f4cce;
}
.menu_bar {
  display: none;
}
.close-btn {
  display: none;
}
/* ------------------------------ solution-menu ------------------------------ */
.solution {
  position: relative;
}
.solution .solution_menu {
  display: none;
  position: absolute;
  top: 65px;
  left: 0;
  width: 200px;
  height: 151px;
  background: #fff;
  padding-top: 5%;
  text-align: left;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px,
    rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 10px 8px,
    rgba(0, 0, 0, 0.09) 0px 16px 16px;
  z-index: 99;
}
.solution .solution_menu li {
  width: 100%;
  display: inline-block;
  line-height: 30px;
}
.solution .solution_menu li a {
  width: 100%;
  color: #9f4cce;
  font-size: 0.77rem;
  font-weight: 400;
  font-family: poppins;
  cursor: pointer;
  padding: 5px;
}
.solution .solution_menu li a::before {
  content: "";
  width: 0;
  height: 0;
}
.solution .solution_menu.solution_menushow {
  display: inline-block;
}
/* ------------------------------ solution-menu-end ------------------------------ */
/* ------------------------------ menu-media queries ------------------------------ */
@media (max-width: 1200px){
  .logo {
    width: 25%;
  }
  .logo img {
    width: 45%;
  }
  .menu ul li {
    padding: 0 2%;
  }
}
@media (max-width: 992px) {
  .nav {
    height: 113px;
  }
  .navbar {
    height: 100%;
  }
  .logo {
    width: 25%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .logo img {
    width: 60%;
  }
  .menu {
    width: 100%;
    height: auto;
    background: #fff;
    padding-top: 75px;
    position: fixed;
    top: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    right: -100%;
  }
  .menu.show_menu {
    right: 0;
    display: inline-block;
  }
  .menu ul {
    width: 100%;
    height: auto;
    display: inline-block;
  }
  .menu ul li {
    width: 100%;
    height: 60px;
    display: inline-block;
    text-align: center;
  }
  .menu ul li a {
    width: 100%;
    height: 60px;
    display: block;
    color: #9f4cce;
    font-size: 1rem;
    font-weight: 400;
    font-family: poppins;
    text-decoration: none;
    list-style: none;
    position: relative;
  }
  .menu ul li:hover a::before {
    width: 0%;
  }
  .menu ul li a.textcolor {
    color: #9f4cce;
  }
  .solution {
    width: 100%;
    position: relative;
  }
  .solution .solution_menu {
    width: 100%;
    height: 150px;
    position: relative;
    top: -10px;
    left: 0;
    background: #f0f0f0;
    box-shadow: none;
    overflow: hidden;
    margin: 1px !important;
    padding: 0;
  }
  .solution .solution_menu li {
    width: 100%;
    height: 50px;
    display: inline-block;
    position: relative;
    line-height: 30px;
    padding: 0;
  }
  .solution .solution_menu li a {
    width: 100%;
    height: 100%;
    color: #8d33c2;
    font-size: 0.9rem;
    font-weight: 400;
    font-family: poppins;
    text-align: center;
    position: relative;
    padding: 0;
    padding-top: 10px;
  }
  .menu_bar {
    width: 20%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .menu_bar .fa {
    color: #9f4cce;
    font-size: 1.7rem;
    padding: 0;
  }
  .close-btn {
    display: inline-block;
    position: absolute;
    top: 5%;
    right: 10%;
  }
  .close-btn .fa-times
   {
    color: #9f4cce;
    font-size: 1.7rem;
  }
}
@media (max-width: 768px){
  nav{
        height: 75px;
    }
}
@media (max-width: 600px){
  nav{
        height: 75px;
    }
      .logo img {
    width: 65%;
    height: 55%;
  }
  .menu {
    height: auto;
  }
  .menu_bar .fa {
    color: #9f4cce;
    font-size: 1.5rem;
    padding: 0;
  }
}
@media (max-width: 500px) {
  nav,
  .navbar {
    height: 75px;
  }
  .logo img {
    width: 80%;
    height: 70%;
  }
  .menu {
    height: auto;
  }
  .menu_bar .fa {
    color: #9f4cce;
    font-size: 1.5rem;
    padding: 0;
  }
}
@media (max-width: 400px) {
  nav,
  .navbar {
    height: 75px;
  }
  .logo img {
    width: 90%;
    height: 70%;
  }
  .menu {
    height: auto;
  }
}
@media (max-width: 350px) {
  .logo img {
    width: 95%;
    height: 70%;
    margin-top: 1%;
    margin-left: 10%;
  }
}
/* ------------------------------ menu-media queries end------------------------------ */
/* ------------------------------ menu-end ------------------------------ */

/* ------------------------------ footer ------------------------------ */
.contact_footer {
  width: 100%;
  height: 60px;
  background: #fff;
  position: relative;
  justify-content: center;
  align-items: center;
  display: flex;
}
.contact_footer .footer {
  width: 100%;
  display: flex;
  justify-content: center;
}
.contact_footer .footer p {
  color: #000;
  font-size: 1rem;
  font-family: poppins;
  font-weight: 400;
  margin-bottom: 0;
  text-align: center;
}
@media (max-width: 500px) {
  .contact_footer .footer p {
    font-size: 0.6rem;
  }
}
/* ------------------------------ footer-end ------------------------------ */
/* ------------------------------ popup ------------------------------ */
.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.popup {
  width: 350px;
  height: 280px;
  padding: 30px 20px;
  background: #fff;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 2px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  border-radius: 10px;
  z-index: -1;
  text-align: center;
  opacity: 0;
  top: -200px;
  transform: translate(-50%, -50%) scale(0.5);
  transition: opacity 0.3s ease-in-out, top 1s ease-in-out,
    transform 1s ease-in-out;
}
.popup.active {
  z-index: 99;
  opacity: 1;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.3s cubic-bezier(0.18, 0.89, 0.43, 1.19);
}
.popup .cs_title {
  color: #9f4cce;
  font-size: 30px;
  font-family: poppins;
}
.popup .cs_button button {
  color: #fff;
  background: #9f4cce;
  height: 30px;
  padding: 0px 20px;
  cursor: pointer;
  outline: none;
  border: none;
  font-size: 1rem;
  font-weight: 400;
  border-radius: 10px;
  transition: all 0.3s ease;
}
@media (max-width: 500px) {
  .center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .popup {
    width: 65%;
    height: 45%;
  }
}
@media (max-width: 400px) {
  .popup {
    width: 90%;
    height: 40%;
  }
}
/* ------------------------------ popup-end ------------------------------ */