html {
	background-color: #1d448e;
}

@font-face {
  font-family: 'ss-social';
  src: url('../fonts/ss-social-regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'CircularStd';
  src: url('../fonts/CircularStd-Medium.otf') format('opentype');
  font-weight: 500; /* Medium font-weight */
  font-style: normal;
}
@font-face {
  font-family: 'CircularStd';
  src: url('../fonts/CircularStd-Book.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'CircularStd';
  src: url('../fonts/CircularStd-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'CircularStd';
  src: url('../fonts/CircularStd-Black.otf') format('opentype');
  font-weight: 900; /* Black font-weight */
  font-style: normal;
}


*,
*:before,
*:after{
	box-sizing: border-box;
}
html{
	scroll-behavior: smooth;
}
body{
	margin: 0;
	font-family: 'CircularStd', sans-serif;
}
h1, h2, h3, h4, h5, h6, p{
	margin: 0;
}
img {
    width: 100%;
}
.container-fluid{
	width: 100%;
}
.container{
	width: 100%;
	max-width: 1280px;
}
.d-flex{
	display: flex;
}
.flex-wrap{
	flex-wrap: wrap;
}
.justify-content-start{
	justify-content: flex-start;
}
.justify-content-center{
	justify-content: center;
}
.justify-content-between{
	justify-content: space-between;
}
.justify-content-around{
	justify-content: space-around;
}
.justify-content-evenly{
	justify-content: space-evenly;
}
.justify-content-end{
	justify-content: flex-end;
}
.align-items-start{
	align-items: flex-start;
}
.align-items-center{
	align-items: center;
}
.align-items-end{
	align-items: flex-end;
}

.col5{
	width: 5%;
}
.col10{
	width: 10%;
}
.col15{
	width: 15%;
}
.col20{
	width: 20%;
}
.col25{
	width: 25%;
}
.col30{
	width: 30%;
}
.col33{
	width: 33%;
}
.col35{
	width: 35%;
}
.col40{
	width: 40%;
}
.col45{
	width: 45%;
}
.col50{
	width: 50%;
}
.col50-23 {
	width: calc(50% - 23px);
}
.col55{
	width: 55%;
}
.col60{
	width: 60%;
}
.col65{
	width: 65%;
}
.col66{
	width: 66.67%;
}
.col70{
	width: 70%;
}
.col75{
	width: 75%;
}
.col80{
	width: 80%;
}
.col85{
	width: 85%;
}
.col90{
	width: 90%;
}
.col95{
	width: 95%;
}
.col100{
	width: 100%;
}

.margin-auto{
	margin: 0 auto; 
}
.m-0{
	margin: 0 0 0 0;
}
.p-0{
	padding: 0 0 0 0;
}
.blue-bg{
	background-color: #1d448e;
}
.lgray-bg{
	background-color: #ddd;
}
.black-bg{
	background-color: #000;
}
.yellow-bg{
	background-color: #fff200;
}

.white-txt{
	color: #fff;
}
.gray-txt{
	color: #808285;
}
.blue-txt{
	color: #1d448e;
}
.yellow-txt{
	color: #fff200;
}
.list-unstyled{
	list-style: none;
}
.decoration-none{
	text-decoration: none;
}

.txt-left{
	text-align: left;
}
.txt-center{
	text-align: center;
}
.txt-right{
	text-align: right;
}


#header {
	padding: 80px 0;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	z-index: 9;
}

.logo {
position: relative;
margin-left: -108px;
margin-right: 60px;
}

.logo a img {
	height: 90px;
	object-fit: contain;
}


nav ul li {
	margin-right: 30px;
}
nav ul li:last-child {
	margin-right: 0;
}
nav ul li a {
	background-color: #fff;
	display: block;
	padding: 18px 26px;
	color: #1d448e;
	font-size: 25px;
}
nav ul li a:hover{
	background-color: #fff200;
}

#banner {
	padding: 345px 0 85px;
	position: relative;
	overflow: hidden;
}
#banner:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 55%;
    background-image: url(../images/overlay-comp.png);
    background-repeat: no-repeat;
    background-position: 460px top;
    background-size: 100%;
    z-index: 0;
}
#banner .container {
  position: relative;
}
#banner .row{
	gap: 45px;
}
#banner h1 {
  font-size: 55px;
  line-height: 62px;
  margin-bottom: 25px;
}
#banner p {
  font-size: 22px;
  line-height: 32px;
  margin-top: 20px;
}


.icon-box {
	padding-right: 50px;
	padding-top: 25px;
	padding-bottom: 25px;
}
.icon-box .icon img {
	height: 84px;
	width: auto;
}
.icon-box h3 {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 20px;
    min-height: 64px;
}
.icon-box p {
    font-size: 18px;
    line-height: 26px;
}

.working-list h2 {
    font-size: 42px;
    line-height: 48px;
    padding: 22px 0;
}
.working-list ul li {
	border-bottom: 1px solid #808285;
}
.working-list ul li:last-child {
	border-bottom: none;
}
.working-list ul li h2 {
	padding: 22px 0;
}
.working-list ul li h2:hover{
	color: #fff200;
}


#artists a, #labels a, #festivals a {
	text-decoration: none;
	color: #ffffff;
}
#artists a:hover, #labels a:hover, #festivals a:hover  {
	color: #f2f100;
}


.form-section .content {
	padding: 1px;
}
.form-section .content h3 {
	font-size: 35px;
	line-height: 45px;
	margin: 40px 0;
}
.form-section .content h4 {
	font-size: 36px;
	line-height: 43px;
	margin-bottom: 25px;
}

#services {
	background-color: #ffffff;
}

.contact {
    text-align: center;
	padding: 60px;
	font-size: 40px;
	font-weight:900;
}

#services .servicecontact, 
#services a.price, 
#contactbutton {
	color: #000;
	background: transparent;
}

.contact-content {
	padding: 75px 0 300px 0px;
	display: flex;
	flex-wrap: wrap;
}

.team {
	list-style: none;
	padding: 0;
	margin: 0;
	color: #fff;
	max-width: 328px;
	flex: 1;
	display: block;
	width: 100%;
}
.team li, .team li span {
    display: inline-block;
    font-size: 24px;
    line-height: 32px;
}
.team li {
	margin-bottom: 40px;
	cursor: pointer;
}

.team li span.person-name {
	font-weight: bold;
	border-bottom: 3px solid #fff200;
}
.team li span.person-name a {
    color: #ffffff;
    text-decoration: none;
}
.team li span.person-desigination {
	font-weight: 100;
	display: block;
}
.description {
	width: 100%;
	max-width: 73%;
	position: relative;
}
.description h4 {
    font-size: 30px;
    line-height: 46px;
    color: #fff;
    margin-bottom: 52px;
}
.description #profile1,
.description #profile2,
.description #profile3,
.description #profile4{
	display: none;
}
.description p {
    color: #fff;
    font-size: 24px;
    line-height: 32px;
}

@media(min-width: 1920px){
	#banner:before {
    background-position: 460px top;
    background-size: 950px;
	}

}

@media(max-width: 1666px){
	#header {
    padding: 5dvw 0;
  }
	.logo a img {
    height: 5dvw;
	}
}
	/*
	nav ul li a {
    font-size: 2dvw;
	}
	#banner {
    padding: 19dvw 0 4dvw;
	}
	#banner:before {
    right: -20%;
    background-position: center top;
    background-size: 50dvw;
	}
	#banner h1 {
    font-size: 4.75dvw;
    line-height: 5.25dvw;
	}
	#banner p {
    font-size: 1.75dvw;
    line-height: 2.5dvw;
    margin-top: 2dvw;
	}
	.icon-box .icon img {
	    height: 5dvw;
	}
	.icon-box h3 {
    font-size: 2dvw;
    line-height: 2.5dvw;
    margin-bottom: 1dvw;
    min-height: 2.5dvw;
	}
	.icon-box p {
    font-size: 1.25dvw;
    line-height: 1.75dvw;
	}

	.working-list h2 {
    font-size: 3.69dvw;
    line-height: 4.55dvw;
    padding: 26px;
	}
	.form-section .content h3{
		font-size: 3dvw;	
    line-height: 3.6dvw;
	}
	.form-section .content h4{
		font-size: 2.1dvw;
    line-height: 2.5dvw;
	}
	.team li{
		margin-bottom: 2.4dvw;	
		width: 100%;
	}
	.team li, 
	.team li span{
		font-size: 1.7dvw;
    line-height: normal;
	}
	.description h4{
		font-size: 2.49dvw;
    line-height: 3.47dvw;
    margin-bottom: 4.3dvw;
	}
}
*/
@media(max-width: 1585px){
	.logo {
    margin-left: -6dvw;
	}
}
@media(max-width: 1475px){
	.logo {
    margin-left: 0;
	}
	.description h4 {
    font-size: 24px;
    line-height: 40px;
	}
}

@media(max-width: 1280px){
	.container {
    padding: 0 25px;
	}
}

@media(max-width: 1180px){
	nav ul li a {
    padding: 12px 20px;
    font-size: 20px;
	}
	#banner {
    padding: 215px 0 45px;
	}
	#banner:before {
    right: -22%;
    background-size: 40dvw;
	}
	#banner h1 {
    font-size: 45px;
    line-height: 52px;
    margin-bottom: 15px;
	}
	#banner p {
    font-size: 20px;
    line-height: 30px;
    margin-top: 10px;
	}
	.icon-box .icon img {
    height: 54px;
	}
	.icon-box h3 {
    font-size: 20px;
    line-height: 27px;
    margin-bottom: 0px;
    min-height: 70px;
	}
	.icon-box p {
    font-size: 16px;
    line-height: 24px;
	}
	.working-list h2 {
    font-size: 32px;
    line-height: 37px;
    padding: 15px 0;
	}
	.form-section .content {
    padding: 1px 25px;
	}
	.form-section .content h3 {
    font-size: 30px;
    line-height: 40px;
    margin: 25px 0;
	}
	.form-section .content h4 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 20px;
	}
	.contact {
    padding: 0 25px 40px;
	}	
	.team li, .team li span {
    font-size: 20px;
    line-height: 28px;
	}
	.description h4 {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 22px;
	}
	.description p {
    font-size: 18px;
    line-height: 26px;
	}
}

@media(max-width: 768px){
	.col60{
		width: 100%;
	}
	.logo a img {
    height: 50px;
	}
	#banner {
    padding: 145px 0 45px;
	}
	nav ul li a {
    padding: 10px 12px;
    font-size: 14px;
	}
	#banner h1 {
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 15px;
	}
	#banner p {
    font-size: 16px;
    line-height: 24px;
    margin-top: 5px;
	}
	.icon-box {
    padding: 15px;
	}
	.icon-box h3 {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 0px;
    min-height: 50px;
	}
	.icon-box p {
    font-size: 14px;
    line-height: 20px;
	}
	.working-list h2 {
    font-size: 22px;
    line-height: 30px;
    padding: 10px 0;
	}
	.form-section .content h3 {
    font-size: 24px;
    line-height: 34px;
    margin: 20px 0;
	}
	.form-section .content h4 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 15px;
	}
	.form-section .content h3 {
    font-size: 20px;
    line-height: 30px;
    margin: 15px 0;
	}
	.contact-content {
    padding: 45px 0 150px 0;
	}
	.team li, .team li span {
    font-size: 16px;
    line-height: 24px;
	}
	.description h4 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 30px;
	}
	.description p {
    font-size: 18px;
    line-height: 26px;
	}
}
@media(max-width: 665px){
	nav ul li {
    margin-right: 20px;
	}
	#header .row {
    justify-content: center;
    row-gap: 10px;
	}

	.col33 {
    width: 50%;
	}
	.col50-23 {
    width: 100%;
	}
	#banner {
    padding: 185px 0 45px;
	}
	#banner .row {
    gap: 5px;
	}
	#banner h1 {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 10px;
	}
	.description h4 {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 26px;
	}
	.team li, .team li span {
    font-size: 12px;
    line-height: 20px;
	}
}

@media(max-width: 425px){
	.col33 {
    width: 100%;
	}
	nav ul li {
    margin-right: 10px;
	}
	nav ul li a {
    padding: 6px 6px;
    font-size: 12px;
	}
	.working-list h2 {
    font-size: 18px;
    line-height: 26px;
    padding: 10px 0;
	}
	.working-list ul li h2 {
    padding: 10px 0;
	}
	.form-section .content h3 {
    font-size: 16px;
    line-height: 26px;
	}
	.form-section .content h4 {
    font-size: 14px;
    line-height: 20px;
	}
	.description h4 {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 16px;
	}

	.team {
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    row-gap: 10px;
    margin-bottom: 10px;
	}

	.team li {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
	}
	.team li span.person-desigination {
    font-weight: 100;
    display: block;
    width: 100%;
    text-align: center;
	}
	.description {
    width: 100%;
    max-width: 100%;
	}
	.description p {
    font-size: 14px;
    line-height: 20px;
    font-weight: normal;
	}
}

.contact-img.white-txt {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}