
@import url('https://fonts.googleapis.com/css?family=Playfair+Display|Roboto&display=swap');
/* Start: Global styles */
* {
    transition: 0.2s;
}
body{
    margin: auto;
    padding: 0px;
    height: 100vh;
    font-family: "Roboto", sans-serif;
    overflow: hidden;
	min-width: 400px;
}

#mainPageBlock {
	height: 100%;
	overflow-y: scroll;
	scroll-behavior: smooth;
}

.container {
	max-width: 1500px;
	margin: 0 auto;
	padding: 0 20px;

}

.flex {
	display: flex;
	justify-content: space-between;
}

h1, h2 {
	font-family: "Playfair Display", serif;
	font-weight: 800;
	line-height: 1.2;

}

h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
    display: inline-block;
	transition: 0.4s;
}

h1 span::selection {
    background: black;
    color:#0ac213;
}

h2 {
	font-size: 2rem;
	color: #f69314;
	margin-bottom: 1rem;
	transition: 0.4s;

}

h3 {
	letter-spacing: 0.4rem;
	font-size: 30px;
	margin-bottom: 1rem;
	font-weight: 900;
	font-family: serif;
}

.smooth-shadow {
    text-shadow: 2px 2px 5px white;
}

.no-select {
    user-select: none;
}

.animated-text span {
    opacity: 0;
    transition: all 0.4s ease;
    transform: translateY(250px);
    display: inline-block;
}

.animated-text span.fade {
    opacity: 1;
    transform: translateY(0px);
}

section {
	padding: 60px;
}

.no-link-decoration:hover {
	text-decoration: none;
}

/* End: Global  */

/* start: popup-modal */
.popup-modal {
	display: none;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	top: 0;
	justify-content: center;
	align-items: center;
	z-index: 500;
	transition: 0.4s ease-in-out;
}


.popup-modal-content {
	position: relative;
	background-color: white;
	border-radius: 4px;
	z-index: 4;
}

#projectsModal {
	display: none;
	transition: 0.4s ease-in-out;
}

#projectsContent.active {
	-webkit-transform: scale(1);
	transform: scale(1);
}

#projectsContent {
	-webkit-transform: scale(0);
	transform: scale(0);
	overflow: auto;
	width: 600px;
	max-height: 90%;
	box-shadow: 0 0 3px 2px #7d8ee2;
	border-radius: 12px;
	background-color: rgb(51,51,51);
}

#projectInfoBlock{
    display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	justify-content: flex-start;
	height: 100%;
    align-items: center;
    text-align: left;
	color: rgb(182, 181, 181);
}

.btnPositionRight {
	position: absolute;
	border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
	right: 0;
	z-index: 2;
	background-color: rgba(51, 51, 51, 0.8);
}
.closeModalBtn {
	position: relative;
	cursor: pointer;
	border: 1px solid #808080;
	border-radius: 10px;
	box-shadow: none;
	margin: 5px;
	padding: 5px 10px;
	background: rgb(173, 173, 173);
	transition: 0.2s;
}

.closeModalBtn:hover {
	color: white;
	text-shadow: 1px 1px 10px white;
	transition: 0.2s;
	background-color: #585858;
	box-shadow: 0 0 2px 2px white;
}

.closeModalBtn:focus,
.closeModalBtn:active {
	outline: none;
}

.project-modal-link-btn {
	display: flex;
	background: none;
	padding: 8px 25px 8px 8px;
	margin: 5px 5px 20px 0;
	color: rgb(173, 173, 173);
	align-items: center;
	border-radius: 10px;
	transition: 0.05s;
	font-size: 18px;
	text-decoration: none;
}

.project-modal-link-btn:hover {
	color: white;
    text-shadow: 1px 1px 10px white;
    transition: 0.05s;
}

.project-modal-link-btn i {
	transition: 0.05s;
}

.project-info-text {
	padding: 10px 20px;
	line-height: 1.5;
}

.projectImgIconBtns {
	background-color: rgba(90, 90, 90, 0.7);
	padding: 10px 0;
	text-align: center;
	top: 92%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.projectCircle{
	cursor: pointer;
	width: 15px;
	height: 15px;
	border: 3px solid white;
	border-radius: 50%;
}

.projectCircle:hover{
	background-color: white;
}

#projectModalTop {
	transition: 0.5s;
	background-size: cover;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	height: 280px;
	width: 600px;
}

/* end: popup-modal */

/* Start: Header  */
#headerContainer {
	min-height: 600px;
	height: 100%;
	position: relative;
}

header {
	background: transparent;
	padding: 1.5rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	position: fixed;
	width: calc(100% - 17px);
	z-index: 100;
    text-align: right;
    box-shadow: 0 -2px 10px 1px #999;
}

.real-estate-menu {
	background-color: transparent;
	border: 1px solid #fff;
	padding: 3px 5px;
	width: 30px;
	cursor: pointer;
	display: none;
}

.real-estate-menu .strip{
	display: block;
	height: 1px;
	background-color: red;
	margin: 4px 0;
}

header ul {
	list-style-type: none;
	user-select: none;
}

header ul li {
	display: inline-block;
	margin: 0 15px;
}

#close-flyout {
	display: none;
}

header ul li a {
	color: rgb(212, 209, 209);
	font-size: 22px;
	text-decoration: none;
	transition: 20ms;

}

header ul.is-sticky li a {
	color: #000;
}

header ul li a:hover,
header ul li a.active {
	color: #fff;
	text-shadow: 0 0 2px #ffffff;
	font-weight: 700;
	transition: 20ms;
	text-decoration: none;
}

header ul.is-sticky li a:hover,
header ul.is-sticky li a.active {
	color: rgba(1, 1, 2, 0.774);
	text-shadow: 0 0 0 #000000;
	font-weight: 700;
	transition: 50ms;
}
/* End: Header */

/* start: top-content section styles*/
#top-content {
	background: url('https://res.cloudinary.com/harunpehlivan/image/upload/v1719025609/KARTV%C4%B0Z%C4%B0T_p7sbzu.png') no-repeat;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	height: 100%;
	width: 100%;
	transition: 2s;
	overflow: hidden;
}

#top-content .top-content-fade {
	background: rgba(0,0,0,0.7);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}

#top-content h1:hover {
	transition: 0.4s;
}

#top-content h2:hover {
	transform: scale(1.1);
	transition: 0.4s;
}

#top-content .top-content-text {
	position: absolute;
	top: 40%;
	margin: auto;
	left: 0;
	right: 0;
	z-index: 2;
	color: #fff;
	width: 500px;
	text-align: center;
	transition: 500ms;
}

#top-content .top-content-text p {
	line-height: 1.5rem;
	font-weight: 300;
	font-size: 1rem;
}
#top-content .top-content-text p a{
	text-decoration: none;
	color: white;
	transition: 50ms;
}

#currentPossition {
	font-size: 30px;
    opacity: 0;
    cursor: pointer;
	transition: 1s;
    background: -webkit-linear-gradient(rgb(255, 153, 0), rgb(245, 234, 89));
	background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

/* end: top-content sectionstyles*/

/* Start: Social Links */
.social-links a:nth-child(4){
    width: 350px;
    transform: translate(-50px, 0);
}

.social-links {
	width: 200px;
    position: fixed;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translate(-250px, 0);
    z-index: 5;
}

.social-links a{
    color: white;
    background-color: rgba(0,0,0,0.7);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    display: block;
    margin: 5px;
    padding: 20px;
    width: 300px;
    text-align: right;
    border-radius: 50px;
    transition: 0.8s;
    transition-property: transform;
}

.social-links a:hover {
    transform: translate(140px, 0);
}


.social-links i{
    margin-left: 10px;
    font-size: 30px;
    width: 30px;
    height: 30px;
}

.social-links a:nth-child(1) i{
    color: rgb(10,102,194);
}

.social-links a:nth-child(4) i{
    color: #0ac213;
}

.social-links a:nth-child(2) i{
    color: white;
}

.social-links a:nth-child(3) i{
    color: rgb(15,144,243);
    background: linear-gradient(rgb(24,174,254), rgb(1,102,226));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* End: Social Links */

/* Start: skills */
#skills {
	background: linear-gradient(
	rgb(26,31,41) 0%, 
	rgb(236, 236, 236) 22% 
	);
}

#skills h3 {
	width: 100%;
}

#skills img{
	display: inline-block;
	width: 100px;
	height: 100px;
	background-size: cover;
}

#skills img.streched-image {
	width: 120px;
	height: 70px;
}

.flip-box {
	background-color: transparent;
	width: 100px;
	height: 100px;
	perspective: 1000px;
}

.flip-box.streched-box{
	width: 120px;
	height: 70px;
}

.flip-box-inner {
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	transition: transform 0.8s;
	transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner {
	transform: rotateY(180deg);
}

.flip-box-front, .flip-box-back {
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden; 
	backface-visibility: hidden;
}

.flip-box-front {
	background-color: transparent;
	color: black;
}

.flip-box-back {
	color: rgb(0, 0, 0);
	transform: rotateY(180deg);
}

.flip-box-back span{
	font-size: 20px;
	line-height: 1.5;
	margin: auto;
	font-weight: 700;
}

#skillsHelpText {
	display: none;
	color: grey;
	user-select: none;
	padding: 15px 0;
}

/* End: skills */

/* Start: Works */

#works {
	background-color: #060c21;
}
#works img{
	margin: 10px 0;
	width: 288px;
	height: 162px;
	min-width: 288px;
	min-height: 162px;
	border-end-end-radius: 50px;
	transition: 0.1s;
	cursor: pointer;
}

#works .project-card-left-side:hover img{
	border-end-end-radius: 0px;
}

#works .project-card-left-side:hover .blured-left-side {
	width: 1px;
}

#works h3 {
	padding-bottom: 5px;
	color: rgb(241, 241, 241);
}

#works h4 {
	margin-top: 10px;
	font-size: 22px;
	font-weight: 700;
	padding-bottom: 10px;
}

#works i {
	font-size: 35px;
	padding: 5px;
}

#works a{
	text-decoration: none;
}



.project-card {
	position: relative;
	background-color: #333;
	color: white;
	margin: 20px 0;
	border-radius: 5px;
	box-shadow: 4px 4px 4px 2px black;
	left: -2000px;
	opacity: 0;
	transition: 0.7s ease-in-out;
	flex-wrap: nowrap;
}

.blured-left-side {
	position: absolute;
	top: 26px;
	left: 0;
	width: 40px;
	height: 162px;
	background: linear-gradient(90deg, #333, rgb(51, 51, 51, 0.8), rgba(255, 255, 255, 0));
	
}

.projects-info {
	padding-left: 15px;
	max-width: 800px;
}

.projects-info p{
	display: inline-block;
	padding: 10px 20px 10px 0;
	line-height: 1.5;
}

.projects-info span {
	display: inline-block;
	margin: 5px 5px 5px 0;
	padding: 5px 15px;
	border: 1px solid white;
	border-radius: 10px;
	user-select: none;
}

.projects-info span:nth-child(1) {
	margin-left: 0;
}

.projects-info a {
	display: inline-block;
}

.project-info-link-btn {
	display: flex;
	background: none;
	padding-right: 25px;
	margin-right: 5px;
	margin-top: 5px;
	color: rgb(173, 173, 173);
	align-items: center;
	border-radius: 10px;
	transition: 0.2s;
}

.project-info-link-btn:hover,
.project-info-link-btn:hover i {
	color: white;
	text-shadow: 1px 1px 10px white;
	transition: 0.2s;
}

.project-info-link-btn:hover a{
	text-decoration: none;
}

.project-info-link-btn:active{ 
	border: none;
	outline: none;
}

.project-info-link-btn:focus{
	outline: none;
}
/* End: Works */

/* Start: Aboutme */
#aboutMe {
	background: #f8f9fa;
	border-bottom: 1px solid #dee2e6;
}

#aboutMe h3 {
	background: -webkit-linear-gradient(rgb(0, 0, 0), rgb(37, 77, 122), rgb(0, 0, 0));
	background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#aboutMe p{
	font-family: Helvetica, Arial;
	line-height: 1.5;
	font-size: 18px;
}

#aboutMeImagesContainer img{
	width: 160px;
	height: 90px;
	padding: 5px 0;
	border: 2px solid black;
	background-color: black;
}

#aboutMeImagesContainer img:hover {
	box-shadow: 0 0 3px 3px rgba(10,102,194, 0.8);
}

.about-me-text {
	position: relative;
	min-width: 300px;
	width: 38%;
	margin: auto 0;
}

.more-content-btn {
	background-color: rgba(0,0,0,0.7);
	position: absolute;
	padding: 5px 15px;
	border-radius: 10px;
	color: white;
	text-align: center;
	z-index: 5;
	transition: all 0.5s;
	width: 120px;
	cursor: pointer;
}

.more-content-btn:focus {
	text-decoration: none;
	outline: none;
    outline-offset: none;
}

.more-content-btn:hover{
	box-shadow: 0 0 2px 3px white;
	background-color: rgba(90, 90, 90, 0.7);
}

.more-content-btn span {
	cursor: pointer;
	display: inline-block;
	position: relative;
	transition: 0.5s;
}

#firstContentBtn {
	text-align: center;
	z-index: 5;
	font-size: 26px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

#firstContentBtn span:after {
	content: '\00bb';
	position: absolute;
	opacity: 0;
	top: 0;
	right: -20px;
	transition: 0.5s;
}

#firstContentBtn:hover span {
	padding-right: 25px;	
}

#firstContentBtn:hover span:after {
	opacity: 1;
	right: 0;
}

#secondContentBtn {
	font-size: 18px;
}

#secondContentBtn span:before {
	content: '\00ab';
	position: absolute;
	font-size: 25px;
	opacity: 0;
	top: -5px;
	left: -20px;
	transition: 0.5s;
}

#secondContentBtn:hover span {
	padding-left: 25px;	
}

#secondContentBtn:hover span:before {
	opacity: 1;
	left: 0;
}

#aboutMeTextImage {
	background: url('https://gvidasgvd.github.io/portfolioPage.github.io/images/headerBackground.jpg');
	position: absolute;
	background-repeat: no-repeat;
	background-size: cover;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	transition: 0.5s;
}

.about-me-images-container {
	padding-top: 20px;
}

.about-me-images-container-inner {
	min-width: 180px;
	padding: 20px;
	background-color: #060c21;
	margin: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;

	transform-style: preserve-3d;
}

#aboutMeImagesContainer{
	transition: 0.5s;
}

#secondText {
	/* display: none; */
	user-select: none;
	opacity: 0;
	transition: 0.5s;
	right: -500px;
}
/* End: Aboutme */

/* Start: certifications */
#certifications {
	background: #060c21;
}

#certifications h3{
	line-height: 1.5;
	padding-bottom: 25px;
	color: rgb(241, 241, 241);
	text-shadow: 1px 1px 2px black;
	background: unset;
	background-clip: unset;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
}

.certification-card-block {
	z-index: 3;
}

.certification-card {
	position: relative;
	margin: 10px auto;
	min-width: 280px;
	max-width: 280px;
	min-height: 450px;
	text-align: center;
	background-color: #060c21;
	padding: 50px 15px 15px;
	border-radius: 5px;

}

.certification-card:before {
	content:'';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: #fff;
	border-radius: 5px;
	z-index: -1;
}

.certification-card:hover:before,
.certification-card:hover:after {
	background: linear-gradient(235deg, #00bcd4, #060c21, #89ff00);
}

.certification-card:after {
	content:'';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: #fff;
	z-index: -2;
	filter: blur(30px);
}

.certification-card:before,
.certification-card:after {
	background: linear-gradient(235deg, #89ff00, #060c21, #00bcd4);
} 

#certifications img {
	width: 200px;
	min-width: 200px;
	height: 200px;
	min-height: 200px;
	border-radius: 5px;
	box-shadow: 0 0 10px 5px rgb(36, 34, 34);
	z-index: 2;
	transition: all 0.4s ease-out;
}

#certifications img:hover {
	transform: scale(1.2);
}

#certifications img.image-streched {
	width: 230px;
	min-width: 230px;
}

.card-info h1 {
	margin-top: 30px;
	text-shadow: 1px 1px 2px black;
	font-size: 20px;
	transition: all 0.75s ease-out;
	color: white;
  }
.card-info h3 {
	font-size: 1.3rem;
	padding: 1rem 0rem;
	color: #585858;
	font-weight: lighter;
	transition: all 0.75s ease-out;
	letter-spacing: unset;
}

/* End: certifications */

/* start: footers styles */
footer {
	background: #333;
	padding-bottom: 3rem;
}

footer .flex {
	padding: 3rem 0;
	border-bottom: 1px solid #777;
}

footer h5 {
	color: #fff;
	margin-bottom: 1rem;
	font-weight: 300;
}

footer .footer-about {
    padding-left: 5%;
	width: 47%;
}

footer .footer-about p {
    color:rgb(182, 181, 181);
    line-height: 1.5rem;
	width: 65%;
}

footer .footer-quick-links {
	width: 16%;
}

footer .footer-quick-links ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

footer .footer-quick-links ul li {
	margin: 10px 0;
}

footer .footer-quick-links ul li a {
	color: rgb(182, 181, 181);
	text-decoration: none;
}

footer .footer-quick-links ul li a:hover {
	color: #fff;
}

footer .footer-subscribe {
	width: 20%;
}

footer button.right-rounded{
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;
	background: #f69314;
	font-size: 16px;
	color: #000;
	padding: 10px 30px  9px;
	line-height: 1.5;
	cursor: pointer;
	border: none;
	position: absolute;
	right: 0;

}

footer button.right-rounded:hover {
	background: #fff;
}

footer .footer-subscribe ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

footer .footer-subscribe ul li {
	display: inline-block;
	margin: 0 16px;
}

footer .footer-subscribe ul li:first-child {
	margin-left: 0;
}

footer .footer-subscribe ul li a {
	text-decoration: none;
	color: rgb(177, 177, 177);
}

footer .footer-subscribe ul li a:hover{
	color: #fff;
}

footer small {
	margin-top: 3rem;
	font-size: 1rem;
	display: block;
	text-align: center;
	color: #777;
}

footer small a{
	color: #777;
	text-decoration: none;
}

footer small a:hover {
	color: #fff;
	cursor: pointer;
}

.footer-subscribe ul li span {
    font-size: 25px;
}


/* end: footers styles */
