/*--------General*/
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

@font-face {
	font-family: 'MonumentExtended';
	src: url('../intria/fonts/monumentextended-regular-webfont.woff2') format('woff2'), url('../intria/fonts/monumentextended-regular-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

html {
	font-size: 12px;
}

body {
	font-family: 'DM Sans', sans-serif;
	color: #000000;
}

a,
a:hover {
	color: #c9180b;
}

	a.text-primary:focus,
	a.text-primary:hover {
		color: #5ca595 !important;
	}

::selection {
	background-color: #c9180b;
	color: #ffffff;
	text-shadow: none;
}

-webkit-::selection {
	background-color: #c9180b;
	color: #ffffff;
	text-shadow: none;
}

::-moz-selection {
	background-color: #c9180b;
	color: #ffffff;
	text-shadow: none;
}

::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}

::-webkit-scrollbar-thumb {
	cursor: pointer;
	background: #c9180b;
}

@media (min-width: 1200px) {
	.container,
	.container-sm,
	.container-md,
	.container-lg,
	.container-xl {
		max-width: 1200px;
	}
}

@media (min-width: 1600px) {
	.container-fluid {
		padding-left: 4rem;
		padding-right: 4rem;
	}
}

.full-height {
	min-height: 100vh;
}
/*--------Typography*/
.font-custom {
	font-family: 'MonumentExtended', sans-serif;
}

.text-primary {
	color: #c9180b !important;
}

.text-success,
a.text-success:hover {
	color: #0c3279 !important;
}

.text-underline {
	text-decoration: underline;
}

.text-md {
	font-size: 1.2rem;
}

.text-white a {
	color: #ffffff;
}
/*--------Buttons*/
button:focus,
input:focus {
	outline: none;
}

.btn {
	padding: 1rem 2.5rem;
	border-radius: 500px;
	font-weight: bold;
	font-size: 1.2rem;
	line-height: 1.2rem;
	text-transform: uppercase;
}

.btn-success,
.btn-success:hover,
.btn-success.focus,
.btn-success:focus,
.btn-success:not(:disabled):not(.disabled).active,
.btn-success:not(:disabled):not(.disabled):active,
.show > .btn-success.dropdown-toggle {
	background-color: #0c3279;
	border-color: #0c3279;
}

.btn-success {
	transition: box-shadow .3s ease-in-out;
	transition-delay: 0;
}

	.btn-success:hover,
	.btn-success.focus,
	.btn-success:focus {
		box-shadow: rgba(92,165,149,.2) 0 0 0 6px;
	}

.btn-sm {
	padding-top: .5rem;
	padding-bottom: .5rem;
	font-size: 1rem;
}

.btn-circle.btn-sm {
	padding-left: .4rem;
	padding-right: .4rem;
	min-width: calc(.7rem + 1.5em + 2px);
}
/*--------Loader*/
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255,255,255,0.9);
	z-index: 9999999
}

.cssload-thecube {
	width: 100px;
	height: 100px;
	margin: 0 auto;
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -50px;
	margin-left: -50px;
}

	.cssload-thecube .cssload-cube {
		position: relative;
	}

	.cssload-thecube .cssload-cube {
		float: left;
		width: 50%;
		height: 50%;
		position: relative;
	}

		.cssload-thecube .cssload-cube:before {
			content: "";
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background-color: #c8102e;
			animation: cssload-fold-thecube 2.76s infinite linear both;
			-o-animation: cssload-fold-thecube 2.76s infinite linear both;
			-ms-animation: cssload-fold-thecube 2.76s infinite linear both;
			-webkit-animation: cssload-fold-thecube 2.76s infinite linear both;
			-moz-animation: cssload-fold-thecube 2.76s infinite linear both;
			transform-origin: 100% 100%;
			-o-transform-origin: 100% 100%;
			-ms-transform-origin: 100% 100%;
			-webkit-transform-origin: 100% 100%;
			-moz-transform-origin: 100% 100%;
		}

	.cssload-thecube .cssload-c2:before {
		background-color: #990033;
		animation-delay: 0.35s;
		-o-animation-delay: 0.35s;
		-ms-animation-delay: 0.35s;
		-webkit-animation-delay: 0.35s;
		-moz-animation-delay: 0.35s;
	}

	.cssload-thecube .cssload-c3:before {
		background-color: #000;
		animation-delay: 0.69s;
		-o-animation-delay: 0.69s;
		-ms-animation-delay: 0.69s;
		-webkit-animation-delay: 0.69s;
		-moz-animation-delay: 0.69s;
	}

	.cssload-thecube .cssload-c4:before {
		background-color: #250e62;
		animation-delay: 1.04s;
		-o-animation-delay: 1.04s;
		-ms-animation-delay: 1.04s;
		-webkit-animation-delay: 1.04s;
		-moz-animation-delay: 1.04s;
	}

@keyframes cssload-fold-thecube {
	0%, 10% {
		transform: perspective(136px) rotateX(-180deg);
		opacity: 0;
	}

	25%, 75% {
		transform: perspective(136px) rotateX(0deg);
		opacity: 1;
	}

	90%, 100% {
		transform: perspective(136px) rotateY(180deg);
		opacity: 0;
	}
}

@-o-keyframes cssload-fold-thecube {
	0%, 10% {
		-o-transform: perspective(136px) rotateX(-180deg);
		opacity: 0;
	}

	25%, 75% {
		-o-transform: perspective(136px) rotateX(0deg);
		opacity: 1;
	}

	90%, 100% {
		-o-transform: perspective(136px) rotateY(180deg);
		opacity: 0;
	}
}

@-ms-keyframes cssload-fold-thecube {
	0%, 10% {
		-ms-transform: perspective(136px) rotateX(-180deg);
		opacity: 0;
	}

	25%, 75% {
		-ms-transform: perspective(136px) rotateX(0deg);
		opacity: 1;
	}

	90%, 100% {
		-ms-transform: perspective(136px) rotateY(180deg);
		opacity: 0;
	}
}

@-webkit-keyframes cssload-fold-thecube {
	0%, 10% {
		-webkit-transform: perspective(136px) rotateX(-180deg);
		opacity: 0;
	}

	25%, 75% {
		-webkit-transform: perspective(136px) rotateX(0deg);
		opacity: 1;
	}

	90%, 100% {
		-webkit-transform: perspective(136px) rotateY(180deg);
		opacity: 0;
	}
}

@-moz-keyframes cssload-fold-thecube {
	0%, 10% {
		-moz-transform: perspective(136px) rotateX(-180deg);
		opacity: 0;
	}

	25%, 75% {
		-moz-transform: perspective(136px) rotateX(0deg);
		opacity: 1;
	}

	90%, 100% {
		-moz-transform: perspective(136px) rotateY(180deg);
		opacity: 0;
	}
}
/*--------Animation */
@-webkit-keyframes fadeZooming {
	from {
		opacity: 0;
		-webkit-transform: scale3d(.8, .8, .8);
		transform: scale3d(.8, .8, .8);
		margin-left: -12rem;
	}

	100% {
		opacity: 1;
		margin-left: 0;
	}
}

@keyframes fadeZooming {
	from {
		opacity: 0;
		-webkit-transform: scale3d(.8, .8, .8);
		transform: scale3d(.8, .8, .8);
		margin-left: -12rem;
	}

	100% {
		opacity: 1;
		margin-left: 0;
	}
}

.fadeZooming {
	-webkit-animation-name: fadeZooming;
	animation-name: fadeZooming;
}

@-webkit-keyframes fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -8rem, 0);
		transform: translate3d(0, -8rem, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -8rem, 0);
		transform: translate3d(0, -8rem, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
}

@-webkit-keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 10rem, 0);
		transform: translate3d(0, 10rem, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 10rem, 0);
		transform: translate3d(0, 10rem, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

@-webkit-keyframes fadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-10rem, 0, 0);
		transform: translate3d(-10rem, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-10rem, 0, 0);
		transform: translate3d(-10rem, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(10rem, 0, 0);
		transform: translate3d(10rem, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(10rem, 0, 0);
		transform: translate3d(10rem, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight;
}
/*--------Header */
.header {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
	margin-top: 0;
}

	.header .container-fluid {
		color: #000000;
		transition: color .3s ease-in-out;
	}

@media (min-width: 768px) {
	.header {
		padding-top: 1.5rem;
		padding-bottom: 1.5rem;
	}
}

.header-fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 900;
	box-shadow: 0 .125rem .25rem rgba(0,0,0,.035) !important;
	background: rgba(255,255,255,0.9);
}

.header-bg {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 0;
	z-index: -1;
	background-color: #ffffff;
	box-shadow: 0 0 0px rgba(0,0,0,0.1);
	transition: .3s ease-in-out;
}

.header-shadow .header-bg {
	height: 100%;
	box-shadow: 0 0 30px rgba(0,0,0,0.1);
}

.brand {
	float: left;
	margin-right: 1rem;
	white-space: nowrap;
	font-size: 1.5rem;
	text-transform: uppercase;
}

	.brand a {
		color: inherit;
		text-decoration: none;
	}

.header-content {
	margin-left: 18%;
	margin-right: 18%;
	padding-top: 13px;
}

.header-tagline {
	padding-top: 2px;
	font-size: .8rem;
	color: #999999;
	font-weight: bold;
	text-transform: uppercase;
	transition: color .3s ease-in-out;
}

.header-contacts {
	font-weight: bold;
	text-transform: uppercase;
	font-size: .8rem;
	text-align:right;
}

.header-contact-item,
.header-contact-divider {
	display: inline-block;
	vertical-align: middle;
}

.header-contact-divider {
	margin-left: 1.6rem;
	margin-right: 1.6rem;
	opacity: .2;
}

.phone-link,
.phone-link:hover,
.mail-link,
.mail-link:hover {
	color: inherit;
	text-decoration: none;
}

.phone-link {
	cursor: default;
}

.nav-toggle-btn {
	background: none;
	border: none;
	padding: .6rem 0;
	margin: 0;
	border-radius: 0;
	outline: none;
	float: right;
	position: relative;
	z-index: 999;
	font-weight: bold;
	text-transform: uppercase;
	color: inherit;
}

	.nav-toggle-btn:hover {
		color: #b11d11;
	}

	.nav-toggle-btn:focus {
		outline: none;
	}

.nav-toggle {
	display: block;
	width: 32px;
}

	.nav-toggle .stick {
		display: block;
		width: 100%;
		border-radius: 3px;
		height: 3px;
		background: #c9180b;
		transition: all .3s;
		position: relative;
	}

		.nav-toggle .stick + .stick {
			margin-top: 9px;
		}

.body-menu-opened .nav-toggle .stick-1 {
	animation: ease .5s top forwards;
}

.nav-toggle .stick-1 {
	animation: ease .5s top-2 forwards;
}

.body-menu-opened .nav-toggle .stick-2 {
	animation: ease .5s bottom forwards;
}

.nav-toggle .stick-2 {
	animation: ease .5s bottom-2 forwards;
}

@keyframes top {
	0% {
		top: 0;
		transform: rotate(0);
	}

	50% {
		top: 6px;
		transform: rotate(0);
	}

	100% {
		top: 6px;
		transform: rotate(45deg);
	}
}

@keyframes top-2 {
	0% {
		top: 6px;
		transform: rotate(45deg);
	}

	50% {
		top: 6px;
		transform: rotate(0deg);
	}

	100% {
		top: 0;
		transform: rotate(0deg);
	}
}

@keyframes bottom {
	0% {
		bottom: 0;
		transform: rotate(0);
	}

	50% {
		bottom: 6px;
		transform: rotate(0);
	}

	100% {
		bottom: 6px;
		transform: rotate(135deg);
	}
}

@keyframes bottom-2 {
	0% {
		bottom: 6px;
		transform: rotate(135deg);
	}

	50% {
		bottom: 6px;
		transform: rotate(0);
	}

	100% {
		bottom: 0;
		transform: rotate(0);
	}
}

.menu {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 990;
	background: #ffffff;
	max-width: 100%;
	width: 100%;
	padding: 10rem 4rem 4rem;
	display: flex;
	flex-direction: column;
	transition: transform .4s ease-in-out;
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
}

.body-menu-opened .menu {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
}

.hide-menu {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 100%;
	background: rgba(0,0,0,.65);
	z-index: 990;
}

.body-menu-opened .hide-menu {
	bottom: 0;
}

@media (min-width: 576px) {
	.menu {
		width: 27.5rem;
	}
}

.menu .menu-main,
.menu .social,
.menu .menu-footer {
	opacity: 0;
	transform: translateY(3rem);
	transition: all .5s ease-in-out;
}

.menu .menu-main {
	transition-delay: .4s;
}

.menu .social {
	transition-delay: .6s;
}

.menu .menu-footer {
	transition-delay: .8s;
}

.body-menu-opened .menu .menu-main,
.body-menu-opened .menu .social,
.body-menu-opened .menu .menu-footer {
	opacity: 1;
	transform: translateY(0);
}

.menu-main {
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	font-size: 1.375rem;
	font-weight: bold;
}

.menu-inner {
	margin-top: 60px;
}

.menu-main > ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

	.menu-main > ul > li {
		margin-bottom: 1.2rem;
		padding-left: 2px;
	}

.menu-main a,
.menu-main a:hover {
	color: #1f2044;
	text-decoration: none;
}

	.menu-main .active > a,
	.menu-main a:hover {
		color: #c9180b;
	}

	.menu-main a:before {
		content: "#";
		opacity: 0;
		display: inline-block;
		transform: translate(2rem,0);
		transition: all .3s ease-in-out;
	}

.menu-main .active a:before {
	transform: translate(0,0);
	opacity: 1;
}

.menu-footer {
	padding-top: 3rem;
}

.menu-copyright {
	margin-top: 2rem;
	text-transform: uppercase;
	font-size: .9rem;
	font-weight: bold;
	color: #999999;
}
/*--------Home*/
.content a {
	transition: color .3s ease;
}

@media (max-width: 575px) {
	.content-wrapper .container {
		padding-left: 43px;
		padding-right: 43px;
	}

	.content-wrapper .slide-personal-projects .container {
		padding-right: 53px;
	}
}

#pp-nav.right {
	right: 0;
}

#pp-nav li {
	width: auto;
	height: auto;
	margin: .5rem;
}

	#pp-nav li a {
		display: block;
		padding: .4rem;
	}

#pp-nav span {
	display: block;
	position: static;
	width: .6rem;
	height: .6rem;
	border: none;
	background-color: #999999;
	transition: background-color .3s ease-in-out;
}

#pp-nav a:hover span {
	background-color: #aaaaaa;
}

#pp-nav li .active span {
	background-color: #c9180b;
}

@media (min-width: 1600px) {
	#pp-nav.right {
		right: 3.5rem;
	}
}

.pp-scrollable {
	background-color: #ffffff;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.bg-grey {
	background-color: #f6f6f6;
}

.section-num {
	margin-bottom: 1rem;
	position: relative;
	z-index: 200;
	font-family: 'MonumentExtended', sans-serif;
	font-size: 1.2rem;
	color: #999999;
	transition: color .3s ease-in-out;
}

@media (min-width: 1400px) {
	.section-num {
		position: fixed;
		left: 15px;
		top: 29vmin;
		z-index: 100;
		margin-bottom: 0;
	}
}

@media (min-width: 1600px) {
	.section-num {
		left: 4rem;
	}
}

.section-container {
	width: 100%;
	min-height: 100%;
	display: flex;
	align-items: center;
	padding-top: 6rem;
	padding-bottom: 3rem;
	position: relative;
}

	.section-container > .container {
		position: relative;
		z-index: 200;
	}

.section-title {
	margin-bottom: 2rem;
	font-size: 6vmin;
	font-family: 'MonumentExtended', sans-serif;
	line-height: 1;
	color: #c9180b;
	text-transform: uppercase;
}

@media (min-width: 768px) {
	.section-title {
		font-size: 6vmin;
	}
}

.section-title-lg {
	margin-left: -.25rem;
	font-size: 6rem;
}

.section-title-sub {
	margin-bottom: 2.8rem;
	font-size: 1.2rem;
	font-family: 'MonumentExtended', sans-serif;
	line-height: 1.5;
	color: #111111;
	text-transform: uppercase;
	letter-spacing: .025em;
}

.text-white .section-title-sub {
	color: #ffffff;
}

.section-title-sub-sm {
	font-size: 1.2rem;
	line-height: 1.5;
}

.section-title-sub-md {
	font-size: 1.2rem;
}

.section-title-info {
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.2;
	letter-spacing: -.035em;
}

.about-review-intro .section-title-info {
	font-size: 1.2rem;
	font-weight: normal;
	line-height: 1.2;
	letter-spacing: -.035em;
	margin-bottom: 1rem !important;
}

.section-text {
	color: #000;
	font-size: 1.2rem;
	line-height: 1.66666667;
}

.text-white .section-text {
	color: #ffffff;
}

.section-text-intro {
}

.section-btn {
	margin-top: 7vmin;
}

.section:not(.active) .animate-element {
	animation-name: none;
}

.section.active .animate-element {
	animation-duration: .7s;
	animation-fill-mode: both;
}

.section.active .delay1 {
	animation-delay: .1s;
}

.section.active .delay2 {
	animation-delay: .2s;
}

.section.active .delay3 {
	animation-delay: .3s;
}

.section.active .delay4 {
	animation-delay: .4s;
}

.section.active .delay5 {
	animation-delay: .5s;
}

.section.active .delay6 {
	animation-delay: .6s;
}

.section.active .delay7 {
	animation-delay: .7s;
}

.section.active .delay8 {
	animation-delay: .8s;
}

.section.active .delay9 {
	animation-delay: .9s;
}

.section.active .delay10 {
	animation-delay: 1s;
}

[class^="circle-"],
[class*=" circle-"] {
	border-radius: 70rem;
	transition: all .7s ease-in-out;
}

.circle-red {
	background-color: #c9180b;
}

.circle-red2 {
	background-color: #c9180b;
	opacity: 0.5 !important;
}

.circle-white {
	background-color: #f6f6f6;
}

.circle-blue {
	background-color: #0c3279;
}

.transformLeft {
	transform: translate(-100%,0);
	opacity: 0.8;
}

.transformRight {
	transform: translate(100%,0);
	opacity: 0.8;
}

.transformLeft, .transformRight {
	transform: translate(0%,0);
	opacity: 1;
}
/*--------Agent Intro*/
.section-bg {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 10;
	overflow: hidden;
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
}

.section-photo {
	position: absolute !important;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 50%;
}

.slide-intro-man {
	background-image: url("../img/data/model-2.jpg");
	background-position: 90% 100%;
	background-size: auto 90%;
}

.slide-intro-circle1 {
	width: 10rem;
	height: 10rem;
	left: -6.5rem !important;
	top: 25% !important;
	bottom: auto;
	right: auto;
}

.slide-intro-circle2 {
	width: 45rem;
	height: 45rem;
	left: 58% !important;
	top: 46% !important;
	bottom: auto;
	right: auto;
}
/*--------Projects*/
.slide-projects-circle1 {
	width: 8rem;
	height: 8rem;
	right: -4rem !important;
	top: 18% !important;
	bottom: auto;
	left: auto !important;
}

.slide-projects-circle2 {
	width: 50rem;
	height: 50rem;
	left: -8% !important;
	top: 30% !important;
	bottom: auto;
	right: auto;
}

.section-title-personal-projects {
	margin-bottom: 5vmin;
	font-size: 4.5vmin;
}

.projects-newest .section-title-info {
	margin-top: 1.2rem;
	margin-bottom: 5vmin;
}

.projects-list {
	margin-bottom: -1.5rem;
}

.projects-item {
	margin-bottom: 4rem;
}

.projects-item-title {
	margin-bottom: .5rem;
}

.projects-item img, .listing-item-image img {
	height: 250px;
	object-fit: cover;
	width: 100%;
}

.seminars .listing-item-image img {
	object-fit: contain;
}

.projects-item-more {
	margin-top: 1.5rem;
}

.section-text-personal-projects {
	margin-right: 10%;
	margin-top: 2.5rem;
	margin-bottom: 2rem;
}

@media (min-width: 768px) {
	.section-text-personal-projects {
		margin-top: 22rem;
		margin-bottom: 0;
	}
}

@media (min-width: 992px) {
	.section-text-personal-projects {
		margin-right: 35%;
		margin-top: 14rem;
	}
}
/*--------Listings*/
.listing-newest .section-bg {
}

.slide-listings-circle1 {
	width: 8rem;
	height: 8rem;
	left: -4rem !important;
	top: 50% !important;
	bottom: auto !important;
	right: auto !important;
}

.slide-listings-circle2 {
	width: 45rem;
	height: 45rem;
	right: -15% !important;
	top: 30% !important;
	bottom: auto !important;
	left: auto !important;
}

.listing-item {
	background: #f6f6f6;
	border-radius: 1rem 1rem 3rem 1rem;
	padding: 2rem 2.5rem;
}

.listing-list .listing-item {
	margin-top: 4rem;
}

.listing-item-price {
	margin-bottom: .6rem;
	font-size: 1.2rem;
	color: #c9180b;
	text-transform: uppercase;
	font-weight: bold;
}

.listing-item-image {
	margin-bottom: .75rem;
	display: flex;
	overflow: hidden;
	align-items: center;
}

	.listing-item-image img {
		max-width: 100%;
		max-height: 100%;
	}

.listing-item-title {
	margin-bottom: 1rem;
}

.listing-item-address {
	margin-bottom: 2rem;
}

.listing-item-more {
	font-size: 1.4rem;
	font-weight: bold;
	text-decoration: underline;
}

@media (min-width: 992px) {
	.listing-list .listing-item {
		height: calc(100% - 4rem);
	}
}
/*--------Achievement*/
.achievement-intro .section-bg {
}

.achievement-intro .section-title-info {
	margin-bottom: 4.5vmin;
}

.title-mini {
	font-size: 2rem;
	text-transform: uppercase;
	color: #c9180b;
	font-weight: bold;
}

.achievement-intro .title-mini {
	margin-bottom: 3.4rem;
}

.icon-trainings {
	display: inline-block;
	vertical-align: top;
	width: 4rem;
	height: 4rem;
	background-image: url("../../images/intria/icon-training.png");
	background-position: 50% 50%;
	background-size: 100%;
	background-repeat: no-repeat;
}

.icon-transactions {
	display: inline-block;
	vertical-align: top;
	width: 4rem;
	height: 4rem;
	background-image: url("../../images/intria/icon-transaction.png");
	background-position: 50% 50%;
	background-size: 100%;
	background-repeat: no-repeat;
}

.icon-awards {
	display: inline-block;
	vertical-align: top;
	width: 4rem;
	height: 4rem;
	background-image: url("../../images/intria/icon-awards.png");
	background-position: 50% 50%;
	background-size: 100%;
	background-repeat: no-repeat;
}

.icon-reviews {
	display: inline-block;
	vertical-align: top;
	width: 4rem;
	height: 4rem;
	background-image: url("../../images/intria/icon-reviews.png");
	background-position: 50% 50%;
	background-size: 100%;
	background-repeat: no-repeat;
}

.achi-icon {
	width: 4rem;
	margin-right: 1.2rem;
}

.achi-item {
	margin-bottom: 2.75rem;
}

.list-item-title {
	margin-bottom: .6rem;
	font-size: 2.3rem;
	font-family: 'MonumentExtended';
	line-height: 1;
	color: #c9180b;
}

.clients-photo {
	height: 0;
	padding-bottom: 103.50877193%;
	margin-top: 2rem;
	margin-bottom: 2rem;
	position: relative;
}

.clients-photo-item {
	width: 4rem;
}

.clients-photo .clients-photo-item {
	position: absolute;
	width: 15%;
}

.clients-photo-item > .inside {
	display: block;
	height: 0;
	padding-bottom: 100%;
	background-color: #f5f4f0;
	border-radius: 50rem;
	overflow: hidden;
	position: relative;
}

.clients-photo-item img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	display: block;
	max-width: 100%;
	max-height: 100%;
}

.home-slider-controls {
	text-align: right;
}

	.home-slider-controls .lni {
		font-size: 4rem;
	}

.myawards .section-title-sub {
	margin-bottom: .75rem;
	font-size: 1rem;
}

	.myawards .section-title-sub span {
		color: rgba(0,0,0,0.5);
	}
/*--------Testimonials*/
.slide-testimonials-circle1 {
	width: 12rem;
	height: 12rem;
	left: -15%;
	top: -10%;
}

.slide-testimonials-circle2 {
	width: 20rem;
	height: 20rem;
	left: 90%;
	top: 100%;
}

.slide-testimonials-circle3 {
	width: 6rem;
	height: 6rem;
	left: -50px;
	top: 38%;
}

.testimonials-intro .section-bg {
}

.testimonials-item-avatar-container {
	margin-bottom: 3rem;
}

.testimonial-item-company {
	display: inline-block;
	vertical-align: top;
	margin-right: -1rem;
	width: 4rem;
}

.testimonials-item-text {
	margin-bottom: 3rem;
}

.testimonials-item-rating {
	margin-bottom: .8rem;
	color: #ffc705;
}

.testimonials-item-author {
	font-size: 1.2rem;
	font-weight: bold;
	text-transform: uppercase;
}

.carousel-testimonial.owl-theme .owl-nav {
	margin-top: 3.5rem;
	margin-left: -.5rem;
	text-align: left;
}

.carousel-testimonial.owl-carousel .owl-nav button.owl-prev {
	margin-right: 1.5rem;
}
/*--------Contact*/
.slide-contacts-circle1 {
	width: 60rem;
	height: 60rem;
	top: 47%;
	left: -3%;
}

.slide-contacts-circle2 {
	width: 8rem;
	height: 8rem;
	top: 15%;
	right: -3%;
	left: auto;
}

.contact-personal-card {
	height: 100%;
	display: flex;
	flex-direction: column;
}

/*.contact-personal-card-title {
	height: 30%;
}*/

.contact-personal-card .title-mini {
	margin-bottom: 3rem;
}

.contact-personal-card .section-title-sub {
	margin-bottom: 1.5rem;
}

.agent-contacts .section-title-info {
	margin-bottom: 2.5rem;
}

.contact-personal-form {
	margin-bottom: .3rem;
}
/*--------Footer*/
.social {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 1.2rem;
}

	.social .lni-32 {
		font-size: 35px;
	}

	.social li {
		display: inline-block;
		vertical-align: middle;
		margin-right: 1rem;
	}

	.social a {
		color: #666666 !important;
		transition: color .3s ease;
	}

		.social a:hover {
			color: #000000;
		}

.social-fixed {
	position: fixed;
	z-index: 300;
	right: 10px;
	bottom: 5rem;
	width:50px;
}

	.social-fixed li {
		display: block;
		margin-right: 0;
		margin-bottom: 1.2rem;
	}

.copyright {
	text-align: right;
	color: #999999;
	font-weight: bold;
	font-size: .8rem;
	text-transform: uppercase;
	transition: all .3s ease-in-out;
}

.copyright-fixed {
	position: fixed;
	right: 15px;
	bottom: 1.5rem;
	z-index: 300;
}

@media (min-width: 1600px) {
	.social-fixed {
		left: 4rem;
		bottom: 2rem;
	}

	.copyright-fixed {
		right: 4rem;
		bottom: 3.5rem;
	}
}

.homePage .copyright {
	color: rgba(0,0,0,0.5);
}
/*--------Modal*/
.modal-content {
	border: none;
	border-radius: 1rem 1rem 3rem 1rem;
}

.modal-header {
	padding-top: 2rem;
	padding-bottom: .5rem;
	border-bottom: none;
}

.modal-header,
.modal-body,
.modal-footer {
	padding-left: 2rem;
	padding-right: 2rem;
}

.modal-body {
	padding-bottom: 2rem;
}

.modal-title {
	font-family: 'MonumentExtended', sans-serif;
	font-size: 2rem;
	color: #c9180b;
	text-transform: uppercase;
}

.modal-header .close {
	padding: .5rem;
	position: relative;
	top: -.5rem;
	right: -.5rem;
	font-size: 1.5rem;
	line-height: .75;
}

.message {
	display: none;
}
/*--------Forms */
.control-btn {
	margin-top: 2rem;
}

select.form-control {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3e%3cpath fill='%23000000' d='M32,48.1c-1.3,0-2.4-0.5-3.5-1.3L0.8,20.7c-1.1-1.1-1.1-2.7,0-3.7c1.1-1.1,2.7-1.1,3.7,0L32,42.8l27.5-26.1 c1.1-1.1,2.7-1.1,3.7,0c1.1,1.1,1.1,2.7,0,3.7L35.5,46.5C34.4,47.9,33.3,48.1,32,48.1z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-size: 1rem 1rem;
	background-position: 100% 50%;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.custom-checkbox {
	font-size: 1.2rem;
	height: calc(1.5em + 1rem + 1px);
	margin-right: 0.4rem;
}

.form-group-material {
	margin-bottom: .5rem;
	padding-top: 1rem;
	position: relative;
}

	.form-group-material .label {
		position: absolute;
		left: 0;
		font-size: 1.2rem;
		color: #999999;
		pointer-events: none;
		transform-origin: left top;
		transition: all .3s ease-in-out;
	}

	.form-group-material .label,
	.form-group-material.form-group.active .label {
		transform: scale(.77777778);
		top: 0;
	}

	.form-group-material.form-group .label {
		transform: scale(1);
		top: 1.5rem;
	}

	.form-group-material .form-control {
		border-radius: 0;
		border: none;
		border-bottom: #999999 1px solid;
		background-color: transparent;
		padding: .5rem 0;
		font-size: 1.2rem;
		color: #000000;
	}

		.form-group-material .form-control:not(textarea) {
			height: calc(1.5em + 1rem + 1px);
		}

		.form-group-material .form-control:focus {
			outline: none;
			box-shadow: none;
			border-bottom-color: #000000;
		}

label.error {
	margin-top: .5rem;
	margin-bottom: 0;
	color: #c9180b;
}

.form-control.error,
.form-control.error:focus {
	border-color: #c9180b;
	color: #c9180b;
}

@media (min-width: 768px) {
	html {
		font-size: 13px;
	}
}

@media (min-width: 992px) {
	html {
		font-size: 14px;
	}
}

@media (min-width: 1280px) {
	html {
		font-size: 15px;
	}
}

@media (min-width: 1600px) {
	html {
		font-size: 16px;
	}
}

.pagination {
	font-size: 1.6rem;
	font-family: 'MonumentExtended', sans-serif;
}

	.pagination a {
		color: #0c3279;
	}

	.pagination .active a {
		background: #0c3279 !important;
		border-color: #0c3279 !important;
	}

#content {
	margin-top: 85px !important;
}

.show-more-size {
	font-size: 1.5rem;
	text-transform: lowercase;
}

.section-num {
	display: none;
}
