@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');


/* @import url('https://fonts.googleapis.com/css2?family=Sansita+Swashed:wght@900&display=swap'); */
@font-face {
    font-family: "Angeline_Vintage";
    src: url("Fonts/AngelineVintageDemo.woff") format('woff');
}
body{
    margin: 0;
    padding: 0;
    background-color: #1B1B1B;
}

/* *{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
} */
header h1.logo{
    padding-top: 10px;
    font-size: 75px;
    font-family: "Angeline_Vintage";
    color: #00CBFE;
}

.trn{
  background: transparent !important;
  z-index: 99;
}

.navbar-nav li a{
  color: #000;
  margin: 5px;
}

.navbar-dark .navbar-nav .active>.nav-link, .navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .nav-link.show, .navbar-dark .navbar-nav .show>.nav-link {
  color: #00CBFE;
}

.dropdown-menu{
  margin-top: 0;
  background-color: skyblue;
  opacity: 0.7;
}

.navbar-dark .navbar-nav .nav-link {
  color: white;
}



/* header h2 .display-4{
    margin-bottom: 50%;
} */

.slider{
  margin-top: -125px;
}

.carousel-item {
    height: 100vh;
    min-height: 350px;
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }
  
.carousel-caption{
    margin-bottom: 250px;
}

.display-4{
  font-family: 'Roboto', sans-serif;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.2;
}

  

/* .row1{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
} */

.btn{
    margin-top: 25px;
    margin-right: 25px;
    color: white;
    background-color: black;
}

.btn:hover{
  background-color: #00CBFE;
}

body{
    padding: 0;
    margin: 0;
}

a{
    text-decoration: none;
}

.mt-5{
    margin-top: 5rem;
}

#category{
    /* background-color: black; */
    padding: 100px 0;
    margin-top: 100px;;
}

.container{
    max-width: 90%;
    margin: 0 auto;
}

.container-category{
    max-width: 1100px;
    margin: 0 auto;
}

.row{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.text-center{
    text-align: center;
    font-size: 18px;
    padding: 20px;
}

.text-center h2{
  font-family: 'Roboto', sans-serif;
    font-weight: 10px;
    font-size: 50px;
    color:#00CBFE;
}

/* .text-center h2 span{
    font-weight: 800;
} */

.text-center p{
    max-width: 500px;
    margin: 0 auto;
    color: #6c757d;
    line-height: 1.5;
    font-size: 1em;
}

.col{
    position: relative;
    width: 33.3333333%;
    /* overflow: hidden; */
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.col .card{
  position: relative;
  width: 100%;
  height: 280px;
  background: #1B1B1B;
  display: flex;
  /* align-items: flex-end; */
  flex-direction: column;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border-radius: 10px;
}

.image {
  opacity: 1;
  display: flex;
  width: 100%;
  height: 280px;
  transition: .5s ease;
  backface-visibility: hidden;
  border-radius: 10px;
}

.card:hover{
  transform: translateY(20px);
}

.middle {
  /* content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,rgb(88, 228, 233),rgb(224,255,255));
  border-radius: 10px;
  z-index: 2;
  transition: 0.5s;
  opacity: 0; */ 

  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: left;
}

/* webPractice Version */
.card:hover:before{
  opacity: 1;
}

.card .info{
  margin-top: 50px;
  margin-left: 10px; 
  position: relative;
  z-index: 3;
  color: #fff;
  opacity: 0;
  transform: translateY(30px);
  transition: 0.5s;
}

.card:hover .info{
  opacity: 1;
  transform: translateY(0px);
}

.card .info h1{
  font-weight: 200;
  margin: 0;
}

.card .info hr {
  display: block;
  width: 0;
  
  border: none;
  border-bottom: solid 2px #FEF5DF;
  
  /* position: absolute; */
  bottom: 0; left:20px;
  
  transition: all .5s;
}

.card .info .btn{
  margin-top: 30px;
  margin-left: 30px;
  text-decoration: none;
  padding: 0.5rem 1rem;
  color: #000;
  font-weight: 400;
  cursor: pointer;
  font-size: 14px;
  background: #fff;
}

.card .info .btn:hover{
  box-shadow: 7px 7px 10px rgba(10, 7, 7, 0.9);
}
/* webPractice Version end */

/* w3schoolVersion */
.card:hover .image {
  opacity: 0.3;
}

.card:hover .middle {
  opacity: 1;
}

.card:hover hr {
  width: 75px;
  transition-delay: 0.4s;
}

/* .text {
  background-color: #4CAF50;
  color: white;
  font-size: 16px;
  padding: 16px 32px;
} */
/* w3schoolVersion  end*/
/* .col .card{
    width: 100%;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.col img{
    width: 100%;
    height: 180px;
    border: 0;
}

.col .card-body{
    padding: px 15px 15px 15px;
    background-color: #fff;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.card-body h5{
    font-size: 24px;
    margin: 7px 0;
} */

.card:hover{
    transform: translateY(-10px);
    transition: transform 0.3s ease;
}

.card p{
    color: #0a0c0e;
}



.card-body h5 a{
    color: #222;
}

.checked {
  color: orange;
}

@media(min-width: 577px) and (max-width: 768px){
    .col{
        width: 50%;
    }
}

@media(max-width: 576px){
    .col{
        width: 100%;
    }
}

@media screen and (max-width:768px){
    body{
      overflow: hidden;
    }
    .navbar-nav{
      height: 70vh;
    }
}

/* [type=radio]{
  display: none;
} */

/* for whats new */

#WhatsNew{
  margin: 50px;
}

#WhatsNew .text-center1 h2{
  margin-top: 50px;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 50px;
  color:#00CBFE;
}

.ia-container {
	width: 1035px;
	margin: 20px auto;
	overflow: hidden;
	box-shadow: 1px 1px 4px rgba(0,0,0,0);
	border: 2px solid rgba(255,255,255,0.6);
}

.ia-container figure {
  position: absolute;
top: 0;
left: 100px; /* width of visible piece */
width: 335px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.6);
  transition: all 0.3s ease-in-out;
}

.ia-container > figure {
  position: relative;
left: 0 !important;
}

figure {
  margin: 0 0;
}

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

.ia-container input {
	position: absolute;
	top: 0;
  left: 0;
  bottom: 0;
	width: 100px; /* just cover visible part */
	height: 100%;
	cursor: pointer;
	border: 0;
	padding: 0;
    opacity: 0;
	z-index: 100;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.ia-container input:checked{
	width: 5px;
	left: auto;
	right: 0px;
}

.ia-container input:checked ~ figure {
    left: 335px;
    transition: all 0.7s ease-in-out;
}

.ia-container figcaption {
	width: 100%;
	height: 100%;
	background: rgba(87, 73, 81, 0.1);
	position: absolute;
	top: 0px;
    transition: all 0.2s linear;
}

.ia-container figcaption span {
	position: absolute;
	top: 40%;
	margin-top: -30px;
	right: 20px;
	left: 20px;
	overflow: hidden;
	text-align: center;
	background: rgba(87, 73, 81, 0.3);
	line-height: 20px;
	font-size: 18px;
    opacity: 0;
	text-transform: uppercase;
	letter-spacing: 4px;
	font-weight: 700;
	padding: 20px;
	color: #fff;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
} 

.ia-container input:checked + figcaption,
.ia-container input:checked:hover + figcaption{
	background: rgba(87, 73, 81, 0);
}

.ia-container input:checked + figcaption span {
  transition: all 0.4s ease-in-out 0.5s;
opacity: 1;
top: 50%;
}

.ia-container #ia-selector-last:checked + figcaption span {
	transition-delay: 0.3s;
}

.ia-container input:hover + figcaption {
	background: rgba(87, 73, 81, 0.03);
}

.ia-container input:checked ~ figure input{
  z-index: 1;
}

@media screen and (max-width: 720px) {
  .ia-container { 
  width: 540px; 
}

.ia-container figure { 
  left: 40px; 
  width: 260px; 
}

.ia-container input { 
  width: 40px; 
}

.ia-container input:checked ~ figure { 
  left: 260px; 
}

.ia-container figcaption span { 
  font-size: 16px; 
}
}

@media screen and (max-width: 520px) {
  .ia-container { 
  width: 320px; 
}

.ia-container figure { 
  left: 20px; 
  width: 180px; 
}

.ia-container input { 
  width: 20px; 
}

.ia-container input:checked ~ figure { 
  left: 180px; 
}

.ia-container figcaption span { 
  font-size: 12px; 
  letter-spacing: 2px; 
  padding: 10px; 
  margin-top: -20px; 
} 

}



/*
#new{
    margin: 50px;
    margin-bottom: 150px;
    height: 35vw;
    position: relative;
    perspective: 1000px;
    transform-style: preserve-3d;
}

#new label{
  margin: auto;
  width: 60%;
  height: 100%;
  border-radius: 4px;
  position: absolute;
  left: 0;
  right: 0;
  cursor: pointer;
  transition: transfor 0.4s ease;
}

#s1:checked ~ #slide4, #s2:checked ~ #slide5, 
#s3:checked ~ #slide1, #s4:checked ~ #slide2, 
#s5:checked ~ #slide3 {
    box-shadow: 0 1px 4px 0 rgba(0,0,0,0.37);
    transform: translate3d(-30%,0,-200px);
} 

#s1:checked ~ #slide5, #s2:checked ~ #slide1, 
#s3:checked ~ #slide2, #s4:checked ~ #slide3, 
#s5:checked ~ #slide4 {
    box-shadow: 0 6px 10px 0 rgba(0,0,0,0.3), 0 2px 2px 0 rgba(0,0,0,0.2);
    transform: translate3d(-15%,0,-100px);
} 

#s1:checked ~ #slide1, #s2:checked ~ #slide2, 
#s3:checked ~ #slide3, #s4:checked ~ #slide4, 
#s5:checked ~ #slide5 {
    box-shadow: 0 13px 25px 0 rgba(0,0,0,0.3), 0 11px 7px 0 rgba(0,0,0,0.19);
    transform: translate3d(0,0,0);
}

#s1:checked ~ #slide2, #s2:checked ~ #slide3, 
#s3:checked ~ #slide4, #s4:checked ~ #slide5, 
#s5:checked ~ #slide1 {
    box-shadow: 0 6px 10px 0 rgba(0,0,0,0.3), 0 2px 2px 0 rgba(0,0,0,0.2);
    transform: translate3d(-15%,0,-100px);
}

#s1:checked ~ #slide3, #s2:checked ~ #slide4, 
#s3:checked ~ #slide5, #s4:checked ~ #slide1, 
#s5:checked ~ #slide2 {
    box-shadow: 0 1px 4px 0 rgba(0,0,0,0.37);
    transform: translate3d(30%,0,-200px);
} */


/* footer {
    margin-top: 10%;
    padding-top: 5%;
    width: 100%;
    position: relative;
    height: auto;
    background-color: #070617;
  }

footer h3{
    margin-left: 10%;
    padding-bottom: 3%;
    font-size: 50px;
    font-family: "Angeline_Vintage";
    color: #ffffff;
}

footer .col {
    width: 190px;
    height: auto;
    float: left;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 0px 20px 20px 20px;
  }

footer .col h1 {
    margin: 0;
    padding: 0;
    font-family: inherit;
    font-size: 12px;
    line-height: 17px;
    padding: 20px 0px 5px 0px;
    color: rgba(255,255,255,0.2);
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.250em;
  }

footer .col ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }

footer .col ul li {
    color: #999999;
    font-size: 14px;
    font-family: inherit;
    font-weight: bold;
    padding: 5px 0px 5px 0px;
    cursor: pointer;
    transition: .2s;
    -webkit-transition: .2s;
    -moz-transition: .2s;
  }

  .social ul li {
    display: inline-block;
    padding-right: 5px !important;
  }
  
footer .col ul li:hover {
    color: #ffffff;
    transition: .1s;
    -webkit-transition: .1s;
    -moz-transition: .1s;
  }
  
  .clearfix {
    clear: both;
  }

  @media only screen and (min-width: 1280px) {
    .contain {
      width: 1200px;
      margin: 0 auto;
    }
  }

  @media only screen and (max-width: 1139px) {
    .contain .social {
      width: 1000px;
      display: block;
    }
    .social h1 {
      margin: 0px;
    }
  }

  @media only screen and (max-width: 950px) {
    footer .col {
      width: 33%;
    }
    footer .col h1 {
      font-size: 14px;
    }
    footer .col ul li {
      font-size: 13px;
    }
  }

  @media only screen and (max-width: 500px) {
      footer .col {
        width: 50%;
      }
      footer .col h1 {
        font-size: 14px;
      }
      footer .col ul li {
        font-size: 13px;
      }
  }
  
  @media only screen and (max-width: 340px) {
    footer .col {
      width: 100%;
    }
  } */


  footer{
    position: fixed;
    bottom: 0;
  }
  
  @media (max-height:800px){
    footer { position: static; }
    /* header { padding-top:40px; } */
  }

  .footer-distributed{
    background-color: #292c2f;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
    width: 100%;
    text-align: left;
    font: bold 16px sans-serif;
  
    padding: 55px 50px;
    margin-top: 80px;
  }
  
  .footer-distributed .footer-left,
  .footer-distributed .footer-center,
  .footer-distributed .footer-right{
    display: inline-block;
    vertical-align: top;
  }
  
  /* Footer left */
  
  .footer-distributed .footer-left{
    width: 40%;
  }
  
  /* The company logo */
  
  .footer-distributed h3{
    color:  #ffffff;
    font-family: "Angeline_Vintage";
    font-size: 50px;
    margin: 0;
  }
  
  .footer-distributed h3 span{
    color:  #5383d3;
  }
  
  /* Footer links */
  
  .footer-distributed .footer-links{
    color:  #ffffff;
    margin: 20px 0 12px;
    padding: 0;
  }
  
  .footer-distributed .footer-links a{
    display:inline-block;
    line-height: 1.8;
    text-decoration: none;
    color:  inherit;
  }
  
  .footer-distributed .footer-company-name{
    color:  #8f9296;
    font-size: 14px;
    font-weight: normal;
    margin: 0;
  }
  
  /* Footer Center */
  
  .footer-distributed .footer-center{
    width: 35%;
  }
  
  .footer-distributed .footer-center i{
    background-color:  #33383b;
    color: #ffffff;
    font-size: 25px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-align: center;
    line-height: 42px;
    margin: 10px 15px;
    vertical-align: middle;
  }
  
  .footer-distributed .footer-center i.fa-envelope{
    font-size: 17px;
    line-height: 38px;
  }
  
  .footer-distributed .footer-center p{
    display: inline-block;
    color: #ffffff;
    vertical-align: middle;
    margin:0;
  }
  
  .footer-distributed .footer-center p span{
    display:block;
    font-weight: normal;
    font-size:14px;
    line-height:2;
  }
  
  .footer-distributed .footer-center p a{
    color:  #5383d3;
    text-decoration: none;;
  }
  
  
  /* Footer Right */
  
  .footer-distributed .footer-right{
    width: 20%;
  }
  
  .footer-distributed .footer-company-about{
    line-height: 20px;
    color:  #92999f;
    font-size: 13px;
    font-weight: normal;
    margin: 0;
  }
  
  .footer-distributed .footer-company-about span{
    display: block;
    color:  #ffffff;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .footer-distributed .footer-icons{
    margin-top: 25px;
  }
  
  .footer-distributed .footer-icons a{
    display: inline-block;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background-color:  #33383b;
    border-radius: 2px;
  
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    line-height: 35px;
  
    margin-right: 3px;
    margin-bottom: 5px;
  }

  .footer-distributed .footer-icons a .foot{
    width: 30px;
    height: 30px;
    border-radius: 2px;
    margin-right: 3px;
    margin-bottom: 5px;
  }
  
  /* If you don't want the footer to be responsive, remove these media queries */
  
  @media (max-width: 880px) {
  
    .footer-distributed{
      font: bold 14px sans-serif;
    }
  
    .footer-distributed .footer-left,
    .footer-distributed .footer-center,
    .footer-distributed .footer-right{
      display: block;
      width: 100%;
      /* margin-bottom: 40px; */
      text-align: center;
    }
  
    .footer-distributed .footer-center i{
      margin-left: 0;
    }
  
  }










