
/* Header File Stylesheet */
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: sans-serif;
    flex-wrap: wrap;
}


body {
   overflow-x: hidden;
}


.socials {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    flex-direction: column;
    bottom: 90px;
    right:45px;
    background: #FF4E88;
    height: 200px;
    width: 60px;
    border: 2px solid white;
    cursor: pointer;
    border-radius: 40px;
    z-index: 99;

    background-image: linear-gradient(to right, #ff0084 0%, #33001b  51%, #ff0084  100%);
    /* margin: 10px;
    padding: 10px 25px; */
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    /* border-radius: 10px;
    display: block;
    border: none;  */

}

.socials:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}

.socials a img {
    border: 2px solid white;
    border-radius: 50%;
    height: 30px;
    width: 30px;
}

header {
    position: fixed;
    top: 0;
    z-index: 99;
    height: 12vh;
    background:white;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 1px 1px 2px  #7569b620;
    /* animation: myhead 1s linear both; */
}

header .logo {
    margin-top: -10px;
    /* height: 100%; */
    object-fit: cover;
    /* background: red; */
    /* width: 20%; */
    height: 60px;
    width:  200px;

    display: flex;
    justify-content: center;
    align-items: center;

}

header .logo img {

    width: 50%;
    height: 80%;
}


header .logo::after {
    font-size: 10px;
    content: "Upgrading competencies";
    /* background: red; */
    position: absolute;
    color: black;
    left: 50px;
    bottom:5px;
    width: 130px;
    height: 10px;
}

header nav {
/* background: red; */
height: 100%;
width: 50%;
display: flex;
justify-content: space-evenly;
align-items: center;
}

header nav a {
    color:#FF4E88;
    text-decoration: none;
    font-family: sans-serif;
    transition: 0.5s;
}

header nav a:hover {
    color:#FF8C9E;
}

header #courses {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    position: absolute;
    background: white;
    padding: 10px;
    border-radius: 20px;
    right: 280px;
    top: 10vh;
}

header #courses a {
    color:#FF4E88;
    text-decoration: none;
    font-family: sans-serif;
    transition: 0.5s;
}


header #events {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    position: absolute;
    background: white;
    padding: 10px;
    border-radius: 20px;
    right: 110px;
    top: 10vh;
}

header #events a {
    color:#FF4E88;
    text-decoration: none;
    font-family: sans-serif;
    transition: 0.5s;
}

#menu {
    height: 50px;
    width: 50px;
    margin-right: 50px;
    display: none;
}

#myevents {
    display: none;
}


/* Footer File Stylesheet */


footer {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
height: 40vh;
    width: 100vw;

    background-image: linear-gradient(to right, #ff0084 0%, #33001b  51%, #ff0084  100%);
 
    text-align: center;
    /* text-transform: uppercase; */
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
}

footer:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}

footer .contact {
    /* background: yellow; */
    height: 80%;
    width: 40%;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-direction: column;
    text-align: justify;

}

footer .contact p {
    display: flex;
    flex-direction: row;
font-size: 15px;
    justify-content: flex-start;
    gap: 20px;
    align-items: center;
    /* background-color: red; */
    /* border: 1px solid yellow; */
    /* color: #B4D6CD; */
    color:white;
}

footer .contact p img {
    height: 30px;
    width: 30px;
}

footer .links {
    height: 80%;
    width: 25%;
    /* background: yellow; */
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-direction: column;
}

footer .links a {
    text-decoration: none;
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
    align-items: center;
    /* background-color: red; */
    /* border: 1px solid yellow; */
    /* color: #B4D6CD; */
    color: white;
}

footer .links a img {
    height: 20px;
    width: 20px;
}





footer iframe {
    /* background: yellow; */
    height: 80%;
    width: 28%;
}

.bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 8vh;
 

    background-image: linear-gradient(to right, #ff0084 0%, #33001b  51%, #ff0084  100%);
    /* margin: 10px;
    padding: 10px 25px; */
    text-align: center;
    /* text-transform: uppercase; */
    transition: 0.5s;
    background-size: 200% auto;
    color: white; 

}

/* Responsive Stylesheet for Header , Index and Footer Files */

@media only screen and (max-width: 600px) {
   

  
    header {
       width: 125vw;
       /* border: 2px solid black; */
    }
    
    header nav {
        display: none;
    }
    
    #menu {
        display: block;
    }
    
    
    main .top {
        margin-top: 10vh;
        width: 125vw;
    
    }
    
    main .top .details {
        height: 100%;
        width: 90vw;
        /* background: red; */
        flex-direction: column;
    }
    
    main .top .details .btns {
    /* background: yellow; */
    width: 100%;
    }
    
    main .middle {
        flex-wrap: wrap;
        flex-direction: column;
        width: 125vw;
    }
    
    main .middle .details {
        /* background: red; */
        width: 80vw;
    }
    
    main .services {
        flex-wrap: wrap;
        flex-direction: column;
        width: 125vw;
    }
    
    footer {
        width: 124vw;
        height: 60vh;
        flex-direction: column;
        flex-wrap: wrap;
    }
    
    footer .contact{
        height: 40%;
        width: 100%;
        /* background: red; */
        display: flex;
    }
    
    footer .links{
        height: 20%;
        width: 100%;
        /* background: red; */
    }
    
    footer iframe {
        height: 30%;
        width: 100%;
        /* background: red; */
    }
    
    .bottom {
        width: 124vw;
    }
    
    
    #event {
        display: none;
    }
    
    #events{
        display: none;
    }
    #myevents {
        display: flex;
        justify-content: space-around;
        align-items: center;
        /* background: red; */
        height: 90px;
        width: 130px;
        flex-direction: column;
    }
      }

      main {
        margin-top: 10vh;
        min-height: 60vh;
    }
    
    main .top {
        background:radial-gradient(rgba(126, 40, 255, 0.5),rgba(0,0,0,0.5)), url('../images/group.jpg');
        background-size: cover;
        background-position: center;
        height: 40vh;
        width: 100vw;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    main .middle {
        margin-top: 10vh;
        /* background: red; */
        min-height:80vh;
        width: 100vw;
        display: flex;
      
        justify-content: space-evenly;
        align-items: flex-start;
      
    }
    
    main .middle .left {
        /* background: yellow; */
        width: 40%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: flex-start;
        animation:  mypara 3s linear;
        animation-range: entry 50% cover 50%;
        animation-timeline: view();
    }
    
    main .middle .left h1 {
        color:#FF8C9E;
        margin-bottom: 10px;
        font-size: 16px;
    }
    
    main .middle .left p {
        text-align: justify;
        font-size: 15px;
        color: #666;
    
    }
    
    main .middle .left .about-social {
        /* background: red; */
        height: 50px;
        width: 100%;
        margin-top: 20px;
        display: flex;
        justify-content: flex-start;
        align-items:center;
        gap: 20px;
    }
    
    main .middle .left .about-social img{
        height: 40px;
        width: 40px;
    
    }
    
    
    @keyframes mypara {
        0%{
            opacity: 0;
        }
        50%{
            opacity: 0.5;
        }
        100%{
            opacity: 1;
        }
        
    }
    
    main .middle .right {
        width: 40%;
        display: flex;
        justify-content: center;
        align-items: center;
        animation:  mypara 3s linear;
        animation-range: entry 50% cover 50%;
        animation-timeline: view();
        /* background: blue; */
    }
    
    main .middle .right img {
        /* margin-left: 50px; */
        height: 400px;
        width: 250px;
    }
    
    main .vmbottom {
        margin-top: 10vh;
        /* background: red; */
        height:40vh;
        width: 100vw;
        display: flex;
      
        justify-content: space-evenly;
        align-items: flex-start;
      
    }
    
    main .vmbottom .left {
        /* background: yellow; */
        width: 40vw;
        height: 40vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 20px;
        align-items: flex-start;
        padding: 20px;
    }
    
    main .vmbottom  h1 {
        /* font-size: 18px;
            background-image: linear-gradient(to right, #DD5E89 0%, #F7BB97  51%, #DD5E89  100%);
            margin: 10px;
            padding: 10px 25px;
            text-align: center;
            text-transform: uppercase;
            transition: 0.5s;
            background-size: 200% auto;
            color: white;            
            box-shadow: 0 0 20px #eee;
            border-radius: 10px;
            display: block;          */
    
            background-image: linear-gradient(to right, #ff0084 0%, #33001b  51%, #ff0084  100%);
            margin: 10px;
            padding: 10px 25px;
            text-align: center;
            font-size: 18px;
            text-transform: uppercase;
            transition: 0.5s;
            background-size: 200% auto;
            color: white;            
            box-shadow: 0 0 20px #eee;
            border-radius: 10px;
            display: block;
            border: none; 
    }
    
    main .vmbottom  h1:hover {
        background-position: right center; /* change the direction of the change here */
        color: #fff;
        text-decoration: none;
      }
    
    main .vmbottom p {
        text-align: justify;
        color: #666;
    }
    main .vmbottom .right {
        /* background: yellow; */
        width: 40vw;
        height: 40vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 20px;
        align-items: flex-start;
        padding: 20px;
        
    }
    
    
    @media only screen and (max-width: 600px) {
    
    
    main .top {
        width: 125vw;
    }
    
    main .vmbottom {
        flex-wrap: wrap;
        /* background: red; */
        height: 80vh;
        
        flex-direction: row;
        width: 125vw;
    }
    
    main .vmbottom .left {
        /* background: yellow; */
        width: 80vw;
    }
    
    main .vmbottom .right {
        /* background: yellow; */
        width: 80vw;
    
    }
    
    main .middle {
        margin-top: -50px;
        /* background: yellow; */
        width: 125vw;
        height: 200vh;
        flex-direction: row;
        flex-wrap: wrap;
    
    }
    
    main .middle .left {
        /* background: red; */
        width: 80vw;
        height: 100vh;
    }
    
    main .middle .right {
        /* background: red; */
        width: 80vw;
    }
    
    }



    @media only screen and (min-width: 1300px) {
   

  
     main .vmbottom {
        /* background: blue; */
        height: 20vh;
     }

.socials {
    display:flex;
}
    

     header #events {
        /* background: red; */
        right: 210px;
    }
        
     main .middle .left {
        display: flex;
        /* background: blue; */
        height: 40vh;
        align-items: flex-start;
     }
     
          }
    