﻿* {
    margin: 0;
    padding: 0;
    box-sizing : border-box;
    text-decoration: none !important;
    font-family: "poppins","Roboto", "Montserrat", sans-serif;
    scroll-behavior: smooth;
}

a{
 color: intial !important;
}

html,body {
    overflow-x: hidden;
}

.header {
    min-height: 100vh;
    background: #e9ecef;
}

@media only screen and (max-width: 780px){
 .header{
  min-height: auto;
 }
}

@media only screen and (max-width: 480px){
 .header{
  min-height: auto;
 }
}
.header-img-container {
    display: flex;
    justify-content: center;
    align-content: center;
    padding-top : 95px;
}

.header-img {
    width: 300px;
    border-radius: 50%;
    height: 240px;
}

.typed-header {
    display: flex;
    justify-content: center;
    align-content: center;
    padding-top: 15px;
}

.content-header,.beginner-content,.Content,.blog-content,.source-content {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    font-size: 21px;
    font-weight: 300;
}

.content-header {
    padding: 15px 55px;
}

.hover-tooltip, .hover-tooltip:visited, .hover-tooltip:active,.tooltip-content a {
    color: #327dee;
}

.tooltip-container1 {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 350px;
}

.tooltip-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
}

.tooltip-img-container,.tooltip-content {
    padding: 25px;
}

.tooltip-content {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-direction: column;
}

.tooltip-content h2, .tooltip-content p, .tooltip-content a {
    padding: 10px 0;
}

.beginner-friend {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-direction: column;
    padding: 35px 55px;
    padding-bottom: 60px;
}

.beginner-image-handler {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    padding: 30px;
}

.yt-intro {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px;
    background: rgb(240 240 240);
}

/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

/* Hide the images by default */
.mySlides {
    display: none;
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: #232323;
    font-weight: bold;
    font-size: 25px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
    background-color: white;
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Fading animation */
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

.blog,.source-code {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px;
}

.blog-content,.source-content {
    padding-top: 15px;
}

.ma {
    text-align: center;
}

.mbtn {
    outline: none;
    border: none;
    padding: 18px;
    background: #262626;
    color: white;
    margin: 20px;
    cursor: pointer;
    transition: all 0.8s ease;
    font-weight: bolder;
    font-size: 1rem;
    border-radius: 8px;
}

.mbtn:hover {
    background: #4c4b4b;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    width: 300px;
}

img{
  margin: 0 auto;
}

.item{
  padding-left:5px;
  padding-right:5px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.item-card{
  transition:0.5s;
  cursor:pointer;
}
.item-card-title{  
  font-size:15px;
  transition:1s;
  cursor:pointer;
}
.item-card-title i{  
  font-size:15px;
  transition:1s;
  cursor:pointer;
  color:#ffa710
}
.card-title i:hover{
  transform: scale(1.25) rotate(100deg); 
  color:#18d4ca;
  
}
.card:hover{
  transform: scale(1.05);
  box-shadow: 10px 10px 15px rgba(0,0,0,0.3);
}
.card-text{
  padding: 20px;
  max-height: 580px;
  min-height: 180px;
}

a{
 color: intial !important;
}
.mbtn:hover{
 color: initial !important;
}

.mbtn{
 text-align: center;
}
.card::before, .card::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: scale3d(0, 0, 1);
  transition: transform .3s ease-out 0s;
  background: rgba(255, 255, 255, 0.1);
  content: '';
  pointer-events: none;
}
.card::before {
  transform-origin: left top;
}
.card::after {
  transform-origin: right bottom;
}
.card:hover::before, .card:hover::after, .card:focus::before, .card:focus::after {
  transform: scale3d(1, 1, 1);
}

.c-head{
 padding:12px;
}

.courses{
 padding: 80px;
 background: rgba(240,240,240);
}
.all-c{
 justify-content: space-between;
}

.latest-videos{
 padding: 50px;
}


.owl-item > div {
  cursor: pointer;
  margin: 6% 8%;
  transition: margin 0.4s ease;
}
.owl-item.center > div {
  cursor: auto;
  margin: 0;
}
.owl-item:not(.center) > div:hover {
  opacity: .75;
}

.prev{
 left: 0;
}

.next{
 right: 0;
}