* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  position: relative;
  height: 100%;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  background-color: black;
}

body::-webkit-scrollbar{
  background-color: black;
}

body::-webkit-scrollbar-thumb{
  background: rgb(32, 32, 32);
  border-color: dodgerblue;
  border-style: groove;
  border-radius: 10px;
}

nav {
  padding: 10px;
  background-color: transparent;
  color: #fff;
  position: fixed;
  width: 100%;
  z-index: 2;
  justify-content: space-between;
  margin: auto;
}

.navigation{
  max-width: 1270px;
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  margin: auto;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
}

.logo a{
  text-decoration: none; 
  color: white;
  display: flex;
}

.logo img{
  width: 40px;
  height: 40px;
  display: block;
  margin-right: 10px;
}

.main-topic {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  display: inline-block;
  margin: 0px 20px;
}
.menu a{
  color:#fff;
  text-decoration: none;
}
.menu {
  list-style-type: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.subtopics {
  display: none;
  position: absolute;
  list-style-type: none;
  color: #fff;
  top: 115%;
  font-size: 15px;
  width: max-content;
  left: 0;
  background-color: transparent; 
  padding: 10px 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); 
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.subtopics li {
  padding: 5px;
  text-align: center;
  cursor: pointer;
}

.subtopics li:hover {
  transform: scale(1.1);
}

.main-topic:hover .subtopics {
  display: block;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

section {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative; 
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: #fff;
  height: 100%;
}

.slide-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%; 
}

.swiper-video {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}

.vignette-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
}


.title {
  position: absolute;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 6rem; 
  letter-spacing: 0.3rem;
  z-index: 5;
  color: white;
  background-position: 0 0;
  transition: all 0.5s;
}

/*  */

.con {
  display: none; 
  cursor: pointer;
}

@media screen and (max-width: 900px) {
  .navigation {
    flex-direction: column;
    margin: 0;
    padding: 40px 20px;
    margin: 0px 40px;
    z-index: -1;
    transition: all 0.5s;
  }

  .main-topic {
    margin: 8px 0;
    font-size: 25px;
  }

  .menu {
    flex-direction: column; 
    text-align: center;
    align-items: center;
  }

  .logo {
    z-index: 2;
  }

  #logo2{
    z-index: 10;
    display: block;
    margin:50px 30px; 
    position: fixed;
  }

  .subtopics {
    top: auto; 
    left: 0;
    width: 100%;
    background-color: transparent;
    box-shadow: none;
    padding: 5px;
    display: block;
    position: relative;
    list-style-type: none;
    color: #fff;
    font-size: 14px;
  }

  .menu .main-topic:nth-child(2)::after {
    content: none;
  }

  .menu .main-topic:not(:nth-child(2))::before {
    content: none; 
  }

  .con{
    display: block;
    position: fixed;
    right: 0%;
    color: white;
    z-index: 10;
    margin: 46.5px 40px;
  }

  nav{
    display: none;
    flex-direction: row;
    height: 100%;
    width: auto;
  }

  nav.open{
    background: rgba( 255, 255, 255, 0.3 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 9.5px );
    -webkit-backdrop-filter: blur( 9.5px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    transition: all 0.5s;
    z-index: 3;
    display: flex;
  }

  .title{
    font-size: 3rem;
    transition: all 0.5s;
  }

}

.card{
  width: 300px;
  height: 300px;
  cursor: pointer;
  background-color: dodgerblue;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
  margin: 16px;
  float: left;
  border-radius: 10px;
  transition: all 0.3s;
  transition: transform 0.3s ease-in-out, z-index 0.3s ease-in-out;
}

.childcard{
  width: 100%;
  height: 100%;
  background-color: #1a1a1a;
  transition: all 0.3s;
  padding: 30px;
  border-radius: 0px;
  overflow: auto;
}

.childcard h4{
  font-size: x-large;
  font-weight: bold;
  top: 50%;
  transform: translateY(-50%);
  position: relative;
  font-size: x-large;
  transition: top 0.3s ease-in-out;;
  text-align: center;
}

.childcard::-webkit-scrollbar{
  background-color: black;
}

.childcard::-webkit-scrollbar-thumb{
  background: rgb(32, 32, 32);
  border-color: dodgerblue;
  border-style: groove;
  border-radius: 10px;
}

h1{
  color: white;
  padding-top: 180px;
  width: 100%;
  text-align: center;
  user-select: none;
}

.card:hover{
  border-radius: 20px;
  box-shadow: 0px 0px 20px #18dde9;
  transform: scale(1.3);
  z-index: 1;
  /* height:500px; */
}

.card:hover .childcard{
  scale: 0.98;
  border-radius: 20px;
}

.services{
  display: flex;
  justify-content: center;
  align-items: center;
  justify-items: space-around;
  flex-wrap: wrap;
  padding: 40px;
  height: auto;
  transition: all 0.5s;
  width: 100%;
}

.tiles{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.childcard p{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  opacity: 0;
  transition: bottom 0.3s ease-in-out, opacity 0.3s ease-in-out;
  display: inline-block;
  margin-top: 3px;
  font-size: small;
  width: 90%;
  font-weight: normal;
  padding-bottom: 30px;
}

.card:hover .childcard p {
  top: 20%;
  opacity: 1;
}

.card:hover .childcard h4{
  top: 1%;
  transform: translateY(-50%);
  position: relative;
  font-size: x-large;
  text-align: center;
} 

@media screen and (max-width: 900px) {
  .card{
    margin: 1px;
  }

}

@media screen and (max-width: 700px){
  .tiles{
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 15px;
  }
}


/*  */


.container {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-items: space-around;
  flex-wrap: wrap;
  gap: 100px 50px;
  padding: 40px;
  height: auto;
  transition: all 0.5s;
  width: 100%;
}

.container .custom-card {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 350px;
  max-width: 100%;
  height: 300px;
  background: #FFF;
  border-radius: 20px;
  transition: 0.5s;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15);
}

.container .custom-card:hover {
  height: 350px;
  margin-top: 100px;
}

.container .custom-card .img-box {
  position: absolute;
  top: 20px;
  width: 330px;
  height: 220px;
  background: #333;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.5s;
}

.container .custom-card:hover .img-box {
  top: -100px;
  scale: 0.75;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.container .custom-card .img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*  */

.container .custom-card .video-box {
  position: absolute;
  top: 20px;
  width: 330px;
  height: 220px;
  background: #333;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.5s;
}

.container .custom-card:hover .video-box {
  top: -100px;
  scale: 0.75;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.container .custom-card .video-box video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}




/*  */

.container .custom-card .custom-content {
  position: absolute;
  top: 252px;
  width: 100%;
  height: 35px;
  padding: 0 30px;
  text-align: center;
  overflow: hidden;
  transition: 0.5s;
}

.container .custom-card:hover .custom-content {
  top: 130px;
  height: 250px;
}

.container .custom-card .custom-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
}

.container .custom-card .custom-content p {
  color: #333;
  padding-top: 10px;
  overflow: auto;
}

.container .custom-card .custom-content a {
  position: relative;
  top: 15px;
  display: inline-block;
  padding: 12px 25px;
  text-decoration: none;
  background: #181818;
  color: #fff;
  font-weight: 500;
}

.container .custom-card .custom-content a:hover {
  opacity: 0.8;
}

@media (max-width: 480px) {
  .container .custom-card {
      width: 230px;
      border-radius: 15px;
  }

  .container .custom-card .video-box, .container .custom-card .img-box {
      width: 185px;
      border-radius: 10px;
  }

  .container .custom-card .custom-content p {
      font-size: 0.8rem;
  }

  .container .custom-card .custom-content a {
      font-size: 0.9rem;
  }

  .container .custom-card .custom-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333333;
  }
}


/*  */


.bar {
  display: block;
  height: 5px;
  width: 30px;
  background: #fff;
  margin: 7px auto;
  border-radius: 30px;
  transition: all 0.3s;
}

.con.clicked .top {
  transform: translateY(10px) rotateZ(45deg);
}

.con.clicked .bottom {
  transform: translateY(-15px) rotateZ(-45deg);
}

.con.clicked .middle {
  width: 0;
}


/* Social icons */

.wrapper {
  display: inline-flex;
  list-style: none;
}

.wrapper .icon {
  position: relative;
  background: #ffffff;
  color: black;
  border-radius: 50%;
  padding: 15px;
  margin: 5px;
  width: 40px;
  height: 40px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip {
  position: absolute;
  top: 0;
  font-size: 14px;
  background: #ffffff;
  color: #ffffff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: #ffffff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
  top: -35px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
  background: #1877F2;
  color: #ffffff;
}

.wrapper .linkedin:hover,
.wrapper .linkedin:hover .tooltip,
.wrapper .linkedin:hover .tooltip::before {
  background: #0a66c2;
  color: #ffffff;
}

.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
  /* background: #E4405F; */
  background: radial-gradient(circle at 30% 107%, #fd5949 25%,
                    #d62497 40%, #285AEB 90%);
  color: #ffffff;
}

.wrapper .github:hover,
.wrapper .github:hover .tooltip,
.wrapper .github:hover .tooltip::before {
  background: #333333;
  color: #ffffff;
}

/* presskit */

presskit-material h1{
  color: white;
  padding: 40px;
  padding-top: 160px;
  width: 100%;
  font-size: 60px;
  text-align: center;
}
presskit-material p{
  color: white;
  padding: 0px 20vw;
  padding-top: 10px;
  padding-bottom: 80px;
  width: 100%;
  text-align: center;
  font-weight: normal;
  font-size:large;
}
presskit-material h2{
  color: white;
  /* padding: 10px; */
  padding-top: 10px;
  width: 100%;
  text-align: center;
}

presskit-material .link {
  color: white;
  text-decoration: none;
  font-size: 16px;
  color:rgb(0, 157, 255);
  padding: 10px;
}

.image img {
  display: block;
  margin: 0 auto;
  width: 80%;
  height: auto;
}

.container .custom-cards {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 350px;
  max-width: 100%;
  height: 300px;
  background: gray;
  border-radius: 20px;
  transition: 0.5s;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15);
}

.container .custom-cards:hover {
  height: 420px;
  margin-top: 10px;
}

.social-icon{
  width: 60px;
}

.container .custom-cards .img-box {
  position: absolute;
  top: 20px;
  width: 330px;
  /* filter: invert(); */
  height: 220px;
  background: #333;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.5s;
}

.container .custom-cards:hover .img-box {
  top: -100px;
  scale: 0.75;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.container .custom-cards .img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.container .custom-cards .custom-content {
  position: absolute;
  top: 252px;
  /* width: 100%; */
  height: 35px;
  padding: 0 30px;
  text-align: center;
  overflow: hidden;
  transition: 0.5s;
}

.container .custom-cards:hover .custom-content {
  top: 130px;
  height: 450px;
}

.container .custom-cards .custom-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.container .custom-cards .custom-content p {
  color: #333;
  padding-top: 10px;
}

.container .custom-cards .custom-content a:hover {
  opacity: 0.8;
}

@media (max-width: 480px) {
  .container .custom-cards {
      width: 230px;
      border-radius: 15px;
  }

  .container .custom-cards .img-box {
      width: 185px;
      border-radius: 10px;
  }

  .container .custom-cards .custom-content p {
      font-size: 0.8rem;
  }

  .container .custom-cards .custom-content a {
      font-size: 0.9rem;
  }

}

.social{
  position: relative;
  height: 65px;
  margin: 10px;
  width: 250px;
  background: #0a66c2;
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0px 5px 3px 0px rgba(0, 0, 0, 0.35);
}
.social::before{
  content: 'Our Socials';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 4px;
  color: #ffffff;
  font-size: 27px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s linear;
}
.social:hover::before{
  left: -250px;
}
.social .social_media{
  position: absolute;
  top: 0;
  right: -250px;
  height: 100%;
  width: 100%;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  transition: all 0.4s ease-in-out;
}
.social:hover .social_media{
  right: 0;
}
.social_media i{
  font-size: 22px;
  color: #fff;
  transition: all 0.3s linear;
}
.social_media i:hover{
  transform: scale(1.3);
}



.press-container{
  display: flex;
  justify-content: center;
  padding-bottom: 40px;
  height: auto;
  width: 100%;
}

@media (max-width: 480px) {
  .social{
    width: 180px;
  }
}

.table-container {
  display: flex;
  justify-content: center;
  padding-bottom: 80px;
}

table {
  border-collapse: collapse;
  width: 80%;
  border-radius: 10px;
  overflow: hidden;
}

td {
  background-color: rgb(55, 55, 55);
  color: white;
  vertical-align: top;
  width: fit-content;
  padding: 10px;
}
.highlight{
  font-weight: bold;
  display: inline-block;
  background-color: white;
  color: #555;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: larger;
  padding:0px 5px;
  margin: 10px 0px;
  width: fit-content;
}
.heading{
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: xx-large;
}
para{
  margin: 5px 0px;
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

@media (max-width: 800px) {
  td {
    display: block;
    box-sizing: border-box;
  }

  .table-container{
    margin-bottom: 100px;
  }

}
