body, html {
    overflow-x: hidden;
	font-family: "Philosopher";
	background-color: #f1f1f1;
}
.main-content {
	margin-top: 80px;
}

.carousel-item {
	overflow: hidden;
	border: 1px solid yellow;
	border-radius: 15px;
}

.btn img{
	width: 1.5rem;
	height: 1.5rem;
}

.yel img {
	width: 1rem;
	height: 1rem;
}

section {
	padding: 1.8rem 0;
}

.panel {
	background: linear-gradient(to right,#452d52,#2e0f3f);
	border: 1px solid #303030;
	border-radius: 15px;
	box-shadow: 0 0 20px rgba(71, 56, 56, 0.7);
}

.navbar {
	background-color: #f1f1f1;
	border: 1px solid #303030;
	border-radius: 15px;
	box-shadow: 0 0 20px black;
}

.navbar-toggler {
	background-color: #fed136;
	border-color: #614d05;
	border-radius: 15px;
}

.navbar-nav .nav-link {
	padding: 0 2rem;
}

.navbar-nav .nav-link.active
{
	color: #fed136;
}

.nav-link:hover{
	color: #fed136;
}

h1 {
	color: #303030;
}
h2 {
	color: #505050;
}
h3 {
	color: #707070;
}
p, a {
	color: #fed136;
}
.btn {
	border-radius: 15px;
	height: 5rem;
	align-content: center;
}
.wow {
	visibility: hidden;
}

/*--------------------
Portfolio
--------------------*/
.figure {
	position: relative;
    overflow: hidden;
    margin: 0;
    background: #726FB9;
    cursor: pointer;
}

.figure-caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.figure-caption a {
    z-index: 1000;
    text-indent: 200%;
    white-space: nowrap;
    font-size: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.figure {
	background: #000;
	padding: 0;
}

.figure img {
	opacity: 0.7;
	-webkit-transition: 0.35s;
	transition: 0.35s;
	margin: 0;
}

.figure:hover img {
	opacity: 0.3;
}

.figure-caption::before,
.figure-caption::after {
	position: absolute;
	top: 30px;
	right: 30px;
	bottom: 30px;
	left: 30px;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}

.figure-caption::before {
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	transform: scale(0,1);
}

.figure-caption::after {
	border-right: 1px solid #fff;
	border-left: 1px solid #fff;
	transform: scale(1,0);
}

.figure-caption h1 {
    color: white;
	text-shadow: 0 0 1rem black;
	padding: 0;
	margin-top: 30%;
	align-self: center;
	transition: all .3s;
}

.figure-caption h3 {
    color: white;
	text-shadow: 0 0 1rem black;
	padding: 0;
	align-self: center;
	margin-top: 30%;
	transition: all .3s;
	opacity: 0;
}

.figure:hover .figure-caption::before,
.figure:hover .figure-caption::after {
	opacity: 1;
	transform: scale(1);
}

.figure:hover h1 {
	opacity: 1;
	transform: translate(0, 2rem);
}

.figure:hover h3 {
	opacity: 1;
	transform: translate(0, -2rem);
}

.team-item {
    background-color: #E0E0E0;
	border-radius: 15px;
	border: 1px solid rgb(158, 145, 27);
	overflow: hidden;
	box-shadow: 0.2rem 0.2rem 2rem rgba(48, 47, 0, 0.6);
	margin-bottom: 2rem;
}

.modal-works {
margin-top: 20px;
}

.modal-works span {
	margin-right: 10px;
	padding: 10px;
	background-color: #fec503;
	color: black;
	border-radius: 15px;
	border-color: #f6bf01;
	border-width: medium;
}

#back-top {
    position: fixed;
    z-index: 1000;
	bottom: 6rem;
	right: 1rem;
	border-radius: 15px;
	margin: 0;
	display: none;
}

#back-top a {
    width: 60px;
    height: 60px;
	background-color: #fed136;
	color: #000;
	transition: all .3s;
}

#back-top a:hover {
	background-color: #726FB9;
}