body {
	font-family: 'Raleway', sans-serif;
	font-weight: 400;
	font-size: 1rem;
	color: #272829;
}

a {
	color: #47b2e4;
	text-decoration: none;
}

a:hover {
	color: #01508f;
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Raleway', sans-serif;
	font-style: normal;
}

.fixed-size-image {
    width: 330px;
    height: 230px;
    object-fit: cover;
}

.map-container {
	border: 1px solid #1a73e8;
	width: 100%;
	height: 400px;
}

.fixed-size-image-item {
    width: 256px;
    height: 480px;
    object-fit: cover;
}

.fixed-size-image-comparison {
    width: 280px;
    object-fit: cover;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
	display: none;
}

@media (max-width: 768px) {
	.logo img {
		width: 80px;
		display: block;
	}
}

.panel-button {
	color: #fff;
	border: 2px solid #fff;
	padding: 10px;
	margin-right: 15px;
}

.panel-button:hover {
	background: #fff;
	color: #01508f;
}

/*--------------------------------------------------------------
  # Preloader
  --------------------------------------------------------------*/
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	background: #37517e;
	background-image: url('../images/preloader.webp');
	background-size: 40px;
	background-repeat: no-repeat;
	background-position: center;
}

#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 50px);
	left: calc(50% - 50px);
	border: 6px solid #37517e;
	border-top-color: #fff;
	border-bottom-color: #fff;
	border-radius: 50%;
	width: 100px;
	height: 100px;
	-webkit-animation: animate-preloader 1s linear infinite;
	animation: animate-preloader 1s linear infinite;
}

#preloader .text {
	position: absolute;
	top: 50%;
	margin-top: 70px;
	margin-left: 3px;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	font-size: 18px;
}

body.preloader-active {
    overflow: hidden;
}

@-webkit-keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
  # Partners
  --------------------------------------------------------------*/
.partners .row {
	padding-top: 40px;
}

.partners .list {
	margin-bottom: 20px;
	padding: 10px;
}

.partners .list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.partners .list li {
	margin: 5px;
}

.partners .list a {
	display: inline-block;
	padding: 10px 20px;
	text-decoration: none;
	color: #fff;
	background-color: #37517e;
	border-radius: 5px;
	font-size: 16px;
	text-align: center;
}

.partners .list a:hover {
	background-color: #2f486b;
	color: #fff;
}

.partners img {
	width: 150px;
	height: auto;
	object-fit: cover;
	margin-bottom: 20px;
	margin-top: 10px;
}

.partners .box {
	padding: 20px 20px;
	box-shadow: 0 3px 20px -2px rgba(166, 163, 163, 0.1);
	background: #fff;
	height: 100%;
	border-top: 4px solid #fff;
	border-bottom: 4px solid #fff;
	border-right: 4px solid #fff;
	border-left: 4px solid #fff;
	border-radius: 5px;
}

.partners h3 {
	font-weight: 400;
	margin-bottom: 15px;
	font-size: 20px;
	color: #37517e;
}

.partners h2,
.partners h2 a,
.partners h3 {
    color: #37517e;
}

.partners h2 {
	font-size: 22px;
	color: #37517e;
	font-weight: 400;
}

.partners h2 a {
	color: #37517e;
}

.partners h2 sup {
	font-size: 28px;
}

.partners h2 span {
	color: #47b2e4;
	font-size: 18px;
	display: block;
}

.partners ul {
	padding: 10px 0;
	list-style: none;
	color: #000;
	text-align: left;
	line-height: 20px;
}

.partners ul li {
	padding: 5px 30px;
	position: relative;
	display: flex;
    align-items: center;
}

.partners ul i {
	color: #37517e;
	font-size: 28px;
	top: 6px;
	vertical-align: middle;
	margin-right: 5px;
}

.partners ul .na {
	color: #000;
}

.partners ul .na i {
	color: #000;
}

.partners ul .na span {
	text-decoration: line-through;
}

.partners .details-btn {
	display: inline-block;
	padding: 12px 35px;
	border-radius: 10px;
	color: #47b2e4;
	transition: none;
	font-size: 14px;
	font-weight: 500;
	transition: 0.3s;
	border: 1px solid #37517e;
}

.partners .details-btn:hover {
	background: #37517e;
	color: #fff;
}

.partners .featured .details-btn {
	background: #37517e;
	color: #fff;
}

.partners .featured .details-btn:hover {
	background: #37517e;
}

@media (max-width: 992px) {
	.partners .box {
		max-width: 60%;
		margin: 0 auto 30px auto;
	}
}

@media (max-width: 767px) {
	.partners .box {
		max-width: 80%;
		margin: 0 auto 30px auto;
	}
}

@media (max-width: 420px) {
	.partners .box {
		max-width: 100%;
		margin: 0 auto 30px auto;
	}
}


/*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	background: #01508f;
	width: 40px;
	height: 40px;
	color: #fff;
	border-radius: 50px;
	border: 2px solid #fff;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.back-to-top i {
	font-size: 24px;
	line-height: 0;
}

.back-to-top:hover {
	background: #fff;
	color: #002f58;
}

.back-to-top.active {
	visibility: visible;
	opacity: 1;
}

.flag {
	width: 1.5em;
	height: 1.5em;
}

#header {
	transition: all 0.5s;
	z-index: 997;
	padding: 10px 3px;
}

#header.header-scrolled,
#header.header-inner-pages {
	background: rgba(1, 81, 144, 1);
	border-bottom: 3px solid #fff;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/**
  * Desktop Navigation 
  */
.navbar {
	padding: 0;
	margin: auto;
}

.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
}

.navbar li {
	position: relative;
	padding: 3px;
}

.navbar a,
.navbar a:focus {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 20px;
	border: 2px solid #fff;
	border-radius: 50px;
	font-size: 15px;
	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 {
	background: #fff;
	color: #005491;
}

.navbar .getstarted,
.navbar .getstarted:focus {
	padding: 8px 20px;
	margin-left: 30px;
	border-radius: 50px;
	color: #fff;
	font-size: 14px;
	border: 2px solid #47b2e4;
	font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
	color: #fff;
	background: #31a9e1;
}

.navbar .dropdown ul {
	display: block;
	position: absolute;
	left: 14px;
	top: calc(100% + 30px);
	margin: 0;
	padding: 10px 0;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: 0.3s;
	border-radius: 4px;
}

.navbar .dropdown ul li {
	min-width: 200px;
}

.navbar .dropdown ul a {
	padding: 10px 20px;
	font-size: 14px;
	text-transform: none;
	font-weight: 500;
	color: #0c3c53;
}

.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: #47b2e4;
}

.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;
}

@media (max-width: 1366px) {
	.navbar .dropdown .dropdown ul {
		left: -90%;
	}

	.navbar .dropdown .dropdown:hover>ul {
		left: -100%;
	}
}

/**
* Mobile Navigation 
*/

.mobile {
	display: none;
}

.mobile-nav-toggle {
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	display: none;
	line-height: 0;
	transition: 0.5s;
}

.mobile-nav-close {
	display: none;
	position: absolute;
	top: 0;
    right: 0;
	margin-top: 20px;
	margin-right: 15px;
}

.mobile-nav-close i {
	font-size: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	border-radius: 50%;
}

.navbar-mobile-span {
	display: none;
}

.navbar-mobile-logo {
	display: none;
}

.navbar-mobile-logo img {
	width: 150px;
	margin-top: 30px;
	margin-bottom: 30px;
}

@media (max-width: 991px) {
	.mobile-nav-toggle {
		display: block;
	}

	.mobile-nav-close {
		display: block;
	}

	.pc {
		display: none;
	}

	.mobile {
		display: block;
	}

	.navbar-mobile-span {
		display: block;
	}

	.navbar-mobile-logo {
		display: block;
	}

	.navbar ul {
		display: none;
	}
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    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: 0;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 10px 0 0;
	background: #015190;
	overflow-y: auto;
	transition: 0.3s;
	color: #015190;
	text-align: center;
}

.navbar-mobile li {
	display: block;
}

.navbar-mobile a,
.navbar-mobile a:focus {
	width: 80%;
	margin: auto;
	padding: 10px 20px;
	font-size: 15px;
	font-weight: 500;
	background: #015190;
	color: #fff;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
	color: #015190;
}

.sc .sc-wrap .sc-info {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
	z-index: 3;
	transition: all ease-in-out 0.3s;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.sc .sc-wrap .sc-info::before {
	display: block;
	content: "";
	width: 48px;
	height: 48px;
	position: absolute;
	top: 35px;
	left: 35px;
	border-top: 3px solid #d7dce1;
	border-left: 3px solid #d7dce1;
	transition: all 0.5s ease 0s;
	z-index: 9994;
}

.sc .sc-wrap .sc-info::after {
	display: block;
	content: "";
	width: 48px;
	height: 48px;
	position: absolute;
	bottom: 35px;
	right: 35px;
	border-bottom: 3px solid #d7dce1;
	border-right: 3px solid #d7dce1;
	transition: all 0.5s ease 0s;
	z-index: 9994;
}

.sc .sc-wrap .sc-info h4 {
	font-size: 20px;
	color: #45505b;
	font-weight: 600;
}

.sc .sc-wrap .sc-info p {
	color: #45505b;
	font-size: 14px;
	text-transform: uppercase;
	padding: 0;
	margin: 0;
}

.sc .sc-wrap:hover .sc-info {
	opacity: 1;
}

.sc .sc-wrap:hover .sc-info::before {
	top: 15px;
	left: 15px;
}

.sc .sc-wrap:hover .sc-info::after {
	bottom: 15px;
	right: 15px;
}

.sc-details .sc-info h3 {
	font-size: 20px;
	color: #015190;
	font-weight: 700;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
}

.sc-details .sc-info ul {
	list-style: none;
	padding: 0;
	color: #272829;
	font-size: 14px;
}

.sc-details .sc-info ul li+li {
	margin-top: 5px;
}

.sc-details .sc-details-slider img {
	width: 100%;
	height: 100%;
}

.sc-details-slider [class^="swiper-button-"] {
	background-color: #015190;
	color: #fff;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	opacity: 0.8;
}

.sc-details-slider [class^="swiper-button-"]:hover {
	border: 3px solid #fff;
}

.sc-details-slider [class^="swiper-button-"]::after{
    font-size: 25px;
}

.sc-details .sc-details-slider .swiper-pagination {
	margin-top: 20px;
	position: relative;
}

.sc-details .sc-details-slider .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: #fff;
	opacity: 1;
	border: 1px solid #0563bb;
}

.sc-details .sc-details-slider .swiper-pagination .swiper-pagination-bullet-active {
	background-color: #0563bb;
}

.sc-details .sc-info {
	padding: 30px;
	background-color: #fff;
	color: #000;
}

.sc-details .sc-info h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
}

.sc-details .sc-info ul {
	list-style: none;
	padding: 0;
	font-size: 14px;
}

.sc-details .sc-info ul li+li {
	margin-top: 5px;
}

.sc-details .sc-description {
	padding: 30px;
	background-color: #fff;
	padding-top: 30px;
	color: #000;
}

.sc-details .sc-description h2 {
	font-size: 20px;
	font-weight: 700;
	color: #37517e;
	margin-bottom: 20px;
}

.sc-details .sc-description p {
	padding: 0;
	font-size: 16px;
}

.sc-details .sc-description ul {
	list-style: none;
    padding: 0;
    font-size: 16px;
}

.sc-details .sc-description .sс-container {
	margin-bottom: 20px;
}

.sc-details .sc-description ul li {
    margin-top: 5px;
    position: relative;
    padding-left: 25px;
}

.sc-details .sc-description ul li::before {
	content: "\f138";
	font-family: "bootstrap-icons";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 16px;
}



/*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
#hero {
	background: url('../images/home_background.webp') no-repeat;
	background-size: cover;
	background-position: center center;
	position: relative;
	height: 100vh;
}

#hero .container {
	padding-top: 72px;
}

#hero h1 {
	margin: 0 0 10px 0;
	font-size: 48px;
	font-weight: 700;
	line-height: 56px;
	color: #fff;
}

#hero h2 {
	color: #fff;
	margin-bottom: 50px;
	font-size: 24px;
}

#hero .btn-get-started {
	letter-spacing: 1px;
	display: inline-block;
	padding: 12px 32px;
	border-radius: 4px;
	transition: 0.5s;
	margin: 10px 0 0 0;
	color: #2f2f2f;
	background: #fff;
}

#hero .btn-get-started:hover {
	background: #e9e9e9;
}

#hero .btn-watch-video {
	font-size: 16px;
	display: flex;
	align-items: center;
	transition: 0.5s;
	margin: 10px 0 0 25px;
	color: #fff;
	line-height: 1;
}

#hero .btn-watch-video i {
	line-height: 0;
	color: #fff;
	font-size: 32px;
	transition: 0.3s;
	margin-right: 8px;
}

#hero .btn-watch-video:hover i {
	color: #47b2e4;
}

#hero .animated {
	animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

#hero .hero-img img {
	user-drag: none;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-drag: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	text-align: center;
}

#hero .logo {
	padding: 5px;
	display: none;
	text-align: center;
}

@media (max-width: 991px) {
	#hero {
		height: 100vh;
		text-align: center;
	}

	#hero .animated {
		-webkit-animation: none;
		animation: none;
	}

	#hero .hero-img {
		text-align: center;
	}

	#hero .hero-img img {
		width: 100%;
	}

	#hero .map {
		display: inline;
	}

	#hero .logo {
		display: none;
	}
}

@media (max-width: 768px) {
	#hero h1 {
		font-size: 28px;
		line-height: 36px;
	}

	#hero h2 {
		font-size: 18px;
		line-height: 24px;
		margin-bottom: 30px;
	}

	#hero .hero-img img {
		width: 80%;
	}

	#hero .map {
		display: none;
	}

	#hero .logo {
		display: inline;
	}
}

@media (max-width: 575px) {
	#hero .hero-img img {
		width: 80%;
	}

	#hero .btn-get-started {
		font-size: 16px;
		padding: 10px 24px 11px 24px;
	}

	#hero .map {
		display: none;
	}

	#hero .logo {
		display: inline;
	}
}

@-webkit-keyframes up-down {
	0% {
		transform: translateY(10px);
	}

	100% {
		transform: translateY(-10px);
	}
}

@keyframes up-down {
	0% {
		transform: translateY(10px);
	}

	100% {
		transform: translateY(-10px);
	}
}

/*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/
section {
	padding: 50px 0;
	overflow: hidden;
}

.section-bg {
	background-color: #f3f5fa;
}

.section-title {
	padding-top: 30px;
	padding-bottom: 30px;
	text-align: center;
}

.section-title h1 {
	text-align: center;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
    padding-bottom: 5px;
    position: relative;
    color: #014f8e;
}

.section-title p {
	margin-bottom: 5px;
    font-size: 17px;
}

.section-title a {
    color: #014f8e;
}

.section-title .breadcrumb {
    justify-content: center;
    font-size: 17px;
    margin-bottom: 0;
    position: relative;
}

.section-title .breadcrumb-item {
	color: #272829;
    flex: initial;
}

.section-title .breadcrumb-item a {
    color: #014f8e;
    flex: initial;
}

.section-title .breadcrumb-item a:hover,
.section-title .breadcrumb-item.active {
    color: #272829;
    flex: initial;
}

/*--------------------------------------------------------------
  # Clients
  --------------------------------------------------------------*/
.clients {
	padding: 12px 0;
	text-align: center;
}

.clients img {
	max-width: 45%;
	transition: all 0.4s ease-in-out;
	display: inline-block;
	padding: 15px 0;
	filter: grayscale(100);
}

.clients img:hover {
	filter: none;
	transform: scale(1.1);
}

@media (max-width: 768px) {
	.clients img {
		max-width: 40%;
	}
}

/*--------------------------------------------------------------
  # About Us
  --------------------------------------------------------------*/
.about .content h3 {
	font-weight: 600;
	font-size: 26px;
}

.about .content img {
	max-width: 550px;
}

.about .content ul {
	list-style: none;
	padding: 0;
}

.about .content ul li {
	padding-left: 28px;
	position: relative;
}

.about .content ul li+li {
	margin-top: 10px;
}

.about .content ul i {
	position: absolute;
	left: 0;
	top: 2px;
	font-size: 20px;
	color: #47b2e4;
	line-height: 1;
}

.about .content p:last-child {
	margin-bottom: 0;
}

.about .btn-learn-more {
	letter-spacing: 1px;
	display: inline-block;
	padding: 12px 32px;
	border-radius: 4px;
	transition: 0.3s;
	line-height: 1;
	color: #fff;
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
	margin-top: 6px;
	background: #00518e;
}

.about .btn-learn-more:hover {
	background: #004273;
	text-decoration: none;
}

/*--------------------------------------------------------------
  # About list
  --------------------------------------------------------------*/

.about .list {
	position: relative;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	background: #fff;
	border-radius: 5px;
}

.about #list {
	list-style: none;
	padding: 15px;
	border: 2px solid #00518e;
	border-radius: 5px;
}

.about #list li a {
	display: inline-block;
	padding: 8px 8px;
	font-size: 16px;
	font-weight: 400;
	color: #000;
	line-height: 1;
}

.about #list li a:hover {
	color: #00518e;
}

/*--------------------------------------------------------------
  # Services
  --------------------------------------------------------------*/
.services .icon-box {
	padding: 50px 30px;
	transition: all ease-in-out 0.4s;
	background: #f3f5fa;
}

.services .icon-box .icon {
	margin-bottom: 10px;
}

.services .icon-box .icon i {
	color: #47b2e4;
	font-size: 36px;
	transition: 0.3s;
}

.services .icon-box h4 {
	font-weight: 500;
	margin-bottom: 15px;
	font-size: 24px;
}

.services .icon-box h4 a {
	color: #37517e;
	transition: ease-in-out 0.3s;
}

.services .icon-box p {
	line-height: 24px;
	font-size: 14px;
	margin-bottom: 0;
}

.services .icon-box:hover {
	transform: translateY(-10px);
}

.services .icon-box:hover h4 a {
	color: #47b2e4;
}

.card {
	position: relative;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2);
	border: 0;
	padding: 30px;
	border-radius: 10px;
	background: #fff;
	height: 100%;
}

.card h4 {
	font-weight: 500;
	margin-bottom: 5px;
	font-size: 20px;
	color: #37517e;
}

.card img {
    filter: drop-shadow(0 0 20px rgba(198, 198, 201, 0.8));
    transition: transform 0.3s;
	border-bottom: 10px solid #ebe727;
	border-top: 10px solid #1e3e75;
	border-radius: 20px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card img:hover {
    transform: scale(1.02);
}

.card-header {
	text-align: center;
	background: none;
	color: #fff;
	border: 0;
}

.btn-primary,
.btn-primary:hover,
.btn-primary:active,
.btn-primary:visited,
.btn-primary:focus {
	background-color: #014f8e;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.3);
	border-color: #014f8e;
	border-radius: 5px;
	color: #fff;
	font-size: 22px;
}

/*--------------------------------------------------------------
  # Catalog
  --------------------------------------------------------------*/
.catalog .icon i {
	color: #015190;
	font-size: 50px;
	margin-bottom: 20px;
	transition: 0.3s;
}

.catalog .none {
	padding: 50px;
	background: #fff;
	box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.catalog .bottom {
	margin-bottom: 120px;
}

.catalog a.button {
	background: #01508f;
	border: 0;
	padding: 12px 34px;
	color: #fff;
	transition: 0.4s;
	border-radius: 50px;
}

.catalog a.button:hover {
	background: #002f58;
}

.catalog a.details {
	background: #01508f;
	margin: 5px;
	padding: 10px 14px;
	color: #fff;
	border-radius: 10px;
}

.catalog .title h2 {
	font-size: 24px;
	font-weight: bold;
	text-transform: uppercase;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 30px;
	position: relative;
	color: #014f8e;
}

.catalog .item {
	position: relative;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	padding: 30px;
	border-radius: 10px;
	background: #fff;
	height: 100%;
}

.catalog .mockup {
	position: relative;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	background: linear-gradient(to top, #f5e767 20%, #93bddd 50%, #4b90c5 80%);
	padding: 25px;
	text-align: center;
	border-radius: 10px;
	display: table;
	height: 100%;
}

.catalog .mockup img {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
}

.catalog .cooking {
	background: url('../images/bg_cooking.webp') no-repeat;
	background-position: center;
	background-size: cover;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.4);
	color: #fff;
	border-radius: 10px;
	text-align: center;
	height: 100%;
}

.catalog .cooking p {
	position: relative;
	padding: 20px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 17px;
	background: rgba(0, 47, 88, 0.7);
}

.catalog .item .description {
	position: relative;
	padding: 20px;
	text-align: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 14px;
}

.catalog .item .links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.catalog .item .links ul i {
	padding-right: 2px;
	color: #01508f;
	font-size: 18px;
	font-weight: bold;
	line-height: 1;
}

.catalog .item .links ul li {
	padding: 5px 0;
	display: flex;
	align-items: center;
}

.catalog .item .links ul li:first-child {
	padding-top: 0;
}

.catalog .item img {
	overflow: hidden;
}

.catalog .item .picture {
	overflow: hidden;
	max-width: 120px;
}

.catalog .item .item-info {
	padding-left: 30px;
}

.catalog .item .item-info a {
	color: #000;
}

.catalog .item .item-info a.details {
	color: #fff;
}

.catalog .item h2 {
	font-weight: 700;
	margin-bottom: 5px;
	font-size: 15px;
	color: #37517e;
}

.catalog .item p {
	margin: 10px 0 0 0;
	font-size: 14px;
}

.catalog h2 {
    color: #015190;
    padding-bottom: 10px;
    font-size: 28px;
    font-weight: 600;
}

.catalog h2 a {
	color: #015190;
}

.catalog h2 a:hover {
	color: #000;
}

.catalog .list {
	position: relative;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	background: #fff;
}

.catalog #list {
	list-style: none;
	padding: 30px;
}

.catalog #list li a {
	cursor: pointer;
	display: inline-block;
	margin: 5px;
	padding: 14px 14px;
	font-size: 15px;
	font-weight: 500;
	line-height: 1;
	background: #01508f;
	color: #fff;
	transition: all 0.3s;
	border-radius: 10px;
}

.catalog #list li a:hover {
	background: #004273;
	color: #fff;
}

/*--------------------------------------------------------------
  # Contacts
  --------------------------------------------------------------*/

.contacts .info {
	border-top: 3px solid #015190;
	border-bottom: 3px solid #015190;
	padding: 30px;
	background: #fff;
	width: 100%;
	box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contacts .info i {
	font-size: 20px;
	color: #015190;
	float: left;
	width: 44px;
	height: 44px;
	background: #f3f5fa;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	transition: all 0.3s ease-in-out;
}

.contacts .info h2 {
	padding: 0 0 0 60px;
	font-size: 18px;
	font-weight: 500;
	color: #000;
}

.contacts .info p {
	padding: 0 0 10px 60px;
	margin-bottom: 10px;
	font-size: 15px;
	color: #000;
}

.contacts .info .email p {
	padding-top: 5px;
}

.contacts .info .email:hover i,
.contacts .info .address:hover i,
.contacts .info .phone:hover i {
	background: #015190;
	color: #fff;
}

.contacts .form {
	width: 100%;
	border-top: 3px solid #015190;
	border-bottom: 3px solid #015190;
	padding: 30px;
	background: #fff;
	box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contacts .form .form-group {
	padding-bottom: 8px;
}

.contacts .form .validate {
	display: none;
	color: red;
	margin: 0 0 15px 0;
	font-weight: 400;
	font-size: 13px;
}

.contacts .form .error-message {
	display: none;
	color: #fff;
	background: #ed3c0d;
	text-align: left;
	padding: 15px;
	font-weight: 600;
}

.contacts .form .error-message br+br {
	margin-top: 25px;
}

.contacts .form .sent-message {
	display: none;
	color: #fff;
	background: #18d26e;
	text-align: center;
	padding: 15px;
	font-weight: 600;
}

.contacts .form .loading {
	display: none;
	background: #fff;
	text-align: center;
	padding: 15px;
}

.contacts .form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid #18d26e;
	border-top-color: #eee;
	-webkit-animation: animate-loading 1s linear infinite;
	animation: animate-loading 1s linear infinite;
}

.contacts .form .form-group {
	margin-bottom: 20px;
}

.contacts .form label {
	padding-bottom: 8px;
	color: #000;
}

.contacts .form input,
.contacts .form textarea {
	border-radius: 0;
	box-shadow: none;
	font-size: 14px;
	border-radius: 4px;
}

.contacts .form input:focus,
.contacts .form textarea:focus {
	border-color: #47b2e4;
}

.contacts .form input {
	height: 44px;
}

.contacts .form textarea {
	padding: 10px 12px;
}

.contacts .form button[type=submit] {
	background: #015190;
	border: 0;
	padding: 12px 34px;
	color: #fff;
	transition: 0.4s;
	border-radius: 50px;
}

.contacts .form button[type=submit]:hover {
	background: #0c6db9;
}

@-webkit-keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
  # Breadcrumbs
  --------------------------------------------------------------*/
.breadcrumb {
	min-height: 40px;
}

.breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0 0 10px 0;
	margin: 0;
	font-size: 14px;
	font-weight: bold;
}

.breadcrumb ol li+li {
	padding-left: 10px;
}

.breadcrumb ol li+li::before {
	display: inline-block;
	padding-right: 10px;
	color: #000;
	content: "/";
}

/*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
#footer {
	font-size: 14px;
	background: #37517e;
}

#footer .footer-newsletter {
	padding: 50px 0;
	background: #f3f5fa;
	text-align: center;
	font-size: 15px;
	color: #444444;
}

#footer .footer-newsletter h4 {
	font-size: 24px;
	margin: 0 0 20px 0;
	padding: 0;
	line-height: 1;
	font-weight: 600;
	color: #37517e;
}

#footer .footer-newsletter form {
	margin-top: 30px;
	background: #fff;
	padding: 6px 10px;
	position: relative;
	border-radius: 50px;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
	text-align: left;
}

#footer .footer-newsletter form input[type=email] {
	border: 0;
	padding: 4px 8px;
	width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	border: 0;
	background: none;
	font-size: 16px;
	padding: 0 20px;
	background: #47b2e4;
	color: #fff;
	transition: 0.3s;
	border-radius: 50px;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
	background: #209dd8;
}

#footer .footer-top {
	padding: 60px 0 30px 0;
	background: #015190;
	color: #fff;
	border-top: 3px solid #fff;
	box-shadow: 0 -3px 6px rgba(0, 0, 0, 0.3);
	filter: brightness(105%);
}

#footer .footer-top .footer-contacts {
	margin-bottom: 30px;
}

#footer .footer-top .footer-contacts h3 {
	font-size: 24px;
	margin: 0 0 10px 0;
	padding: 2px 0 2px 0;
	line-height: 1;
	text-transform: uppercase;
	font-weight: 500;
	color: #fff;
}

#footer .footer-top .footer-contacts p {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 0;
	color: #5e5e5e;
}

#footer .footer-top h3 {
	font-size: 16px;
	font-weight: bold;
	color: #dcd4d4;
	position: relative;
	padding-bottom: 12px;
}

#footer .footer-top h2 {
	font-size: 16px;
	font-weight: bold;
	color: #dcd4d4;
	position: relative;
	padding-bottom: 12px;
}

#footer .footer-top .footer-links {
	margin-bottom: 30px;
}

#footer .footer-top .footer-links i {
	padding-right: 2px;
	color: #47b2e4;
	font-size: 18px;
	line-height: 1;
}

#footer .footer-top .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#footer .footer-top .footer-links ul i {
	padding-right: 2px;
	color: #fff;
	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 {
	text-decoration: none;
	color: #c9c6c6;
}

#footer .footer-top .social-links a {
	font-size: 18px;
	display: inline-block;
	background: #47b2e4;
	color: #26aceb;
	line-height: 1;
	padding: 8px 0;
	margin-right: 4px;
	border-radius: 50%;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
	background: #209dd8;
	color: #fff;
	text-decoration: none;
}

#footer .footer-bottom {
	padding-top: 30px;
	padding-bottom: 30px;
	color: #fff;
}

#footer .copyright {
	float: left;
}

#footer .credits {
	float: right;
	font-size: 13px;
}

#footer .credits a {
	transition: 0.3s;
}

@media (max-width: 768px) {
	#footer .footer-bottom {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	#footer .copyright,
	#footer .credits {
		text-align: center;
		float: none;
	}

	#footer .credits {
		padding-top: 4px;
	}
}

.swiper {
	width: 100%;
	height: 100%;
}

.swiper-button-hidden {
	display: none;
}


.swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@font-face {
	font-family: 'Raleway';
	src: url('../fonts/Raleway-Black.eot');
	src: local('Raleway Black'), local('Raleway-Black'),
		url('../fonts/Raleway-Black.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Raleway-Black.woff') format('woff'),
		url('../fonts/Raleway-Black.ttf') format('truetype');
	font-weight: 900;
	font-style: normal;
}

@font-face {
	font-family: 'Raleway';
	src: url('../fonts/Raleway-ExtraLight.eot');
	src: local('Raleway ExtraLight'), local('Raleway-ExtraLight'),
		url('../fonts/Raleway-ExtraLight.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Raleway-ExtraLight.woff') format('woff'),
		url('../fonts/Raleway-ExtraLight.ttf') format('truetype');
	font-weight: 200;
	font-style: normal;
}

@font-face {
	font-family: 'Raleway';
	src: url('../fonts/Raleway-Medium.eot');
	src: local('Raleway Medium'), local('Raleway-Medium'),
		url('../fonts/Raleway-Medium.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Raleway-Medium.woff') format('woff'),
		url('../fonts/Raleway-Medium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'Raleway';
	src: url('../fonts/Raleway-LightItalic.eot');
	src: local('Raleway Light Italic'), local('Raleway-LightItalic'),
		url('../fonts/Raleway-LightItalic.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Raleway-LightItalic.woff') format('woff'),
		url('../fonts/Raleway-LightItalic.ttf') format('truetype');
	font-weight: 300;
	font-style: italic;
}

@font-face {
	font-family: 'Raleway';
	src: url('../fonts/Raleway-Regular.eot');
	src: local('Raleway'), local('Raleway-Regular'),
		url('../fonts/Raleway-Regular.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Raleway-Regular.woff') format('woff'),
		url('../fonts/Raleway-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Raleway';
	src: url('../fonts/Raleway-Light.eot');
	src: local('Raleway Light'), local('Raleway-Light'),
		url('../fonts/Raleway-Light.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Raleway-Light.woff') format('woff'),
		url('../fonts/Raleway-Light.ttf') format('truetype');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'Raleway';
	src: url('../fonts/Raleway-Thin.eot');
	src: local('Raleway Thin'), local('Raleway-Thin'),
		url('../fonts/Raleway-Thin.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Raleway-Thin.woff') format('woff'),
		url('../fonts/Raleway-Thin.ttf') format('truetype');
	font-weight: 100;
	font-style: normal;
}

@font-face {
	font-family: 'Raleway';
	src: url('../fonts/Raleway-ExtraBoldItalic.eot');
	src: local('Raleway ExtraBold Italic'), local('Raleway-ExtraBoldItalic'),
		url('../fonts/Raleway-ExtraBoldItalic.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Raleway-ExtraBoldItalic.woff') format('woff'),
		url('../fonts/Raleway-ExtraBoldItalic.ttf') format('truetype');
	font-weight: 800;
	font-style: italic;
}

@font-face {
	font-family: 'Raleway';
	src: url('../fonts/Raleway-ExtraLightItalic.eot');
	src: local('Raleway ExtraLight Italic'), local('Raleway-ExtraLightItalic'),
		url('../fonts/Raleway-ExtraLightItalic.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Raleway-ExtraLightItalic.woff') format('woff'),
		url('../fonts/Raleway-ExtraLightItalic.ttf') format('truetype');
	font-weight: 200;
	font-style: italic;
}

@font-face {
	font-family: 'Raleway';
	src: url('../fonts/Raleway-MediumItalic.eot');
	src: local('Raleway Medium Italic'), local('Raleway-MediumItalic'),
		url('../fonts/Raleway-MediumItalic.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Raleway-MediumItalic.woff') format('woff'),
		url('../fonts/Raleway-MediumItalic.ttf') format('truetype');
	font-weight: 500;
	font-style: italic;
}

@font-face {
	font-family: 'Raleway';
	src: url('../fonts/Raleway-BoldItalic.eot');
	src: local('Raleway Bold Italic'), local('Raleway-BoldItalic'),
		url('../fonts/Raleway-BoldItalic.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Raleway-BoldItalic.woff') format('woff'),
		url('../fonts/Raleway-BoldItalic.ttf') format('truetype');
	font-weight: bold;
	font-style: italic;
}

@font-face {
	font-family: 'Raleway';
	src: url('../fonts/Raleway-ThinItalic.eot');
	src: local('Raleway Thin Italic'), local('Raleway-ThinItalic'),
		url('../fonts/Raleway-ThinItalic.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Raleway-ThinItalic.woff') format('woff'),
		url('../fonts/Raleway-ThinItalic.ttf') format('truetype');
	font-weight: 100;
	font-style: italic;
}

@font-face {
	font-family: 'Raleway';
	src: url('../fonts/Raleway-SemiBoldItalic.eot');
	src: local('Raleway SemiBold Italic'), local('Raleway-SemiBoldItalic'),
		url('../fonts/Raleway-SemiBoldItalic.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Raleway-SemiBoldItalic.woff') format('woff'),
		url('../fonts/Raleway-SemiBoldItalic.ttf') format('truetype');
	font-weight: 600;
	font-style: italic;
}

@font-face {
	font-family: 'Raleway';
	src: url('../fonts/Raleway-SemiBold.eot');
	src: local('Raleway SemiBold'), local('Raleway-SemiBold'),
		url('../fonts/Raleway-SemiBold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Raleway-SemiBold.woff') format('woff'),
		url('../fonts/Raleway-SemiBold.ttf') format('truetype');
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: 'Raleway';
	src: url('../fonts/Raleway-Italic.eot');
	src: local('Raleway Italic'), local('Raleway-Italic'),
		url('../fonts/Raleway-Italic.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Raleway-Italic.woff') format('woff'),
		url('../fonts/Raleway-Italic.ttf') format('truetype');
	font-weight: normal;
	font-style: italic;
}

@font-face {
	font-family: 'Raleway';
	src: url('../fonts/Raleway-Bold.eot');
	src: local('Raleway Bold'), local('Raleway-Bold'),
		url('../fonts/Raleway-Bold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Raleway-Bold.woff') format('woff'),
		url('../fonts/Raleway-Bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: 'Raleway';
	src: url('../fonts/Raleway-ExtraBold.eot');
	src: local('Raleway ExtraBold'), local('Raleway-ExtraBold'),
		url('../fonts/Raleway-ExtraBold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Raleway-ExtraBold.woff') format('woff'),
		url('../fonts/Raleway-ExtraBold.ttf') format('truetype');
	font-weight: 800;
	font-style: normal;
}

@font-face {
	font-family: 'Raleway';
	src: url('../fonts/Raleway-BlackItalic.eot');
	src: local('Raleway Black Italic'), local('Raleway-BlackItalic'),
		url('../fonts/Raleway-BlackItalic.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Raleway-BlackItalic.woff') format('woff'),
		url('../fonts/Raleway-BlackItalic.ttf') format('truetype');
	font-weight: 900;
	font-style: italic;
}