/* Custom Font CDN */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(45deg,#2E3192,#1BFFFF);
    /* background: linear-gradient(45deg,#11998E , #38EF7D); */
    height: 100vh;
    overflow: hidden;
}

ul li {
    list-style: none;
}

#timeFormat {
    color: purple;
    font-size: 30px;
    transition: 1s;
    text-decoration: underline lime wavy;
}

#hours {
    color: #1abc9c;
}

#minutes {
    color: #1abc9c;
}

#amPm {
    color: royalblue;
}

.colorGreen {
    color: #1abc9c;
}

.bgGreen {
	color: #fff;
	background: #1abc9c;
	margin: 5px 0;
	width: 75%;
	display: inline-block;
	padding: 0 5px;
	border-radius: 3px;
}

.bgWhite {
    background: rgba(255, 255, 255, 0.78);
}

.headerArea {
    padding: 80px 0;
}

.portfolio{
	/* background: darkslategray; */
	max-height: 80vh;
	overflow-y: scroll;
}

h2 {
    position: relative;
    margin:20px 0 40px 0!important;
    transition: .5s;
    width: 100%;
    font-weight: 700;
}

h2::before {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
    width: 0%;
	height: 3px;
	background: linear-gradient(-45deg,#009245, #FCEE21);
	border-radius: 5px;
    transition: .5s;
}

h2:hover::before {
    width: 20%;
    transition: .5s;
}

#heroName {
    margin: 5px!important;
    color: #fff;
}

#heroName::before {
    background: transparent;
}

/*--------------------------------------------
                Profile Area
--------------------------------------------*/

.profile {
	text-align: center;
	overflow: hidden;
    border: 2px double #000;
	position: sticky;
	height: 80vh;
	max-height: 80vh;
	top: 0;
	left: 0;
	padding: 60px 0;
    margin: 0 0 10px 0;
}

.profile .colorGreen {
    text-transform: uppercase;
    font-weight: bold;
}

.profile .social{
    color: #fff;
    font-size: 22px;
    margin: 0 8px;
}

.profile .profileImage {
    width: 100%;
    min-height: 50vh;
/*     background: url('../images/myImage.png') no-repeat center center / 100% 100%; */
	
    background: url('../images/AsaduzzamanAlif.jpg') no-repeat center center / 100% 100%;

}

.typingText {
    color: #fff;
    font-size: 22px;
    position: relative;
    margin: 0 0 8px 0;
}

#typingText {
    color: #FCEE21;
}

.typingText::after {
    content: '';
    width: 100%;
    height: 100%;
    border-right: 2px solid #FCEE21;
    animation: typing .5s ease-in infinite;
}

@keyframes typing {
    0% {
        opacity: 0;
    } 100% {
        opacity: 1;
    }
}

#checkboxPro {
    cursor: pointer;
    z-index: 5;
    position: relative;
    opacity: 0;
}

.zIndex {
    cursor: pointer;
    z-index: 5;
    position: relative;
    line-height: 0;
    width: 7%;
    margin: 10px;
}

.zIndex span {
    display: inline-block;
    width: 100%;
    height: 2px;
    background: #ecf0f1;
    transition: .5s;
}

.zIndex.cross span:nth-of-type(2) {
    opacity: 0;
}

.zIndex.cross span:nth-of-type(1) {
    transform: rotate(45deg) translate(0px);
}
.zIndex.cross span:nth-of-type(3) {
    transform: rotate(-45deg) translate(9px,-8px);
}

/*--------------------------------------
            Side Nav Menu
--------------------------------------*/

.profile .hideProfileNavbar {
    position: absolute;
    background: transparent;
    width: 103%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 3;
    transition: .5s;
}

.profile .hideProfileNavbar.showListItems {
    left: 0;
    top: 0;
    background: #000;
}

.profile .hideProfileNavbar.hideListItems {
    left: -110%;
    top: 0;
    background: transparent;
}

.navArea a{
    text-decoration: none;
    color: #fff;
    font-size: 32px;
    transition: .5s;
}

.navArea a:hover{
    color: #1abc9c
}

/*--------------------------------------
            Info Area
--------------------------------------*/

.borderGreen {
    border: 1px solid #1abc9c;
    color: #1abc9c;
    padding: 3px;
}

.EducationArea {
    position: relative;
}

.EducationArea::after {
	content: '';
	width: 3px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #1abc9c;
}

.skillsLoader {
	display: inline-block;
	background: #bdc3c7;
	height: 10px;
	width: 100%;
	border-radius: 50px;
	position: relative;
}

.skillsLoader::after {
    content: '';
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #1abc9c;
    border-radius: 50px;
}

.designArea .skillsLoader:nth-of-type(1):after {
    width: 50%;
}
.designArea .skillsLoader:nth-of-type(2):after {
    width: 70%;
}
.designArea .skillsLoader:nth-of-type(3):after {
    width: 95%;
}

.codingArea .skillsLoader:nth-of-type(1):after {
    width: 80%;
}
.codingArea .skillsLoader:nth-of-type(2):after {
    width: 65%;
}
.codingArea .skillsLoader:nth-of-type(3):after {
    width: 90%;
}

/*--------------------------------------
            Contract Area
--------------------------------------*/

.contractMe input,
.contractMe textarea,
.contractMe input[type='submit'] {
    padding: 0 10px;
    background: transparent;
    width: 100%;
    border: 1px solid #009245;
    outline: none;
    border-radius: 5px;
}

.contractMe input {
    height: 30px;
}

.contractMe input[type='submit'] {
    background: #1abc9c;
    color: #fff;
    margin: 0 0 10px 0;
    transition: .5s;
}

.contractMe input[type='submit']:hover {
    background: transparent;
    color: #1abc9c;
}
