@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  font-weight: 400;
}

/**
 * Firefox specific rule
 */

 @-moz-document url-prefix() {
  body {
    font-weight: lighter !important;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Rubik", sans-serif;
}

.closebtn {
  display: none;
}

html {
  scroll-behavior: smooth;
}

:target:before {
  content: "";
  display: block;
  height: 100px;
  margin: -100px 0 0 0;
}


body {
  background: #fff;
}

a{
  text-decoration: none;
}

button{
  text-decoration: none;
}
nav {
  width: 100%;
  position: fixed;
  display: flex;
  justify-content: space-between;
  padding: 20px 15%;
  top: 0;
  left: 0;
  z-index: 10;
  align-items: self-end;
}

nav ul li {
  display: inline-block;
  list-style-type: none;
  padding: 0px 25px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 50px;
  text-transform: uppercase;
}

nav ul li a {
  text-decoration: none;
  color: #000;
}

.logo {
  width: 200px;
}

.nav-btn {
  background: #000000;
  color: #fff;
  padding: 15px 25px;
  border-radius: 50px;
  border: none;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  font-size: 16px;
}

a.nav-btn {
  text-decoration: none;

}

.nav-btn:hover {
  background: #1355ff;
  transition-duration: 0.4s;
}

.nav-btn:active {
  transition-duration: 0.4s;
  background: #003ddb;
}

.nav-btn img {
  width: 15px;
}

.header {
  width: 100%;
  min-height: 100vh;
  padding: 20px 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 180px;
  text-align: center;
  background: #fff url(../images/Background.svg) top center no-repeat;
  background-size: calc(100%);
}

.header h1 {
  font-size: 102px;
  line-height: 100px;
  font-weight: bold;
  background: #003ddb;
  background: linear-gradient(to top, #003ddb 20%, #2371f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header h4 {
  color: #667085;
  text-transform: capitalize;
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 20px;
}

.header p {
  color: #667085;
  font-size: 16px;
  margin-top: 20px;
}

.hero-img {
  width: 100%;
  display: block;
}
.hero2-img {
  width: 100%;
  display: none;
}


.m-top-10 {
  margin-top: 20px;
}
  

.m-top-20 {
  margin-top: 30px;
}

.m-top-30 {
  margin-top: 45px;
}

/* about section css code */

#client-section {
  margin: 100px 0;
}

.client_inner {
  width: 100%;
  padding: 0px 15%;
  text-align: center;
}

.title h2 {
  font-size: 56px;
  color: #000000;
  text-transform: none;
  text-align: center;
  font-weight: 500;
}

.title p {
  color: #667085;
  font-size: 16px;
  margin-top: 20px;
  text-align: center;
}

.client_logos_sec {
  margin: 80px auto;
  width: 100%;
  text-align: center;
}

.client_logos {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.client_logos img {
  width: auto;
}

#products {
  margin: 100px 0;
}

.product_section {
  width: 100%;
  padding: 20px 15%;
}

.card_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-direction: row;
}

.card {
  flex-basis: 33.3%;
  flex-grow: 1;
  padding: 40px 80px;
  border-radius: 16px;
  color: #667085;
  margin-top: 50px;
  border: 1px solid #e7eaee;
  background-color: fff;
  transition: 0.5s ease;
  height: 650px;
}

.custom_style{
  background: #154396;
background: radial-gradient(circle,#154396 0% ,  #631414 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-weight: bold;
}


.card:hover {
  color: #0958e0;
  background: linear-gradient(to top, #e9e9e9, #f6f6f7);
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(66, 70, 85, 0.5);
  cursor: pointer;
}
 

.card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  font-weight: 600;
}







.card h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 300;
  letter-spacing: 2px;
  color: #000;
  margin-bottom: 30px;
}

.card h1 {
  font-weight: 500;
  color: #381875;
  font-size: 38px;
  letter-spacing: -1px;
}
.card:hover h1 {
  color: #0958e0;
}

.card span {
  font-size: 9px;
  letter-spacing: 4px;
  color: #381875;
}

.card:hover span {
  color: #0958e0;
}

.m-bottom {
  margin-bottom: 30px;
}

.card path {
  fill: #003ddb;
}

.card:hover path {
  fill: #0958e0;
}

.card .card-content div path {
  fill: #3d2b73;
}

.card:hover .card-content div path {
  fill: #0958e0;
}

.card a path {
  fill: #0958e0;
}

.blue_svg path {
  fill: #000 !important;
}

.card h4 {
  font-size: 24px;
  font-weight: 400;
  color: #000;
  margin-bottom: 20px;
}

.card:hover h2 {
  color: #0958e0
}
.card:hover h4 {
  color: #0958e0;
}

.card h6 {
  font-size: 16px;
  font-weight: 600;
  color: #667085;
  margin-bottom: 20px;
}

.card:hover h6 {
  color: #0958e0;
}

.card p {
  color: #667085;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 40px;
}

.card:hover p {
  color: #0958e0;
}

.card a {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 500;
  font-size: 16px;
  color: #003ddb;
  text-decoration: none;
  transition: 0.5s;
}

.card:hover a {
  color: #0958e0;
  gap: 10px;
}

/* mission css code */

#mission {
  margin: 50px 0;
}

.mission_section {
  width: 100%;
  min-height: 80vh;
  padding: 20px 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff url(../images/Quote.svg) center center no-repeat;
  background-size: cover;
  flex-direction: column;
}

.mission_section h1 {  
  max-width: 1190px;
  margin-top: 80px;
  font-size: 72px;
  /* color: #0958e0;
  line-height: 80px;
  font-weight: bold;
  transition: 0.5s; */
  color: transparent;
  -webkit-background-clip: text;
  background-image: linear-gradient(90deg,#0958E0,#0958E0 50%,#000 0);
  background-size: 200% 100%;
  background-position: 0;
  transition: all .3s cubic-bezier(0,0,.23,1);
}


.mission_section h1:hover{
  background-position: 100%;
}

#our_team {
  margin: 100px 0;
}

.ourteam {
  width: 100%;
  padding: 20px 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  margin-top: 60px;
}

/* .div{
 display: grid;
}  */

.shopcategory-products {
  margin: 20px 170px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.team_card {
  transition: 0.3s;
  width: 375px;
  padding: 30px;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
}

.team_card:hover {
  box-shadow: 0px 1px 2px 3px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.team_card img {
  border-radius: 16px;
}

.publisher {
  display: flex;
  margin-top: 30px;
  justify-content: flex-start;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid #e7eaee;
  padding-bottom: 20px;
}

.vertical_bar {
  width: 1px;
  background: #dbdbdb;
  height: 10px;
}

.publisher div {
  line-height: 21px;
}

.publisher span {
  color: rgb(102, 112, 133);
  font-size: 14px;
}

.details {
  margin-top: 0px;
  color: #667085;
}

.details p {
  line-height: 24px;
  transition: 0.5s;
  height: 0px;
  overflow: hidden;
}

.team_card:hover .details p {
  height: 45px;
  line-height: 24px;
  margin-top: 20px;
}

.team_card:hover .publisher span {
  color: #0958e0;
}

.social-box {
  width: 40px;
  height: 40px;
  background: #f6f7f9;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  border-radius: 6px;
  font-size: 20px;
}

/* contact css code */

#contact-section {
  margin: 100px 0;
  background: url(../images/Ellipse_01.svg) center center no-repeat;
  background-size: cover;
  width: 100%;
}

.contatc_box {
  width: 100%;
  padding: 20px 15%;
  display: flex;
  justify-content: space-between;
  min-height: 100vh;
}

.form-left-col {
  flex-basis: 35%;
  flex-grow: 1;
}

.details-right-col {
  flex-basis: 50%;
  position: relative;
  display: flex;
  flex-grow: 1;
}

.img-box {
  width: 100%;
  display: block;
}

.img-box img {
  width: 70%;
  position: absolute;
  right: 0;
}

.btn-width {
  width: 100%;
}

.contatc_box a {
  color: #0958e0;
  text-decoration: none;
}

.contatc_box h2 {
  font-size: 56px;
  margin-bottom: 20px;
  font-weight: 500;
}

.contatc_box h4 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #667085;
  font-weight: 400;
}

.contatc_box p {
  color: #667085;
  line-height: 23px;
  margin-bottom: 20px;
  font-size: 16px;
  text-align: left;
}

.contatc_box span {
  color: #acb4c3;
  font-size: 12px;
}

footer {
  width: 100%;
  padding: 60px 15%;
  display: flex;
  justify-content: center;
  background: #000;
  color: #fff;
  justify-content: space-between;
  margin-top: 200px;
}

.footer-logo {
  width: 410px;
}

.footer-details {
  display: flex;
  justify-content: space-between;
  flex: 1;
}

.footer-details p {
  font-size: 16px;
  margin-bottom: 25px;
}

.d-block {
  display: block;
  margin-bottom: 5px;
}

.copy_right {
  font-size: 14px;
}

.footer-details i {
  color: #fff;
  margin-left: 20px;
  font-size: 21px;
}

.display_none {
  display: block;
}

.menu-icon {
  display: none;
}

.mtopper{
  margin-top: 7px;
}





/*.card:hover .my_learn_filter {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}*/

@media only screen and (max-width: 1800px) {
  .card {
      padding: 30px 40px;
  } 


.button:disabled {
        background-color: #ccc; /* Gray background */
        cursor: not-allowed; /* Disable cursor */
    }

@media only screen and (max-width: 1660px) {
.card {
    padding: 30px 40px;
    height: 570px ;
} 

.card_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-direction: row;
}


}




@media only screen and (max-width: 1400px) {
  .mission_section {
    min-height: 400px;
  }

  footer {
    margin-top: 100px;
  }

  .footer-logo {
    width: 250px;
}

.card_wrapper {
  flex-direction: column;
  gap: 30px;
}

.card {
  padding: 30px 40px;
  height: 600px ;
} 



}

@media only screen and (max-width: 1200px) {

  footer {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }



  .header {
    min-height: 70vh;
    padding: 20px 5%;
    padding-top: 180px;
    background: #fff url(../images/Background.svg) center center no-repeat;
    background-size: cover;
  }

  nav ul li {
    padding: 0px 25px;
    font-size: 15px;
  }

  footer {
    margin-top: 100px;
  }

  .footer-logo {
    width: 200px;
  }
  .footer-details {
    flex: 1;
  }

  .card_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
}

@media only screen and (max-width: 1200px) {
  nav ul li {
    padding: 0px 25px;
    font-size: 15px;
  }



}

@media only screen and (max-width: 1024px) {

  .card {
    flex-basis: 100%;
    flex-grow: 1;
    padding: 20px 40px;
    color: #667085;
  }

  footer {
    margin-top: 100px;
  }


}




@media only screen and (max-width: 960px) {
  nav {
    padding: 20px 5%;
  }

  nav ul li {
    padding: 0px 10px;
  }

  .card {
    flex-basis: 100%;
    flex-grow: 1;
    padding: 20px 40px;
    color: #667085;
    margin-top: 20px;
  }

  .card_wrapper {
    gap: 60px;
  }

  footer {
    margin-top: 100px;
  }

  .form-left-col {
    flex-basis: 100%;
    flex-grow: 1;
  }

  .details-right-col {
    flex-basis: 100%;
    flex-grow: 1;
  }

  .footer-logo {
    width: 200px;
  }
  .footer-details {
    display: flex;
    gap: 30px;
  }

  .card_wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }

  .header h1 {
    font-size: 90px;
    line-height: 100px;
  }

  .ourteam {
    width: 100%;
    padding: 20px 15%;
    gap: 40px;
  }
}

@media only screen and (max-width: 800px) {
  .client_inner {
    padding: 0px 5%;
  }

  .product_section {
    width: 100%;
    padding: 20px 5%;
  }

  .mission_section {
    min-height: 70vh;
    padding: 20px 5%;
  }

  nav ul li {
    padding: 0px 5px;
    font-size: 14px;
  }
  footer {
    padding: 60px 5%;
    margin-top: 70px;
    flex-direction: column;
  }

  .footer-details {
    flex-direction: column;
  }

  .footer-logo {
    width: 100%;
    margin-bottom: 0px;
  }

  .details-right-col {
    display: none !important;
    display: flex;
    flex-direction: column;
  }

  .img-box {
    display: none;
  }

  .card {
    flex-basis: 100%;
    flex-grow: 1;
    padding: 60px 40px;
    color: #667085;
    margin-top: 40px;
    height: auto;
  }

  .card_wrapper {
    gap: 40px;
  }

  .header h1 {
    font-size: 70px;
    line-height: 80px;
  }

  .ourteam {
    padding: 20px 5%;
    gap: 40px;
  }

  .contatc_box {
    padding: 20px 5%;
    min-height: 100vh;
  }
  .footer-details p {
    font-size: 16px;
    margin-bottom: 10px;
}
}

@media only screen and (max-width: 660px) {
  .logo {
    width: 139px;
  }

  .closebtn {
    position: absolute;
    top: 0;
    left: 0px;
    font-size: 24px;
    margin-left: 0px;
    text-decoration: none;
    color: #d4d4d4;
    background: #000;
    background: #292929;
    padding: 0px 10px;
    display: block;
  }

  nav ul {
    position: fixed;
    top: 80px;
    bottom: 0;
    right: -260px;
    height: 78vh;
    background: #040404;
    z-index: -10;
    width: 215px;
    transition: 0.5s;
    padding-top: 20px;
  }

  nav ul li {
    display: block;
    font-size: 14px;
    color: #fff;
    padding: 30px 30px 0 0;
    text-align: right;
  }

  nav ul li a {
    color: #fff;
  }

  .display_none {
    display: none;
  }

  .menu-icon {
    display: block;
    width: 40px;
    cursor: pointer;
  }

  .show_menu {
    height: 78vh;
    background: #040404;
    border-bottom-left-radius: 40px;
    right: 0px;
  }

  .show_menu a {
    color: #fff;
  }

  .header {
    min-height: 50vh;
    padding: 20px 5%;
    padding-top: 100px;
    background: #fff url(../images/Background.svg) center center no-repeat;
    background-size: cover;
  }

  .header h4 {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .header h1 {
    font-size: 48px;
    margin-bottom: 20px;
  }

  .header p {
    margin: auto;
    font-size: 14px;
    max-width: 360px;
    line-height: 21px;
    text-align: center;
  }

  #client-section {
    margin: 10px 0;
  }

  .title h2 {
    font-size: 32px;
  }
  .title p {
    margin-top: 10px;
  }
  client_logos_sec {
    margin: 42px auto;
    width: 100%;
  }

  .client_logos {
    margin-bottom: 30px;
    gap: 20px;
  }

  #products {
    margin: 20px 0;
  }
  .product_section {
    width: 100%;
    padding: 0px 6%;
  }

  .card_wrapper {
    display: flex;
    flex-direction: column;
  }

  .card {
    flex-basis: 100%;
    flex-grow: 1;
    padding: 60px 40px;
    color: #667085;
    margin-top: 40px;
  }

  .card:nth-child(2) {
    margin-top: 20px;
  }

  .card_wrapper {
    gap: 30px;
  }

  .card p {
    font-size: 14px;
    line-height: 23px;
    margin-bottom: 40px;
  }

  .client_logos_sec {
    width: 100%;
    text-align: center;
  }

  .client_inner {
    padding: 0px 5%;
  }

  .card i {
    font-size: 30px;
  }

  .mission_section {
    width: 100%;
    min-height: 325px;
    padding: 20px 5%;
  }

  .mission_section h1 {
    font-size: 42px;
    line-height: 52px;
    margin-top: 40px;
  }

  .ourteam {
    width: 100%;
    padding: 20px 5%;
    display: flex;
    gap: 40px;
    flex-direction: column;
  }

  .contatc_box {
    padding: 20px 5%;
    height: auto;
  }

  .form-left-col {
    flex-basis: 100%;
    flex-grow: 1;
  }

  .details-right-col {
    display: none !important;
    display: flex;
    flex-direction: column;
  }

  .img-box {
    display: none;
  }

  .team_card {
    width: 320px;
  }

  .contatc_box h2 {
    font-size: 32px;
  }

  footer {
    padding: 60px 5%;
    margin-top: 70px;
    flex-direction: column;
  }



  .footer-logo {
    width: 100%;
    margin-bottom: 0px;
  }

  .footer-details p {
    margin-bottom: 10px;
  }

  .client_logos_custom {
    transform: scale(0.8);
    margin-top: 30px;
  }
  .card h4 {
    font-size: 19px;
  }
  .footer-details p {
    font-size: 16px;
    margin-bottom: 10px;
}


}

@media only screen and (max-width: 414px) {



  .hero-img {
    display: none;
  }
  .hero2-img {
    width: 100%;
    display: block;
    margin: auto;

   margin-top: 20px;
  }


  .logo {
    width: 139px;
  }

  nav ul li {
    font-size: 14px;
  }


  .header h1 {
    font-size: 44px;
    line-height: 45px;
  }

  .nav-btn {
    padding: 12px 25px;
  }

  .header h4 {
    font-size: 13px;
    margin-bottom: 40px;
  }

  .header p {
    font-size: 12px;
    max-width: 300px;
    line-height: 21px;
  }

  .mission_section h1 {
    font-size: 42px;
    font-weight: bold;
  }

  .client_logos {
    margin-bottom: 30px;
    gap: 0px;
  }

  .card h4 {
    font-size: 19px;
  }

  .header {
    padding-top: 100px;
  }

  .client_logos_custom {
    max-width: 140px;
    margin-top: 30px;
  }

  nav {
    display: flex;
    align-items: center;
}



.footer-details p {
  font-size: 16px;
  margin-bottom: 10px;
}

.card {
  display: flex;
  height: auto !important;
}



}


