
/*Candidate code*/


/*  Extra small devices (portrait phones, less than 576px) */
/* No media query since this is the default in Bootstrap  */

/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) { ... }

/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) { ... }

/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) { ... }

/*Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) { ... }




html{
	scroll-behavior: smooth;
	background-color: white;
}

body{
	animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1; 
    animation-fill-mode: forwards;
}

@keyframes fadeInAnimation { 
    0% { 
        opacity: 0; 
    } 
    100% { 
        opacity: 1; 
     } 
} 

body, p{
	    font-family: 'sansationregular';
	    font-size:15px
	    line-height: 20px;
	    color: #373E3E;

}

/* we are experts in...*/
h1.ninja {
	color:#6E2222;
}

/* are you a...*/
h1.talent{
	color:#FFF3F2;
}


h1{
	    font-family: 'sansationbold';
	    font-size: 25px;
	    line-height: 30px;
	    color: #726965;
	    text-transform: uppercase;
	    word-spacing: 2px;
	    padding-bottom: 50px;
	    display: block;
}

h2{
	color:#6E2222;
	font-size: 25px;
	line-height: 30px;
}

h3{
	font-size: 25px;
	line-height: 30px;
	color:#726965;
}

h4{
	font-family: 'sansationlight-light';
	font-size: 30px;
	line-height: 35px;
	color: #726965;
}

h4 label{
	border-bottom: 3px solid #88D788;
	padding: 0 6px;
	color:#726965;
	font-family: 'sansationregular';
	display: inline-flex;
}

h5{
	font-family: 'sansationlight-light';
	font-size: 30px;
	line-height: 35px;
	color: #373E3E;
}

a{
	color:#E85B5B;
}

a:hover{
	color:#fc8d8d;
	text-decoration: none;
}

::selection {
  background: #E85B5B; /* WebKit/Blink Browsers */
  color:white;
}

::-moz-selection {
  background: #E85B5B; /* Gecko Browsers */
  color:white;
}


img{
	width:100%;
	height: auto;
}

.navbar.navbar-expand-lg.navbar-light{
	padding: 0 16px;
}

.nav-item.nav-link{
	padding: 12px 8px;
}

.navbar-nav.active{
	background: #FDEEEE:
} 

.btn{
	padding: .375rem 2.75rem;
}

.footer h1{
	font-family: 'sansationlight-light';
	font-size:60px;
	line-height: 67px;
	text-transform: lowercase;
}


.quote{
	width:65%;
	font-family: 'sansationlight-light';
	font-size:15px;
	line-height: 20px;
	margin-bottom: 50px;
}

section {
	padding: 50px 20px;
	border-bottom: 1px solid #ddd;
}


.availability{
	background-color: #FDEEEE;
	padding:30px 20px;
}

.banner{
	    background-image: url("../img/back_talent.jpg");
    	padding: 50px;
    	background-attachment: fixed;
    	background-position: center;
    	background-size: 100% 100%;
}

.logo{
	margin-top: -55px;
	width: 100px;
	height: 100px;
	margin-bottom:50px;
}



.clients img{
	filter: grayscale(1);
	margin: 40px 0;
}

.clients img:hover{
	filter: grayscale(0);
	-webkit-transition: .5s -webkit-filter linear;
	-moz-transition: .5s -moz-filter linear;
	-moz-transition: .5s filter linear;
	-ms-transition: .5s -ms-filter linear;
	-o-transition: .5s -o-filter linear;
	transition: .5s filter linear, .5s -webkit-filter linear;
}

.clients{
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	justify-content: center; /* align horizontal */
	align-items: center; /* align vertical */
	text-align: center;

}

/* Style the tab */
.tab {
  overflow: hidden;
  vertical-align: top;
  margin-top: 50px;
}

/* Style the buttons inside the tab */
.tab button {
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background: url("../img/carrot.png") no-repeat center bottom/20%;
  -webkit-transition: opacity .1s ease-in;
  -moz-transition: opacity .1s ease-in;
  -o-transition: opacity .1s ease-in;
  opacity: .3;
}

/* Create an active/current tablink class */
.tab button.active {
  	background: url("../img/carrot.png") no-repeat center bottom/20%;
 	-webkit-transition: opacity .3s ease-in;
    -moz-transition: opacity .3s ease-in;
    -o-transition: opacity .3s ease-in;
    opacity: 1;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 30px 12px;
  text-align: left;

}

/* ninja illustrations*/
.tab img{
	width:70%;
}

button.package{
	background:transparent;
}

.btn-primary{
	background-color: #E85B5B;
	border-color: #E85B5B;

}


.btn-outline-secondary:not(:disabled):not(.disabled).active, .btn-outline-secondary:not(:disabled):not(.disabled):active, .show>.btn-outline-secondary.dropdown-toggle{
	background-color:#F9D4D4;
	border-color:#F9D4D4;
	color:#E85B5B;
}

.btn-outline-secondary{
	background-color: transparent;
	border-color:#F9D4D4;
	color:#F9D4D4;
	margin-left:10px;
	margin-bottom:10px;
}

/* secondary outline buttons*/
.btn-outline-secondary2{
	border: 1px solid rgba(114, 105, 101, .6);
	color:#726965;
	
}

.btn-primary:hover, .btn-outline-secondary:hover{
	background-color: #88D788;
	border-color: #88D788;
}

.btn-outline-secondary2:hover{
	background-color: #88D788;
	border-color: #88D788;
	color:white;
}

img.process_cand{
	width: 100%;
	height: 100%;
}

.footer{
	background:#726965;
	min-height: 200px;
	width:100%;
	padding:100px;
	font-weight: normal;
}

.footer h1, .footer p, .footer-bar a{
	color: white;
}

.footer-bar a:hover{
	text-decoration: underline;
}

.footer-bar{
	background:#E85B5B;
	width:100%;
	padding: 10px;
	color: white;
	font-family: "sansationlight-light";

}

.social{
	margin: 50px 0;
	text-align: center;
}

.social img{
	width:30%;
}

.social img:hover{
-webkit-transition: opacity .1s ease-in;
  -moz-transition: opacity .1s ease-in;
  -o-transition: opacity .1s ease-in;
  opacity: .3;
}

/* menu dropdown for phones */
.navbar-light .navbar-toggler{
	border-color: transparent;
}