/* Header File Stylesheet */
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: sans-serif;
    flex-wrap: wrap;
}


body {
   overflow-x: hidden;
}
.social {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 30px;
    right:50px;
    background: #B4D6CD;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    border: 2px solid white;
    cursor: pointer;
    z-index: 99;
}

.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;
    }
      }



/* Courses File Stylesheet */

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: Poppins;
}
@font-face {
	font-family: Poppins;
	src: url(./fonts/Poppins-Medium.ttf);
}
.main {
    margin-top: 10vh;
    position: relative;
    z-index: 2;
	width: 100%;
	height: auto;
	display: grid;
	place-items: center;
	background-color: rgb(245, 245, 245);
	padding: 50px 0;
}
.main .head {
    margin-top: 5vh;
    font-size: 20px;
    color: #FF4E88;
    text-align: center;
	position: relative;
	margin-bottom: 100px;
	font-weight: 500;
}
.main .head::after {
	content: " ";
	position: absolute;
	width: 50%;
	height: 3px;
	left: 50%;
	bottom: -5px;
	transform: translateX(-50%);
	background-image: linear-gradient(to right, rgba(91, 14, 216, 0.767), rgba(240, 185, 231, 0.747));
}

/* Container Css Start  */

.container {
	width: 70%;
	height: auto;
	margin: auto 0;
	position: relative;
}
.container ul {
	list-style: none;
}
.container ul::after {
	content: " ";
	position: absolute;
	width: 2px;
	height: 100%;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
    background-color: #FF4E88;
}
.container ul li {
	width: 50%;
	height: auto;
	padding: 15px 20px;
	background-color: #fff;
	border-radius: 8px;
    box-shadow:2px 2px 5px #ffda764a,-2px -2px 5px #ffda764a;

	position: relative;
	margin-bottom: 30px;
	z-index: 99;
}
.container ul li:nth-child(4) {
	margin-bottom: 0;
}
.container ul li .circle {
	position: absolute;
	width: 20px;
	height: 20px;
	border-radius: 50%;
    background-color: #FF4E88;

	top: 0;
	display: grid;
	place-items: center;
}
.circle::after{
	content: ' ';
	width: 12px;
	height: 12px;
    background-color: #FF4E88;

	border-radius: 50%;
}
ul li:nth-child(odd) .circle {
	transform: translate(50%, -50%);
	right: -30px;
}
ul li:nth-child(even) .circle {
	transform: translate(-50%, -50%);
	left: -30px;
}
ul li .date {
	position: absolute;
	width: 130px;
	height: 33px;
	/* background-image: linear-gradient(to right,#7f00ff,#e100ff); */
    /* background-color: #FF4E88; */


	border-radius: 15px;
	top: -45px;
	display: grid;
	place-items: center;
	font-size: 20px;


	background-image: linear-gradient(to right, #ff0084 0%, #33001b  51%, #ff0084  100%);

	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; 
	
}

ul li .date:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }
.container ul li:nth-child(odd) {
	float: left;
	clear: right;
	text-align: right;
	transform: translateX(-30px);
}
ul li:nth-child(odd) .date {
	right: 20px;
}
.container ul li:nth-child(even) {
	float: right;
	clear: left;
	transform: translateX(30px);
}
ul li .heading {
	font-size: 17px;
	color: #FF4E88;
}
ul li p {
	font-size: 13px;
	color: #666;
	line-height: 18px;
	margin: 6px 0 4px 0;
}
ul li a {
	font-size: 13px;
	text-decoration: none;
	color: rgb(18, 54, 214);
	transition: all 0.3s ease;
}

/* Responsive Stylesheet for Courses file */


@media only screen and (min-width:798px) and (max-width: 1100px) {
	.container{
		width: 80%;
	}
}

/* Responsive Stylesheet for Courses file */


@media only screen and (max-width: 798px) {
	.container{
		width: 70%;
		transform: translateX(20px);
	}
	.container ul::after{
		left: -40px;
	}
	.container ul li {
		width: 100%;
		float: none;
		clear: none;
		margin-bottom: 80px;
	}
	.container ul li .circle{
		left: -40px;
		transform: translate(-50%, -50%);
	}
	.container ul li .date{
		left: 20px;
	}
	.container ul li:nth-child(odd) {
		transform: translateX(0px);
		text-align: left;
	}
	.container ul li:nth-child(even) {
		transform: translateX(0px);
	}
}

/* Responsive Stylesheet for Courses file */

@media only screen and (max-width: 600px) {
	.main {
		width: 125vw;
	}
	.container{
		width: 80%;
	}
	.container ul::after{
		left: -20px;
	}
	.container ul li .circle{
		left: -20px;
	}
}

@media only screen and (min-width: 1300px) {
   
       
        
    header #events {
        /* background: red; */
        right: 210px;
    }
  
        }