@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", sans-serif;
  font-family: "Josefin Sans", sans-serif;
}
html,
body {
  overflow-x: hidden;
}
:root {
  --primary-color: #ffffff;
  --secondary-color: #000000;
  --tertiary-color: #8230ff;
}
/* common class  */
.container {
  max-width: 1525px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.container2 {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
a {
  display: inline-block;
  text-decoration: none;
}
ul {
  list-style-type: none;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.col-60 {
  width: 60%;
  padding: 0 15px;
}
.col-50 {
  width: 50%;
  padding: 0 15px;
}
.col-40 {
  width: 40%;
  padding: 0 15px;
}
.col-33 {
  width: 33.33%;
  padding: 0 15px;
}
.col-25 {
  width: 25%;
  padding: 0 15px;
}
.col-20 {
  width: 20%;
  padding: 0 15px;
}

/* header section  */
.hdr-sec {
  padding: 50px 0;
  background-color: var(--secondary-color);
  position: relative;
}

nav,
.navbar-collapsed,
.navbar-collapsed > ul {
  display: flex;
  align-items: center;
}
.navbar-collapsed {
  /* margin:  0 auto; */
  text-align: start;
}
.nav-logo {
  max-width: 233.06px;
}
.nav-logo > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nav-links {
  font-size: 16px;
  font-family: "Inter", sans-serif;
  color: var(--primary-color);
  margin-left: 50px;
  text-transform: capitalize;
}
.nav-links:hover {
  transition: 0.5s linear;
  transform: translateY(2px);
  color: var(--tertiary-color);
}
.nav-links {
  position: relative;
}
.nav-links::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--tertiary-color);
  /* transition: width 0.3s ease; */
}
.nav-links:hover::after {
  width: 100%;
  transition: 0.5s linear;
}

.nav-btn {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.primary-btn {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  font-size: 16px;
  font-family: "Inter", sans-serif;
  padding: 16px 14px;
}
.primary-btn:hover {
  border: 1px solid var(--tertiary-color);
  background-color: transparent;
  color: var(--tertiary-color);
  transition: 0.5s linear;
  transform: translateY(1px);
}


.secondary-btn {
 background-color: var(--tertiary-color);
  padding: 6px 14px;
  color: var(--primary-color);
  font-size: 16px;
   font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  margin-left: 14.38px;
}

.secondary-btn img {
  
  border-radius: 50%;
  padding: 1px 5px;
}
.secondary-btn:hover {
  border: 1px solid var(--tertiary-color);
  background-color: transparent;
  color: var(--tertiary-color);
  transition: 0.5s linear;
  transform: translateY(1px);
}

.navbar-toggler {
  display: none;
}
.dropdown {
  position: relative;
}

/* Dropdown menu */
.dropdown-content {
  position: absolute;
  top: 100%;
  left: 40px;
  min-width: 200px;
  width: 100%;
  padding: 10px 0;
  display: none;
}
.dropdown-content li a {
  font-size: 16px;
  color: var(--primary-color);
  font-family: "Inter", sans-serif;
  padding: 6px;
  max-width: 55px;
}

.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown:hover i {
  transform: rotate(180deg);
  transition: 0.5s;
}
/* banner section  */
.banner-sec {
  padding: 15px 0;
  background-color: var(--secondary-color);
  min-height: 390px;
}
.banner-content {
  position: relative;
}

.banner-box {
  background-color: #8230ff;
  width: 937px;
  position: absolute;
  top: 49px;
  bottom: 57px;
}

.banner-box p {
  font-size: 27px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  color: var(--primary-color);
  padding: 55.45px 0px 0px 0px;
  text-align: center;
}

.banner-box h1 {
  font-size: 49px;
  font-weight: 500;
  font-family: "Josefin Sans", sans-serif;
  color: var(--primary-color);
  max-width: 620px;
  line-height: 1.2;
  text-align: center;
  margin: 0 auto;
  text-transform: capitalize;
  padding: 30.55px 0px 0px 0px;
}
.banner-img {
  max-width: 687px;
}
/* .banner-img:hover{
 transition: 0.5s linear;
  transform: translateY(2px);
} */
.banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* video section  */
.video-sec {
  padding: 50px 0;
}
.video {
  position: relative;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: var(--tertiary-color);
  border-radius: 35px;
  padding: 20px 20px;
  color: var(--primary-color);
}
.play-btn:hover {
  
background-color: var(--secondary-color);
   cursor: pointer;
}

/* problem section  */
.problem-sec {
  padding: 50px 0;
}

.problem-img {
  max-width: 500px;
}
.problem-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 5px 5px 25px #b993f1;
}
.problem-img img:hover {
  transition: 0.5s linear;
  transform: translateY(3px);
   cursor: pointer;
}
.problem-part {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.problem-part h2 {
  font-size: 50px;
  font-weight: 400;
  font-family: "Josefin Sans", sans-serif;
  color: var(--secondary-color);
}
span {
  color: var(--tertiary-color);
}
.text1 {
  font-size: 18px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  color: var(--secondary-color);
  max-width: 470px;
  line-height: 1.4;
  margin: 20px 0px;
}
.text2 {
  font-size: 18px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  color: var(--secondary-color);
  max-width: 470px;
  line-height: 1.4;
}
/* about section  */
/* .about-sec {
  background-color: #f8f8f8;
} */
.about-sec{
 background-color: #f8f8f8
}
.about-sec:hover{
  background-image: linear-gradient(
    to top left,
    rgb(240, 238, 238),
    rgb(229, 245, 251)
  );
  cursor: pointer;
  transition: 0.5s linear;
  transform: translateY(2px);
}
.about-text1 {
  font-size: 18px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  color: var(--secondary-color);
  text-align: center;
  margin: 0 auto;
  max-width: 810px;
  padding: 67px 0px 0px 0px;
}
.about-sec h3 {
  font-size: 27px;
  font-weight: 400;
  font-family: "Josefin Sans", sans-serif;
  color: var(--secondary-color);
  text-align: center;
  margin: 0 auto;
  padding: 31px 0px 0px 0px;
}
.about-sec h4 {
  font-size: 18px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  color: var(--secondary-color);
  text-align: center;
  margin: 0 auto;
  padding: 16px 0px 61px 0px;
}
/* approach section  */
.approach-sec {
  padding: 50px 0px;
}
.approach-sec h2 {
  font-size: 50px;
  font-weight: 400;
  font-family: "Josefin Sans", sans-serif;
  color: var(--secondary-color);
  text-align: center;
}
.approach-sec p {
  font-size: 18px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  color: var(--secondary-color);
  text-align: center;
  margin: 0 auto;
  max-width: 935px;
  padding: 20px 0px;
}
.approach-part {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 50px 0px;
}
.approach-part h3 {
  color: var(--tertiary-color);
  font-size: 25px;
  font-weight: 400;
  font-family: "Josefin Sans", sans-serif;
}
.approach-part h4 {
  color: #868686;
  font-size: 18px;
  font-weight: 400;
  font-family: "Josefin Sans", sans-serif;
}
.approach-img {
  position: relative;
  background-color: var(--tertiary-color);
  color: var(--primary-color);
  border-radius: 50px;
  width: 49px;
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.approach-img::before {
  content: "";
  position: absolute;
  width: 66px;
  height: 66px;
  border: 2px dashed #800080;
  border-radius: 50%;
}
.approach-img:hover{
  background-color: var(--secondary-color);
  cursor: pointer;
 transition: 0.5s linear;
  transform: rotate(20deg);
}

.approach-img1 {
  position: relative;
  background-color: var(--tertiary-color);
  color: var(--primary-color);
  border-radius: 50px;
  width: 49px;
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.approach-img1::before {
  content: "";
  position: absolute;
  width: 66px;
  height: 66px;
  border: 2px dashed #800080;
  border-radius: 50%;
}
.approach-img1:hover{
  background-color:  rgb(229, 245, 251);
  cursor: pointer;
 transition: 0.5s linear;
  transform: rotate(20deg);
}




.icon:hover {
  cursor: pointer;
  transition: 0.5s linear;
  transform: translateY(2px);
}

.data-img {
  max-width: 652px;
  
}

.data-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.data-img img:hover{
  cursor: pointer;
  transition: 0.5s linear;
  transform: translateY(2px);
} 


/* solution section  */
.solution-sec {
  background-image: linear-gradient(
    to top left,
    rgb(240, 238, 238),
    rgb(229, 245, 251)
  );
}

.solution-text1 {
  text-align: center;
  font-size: 25px;
  font-weight: 400;
  font-family: "Josefin Sans", sans-serif;
  /* margin: 0 auto; */
  padding: 72px 0px 0px 0px;
}

.solution-sec h2 {
  font-size: 50px;
  font-weight: 500;
  font-family: "Josefin Sans", sans-serif;
  color: var(--secondary-color);
  max-width: 780px;
  text-transform: capitalize;
  margin: 0 auto;
  text-align: center;
  padding: 20px 0px 0px 0px;
}
.solution-text2 {
  font-size: 18px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  color: var(--secondary-color);
  text-align: center;
  margin: 0 auto;
  max-width: 945px;
  padding: 20px 0px 100px 0px;
}
/* footer section  */
.footer-sec {
  background-color: var(--secondary-color);
  
}
.footer-logo {
  padding: 54.12px 0px 0px 0px;
  
}
.footer-text {
  font-size: 14px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  color: var(--primary-color);
  max-width: 418px;
  line-height: 1.4;
  padding: 24px 0px;
}
.footer-btn {
  border: 1px solid var(--primary-color);
  background-color: transparent;
  color: var(--primary-color);
  font-size: 21px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  padding: 11px 30.5px;
}
.footer-btn:hover{
  border: 1px solid var(--tertiary-color);
  background-color: transparent;
  color: var(--tertiary-color);
  transition: 0.5s linear;
  transform: translateY(2px);
}
.footer-icon1 {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  width: 50px;
  height: 50px;
  padding: 12px 10px;
  border-radius: 5px;
  font-size: x-large;
  margin: 37.5px 0px;
}
.footer-icon1:hover{
   border: 1px solid var(--tertiary-color);
  background-color: transparent;
  color: var(--tertiary-color);
  transition: 0.5s linear;
  transform: translateY(2px);
}
.footer-icon2 {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  width: 50px;
  height: 50px;
  padding: 12px 10px;
  border-radius: 5px;
  font-size: x-large;
  margin: 37.5px 10.37px;
}
.footer-icon2:hover{
   border: 1px solid var(--tertiary-color);
  background-color: transparent;
  color: var(--tertiary-color);
  transition: 0.5s linear;
  transform: translateY(2px);
}
.footer-title {
  font-size: 20px;
  font-weight: 600;
  font-family: "Josefin Sans", sans-serif;
  color: var(--primary-color);
  padding: 54.12px 0px 0px 0px;
}
.footer-links {
  font-size: 18px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  color: var(--primary-color);
  line-height: 1.6;
  padding: 9.93px 0px 0px 0px;
}
hr {
  margin: 59px 0px 0px 0px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
}
.footer-bottom p {
  font-size: 16px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  color: var(--primary-color);
  padding: 20px 0px;
}
.footer-bottom p:hover{
  color: var(--tertiary-color);
}
.footer-bottom a {
  color: var(--primary-color);
  text-decoration: none;
}
.footer-bottom a:hover{
  color: var(--tertiary-color);
}
/* header media section  */
@media screen and (max-width: 1200px) {
  .navbar-collapsed {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
  }
  .nav-btn {
    display: none;
  }
  .navbar-toggler {
    display: block;
    margin-left: auto;
    font-size: 1.4rem;
    color: var(--secondary-color);
  }
  .navbar-collapsed ul{
    flex-direction: column;
  }
.nav-links{
  margin-top: 10px;
  color: var(--secondary-color);
}

}
@media screen and (max-width: 567px) {
  .nav-logo {
    max-width: 180px;
  }
}
/* banner media section  */
@media screen and (max-width: 1200px) {
  .banner-content {
    top: 0;
    bottom: 0;
  }
.banner-content{
  margin-top: 70px;
}
  .banner-box {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: auto;
    padding: 60px;
    margin: 0 auto;
  }

  .banner-box h1 {
    font-size: 34px;
  }

  .banner-box p {
    font-size: 22px;
  }
  .col-60,
  .col-40 {
    width: 100%;
  }
  .banner-img {
    max-width: 100%;
  }
  .banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-top: 100px;
  }
  .banner .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
/* video media section  */
@media screen and (max-width: 1200px) {
  .man-img {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .play-btn {
    width: 40px;
    height: 40px;
    padding: 12px 12px;
  }
}
/* problem media section  */
@media screen and (max-width: 993px) {
  .problem-c {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .problem-part h2 {
    font-size: 35px;
    margin-top: 15px;
  }
  .problem-part p {
    font-size: 14px;
  }
}
/* about media section  */
@media screen and (max-width: 576px) {
  .about-text1 {
    max-width: 680px;
    font-size: 14px;
  }
}
/* approach media section  */
@media screen and (max-width: 993px) {
  .approach-c {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    flex-direction: column;
  }
  .data-img {
    text-align: center;
    margin: 0 auto;
  }
}
@media screen and (max-width: 576px) {
  .approach-sec h2 {
    font-size: 35px;
  }
  .approach-sec p {
    font-size: 14px;
  }
  .approach-c {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    flex-direction: column;
  }
  .data-img {
    text-align: center;
    margin: 0 auto;
  }
  .approach-img::before {
    width: 45px;
    height: 45px;
  }
  .approach-img {
    width: 40px;
    height: 40px;
  }
  .approach-img1::before {
    width: 45px;
    height: 45px;
  }
  .approach-img1 {
    width: 40px;
    height: 40px;
  }
}
/* solution media section  */
@media screen and (max-width: 993px) {
  .solution-sec h2 {
    font-size: 35px;
  }
  .solution-text2 {
    font-size: 14px;
    max-width: 750px;
  }
}
/* footer media section  */
@media screen and (max-width: 1200px) {
  .footer-logo{
    font-size: medium;
  }
  .footer-c {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    flex-direction: column;
  }
  .footer-text {
    margin: 0 auto;
    text-align: center;
  }
  hr {
    margin-top: 20px;
  }
}
