@charset "utf-8";
/*headline: font-family: ice-cream, sans-serif;
paragraph:font-family: gelica, serif;*/

/*colors:
light pink: #C995A2 
grey: #E0E0E0 
dark blue: #142F40 
dark teal: #025E73 
light teal: #037F8B
*/

/* Background color for navbar and dropdown menus */
.navbar-custom, .navbar-custom .dropdown-menu {
    background-color: #037F8B;
}
/* Text color for navbar and dropdown menus */
.navbar-custom .navbar-brand, .navbar-custom .navbar-text,
.navbar-custom .navbar-nav .nav-link,
.navbar-custom .dropdown-item {
    color: #E0E0E0;
}
/* Background and text colors for current page link and links on hover and focus */
.navbar-custom .nav-item.active .nav-link,
.navbar-custom .nav-item:hover .nav-link,
.navbar-custom .nav-item:focus .nav-link,
.navbar-custom .dropdown-item:hover, 
.navbar-custom .dropdown-item:focus {
    background-color: #025E73;
    color: #E0E0E0;
}
/* Border and text colors for menu icon on small screens */
.custom-toggler.navbar-toggler {
    border-color: #E0E0E0;
    color: #E0E0E0;
	}
/* Hamburger icon - use same rgb values as previous rule for stroke */
.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(236,240,241, 0.7)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
	}

/*navbar-brand logo*/
.navbar-brand {
    background-image: url(../images/logo.png);
    background-repeat: no-repeat;
	background-size: 50px auto;
    background-position: 6% center;
    padding-left: 70px;
	}	
.navbar-custom {
	font-family: 'Gelica', serif;
	}


body {
	font-family: 'Gelica', serif;
	background-color: #025E73;
	color: #E0E0E0;
	overflow-x: hidden;
  	overflow-y: auto;
	}
h1, h2, h3, h3, h4, h5, h6 {
	font-family: 'Ice-cream-standard', sans-serif;
	color: #E0E0E0;
	}
a {
  color: #C995A2;
  text-decoration: none;
  background-color: transparent;
	}

a:hover {
  color: #E0E0E0;
  text-decoration: underline;
	}


	
/*Home banner*/
#home_banner {
	padding-left: 0px;
	padding-right: 0px;
	position: relative;
	}
#home_banner h1 {
	font-size: 4rem;
	color:#E0E0E0;
	text-shadow: 3px 5px rgba(20,47,64,0.9);
	position:absolute;
	left:10%;
	right:10%;
	bottom:45%;
	top:20%
	}

/*carousel banner*/
.static-banner-container 
	{
	position: absolute;
	left: 15%;
	bottom: 45%;
	}

.static-banner-text 
	{
	color: #E0E0E0;
	font-size: 4rem;
	text-shadow: 3px 5px rgba(20,47,64,0.9);
	}
@media (max-width: 768px) 
	{
	.static-banner-text 
		{
    	font-size: 3rem;
		}
	}

@media (max-width: 576px) 
	{
	.static-banner-text 
		{
    	font-size: 2rem;
		}
	}
/* 3 col main section*/
.main h2, h4 {text-align: center;}

/*Images*/
.img-space {
	margin-top: 20px;
  	max-width: 100%;
  	height: auto;
	}
/*card stuff*/
.custom-text 
	{
  	color: #FFFFFF;
	}
.btn-primary 
	{
	background-color: #037F8B;
	border-color: #025E73;
	}
.btn-primary:hover{
	color: #fff;
	background-color: #025E73;
	border-color: #037F8B;
	}
.btn-primary:active{
	color: #fff;
	background-color: #037F8B;
	border-color: #025E73;
	}
/* annoying blue button */
.btn-primary:focus, .btn-primary.focus {
  	color: #fff;
	background-color: #037F8B;
	border-color: #025E73;
	box-shadow: none;
}

.btn-primary.disabled, .btn-primary:disabled {
  	color: #fff;
	background-color: #037F8B;
	border-color: #025E73;
	box-shadow: none;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  	color: #fff;
	background-color: #037F8B;
	border-color: #025E73;
	box-shadow: none;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: none;
}
.card-img-top {
	width: calc(100%);
	}
.card 
	{
	padding: 0px;
	background: rgba(0, 0, 0, 0);
	border: none;
	overflow: hidden;
	border-radius: 10px;
	transition: .3s;
	}
.image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0, .5); 
	opacity: 0;
	transition: opacity 0.3s;}
.card:hover {
	/*box-shadow: 2px 2px 5px 5px rgba(0, 0, 0, 0.5);*/
	transform: scale(1.1);
	}
.card:hover img {
	filter:brightness(.2);
	}
.image-overlay:hover {
    opacity: .5;
}

	
/*card hover link*/
.image-link {
	display: inline-block;
	overflow: hidden;
	position: relative;
	transition: 0.3s;
	}
.image-text {
	position: absolute;
	top: 80%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: opacity 0.3s;
	font-size: 1.3rem;
	}

.image-link:hover .image-text {
	opacity: 1;
	padding: 5px; 
	}


/*contact page*/
.contact_head {
	color: #E0E0E0;
	font-weight: 900;
	}

.contact_side {
	background: white url("../images/Porfolio/illustrations/snail.jpg") no-repeat center center;
	background-size: cover;
	padding:0;
	height:540px;
	border-radius: 4px;
	}
.badge-resume {
	background-color: #037F8B;
	font-family: 'gelica', serif;
	min-width: 28px;
    border-radius: 4px;
	padding: 4px;
	}
/*footer*/
footer {
	text-align: center;
	line-height: 60px;
	background-color: #037F8B;
	color: #E0E0E0;
	}

/* Style all font awesome icons */
.social a {margin: 0;
    display: inline-block;
    text-decoration: none;
    margin-left:10%;
    margin-right:10%;
	}

.fa {
	padding: 10px;
	font-size: 30px;
	width: 40px;
	margin-right: 5px;
	text-align: center;
	text-decoration: none;
	}

/* hover effect */
.fa:hover {
	opacity: 0.7;
	}

/* Set a specific color for each brand */
/* Facebook */
.fa-facebook {
	background: #3B5998;
	color: white;
	}

/* Instagram */
.fa-instagram {
	background: #125688;;
	color: white;
	}
	
/* Default styles for images */
.responsive-image {
    max-width: 80%;
    height: auto;
	justify-content: center;
}

/*desktop styles end here*/
@media screen and (max-width: 480px) {
  .show-on-desktop {
    display: none;
  }
}

@media screen and (min-width: 481px) {
  .hide-on-desktop {
    display: none;
  }
}
/*Media Query Breakpoints*/
/*X-SMALL ONLY*/
@media screen and (min-width:375px)
	{
#home_banner h1 {
    font-size: 2rem;
    bottom: 45%;
    left: 20%;
	}
.image-text {
	font-size:1.5rem;
	text-align: center;
	width: 80%;}
}
/*case study images*/
.responsive-image {
    max-width: 100%;
    }

/*SMALL SIZE ONLY*/
@media screen and (min-width:576px)
	{
#home_banner h1 {
    font-size: 3rem;
    bottom: 45%;
    left: 20%;}  
.image-text {
	font-size:2rem;
	text-align: center;
	width: 80%;}
	}
.responsive-image {
        max-width: 100%;
    }

/*MEDIUM SIZE ONLY*/
@media (min-width: 768px) 
	{
#home_banner h1 {
	 font-size: 4rem;
     bottom: 45%; 
     left: 20%;}
.image-text {
	font-size:1.2rem;
	text-align: center;
	width: 80%;}
	}
.responsive-image {
        max-width: 100%;
    }


/*LARGE SIZE ONLY*/
@media screen and (min-width:992px)
	{
#home_banner h1 {
        font-size: 5rem;
        bottom: 45%;
        left: 20%;}
.image-text {
	font-size:1.5rem;
	text-align: center;
	width: 80%;}
	}
.responsive-image {
        max-width: 100%;
    }