@font-face {
	font-family: "APOLLO";
	src: url("fonts/APOLLO/APOLLO-Regular.otf");
	src: url("fonts/APOLLO/APOLLO-Regular.eot?#iefix") format("embedded-opentype"),
	url("fonts/APOLLO/APOLLO-Regular.ttf") format("truetype"),
	url("fonts/APOLLO/APOLLO-Regular.woff") format("woff"),
	url('fonts/APOLLO/APOLLO-Regular.svg') format('svg');
    font-weight: normal;
	  font-style: normal;
}

@font-face {
	font-family: "ProximaNova";
	src: url("fonts/ProximaNova/ProximaNova-Regular.otf");
	src: url("fonts/ProximaNova/ProximaNova-Regular.eot?#iefix") format("embedded-opentype"),
	url("fonts/ProximaNova/ProximaNova-Regular.ttf") format("truetype"),
	url("fonts/ProximaNova/ProximaNova-Regular.woff") format("woff"),
	url('fonts/ProximaNova/ProximaNova-Regular.svg') format('svg');
    font-weight: normal;
	  font-style: normal;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "ProximaNova";
  color: #00001E !important;
  line-height: 1.55 !important;
	font-size: 18px !important;
}



a {
  text-decoration: none;
  color: #CA973B;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: "APOLLO";
}

.container{
    width: 90%;
}

.text-red{
  color : #e1444d;
}

.text-theme{
	color : #CA973B;
}

.text-white{
  color : #fff;
}

.text-sm{
  font-size: 14px;
}

.form-control{
	border-radius: 0 !important;
	padding: 12px 10px;
	text-align: center;
	box-shadow: none;
}

.form-control:focus {
  border-color: #CA973B;
  box-shadow: none;
}

.form-control.error{
	border: 1px solid #ff0000 !important;
}
.error{
	color:#ff0000;
}


.btn-theme{
	background: #CA973B;
	padding: 8px 40px !important;
	color:#fff !important;
	border: 1px solid #CA973B;
}

.btn-theme:hover, .btn-theme:focus, .btn-theme:active{
	background: #CA973B;
	color: #fff !important;
  border: 1px solid #CA973B;
}



@media (min-width: 1400px){
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 92% !important;
}
}

@media (max-width: 769px) {
  body {
    font-size: 16px !important;
  }

	.row {
    --bs-gutter-x: 0;
     --bs-gutter-y: 0;
	 }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #CA973B;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #e1444d;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Loading
--------------------------------------------------------------*/

/* Absolute Center Spinner */
.loading {
  position: fixed;
  z-index: 999;
  height: 2em;
  width: 2em;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: none;
}



/* Transparent Overlay */
.loading:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.35);
}

.loader {
  border: 10px solid white;
  border-radius: 50%;
  border-top: 10px solid #D3AD4F;
  width: 70px;
  height: 70px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;

}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #000;
  padding: 5px 0;
  font-size: 13px;
  z-index: 999!important;
  position: relative;
  color: #FFF;
	border-bottom: 1px solid #444;
}
#topbar .contact-info i {
  font-style: normal;
  color: #f03c02;
}
#topbar a {
  padding-left: 20px;
  color: #FFF;
  font-size: 13px;
  font-weight: normal;
}

#topbar .navbar a{
  padding: 6px 0 6px 30px;
}

#topbar .navbar .dropdown ul a{
  color: #000;
	padding: 6px 0 6px 0px;
}

@media (max-width: 769px) {
	#topbar {
		display: none;
	}
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #000;
  transition: all 0.5s;
  z-index: 999!important;
  padding: 0 0 8px 0;

}
#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}
#header.header-inner-pages {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}
#header .logo a {
  color: #556270;
}
#header .logo img {
  max-height: 40px;
}

@media (max-width: 769px) {
	#header {
		border-top: none;
	}
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 22px 8px 22px;
  font-size: 17px;
  font-weight: 500;
  color: #FFF;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #FFF;
}
.navbar .getstarted, .navbar .getstarted:focus {
  background: #CA973B;
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 4px;
  font-weight: 400;
  color: #fff;
}
.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  color: #fff;
  background: #e1444d;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: -70px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 0;
  z-index: 9999999;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 250px;
	border-bottom: 1px solid #C0C0C0;
}
.navbar .dropdown ul li:last-child {
	border-bottom: none !important;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 400;
	align-items: center;
  justify-content: center;
	color: #000;

}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #CA973B;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}


.navbar .dropdown .active-home{
	background: #CA973B;
	border: 1px solid #CA973B;
}

.navbar .dropdown .active-home i{
	font-size: 22px;
}

.navbar .dropdown a.active-home:hover, .navbar .dropdown a.active-home:focus, .navbar .dropdown a.active-home:active{
	color: #FFF;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #556270;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(63, 73, 83, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #556270;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #CA973B;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #CA973B;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: auto;
  background-color: rgba(63, 73, 83, 0.8);
  overflow: hidden;
  position: relative;
	padding: 0px;
}

#hero .carousel-item {
  width: 100%
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 50px;
  right: 50px;
}
#hero .container {
  text-align: center;
}
#hero h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 700;
}
#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}
#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}
#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}
#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}
#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}
#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}
#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}
#hero .carousel-indicators li.active {
  opacity: 1;
  background: #CA973B;
}
#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: #CA973B;
}
#hero .btn-get-started:hover {
  background: #df3740;
}


@media (min-width: 1024px) {
  #hero{
		padding: 90px 0px 0px 0px;
	}

  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 400px) {
	#hero {
		margin-top: 55px;
	}
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 85px 0;
  overflow: hidden;
}

.section-bg, .services .icon-box {
  background-color: #f8f9fa;
}

h1.section-title, h2.section-title{
  font-size: 50px;
  font-weight: 500;
  margin: 0 0 30px 0 !important;
  text-transform: uppercase;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  color: #556270;
}


.maxw500{
	width: 100%;
	max-width: 500px;
	margin: auto;
}

.maxw600{
	width: 100%;
	max-width: 500px;
	margin: auto;
}

.maxw800{
	max-width: 800px;
	width: 100%;
	padding: 0px 15px;
	margin: auto;
}

.maxw1000{
	padding: 0px 10%;
	margin: auto;
}

@media (max-width: 992px) {

	section {
		padding: 50px 0;
	}
}

@media (max-width: 769px) {

	section {
	  padding: 55px 0;
	}

  h1.section-title, h2.section-title{
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 18px 0;
  background: #f8f9fa;
  min-height: 40px;
  margin-top: 80px;
}
.breadcrumbs h2 {
  font-size: 32px;
  font-weight: 300;
  margin: 0;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6b7b8d;
  content: "/";
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 58px;
  }
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs h2 {
    margin-bottom: 10px;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}


/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #f3f1f0;
  padding: 30px 0;
  color: #574741;
}
.cta h3 {
  font-size: 28px;
  font-weight: 700;
}
.cta h3 span {
  color: #f03c02;
}
.cta p {
  padding: 0;
  margin: 0;
}
.cta .cta-btn {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 25px;
  border-radius: 2px;
  transition: 0.4s;
  margin: 10px;
  border-radius: 4px;
  border: 2px solid #f03c02;
  color: #f03c02;
  background: #fff;
}
.cta .cta-btn:hover {
  background: #f03c02;
  color: #fff;
}
@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}
@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about{
  background: #FFF;
	background-image:url('../img/about-titan-background-min.jpg');
	background-size: cover;
	background-position: left center;
	background-repeat: no-repeat;

}

.about .content{
	color:#FFF;
}

@media (max-width: 992px) {
	.about{
	  background: #FFF;
		background-image:url('../img/titan-mobile-background-min.jpg');
		background-size: cover;
		background-position: center center;
		background-repeat: no-repeat;
		text-align: center;
	}

	.about .content{
		margin-top: 30px;
	}
}


/*--------------------------------------------------------------
# Awards
--------------------------------------------------------------*/
.awards {
  text-align: center;
	background: #000;
}

.awards .awards-box{
	padding: 0px;
	margin: 0px 5px 40px 5px;
	background-color: #FFF;
}

.awards .awards-box .awards-content{
		padding: 20px 10px;
}

.awards .awards-box h2.awards-title{
	font-family: "ProximaNova" !important;
	font-size: 21px;
	font-weight: 600;

}

.awards .awards-box h2.awards-title a{
	color:#000;
}

.awards .awards-box h2.awards-title a:hover{
	color:#CA973B;
}

.awards .awards-box .awards-dateline{
	color:#CA973B;
	font-weight: 600;
	margin: 25px 0px;
	font-size: 16px;
}

.awards .awards-box .awards-meta ul {
  display: inline-block;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
	width: 100%
}

.awards .awards-box .awards-meta ul li{
  padding: 0px 10px;
	display: inline-block;
	position: relative;
}



.awards .awards-box .awards-meta li:not(:last-child):after{
	content: ' ';
	position: absolute;
	border-right: 1px solid #404040;
  height: 80%;
	top: 10%;
	right: 0px;
}


.awards .awards-box .awards-meta a {
  color: #000;
  font-size: 17px;
}

.awards .awards-box .read-more{
	margin-top: 20px;
	margin-bottom: 5px;
	position: relative;

}

.awards .awards-box .read-more a{
	background: #CA973B;
	border: 1px solid #CA973B;
	padding: 5px 25px 5px 15px;
	color: #fff;
}

.awards .awards-box .read-more i{
	font-size: 20px;
	position: absolute;
	top:0px
	right:0px;
}

.awards .awards-box .read-more a:hover, .awards .awards-box .read-more a:focus, .awards .awards-box .read-more a:active{
	background: #000;
	border: 1px solid #000;
	color: #fff;
}

@media (max-width: 1024px) {
	.awards .awards-box h2.awards-title {
		font-size: 20px;
  }

	.awards .awards-box .awards-content{
		min-height: 275px;
	}

}

@media (max-width: 992px) {

	.awards .awards-box .awards-content{
		min-height: 275px;
	}

	.awards .awards-box h2.awards-title {
    font-size: 18px;
  }

}

@media (max-width: 768px) {

	.awards .awards-box .awards-content{
		min-height: 240px;
	}

	.awards .awards-box h2.awards-title {
    font-size: 19px;
  }

	.awards .awards-box .awards-dateline{
		font-size: 15px;
	}

	.awards .awards-box .awards-meta a {
	  font-size: 14px;
	}
}

@media (max-width: 600px) {

	.awards .awards-box h2.awards-title {
    font-size: 18px;
  }

}


/*--------------------------------------------------------------
# Winners
--------------------------------------------------------------*/
.winners {
  text-align: center;
	background: #E5E5E5;
	padding: 85px 0px 0px 0px;
}


.winners .winner-item {
  padding: 0px;
}

.winners .winner-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(202, 151, 59, 0.75);
}

.winners .winner-wrap::before {
  content: "";
  background: rgba(202, 151, 59, 0.75);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.winners .winner-wrap img {
  transition: all ease-in-out 0.3s;
}

.winners .winner-wrap .winner-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
	text-align: center;
}

.winners .winner-wrap .winner-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
	font-family: "ProximaNova";
	text-align: center;
}

.winners .winner-wrap .winner-info p {
  color: #fff;
  font-size: 16px;
  padding: 0;
  margin: 0;
}

.winners .winner-wrap .winner-info p.country {
  color: #fff;
  font-size: 16px;
  padding: 0;
  margin-top: 5px;
}

.winners .winner-wrap .winner-links {
  text-align: center;
  z-index: 4;
}
.winners .winner-wrap .winner-links a {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.winners .winner-wrap .winner-links a:hover {
  color: rgba(255, 255, 255, 0.6);
}

.winners .winner-wrap:hover::before {
  opacity: 1;
}

.winners .winner-wrap:hover img {
  transform: scale(1.2);
}

.winners .winner-wrap:hover .winner-info {
  opacity: 1;
}




/*--------------------------------------------------------------
# Brands
--------------------------------------------------------------*/
.brands {
  text-align: center;
	background: #FFF;
}
.brands img {
  max-width: 80%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}
.brands img:hover {
  filter: none;
  transform: scale(1.15);
}
@media (max-width: 768px) {
  .brands img {
    max-width: 100%;
  }
}


/*--------------------------------------------------------------
# Trophy
--------------------------------------------------------------*/
.trophy{
  background: #000;
	background-image:url('../img/trophy-background-min.jpg');
	min-height: 700px;
	background-size: cover;
	background-position: right center;
	background-repeat: no-repeat;

}

.trophy .content{
	color:#FFF;
}

@media (max-width: 991px) {

	.trophy{
	  background: #000;
		background-image:url('../img/trophy-background-mobile-min.jpg');
		min-height: 1200px;
		background-size: cover;
		background-position: bottom center;
		background-repeat: no-repeat;
		text-align: center;
	}

}

@media (max-width: 600px) {

	.trophy{
		min-height: 1100px;
		background-size: 100%;
		background-position: bottom center;
		text-align: center;
	}

}


/*--------------------------------------------------------------
# Featured Jurors
--------------------------------------------------------------*/
.jurors{
	background-color: #fff;
	padding: 85px 0 0 0;
}

.jurors .portfolio-item {
  padding: 0px;
}

.jurors .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(202, 151, 59, 0.75);
}
.jurors .portfolio-wrap::before {
  content: "";
  background: rgba(202, 151, 59, 0.75);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}
.jurors .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
	filter: grayscale(100%);
}
.jurors .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
	text-align: center;
}
.jurors .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
	font-family: "ProximaNova";
	text-align: center;
}
.jurors .portfolio-wrap .portfolio-info p {
  color: #fff;
  font-size: 16px;
  padding: 0;
  margin: 0;
}

.jurors .portfolio-wrap .portfolio-info p.country {
  color: #fff;
  font-size: 16px;
  padding: 0;
  margin-top: 5px;
}

.jurors .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}
.jurors .portfolio-wrap .portfolio-links a {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}
.jurors .portfolio-wrap .portfolio-links a:hover {
  color: rgba(255, 255, 255, 0.6);
}
.jurors .portfolio-wrap:hover::before {
  opacity: 1;
}
.jurors .portfolio-wrap:hover img {
  transform: scale(1.2);
}
.jurors .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.glightbox-clean .gdesc-inner{
	text-align: center;
}

.glightbox-clean .gslide-title .portfolio-name{
	color : #CA973B;
}


/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/

.glightbox-clean .gslide-description {
  background: #000 !important;
}

.gslide-external{
	background: #000 !important;
}
.portfolio-details {
  padding-top: 40px;
	background-color: #000;
}
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #d9232d;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #d9232d;
}
.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(85, 98, 112, 0.08);
}
.portfolio-details .portfolio-info h3 {
  font-size: 28px;
  margin-bottom: 20px;
	margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #444;
	text-transform: uppercase;
}

.portfolio-details .portfolio-info .portfolio-country{
	font-size: 16px;
}

.portfolio-details .portfolio-info hr {
    border: 1px solid #CA973B;
    border-top-width: 2px;
    width: 40px;
    width: 2.5rem;
    margin-left: initial;
		background-color:#CA973B !important;
	  margin: 0.5rem 0;
		opacity: 1;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}
.portfolio-details .portfolio-description {
  padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
	font-size: 17px
}




/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials{
	background-color: #E5E5E5;
}


.testimonials .testimonial-box{
	padding: 0px 20px;
}

.testimonials .testimonial-content{
	font-size: 17px;
	margin-top: 30px;
}


.testimonials .testimonial-content .quote{
    font-size: 20px;
		color: #404040;
}

.testimonials .testimonial-sender{
    color: #CA973B;
		font-size: 17px;
    font-style: italic;
		margin-top: 30px;

}

.testimonials .owl-theme{
	padding: 0px 20px;
}

.testimonials .owl-theme .owl-nav {
    position: absolute;
		top:28%;
}

.testimonials .owl-theme .owl-nav{
	font-size: 90px !important;
	width: 100%
}

.testimonials .owl-theme .owl-nav .owl-prev{
	position: absolute;
  left: -4%;
}

.testimonials .owl-theme .owl-nav .owl-next{
	position: absolute;
  right: -2%;
}

.testimonials .owl-carousel .owl-nav .owl-next:hover, .testimonials .owl-carousel .owl-nav .owl-prev:hover{
	background: transparent;
	color:#CA973B;
}

@media (max-width: 600px) {

	.testimonials .testimonial-content{
		font-size: 14px;
	}

	.testimonials .owl-theme .owl-nav{
		display: none;
	}
}

/*--------------------------------------------------------------
# About IAA
--------------------------------------------------------------*/
.aboutiia{
	background-color: #000;
}

.aboutiia h3.text-subtitle{
	font-size: 28px !important;
	font-family: "ProximaNova" !important;
}


.aboutiia .about-box{
	 margin: 40px 5px 0px 5px;
	 padding: 10px 0px 45px 0px;
	 border-left: 1px solid #CA973B;
	 border-right: 1px solid #CA973B;
	 border-top: 3px solid #CA973B;
	 border-bottom: 15px solid #CA973B;

}

.aboutiia .about-box .line{
  height: 5px;
	background-color:#CA973B;
	width: 35%;
	margin-top: 5px;
}


.aboutiia .about-box h2.bignum{
   font-size: 55px;
	 font-weight: bold;
	 margin-top: 38px !important;
	 font-family: 'APOLLO' !important;
	 letter-spacing: 5px;
}

.aboutiia .about-box .title-sm{
   font-size: 14px;
	 color:#000;
	 letter-spacing: 2px;
}


/*--------------------------------------------------------------
# SUBSCRIPTION
--------------------------------------------------------------*/
.newsletter{
	background-color: #FFF;
}



/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}
.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}
.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #CA973B;
}
.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}
.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(85, 98, 112, 0.6);
}
.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(85, 98, 112, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}
.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}
.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}
.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}
.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}
.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}
.portfolio .portfolio-wrap .portfolio-links a {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}
.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: white;
}
.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}
.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}
.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  overflow: hidden;
}
.features .nav-tabs {
  border: 0;
}
.features .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: #556270;
  border-radius: 0;
  border-right: 2px solid white;
  font-weight: 600;
  font-size: 15px;
}
.features .nav-link:hover {
  color: #CA973B;
}
.features .nav-link.active {
  color: #CA973B;
  border-color: #CA973B;
}
.features .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}
.features .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #556270;
}
.features .details p {
  color: #777777;
}
.features .details p:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .features .nav-link {
    border: 0;
    padding: 15px;
  }
  .features .nav-link.active {
    color: #fff;
    background: #CA973B;
  }
}


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 60px 0;
}

.counts .counters p.counterbox{
  font-size: 48px;
  color: #5fcf80;
  font-weight: 700;
  margin: 0 0 5px 0;
}
.counts .counters span {
  font-size: 48px;
  color: #5fcf80;
  font-weight: 700;
}
.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 15px;
  font-weight: 600;
  color: #37423b;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0px;
}
.faq .faq-list ul {
  padding: 0;
  list-style: none;
}
.faq .faq-list li + li {
  margin-top: 15px;
}
.faq .faq-list>ul>li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}
.faq .faq-list a {
  display: block;
  position: relative;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px 0 0;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list>ul li ul {
    padding: 0px 0 0 2rem;
    list-style-type: disc;
    margin-top: 10px;
}

.faq .faq-list>ul li ol {
    margin-top: 10px;
}

.faq .faq-list ul li ol li,  .faq .faq-list ul li ul li{
  padding: 0px;
  position: relative;
}



.faq .faq-list h3 {
  font-size: 18px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  margin-bottom: 30px;
}
.faq .faq-list h3::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #e6636a;
  margin: 4px 10px;
}
.faq .faq-list p {
  margin-bottom: 0;
  padding: 20px 0 0 0;
}

.faq .faq-list .collapse a{
  display: inline;
  padding: 0;
}

.faq .faq-list .icon-show {
  display: none;
}
.faq .faq-list a.collapsed {
  color: #343a40;
  transition: 0.3s;
}
.faq .faq-list a.collapsed:hover {
  color: #1bbd36;
}
.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}
.faq .faq-list a.collapsed .icon-close {
  display: none;
}
@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Page
--------------------------------------------------------------*/

.page h3 {
  font-size: 18px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  margin: 48px 0px 15px 0px;
}
.page h3::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #e6636a;
  margin: 4px 10px;
}


.page .page-list {
  padding: 0px;
}
.page .page-list ul {
  padding: 0;
  list-style: none;
}
.page .page-list li + li {
  margin-top: 15px;
}
.page .page-list>ul>li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}
.page .page-list a {
  display: block;
  position: relative;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px 0 0;
  outline: none;
  cursor: pointer;
}

.page .page-list .icon-show, .page .page-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.page .page-list>ul li ul {
    padding: 0px 0 0 2rem;
    list-style-type: disc;
    margin-top: 10px;
}

.page .page-list>ul li ol {
    margin-top: 10px;
}

.page .page-list ul li ol li,  .page .page-list ul li ul li{
  padding: 0px;
  position: relative;
}

.page .page-list p {
  margin-bottom: 0;
  padding: 20px 0 0 0;
}

.page .page-list .collapse a{
  display: inline;
  padding: 0;
}

.page .page-list .icon-show {
  display: none;
}
.page .page-list a.collapsed {
  color: #343a40;
  transition: 0.3s;
}
.page .page-list a.collapsed:hover {
  color: #1bbd36;
}
.page .page-list a.collapsed .icon-show {
  display: inline-block;
}
.page .page-list a.collapsed .icon-close {
  display: none;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #000;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}
#footer .footer-top {
  background: #000;
  padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: #fff;
}

#footer .footer-top .social-links{
	text-align: center;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: transparent;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
	border: 1px solid #FFF;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #CA973B;
  color: #fff;
  text-decoration: none;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #FFF;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  color: #D49729;
}

#footer .footer-logo{
	height: 80px;
	position: relative;
	margin-top: 20px;
}

#footer .footer-logo .left-line{
	height:35px;
	border-bottom:1px solid #444;
	width:40%;
	display:inline-block;
	position:absolute;
	top:0
}

#footer .footer-logo .right-line{
	height:35px;
	border-bottom:1px solid #444;
	width:40%;
	display:inline-block;
	position:absolute;
	top:0;
	right:0px
}

#footer .flogo{
	width: 200px;
	position:absolute;
	top:0;
	left: 41.25%
}


#footer .copyright {
  padding-top: 20px;
  font-size: 13px;
}

#footer .copyright p{
  margin-bottom: 0.01rem !important;
}

#footer .copyright p a{
  color: rgba(255, 255, 255, 0.6);
}

#footer .copyright p a:hover{
	color:#D49729;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
#footer .credits a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  font-weight: 600;
}
#footer .credits a:hover {
  color: white;
}

@media (max-width: 991px) {

	#footer .flogo {
    width: 180px;
    position: absolute;
    top: 0;
    left: 35%;
 }

	#footer .footer-logo .left-line{
		width:30%;
	}

	#footer .footer-logo .right-line{
		width:30%;
	}
}


@media (max-width: 480px) {

	#footer .flogo {
    width: 150px;
    left: 28%;
 }

	#footer .footer-logo .left-line{
		width:23%;
	}

	#footer .footer-logo .right-line{
		width:23%;
	}
}
