* {
	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;
}

main {
    /* background: #FFE6E6; */
    min-height: 90vh;
}



main .top  {
    display: flex;
    flex-wrap: wrap;
    height: 90vh;
    width: 100vw;
    /* background: rgb(35, 0, 35); */
    /* background:url('../images/home-bg.png'); */
    /* background-size:cover; */
    /* background-repeat: no-repeat; */
    /* background-position-x:-100px ; */
    justify-content: space-evenly;
    align-items: center;
    transition: 5s;


    background: linear-gradient(-45deg , purple , rgb(96, 0, 96) ,rgba(255, 0, 0, 0.498), rgb(0, 0, 77) );
    background-size: 400% 400% ;
    animation: animate 5s ease infinite;
}


@keyframes animate {

    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
    
}


main .top .details {
    padding-top: 50px;
    /* margin-left: 50px; */
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 5;
    align-items: center;
    /* background: red; */
    flex-direction: column;
    height: 80vh;
    width: 70vw;
    text-align: center;

}

main .top .details h1 {
    /* color: #FF4E88; */
    color: white;
    font-size: 25px;
    /* text-shadow: 0 0 5px #000000, 0 0 15px #000000, 0 0 20px #000000; */
    /* animation: shad 2s linear infinite; */
}

@keyframes shad {
    0% {
        text-shadow: 0 0 5px #000000, 0 0 15px #000000, 0 0 20px #ff00bb;

    }
    50%{
        text-shadow: 0 0 5px #000000, 0 0 15px #000000, 0 0 20px #dc00d5;

    }
    100%{
        text-shadow: 0 0 5px #000000, 0 0 15px #000000, 0 0 20px #26b7ff;

    }
    
}

main .top .details p {
    /* color: #FF8C9E; */
    color: bisque;
    /* background: yellow; */
    width: 80%;

}

main .top .details a{
    text-decoration: none;
}

main .top .details .btns {
    /* background: blue; */
    width: 50vw;
    display: flex;
      justify-content: center;
      align-items: center;
      gap: 30px;
}

main .top .details button {
    /* background-color: #FF4E88;
    padding: 10px;
    border: 1px solid #FF4E88;
    margin: 10px;
    width: 150px;
    font-size: 15px;
    color: white;
    border-radius: 20px;
    transition: 0.5s;
    cursor: pointer; */

       
   
        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;
     
     
}

main .top .details button:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }



main .top .details a:nth-child(2) button{
    text-decoration: none;
    background-image: linear-gradient(to right, #FBD3E9 0%, #BB377D  51%, #FBD3E9  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;
    border: none;
    display: block;

}

main .top .details a:nth-child(2) button:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }




#myimg {
    position: absolute;
    height: 80%;
    width: 100%;
    z-index: 2;
    transform: translateX(0px);
    transition: 1s;
    animation: myimage 1.5s linear  ;
 
}


@keyframes myimage {
    0% {
        transform: translateX(500px);

    }
    50% {
        transform: translateX(250px);
    }
    100%{
        transform: translateX(0px);

    }
    
}





main .middle {
    /* background: blue; */
    display: flex;
    min-height: 80vh;
    align-items: center;
    justify-content: space-around;
    margin: 50px 0px;
}



main .middle .details {
    height: 60%;
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-evenly;
    gap: 20px;
    /* background: red; */
    padding: 10px;
    text-align: justify;
   
}

main .middle .details h1 {
    font-size: 15px;
    color: #FF4E88;
    /* color: black; */
}

main .middle .details p {
    /* color:#FF4E88; */
    /* color: rgba(0, 0, 0, 0.75); */
    color: black;
animation:  mypara 3s linear;
animation-range: entry 50% cover 50%;
animation-timeline: view();

}

@keyframes mypara {
    0%{
        opacity: 0;
    }
    50%{
        opacity: 0.5;
    }
    100%{
        opacity: 1;
    }
    
}

main .middle .details a {
    /* background-color: #FF4E88;
    padding: 10px;
    border: 1px solid #FF4E88;
    margin: 10px;
    width: 150px;
    font-size: 15px;
    color: white;
    border-radius: 20px;
    transition: 0.5s;
    cursor: pointer;
    text-align: center;
    text-decoration: none; */
    text-decoration: none;
    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: 20px;
    display: block;
    border: none; 


}
main .middle .details a:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}


main .middle img {
    width: 300px;
       height: 300px;
    /* background: red; */
    scale:0.5;
    animation: myimageanimation 3s linear;
    animation-range: entry 50% cover 100%;
    animation-timeline: view();
    
}

@keyframes myimageanimation {
    0%{
        scale: 0.8;
    }
    50%{
        scale: 1.2;
    }
    100%{
        scale: 1.8;
    }
}

main .services {
    margin:50px 0px;
    /* background: red; */
    min-height: 100vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
}

main .services .details {
    /* background: yellow; */
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    height: 10vh;
    width: 80vw;
}

main .services .details h6 {
    color: #FFDA76;
}

main .services .details h1 {
    color: #FF8C9E;
}

main .services .container {
    /* background: blue; */
    width: 80vw;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;

}

main .services .container .box {
    margin: 20px;
    /* background: #FFDA76; */
    box-shadow:2px 2px 5px #ffda764a,-2px -2px 5px #ffda764a;
    height: 300px;
    width: 250px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    text-align: justify;
    box-sizing: border-box;
    padding: 20px;
    border-radius: 10px;
    transition: 0.6s;
    scale: 0;
    animation: mybox linear both;
    animation-range: entry 50% cover 50%;
    animation-timeline:view();
}

/* Animation for box */
@keyframes mybox {
    0%{
        scale:0;
    }
    50%{
        scale:0.5;
    }
    100%{
        scale:1;
    }
}

main .services .container .box:hover {
    box-shadow:2px 2px 20px #ffda7649,-2px -2px 20px #ffda7649;

}

main .services .container .box h2 {
    font-size: 15px;
    color: #FF4E88;
    text-align: center;
}



main .services .container .box p {
    /* color:#ff4e8988; */
    color: black;
    font-size: 12px;
}

main .services .container .box img {
    height: 100px;
    width: 100px;
    transition: 1s;
border: 2px solid #ffda766b;
border-radius: 10px;
    /* background: #FFDA76; */
}

main .services .container .box:hover img {
    border: 2px solid #FFDA76;


}

.container2 {
    /* background: red; */
    object-fit: cover;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 80vw;
    flex-wrap: wrap;
    min-height: 50vh;

    

}

.container2 img {
    border-bottom-right-radius: 20px;
    margin: 20px;
    height: 200px;
    width: 250px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.342);
    transition: 0.6s;
    animation: mybox linear both;
    animation-range: entry 50% cover 50%;
    animation-timeline:view();
}




.container2 img:hover {
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.555);

}

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; 

}


#myevents {
    display: none;
}

@media only screen and (min-width: 1300px) {
   

  
header {
   width: 100vw;
   /* border: 2px solid black; */
}

header #events {
    /* background: red; */
    right: 210px;
}




main .top {
    margin-top: 10vh;
    width: 100vw;
  height: 80vh;
}

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: 100vw;
    /* height: 50vh; */
    /* background: red; */
}

main .middle .details {
    /* background: red; */
    width: 40vw;
}





main .services {
    flex-wrap: wrap;
    flex-direction: column;
    width: 100vw;
}


main .services .container ,.container2{
/* background: yellow; */
width: 60vw;
}




  }






  
@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;
    }
      }