 html
 {
 	overflow-x: hidden;
 }
 *:focus {
  outline: none;
}
 body {padding: 0; margin: 0; background-color: #F6F6F6; font-family: 'Cabin', sans-serif;}
	    
h1 {
    font-size: 100px;/*125px*/; 
    color: #000000; 
    text-transform: uppercase;
     margin-left: 5px;
}
h1.post-title {
    font-size: 50px; 
}

@media (max-width: 900px)
{
	h1 {
		font-size: 100px;
	}
}

@media (max-width: 700px)
{
	h1 {
		font-size: 75px;
	}
}

@media (max-width: 500px)
{
	h1 {
		font-size: 50px;
	}
	h1.post-title {
		font-size: 35px; 
	}
}

h1::first-letter {
	text-shadow: -5px 0px 0px var(--primary-color);
}

h2 {
    font-style: normal;
	font-weight: 500;
	font-size: 64px;
	line-height: 78px;
	color: var(--primary-color);
	}
	
h3 {
    font-style: normal;
	font-weight: 500;
	font-size: 36px;
	line-height: 44px;
	margin-top: 30px;
	margin-bottom: 15px;
}

@media (max-width: 700px)
{


	h2 {
    
	font-size: /*64px;*/ 45px;
	line-height: 45px;
	}

	h3 {
		font-size: 22px;
	    line-height: 32px;
	}
}

h4 {
    font-style: normal;
	font-weight: bold;
	font-size: 16px;
	line-height: 25px;
	color: var(--primary-color);
}

h5 {
    font-style: normal;
	font-weight: bold;
	font-size: 20px;
	line-height: 25px;
	color: #000;
	margin-bottom: 13px;
	margin-top: 13px;
}

p {
    font-style: normal;
	font-weight: normal;
	font-size: 16px;
	line-height: 25px;
}

a {color: #000; text-decoration: none;}
a:hover  {color: var(--primary-color); text-decoration: none;}

.bold {font-weight: 500;}

.color-primary {color: var(--primary-color)!important;}

.contact h3 {
    font-style: normal;
	font-weight: normal;
	font-size: 32px;
	line-height: 44px;
	margin-top: 30px;
	margin-bottom: 15px;
}
@media (max-width: 700px)
{
	.contact h3 {
		font-size: 22px;
	    line-height: 32px;
	}
}

.contact .col-sm-4 {border-right: solid 2px #E5E5E5;}


.navbar {
    padding: 2rem 1rem;
}

.navbar-brand img {
	height: 50px;
	max-width: calc(100vw - 110px);
}

.nav-link {text-transform: uppercase; color: #000!important; font-size: 18px;}

.shortlist a { border-left: solid 2px #000; margin-top: -5px; font-size: 25px!important;}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 12.5px;
    padding-left: 12.5px;
    user-select: none;
    cursor: p;
}

.navbar-light .navbar-nav .active>.nav-link {
    color: var(--primary-color)!important;
}




.main-content {min-height: calc(100vh + 150px); margin-top: 174px; padding-bottom: 74px;}


footer {background-color: #fff; height: 74px; padding: 25px 15px;}
footer .socials a {margin-left: 15px; color: #000;}

.bg-light {background-color: #F6F6F6!important;}


.showreels-container {border-right: solid 2px #E5E5E5; padding-bottom: 30px;}
.showreels {list-style: none; padding-left: 0; margin-bottom: 0; margin-top: 30px;}
.showreels li {padding: 15px;}
.showreels i {margin-right: 20px;}
.showreels a {color: #000; text-decoration: none;}
.showreels a:hover {color: var(--primary-color); text-decoration: none;}

.showreels li:nth-child(odd){
 background-color: #FFFFFF;
}
.showreels li:nth-child(even){
 background-color: transparent;
}
.showreels li audio {display: none;}

.talent-social {background-color: var(--primary-color); padding: 15px;}
.talent-social a {color: #000; margin-right: 15px; font-size: 18px;}

.carousel-indicators li {
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin-left: 10px;
  margin-right: 10px;
}


.talent-shortlist {
	position: absolute;
    top: 15px;
    left: 30px;
    z-index: 15;
   
}

.talent-shortlist a, .talent-shortlist a:hover {font-size: 20px; color: #fff; text-decoration: none;}

.news-post {margin-top: 30px;}

form label {font-size: 18px!important; margin-bottom: 13px;}

.btn-primary {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 50px;
    padding: 10px 50px;
    margin-top: 15px;
}


/* image overlay effect */


.img-container {
  position: relative;
  width: 100%;
  min-height: 500px;
}

.img {
  display: block;
  width: 100%;
  height: auto;
}

.img-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 1;
  transition: all .5s ease;
  background: linear-gradient(0deg, rgba(37, 117, 110, 0.6) 0%, rgba(83,197,187,0) 30%);
  cursor: pointer;
}

body.mgt .img-overlay {
	background: linear-gradient(0deg, rgba(4, 150, 221, .6) 0%, rgba(4, 150, 221,0) 30%);
}

.img-overlay .play_button {
	opacity: 0;
	transition: all .5s ease;
	/* position: relative; */
	/* z-index: 10000; */
}

body.mgt .play_button  {
	display: none;
}

.img-overlay:hover .play_button {
	opacity: 0.5;
}
.img-overlay:hover .play_button:hover {
	opacity: 1;
}

.img-container:hover .img-overlay {
  opacity: 1;
  background-color: rgba(83,197,187,0.93);
}

body.mgt .img-container:hover .img-overlay {
  background-color: rgb(4, 150, 221, 0.4);
}

.img-text-center {
  color: white!important;
  font-size: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10000;
}

.img-text-left {
  color: white!important;
  font-size: 20px;
  position: absolute;
  bottom: 15px;
  left: 15px;
  text-align: left;
  text-transform: uppercase;
}

.img-text-right {
  color: white!important;
  font-size: 20px;
  position: absolute;
  bottom: 15px;
  right: 15px;
  text-align: left;
  text-transform: uppercase;
}

.img-text-center a, .img-text-left a, .img-text-right a, .img-text-center a:hover, .img-text-left a:hover, .img-text-right a:hover {color: white!important; text-decoration: none;}


/* homepage  */
.homepage-nav {list-style: none; text-align: center; display: block; padding:0; margin: auto; margin-top: 34px;}
.homepage-nav li {display: inline-block;font-size: 24px;padding: 0 15px 0 0;position: relative;}
.homepage-nav li:after { content: " \00b7"; color:  var(--primary-color)  }

.homepage-nav li:last-child:after
	{
	  content: " \00b7";
	}
.homepage-nav a {font-size: 24px; text-transform: uppercase; padding-right: 15px;}



.homepage-carousel .carousel-control-next, .homepage-carousel .carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50px;
    color: #fff;
    text-align: center;
    opacity: 1;
    transition: opacity .15s ease;
}

.homepage-carousel .carousel-control-prev-icon, .homepage-carousel .carousel-control-next-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    padding: 50px 25px;
}

@media (max-width: 700px)
{
	.homepage-carousel .carousel-control-prev-icon, .homepage-carousel .carousel-control-next-icon {
		width: 10px;
		height: 10px;
		background-color: var(--primary-color);
		padding: 40px 25px;
	}
}


.hp-img-container {
  position: relative;
  width: 100%;
  height: 100vh;
}

.hp-img-text-left {
  color: white!important;
  font-size: 20px;
  position: absolute;
  bottom: 15px;
  left: 15px;
  text-align: left;
  text-transform: uppercase;
  padding: 0 75px;
}

.hp-img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 700px) {
	.hp-img-container {
	    height: 50vh;
	}
	.hp-img-text-left {
		padding: 0px 10px;
		font-size: 0.6em;
	}
	.hp-img-text-left h3 {
		font-size: 1.8em;
		line-height: 1em;
	}
}








.img-text-center a, .img-text-left a, .img-text-right a, .img-text-center a:hover, .img-text-left a:hover, .img-text-right a:hover {color: white!important; text-decoration: none;}


.shortlist__slideout {
	background-color: #49BDB3;
	color: white;
	
	position: fixed;
	z-index: 2029;
    top: 0;
    right: -302px;
    bottom: 0;
    width: 302px;
    height: 100vh;
    scroll-y: hidden
/* 		    margin-top: 174px; */
  -webkit-transition: all 0.15s ease-out 0;
  -moz-transition: all 0.15s ease-out 0;
  transition: all 0.15s ease-out 0;
}
.shortlist__slideout_container {
	
}
.shortlist__slideout .shortlist__slideout__top h4 {
	color: white;
	padding: 20px;
	text-transform: uppercase;
	font-weight: 200;
}
.shortlist__slideout_container {
	min-height: 100vh;
	margin-top: 0;
	background-color: #49BDB3;
}
@media(min-width: 400px)
{
	.shortlist__slideout_container {
		margin-top: 128px;
	}
}
.shortlist__slideout iframe{
	height: calc(100% - 73px);
	width: 100%;
	border: none;
	/* box-shadow: 10px 10px 10px; */
}


.shortlist__slideout{
	right: -302px; 
    transition: .6s;
}

body.mgt .shortlist__slideout{
	display: none;
}

.shortlist__slideout.is-open{
	right: 0px;
	transition: .6s;
	box-shadow: 50px 0px 50px 50px rgba(0, 0, 0, 0.2), 20px 0px 20px 20px rgba(0, 0, 0, 0.05);
}

.close-shortlist {
	    list-style: none;
}

.close-shortlist .nav-link {
border: none;

}
.close-shortlist .nav-link .fas {
	color: white;
}
.shortlist__slideout__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media (max-width: 350px ) {
	.shortlist__slideout_container .talent__item .img-container {
		min-height: 200px
	}

}

.shortlist_quote_btn {
    padding: 10px 27px;
    background: white;
    border: none;
    border-radius: 17px;
    margin-top: 30px;
    display: block;
    max-width: 150px;
    text-align: center;
    margin: 30px auto;
}
.filter_container {
	flex-wrap: wrap;
	display: flex;
	justify-content: center;
	
}
body.mgt .filter_container {
	display: none;
}
.filters {/* 			height: 50px; */padding: 20px;margin-bottom: 30px;display: flex;justify-content: center;border-top: 2px solid #E1E1E1;border-bottom: 2px solid #E1E1E1;opacity: 1;visibility: visible;transition: all 0.3s ease-in-out;}
.filters:empty, .filters.hidden {
	opacity: 0;
	visibility: hidden;
	display: none;
}
.filters > div { 
	margin-left: 30px;
}
.filter_container > div { 
	margin-left: 30px;
	margin-bottom: 30px;
}
.filter_container .dropdown-toggle {
	background-color: transparent;
	color: black;
	text-transform: uppercase;
	border: none;
}
.dropdown:hover .dropdown-menu {
    display: block;
    margin: 0px;
}
 .filter_container .show>.btn-secondary.dropdown-toggle {
	background-color: transparent;
	color: black;
	text-transform: uppercase;
	border: none;
	box-shadow: none!important;
 }
.filter_container .dropdown-toggle::after {
    color: var(--primary-color);

}
.badge-brand {
	position: relative;
    color: #fff;
    background-color: var(--primary-color);
    text-transform: uppercase;
    transition: all 0.2s ease-in;
    border: 1px solid var(--primary-color);
    padding: 10px 20px 10px 20px;
	cursor: pointer;
}
.badge-brand:hover {
	color: var(--primary-color);
	background-color: #fff;
	border: 1px solid #E1E1E1;
	padding: 10px 30px 10px 20px;
}

.badge .times {
	display: none;
	height: 0px; width:0px;
	 transition: all 0.3s ease-out;
}
.badge-brand:hover .times {
	height: 8px;
	width: 8px;
	display: block;
	fill: #E1E1E1;
	position: absolute;
	right: 13px;
	top: 12px;
}
.shortlist i {
	transition: all 0.3s ease-in-out;
}
.shortlist i.adding-talent {
	animation: pulse 1s 1;
    color: var(--primary-color);
}
.shortlist_quote_btn.share_btn i {
	transition: all 0.3s ease-in-out;
}

@keyframes pulse {
  0%,100% {
	-webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
	
  }
  50% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
  }
}
.shortlist__star {
	position: relative;
	transition: all 0.5s ease-in;
}

body.mgt .shortlist__star, body.mgt .nav-item.shortlist {
	display: none;
}

.img-container:hover .shortlist__star span.shortlist_message {
/* 			transform: translateX(0px); */
	opacity: 1;
	left: -90px;
}
.img-container:hover .shortlist__star span.shortlist_message.remove {
/* 			transform: translateX(0px); */
	top: 0px;
	left: -70px;
}
span.shortlist_message {
	font-size: 0.6rem;
	/* 		    transform: translateX(160px); */
	position: absolute;
	opacity: 0;
	top: 35%;
	left: 90px;
	transition: all 0.5s ease-in;
	width: 90px;
	pointer-events: none;
}
span.shortlist_message.remove {
	top: 0px;
}

.tooltip-content {
	font-size: 0.8rem;
}
.tooltip .arrow {
	right: 1px;
}
.tooltip-inner {
	border-radius: 0.7rem;
}


.talent__item.shortlisted .add,
.talent__item:not(.shortlisted) .remove {
	display: none;
}


.background-click {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
}

.talent__item {
	transition: all 0.2s ease;
}

.talent__item:hover {
    /*transform: scale(1.01);*/
    z-index: 1;
    position: relative;
}

li > .sub-navbar {
	display: none;
}

li:hover > .sub-navbar {
	display: block;
}

.sub-navbar {
    /* height: 300px; */
    position: absolute;
    background: #fafafa;
    text-transform: uppercase;
    list-style: none;
    padding: 12.5px;
    padding-top: 0px;
    border-top: 3px solid var(--primary-color);
    box-shadow: 0px 10px 10px -5px #0000001f;
    z-index: 100;
    transform: translateX(-50%);
    left: 50%;
}

.sub-navbar li {
    padding-top: 10px;
    padding-right: 0px;
    display: block;
}

.sub-navbar li a {
    padding-right: 2px;
}

.sub-navbar li::after {
    content: '';
}

.nav-item {
    position: relative;
}

img {
	max-width: 100%;
}

.large-logo {
    height: 115px;
}

@media (max-width: 700px) {
	.table {
		font-size: 0.7em;
	    display: block;
	}
	
	.table tr td {
		padding: 5px;
	}
	
	.table tr td:first-child {
		padding-left: 0px;
	}
	
	.table tr td:last-child {
		padding-right: 0px;
	}
}

#newsMobileCarousel {
	display: none;
}

@media (max-width: 700px) {
	#newsCarousel {
		display: none;
	}
	#newsMobileCarousel {
		display: block;
	}
}

.homepage-carousel p {
	margin: 0px;
}