/* Styling for Navbar */
body{
    display: block;
    overflow-x: hidden;
	background: linear-gradient(to top, #e7dbdb 0%, white 100%);
}

nav{
    background-color: white;
}

.navbar-brand img {
    max-height: 50px;
}

.navbar-brand{
    font-size: 24px;		
    font-weight: 900;
    color: #683aa4;
}

nav ul li a{
    color: #a9a9a9;
    font-size: 20px;
    margin: auto 10px; 
}

nav ul li a:hover{
    color: #683aa4;
}

.navbar-custom {
    background-color: #333366;
}

/* change the brand and text color */
.navbar-custom .navbar-brand,
.navbar-custom .navbar-text {
    color: #F0F0FD;
}

/* change the link color */
.navbar-custom .navbar-nav .nav-link {
    color: #ffffff;
}

/* change the color of active or hovered links */
.navbar-custom .nav-item.active .nav-link,
.navbar-custom .nav-item:hover .nav-link {
    color: #cc748f;
}

/* for dropdown only - change the color of droodown */
.navbar-custom .dropdown-menu {
    background-color: #333366;
}

.navbar-custom .dropdown-item {
    color: #ffffff;
}

.navbar-custom .dropdown-item:hover,
.navbar-custom .dropdown-item:focus {
    color: #cc748f;
    background-color: #6965B3;
}


.containerBtn
{
  text-align: center;
  perspective: 320px;
}


[aria-current] {
    background-color: #5a5aa3;
}

center-div {
     margin: 0 auto;
     width: 100px;
}
  
/* Styling for Hero Section */
section{
    padding-top: 50px;
    padding-bottom: 50px;
}

section h1{
	font-size: 28px;
    text-transform: uppercase;
    font-weight: 500;
    color: #968d8d;
    text-align: left;
    margin-bottom: 20px;
} 

section h2{
	font-size: 20px;
    font-weight: 400;
    color: #968d8d;
    text-align: left;
    margin-bottom: 20px;
} 

h3{
	font-size: 18px;
    color: #968d8d;
} 

h4{
	font-size: 15px;
    color: #000000;
} 

 
section p{
    font-size: 20px;
    
}
 
button{
    max-width: 50%;
    border-radius: 50px !important;
}

#hero .col{
    justify-content: center;
    flex-direction: column;
    display: flex;
}

#hero .img-col{
    justify-content: flex-end;
    margin-top: 100px;
}
 
#hero img{
    max-width: 130%; !important;
    width: 130%;
}

/* Styling for the cards */
#hero .card{
    box-shadow: 11px 7px 16px #f9f9f9;
    border: 0;
    text-align: center;
}

 #hero .cards .card{
    width: 18rem;
}

/* Styling for Icons if added */
 #hero .icon{
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

/* Styling for the Project Section */
#projects .projects{
    margin-bottom: 10px;
}

#contact{
    text-align: center;
    background-color: #5c4242;
    color: white;
	font-size: 18px;
}

/* contact section styling */

copyright{
	margin-top: 0px;
	margin-bottom: 0px;
    text-align: center;
    background-color: #533c3c;
    color: white;
	font-size: 12px;
}

img {
    box-shadow:8px 8px 10px 0 rgba(0,0,0,0.5);
}


.btn
{
  
  margin: 10px 0;
  width: 300px;
  height: 40px;
  border: none;
  background-color: #87868f;
  color: #fff;
  font-size: 15px;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  transition: .3s linear;
  
}

.btn1:hover {
  transform: rotateX(15deg);
  box-shadow: 0 15px 15px #a5a5b4;
}

.btn2:hover {
  transform: rotateX(-15deg);
  box-shadow: 0 -15px 15px #a5a5b4;
}

.btn3:hover {
  transform: rotateY(15deg);
  box-shadow: -15px 0 15px #a5a5b4;
}

.btn4:hover {
  transform: rotateY(-15deg);
  box-shadow: 15px 0 15px #a5a5b4;
}


.numberlist{
	width:450px;
	margin: auto;

}
.numberlist ol{
	            counter-reset: li;
				list-style: none;
				*list-style: decimal;
				font: 15px;
				padding: 0;
				margin-bottom: 4em;

}
.numberlist ol ol{
				margin: 0 0 0 2em;
			}

.numberlist a{
				position: relative;
				display: block;
				padding: .4em .4em .4em 2em;
				*padding: .4em;
				margin: .5em 0;
				background: #87868f;
				color: #fff;
				text-decoration: none;
				-moz-border-radius: .3em;
				-webkit-border-radius: .3em;
				border-radius: .3em;
			}

.numberlist a:hover{
				background: #75a3bf;
				text-decoration:underline;
			}
.numberlist a:before{
				content: counter(li);
				counter-increment: li;
				position: absolute;	
				left: -1.3em;
				top: 50%;
				margin-top: -1.3em;
				background: #87868f;
				height: 2em;
				width: 2em;
				line-height: 1.5em;
				border: .3em solid #fff;
				text-align: center;
				font-weight: bold;
				-moz-border-radius: 2em;
				-webkit-border-radius: 2em;
				border-radius: 2em;
				color:#FFF;
			}			

