
/* Prelaoder */

.loading-screen{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
   background: #f5f5f5  no-repeat center center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 999;
}

.logo{
  width: 48px;
  height: 48px;
}


.loading-bar{
  width: 130px;
  height: 2px;
  background: #cfcfcf;
  margin-top: 22px;
  position: relative;
  overflow: hidden;
}

.loading-bar::before{
  content: '';
  width: 68px;
  height: 2px;
  background: #0073b1;
  position: absolute;
  left: -34px;
  animation: bluebar 1.5s infinite ease;
}

@keyframes bluebar{
  50%{
    left: 96px;
  }
}

  









/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #2b84ea;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #02042a;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* Sections Header
--------------------------------*/
.section-header {
  
  position: relative;
  padding-bottom: 20px;
}

.section-header::before {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 5px;
  background: #2b84ea;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-header h2 {
  font-size: 36px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-header p {
  text-align: center;
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #9195a2;
}

.section-with-bg {
  background-color: #f6f7fd;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 90px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
}

#header.header-scrolled,
#header.header-inner {
  background: rgba(6, 12, 34, 0.98);
  height: 70px;
}

#header #logo h1 {
  font-size: 36px;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header #logo h1 span {
  color: #2b84ea;
}

#header #logo h1 a,
#header #logo h1 a:hover {
  color: #fff;
}

#header #logo img {
  padding-top:10px;
  margin: 0;
  height: 200px;
}

@media (max-width: 992px) {
  #header #logo img {
    max-height: 200px;
    padding-top:10px;
  margin: 0;
  }
}




/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 12px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(202, 206, 221, 0.8);
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  padding: 6px 4px;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #2b84ea;
  visibility: hidden;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
}


.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(6, 12, 34, 0.385);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index:0;
 color:#2b84ea;

  
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top:0;
  bottom: 0px;
  right:0px;
  padding: 50px 0;
  background-image:url(./sidebar.png);
  background-size:cover;
  overflow-y: auto;
  transition: 0.3s;
  padding-left:50px;
  z-index:-1;
  min-width:250px;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #060c22;
}


.navbar-mobile .active
 {
  color: #02042a;
}



.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}


.navbar-mobile li::before {
  position: absolute;
  content: "";
  top: 0;
  left: -5rem;
  
  width: 0.25rem;
  height: 100%;
  background: var(--menu-link-active-color)!important;
  transition: 0.6s;
  
}



.navbar-mobile li:nth-child(1) {
  --menu-link-active-color:#2b84ea ;
}
.navbar-mobile li:nth-child(2) {
  --menu-link-active-color: #2b84ea;
}
.navbar-mobile li:nth-child(3) {
  --menu-link-active-color:#2b84ea;
}
.navbar-mobile li:nth-child(4) {
  --menu-link-active-color: #2b84ea;
}
.navbar-mobile li:nth-child(5) {
  --menu-link-active-color: #2b84ea;
}
.navbar-mobile li:nth-child(6) {
  --menu-link-active-color: #2b84ea;
}
.navbar-mobile li:hover::before {
  left: calc(100% + 1rem);
}
.navbar-mobile li:hover a {
  color:#2b84ea;
 
}



.description1{
    padding:20px;
    text-align: center;
    color: white !important;
    position: relative;
    font-size:20px;
}


@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@200;300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Raleway", sans-serif;
  -webkit-tap-highlight-color: transparent;
}
a {
  text-decoration: none;
  color: inherit;
}

.resume {
    margin: 20px;
    margin-bottom: 40px;
}

.insiders {
    margin-bottom: 20px;
    color: #ddd;
}

.insider {
    margin-top: 10px;
    margin-bottom: 30px;
}

.resume #hello {
    width: 200px;
}

.wrapper{
  position: relative;
  display: flex;
  align-items: center;
}

#hello {
  display: block;
  width: 300px;
  height: 40px;
  line-height: 40px;
  font-size: 15px;
  font-family: sans-serif;
  text-decoration: none;
  color: #333;
  border: 2px solid #333;
  letter-spacing: 2px;
  text-align: center;
  position: relative;
  transition: all .35s;
  background: #5fcaff;
}

#hello span{
  position: relative;
  font-weight: 600;
  z-index: 2;
}

#hello:after{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: white;
  transition: all .35s;
}

#hello:hover{
  color: black;
}

#hello:hover:after{
  width: 100%;
}

body {

  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background-size: cover;
}


@media (min-width: 1100px) {
  #intern{
  background: url("https://cdn.dribbble.com/userupload/12571082/file/original-a8c4aed631281a152af264f9c6328f6d.gif");
  background-size: cover;
  overflow: hidden;
  position: relative;
  color: #fff;
 
  
}

}

@media (max-width: 375px) {
  #intern{
  background: url("https://cdn.dribbble.com/userupload/12572332/file/original-0e82819ef240751bbb24c9fa975e5f08.gif");
  background-size: cover;
  overflow: hidden;
  position: relative;
  color: #fff;
 
  
}



}


/* Show the video on mobile screens */
@media ((min-width:375px) and (max-width: 1100px)) {
  #intern {
  background: url("https://cdn.dribbble.com/userupload/12572332/file/original-0e82819ef240751bbb24c9fa975e5f08.gif");
  background-size: cover;
  overflow: hidden;
  position: relative;
  color: #fff;
 
  
}

  
}

#intern{
  padding-top:100px;
}

@media (min-width: 1024px) {
  #intern{
    background-attachment: fixed;
  }
}

@media (max-width: 760px) {
  #intern {
    background-attachment: fixed;
    padding:20px;
  }
}

#intern:before {
  content: "";
  background: rgba(13, 20, 41, 0.605);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

body::-webkit-scrollbar {
  display: none;
}

.title {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
}

/* === HEADING STYLE === */
.title h1 {
  position: relative;
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 4rem;
  color: #fff;
  padding: 2rem;
  text-transform: uppercase;
}

.title h1:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  height: 1px;
  width: 100%;
  background-color: #5fcaff;
}

.title h1:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 40%;
  left: 30%;
  background-color: #5fcaff;
}

.title p {
  font-size: 1.2rem;
  font-weight: 500;
  color: #eee;
  padding: 3rem;
  width: 60%;
  text-align: justify;
}

.box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 3rem;
}

.c-wrapper {
  position: relative;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3rem;
}
.card {
      backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background-color: rgba(17, 25, 40, 0.25);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.125);  
 
  filter: drop-shadow(0 30px 10px rgba(0,0,0,0.125));
  width: 400px;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: 0.3s linear;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.layer {
  width: 100%;
  height: 100%;

  color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 85.5%;
  transition: 0.3s ease-in-out 0.3s;
  border-radius: 9px;
}
.layer p {
  margin-top: 10px;
  color: #eee;
}

.layer .ctitle {
  font-size: 1.5rem;
  top: 4%;
  transition: 0.3s linear 0.3s;
  color: #fff;
}
.info {
  width: 85%;
  padding-left: 10px;
  transition: 0.3s linear 0.3s;
}
.info p {
  text-align: left;
}

.card {
  border: 0;
}


.card .layer {
  top: 0;
}

.card .layer .ctitle {
  top: 5%;
}


.layer .ctitle::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #2b84ea;
  position: absolute;
  top: 0;
  left: 0;
  /* right: 100%; */
  /* transform: translate(-50%, -50%); */
  /* transition: 0.2s linear; */
}
.details{
  margin: 5px;
  font-weight: 800;
}
.details span{
  font-family:Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 200;
}


@keyframes spin {
  0% {
    stroke-dashoffset: 0px;
  }

  50% {
    stroke-dashoffset: 350px;
  }

  100% {
    stroke-dashoffset: 700px;
  }
}

.modal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 15, 15, 0.8);
  align-items: center;
  flex-direction: column;
  padding: 2rem;
  backdrop-filter: blur(8px);
  display: none;
}

.alrt {
  background: #2b84ea;
  padding: 20px;
  width: min(700px, 95vw);
  height: auto;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}

.alrt h1 {
  font-size: 2.5rem;
  font-weight: 400;
  padding: 1rem;
  border-bottom: 2px solid #02042a;
}

.alrt p {
  font-size: 1.1rem;
  padding: 1rem;
  text-align: justify;
}

.alrt .content {
  display: flex;
  padding: 30px;
}

button {
  margin-top: 10px;
  margin-left: -20px;
  width: 130px;
  height: 40px;
  position: absolute;
  bottom: 5%;
  cursor: pointer;
}


.alrt .content a {
  background-color: #a5e9f9;
}

@media only screen and (max-width: 1000px) {
  .title p {
    width: 95%;
  }
}

@media only screen and (max-width: 600px) {
  .title h1 {
    font-size: 2.5rem;
  }

  .title p {
    font-size: 1.1rem;
    padding: 5%;
  }
  .c-wrapper{
    transform: scale(0.89);
    margin: 3%;
  }
  .alrt{
    transform: scale(0.85);
  }
}


/*rocket*/
.actions {
  margin: 0.75rem 1rem;
  position: relative;
}
@media(min-width:991px) {


.history {

  padding: 0.5rem 1rem;
  background-color: #2b84ea;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  justify-content: center;
  width: 20%;
  border-radius: 0.375rem;
  border: none;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
 position: relative;
}


.track {
position: relative;
  margin-top: 0.75rem;
  padding: 0.5rem 1rem;
  color:#ffffff;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  justify-content: center;
  width: 20%;
  border-radius: 0.375rem;
  border: 1px solid #ffffff;
  background-color: transparent;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  
}
.card-container {
    display: flex;
    justify-content: center;
    align-items: center;

}
}

@media(max-width:991px) {
.history {

  padding: 0.5rem 1rem;
  background-color: #2b84ea;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  justify-content: center;
  width: 70%;
  border-radius: 0.375rem;
  border: none;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
 position: relative;
}


.track {
position: relative;
  margin-top: 0.75rem;
  padding: 0.5rem 1rem;
  color:#ffffff;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  justify-content: center;
  width: 70%;
  border-radius: 0.375rem;
  border: 1px solid #ffffff;
  background-color: transparent;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  
}
.card-container {
    display: flex;
    justify-content: center;
    align-items: center;

}

}

.track:hover{
    background-color: #2b84ea;
    border:none;
}