/********** Template CSS **********/
:root {
    --primary: #152440;
    --primary-alpha: #4790FC54;
    --primary-background: #E4E9FC;
    --secondary-background: #ecf0f1;
    --secondary: #F43054;
    --light: #FFFFFF;
    --dark: #152440;
}
body, p {
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.navbar{
    
}
.fit-content {
    width: fit-content;
}
.anchor {
    scroll-margin-top: 100px;
}
a:hover {
    color: var(--secondary);
  }
p, .body {
    font-size: 16px;
}
h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary);
    font-family: Manrope;
    text-transform: uppercase !important;
}
.body-large {
    font-size: 32px;
}
.body-medium {
    font-size: 24px;
}
.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white body,
.text-white body-medium,
.text-white body-large {
    color: var(--secondary);
}
.pt-6 {
    padding-top: 90px;
}

.pb-6 {
    padding-bottom: 90px;
}

.py-6 {
    padding-top: 90px;
    padding-bottom: 90px;
}
.bg-primary {
    background-color: var(--primary) !important;
}
.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}
.btn {
    font-weight: 600;
    transition: .5s;
}
.font-weight-light {
    font-style: normal;
    font-weight: 100 !important;
}
.btn-primary {
    color: var(--primary);
    border: 1px solid var(--primary) !important;
    background-color: var(--light);
    border: unset;
    line-height: 1.5;
    border-radius: 8px;
}
.btn-primary:hover {
    color: var(--secondary);
    background-color: var(--light);
    border: 1px solid var(--secondary) !important;
}

.btn-secondary {
    color: var(--secondary);
    border: 1px solid var(--secondary) !important;
    background-color: var(--light);
    border: unset;
    line-height: 1.5;
    
    border-radius: 8px;
}
.btn-secondary:hover {
    color: var(--primary);
    background-color: var(--primary-background);
    border: 1px solid var(--primary) !important;
}
.btn-check:checked + .btn-primary, .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle {
    color: var(--primary);
    background-color: var(--secondary);
    border: 1px solid var(--primary);
}
.btn-check:focus + .btn-primary, .btn-primary:focus {
    color: var(--primary);
    background-color: var(--secondary);
    border: 1px solid var(--primary);
    box-shadow: 0 0 0 .25rem rgba(70, 72, 207, 0.5);
}
.btn-square {
    width: 36px;
    height: 36px;
    line-height: 36px;
    
}

.btn-sm-square {
    width: 28px;
    height: 28px;
    line-height: 28px;
    
}

.btn-lg-square {
    width: 46px;
    height: 46px;
    line-height: 46px;
    
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    padding: 0px;
}
a {
    color: var(--primary);
    text-decoration: none;
    
}
.h-150px {
    height: 150px;
}
.badge,
.badge-no-color {
	display: inline-block;
	padding: .35em .65em;
	font-size: .75em;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	vertical-align: baseline;
	border-radius: 50px;
    width: fit-content;
    margin: 3px;
}
.badge {
    background-color: var(--primary);
	color: var(--light);
    
}
.badge.in-text,
.badge-no-color.in-text {
    font-size: 1.25em;
    padding: 16px;
    margin: 8px;
}
.badge.secondary {
    background-color: unset;
    border: 1px solid var(--primary);
    color: var(--primary);
}
.filters li {
	display: inline-block;
	font-weight: 500;
	color: var(--dark);
	cursor: pointer;
	transition: .5s;
	border-bottom: 2px solid transparent;
}
.filters li:hover, .filters li.active {
	color: var(--primary);
	border-color: var(--primary);
}
.is-invisible {
    transition: 0.6s;
    opacity: 0;
    visibility: hidden;
}
@media (max-width: 576px) {
    .is-invisible-mobile {
        transition: 0.6s;
        opacity: 0;
        width: 0px !important;
        visibility: hidden;
    }
}
.is-visible {
    opacity: 1;
    visibility: visible;
}
/* ----------------------------  COLORS  ---------------------------- */
.bg-blue {
    background-color: #45aaf2 !important;
}
.bg-purple {
    background-color: #a55eea !important;
}
.bg-orange {
    background-color: #fd9644 !important;
}
.bg-aqua {
    background-color: #2bcbba !important;
}
.bg-green {
    background-color: #20bf6b !important;
}

.bg-red {
    background-color: #fc5c65 !important;
}

/* ----------------------------  BLOCKS  ---------------------------- */
#page {
    display: block;
    float: right;
    width: calc(100vw - 25%);
}

#page > div {
    width: 100%;
    /*min-height: 100vh;*/
    padding: 64px;
}

@media (max-width: 576px) {
    #page {
        width: initial;
        float: unset;
    }
    #page > div {
        padding: 64px 16px;
    }
}
/* ----------------------------  MENU  ---------------------------- */
#left-panel {
	padding-top: 3em;
	padding-bottom: 40px;
	float: left;
	width: 25%;
	position: fixed;
	overflow-y: auto;
	z-index: 1001;
	background: var(--primary-background);
	transition: opacity 0.25s ease;
    visibility:visible;
}
@media (max-width: 576px) {
    #left-panel {
        /*visibility:hidden;*/
        width: 100%;
        margin-top: 16px;
    }
}
#left-panel .author-img {
	width: 200px;
	height: 200px;
	margin: 0 auto;
	margin-bottom: 30px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
}

#left-panel #left-panel-main-menu ul {
	text-align: center;
	margin: 0;
	padding: 0;
}

#left-panel #left-panel-main-menu ul li {
	margin: 0 0 10px 0;
	padding: 0;
	list-style: none;
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
}
#navbar > ul > li > a {
    width: 100%;
}
#navbar > ul > li.active {
    /*border-bottom: 2px #000 solid;*/
    box-shadow: inset 0px -2px 0px 0px #000;
}

#navbar > ul > li.active > a {
    /*cursor: default;*/
}
#navbar > ul > li.active > a:hover {
    /*color: var(--primary);*/
    box-shadow: inset 0px -2px 0px 0px var(--secondary);
}
#navbar {
	text-align: center;
	display: block;
	margin: auto;
}
.author-img {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;

    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #999999;
}
.hamburger-menu {
	position: fixed;
	top: 0px;
	left: 0px;
    width: 100%;
    z-index: 1002;
	line-height: 32px;
	font-size: 32px;
	padding: 8px;
	color: var(--dark);
    display: none;
    background-color: #f2f3f7;
    
}
@media (max-width: 576px) {
    .hamburger-menu {
        display: block;
    }
}
.loader-text {
    margin-top: 100px;
}
.contacts i {
    width: 32px;
    height: 32px;
    color: var(--light);
    background-color: var(--secondary);
    font-size: 16px;
    padding: 8px;
    border-radius: 50%;
    margin-right: 8px;
    margin-top: 12px;
}
.contacts > a {
    line-height: 24px;
    font-size: 18px;
}
/* ----------------------------  SPLASH  ---------------------------- */
#splash {
    width: 100%;
    /*min-height: 100vh;*/
    padding: 64px;
    
    background-size: cover;
    
}
/*
.btn.btn-learn {
	color: var(--primary);
	border: 1px solid var(--primary);
	background: transparent !important;
}
.btn.btn-learn:hover {
	color: var(--primary);
	background-color: var(--primary-background) !important;
	border: 1px solid var(--primary) !important;
}*/


/* ----------------------------  PROJECTS  ---------------------------- */
#projects {
    width: 100%;
    padding: 64px;
}
.portfolio-item {
	position: relative !important;
	left: initial !important;
	top: initial !important;
	border: 3px solid var(--primary);
	border-radius: 16px;
	margin: 12px;
	text-align: center;
    width: 250px;
    min-width: 250px;
	box-shadow: 10px 10px 0px -1px #F43054;
}
.portfolio-item:hover {
    background-color: var(--primary-background);
}
#portfolio-container {
    height: initial !important;
}
.portfolio-img {
	position: relative;
    margin: 8px;
    border-radius: 16px;
}
.portfolio-img > img {
    border-radius: 16px;
}
.portfolio-btn {
	position: absolute;
	padding: 8px;
	bottom: 0px;
	background: #0006;
	width: 100%;
}
.portfolio-title {
	padding: 12px;
	color: var(--primary);
	font-size: 28px;
	font-weight: bold;
	width: 100%;
	
}

.portfolio-item > .badge-container {
    position: absolute;
    top: 12px;
    right: 12px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: end;
}
.portfolio-item  > .badge-container > .badge {
    border-radius: 16px;
    margin: 1px;
}
/* ----------------------------  SKILLS  ---------------------------- */
#skills {
    width: 100%;
    padding: 64px;
}
.skill .progress {
	height: 5px;
	border-radius: 5px;
}
.skill .progress .progress-bar {
	width: 0px;
	border-radius: 5px;
	transition: 3s;
}

/* ----------------------------  HISTORY  ---------------------------- */
#history {
    width: 100%;
    padding: 64px;
}

.timeline-centered {
	position: relative;
	margin-bottom: 30px;
}
.timeline-centered .timeline-entry {
	position: relative;
	margin-top: 5px;
	margin-left: 30px;
	margin-bottom: 40px;
	clear: both;
}
.timeline-centered .timeline-entry .timeline-entry-inner {
	position: relative;
	margin-left: -20px;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon,
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-dot,
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-time {
	display: block;
	text-align: left;
	float: left;
    width: 37px;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-dot {
    width: 24px;
    border: 6px #606366 solid;
    border-radius: 50%;
    height: 24px;
    margin-left: 23px;
    margin-top: 14px;
}
.timeline-centered.education .timeline-dot {
    background-color: #F43054;
}
.timeline-centered.education::before {
    border-left: 3px #F43054 dotted;
}
.timeline-centered.experience .timeline-dot {
    background-color: #00C0AA;
}
.timeline-centered.experience::before {
    border-left: 3px #00C0AA dotted;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon {
    -webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
	-moz-box-shadow: 0 0 0 5px #f2f3f7;
	-webkit-box-shadow: 0 0 0 5px #f2f3f7;
	box-shadow: 0 0 0 5px #f2f3f7;
	width: 40px;
	height: 40px;
	margin-left: 15px;
    margin-top: 5px;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-time > span {
    font-size: 16px;
    color: #606366;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-time > span.and {
    font-size: 12px;
    padding: 0px;
    margin: -5px 0px ;
    display: block;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-time > hr {
    background: linear-gradient(90deg, rgba(96,99,102,1) 0%, rgba(96,99,102,0) 100%);
    line-height: 5px;
    margin: 4px 0px;
    height: 2px;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon .fa-solid {
    line-height: 40px;
    color: var(--light);
    width: 100%;
    border-radius: 50%;
	background: var(--dark);
}
.timeline-centered::before {
	content: '';
	position: absolute;
	display: block;
	width: 0px;
	/*background: var(--secondary-background);*/
	top: 0px;
	bottom: 0px;
	margin-left: 81px;
	
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label {
	position: relative;
	/*background: var(--secondary-background);*/
	/*padding: 1.5em;*/
	margin-left: 120px;
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding;
	background-clip: padding-box;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label > h6 {
    color: #606366;
}

.bootstrap-tagsinput {
    width: 100%;
}