/************************* wrapper *************************/
#wrapper {
	position: relative;
	overflow: hidden;
	padding: 50px 0 0;
	/*padding: 106px 0 0;*/
}
/************************* header *************************/
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
	height: 106px;
	padding: 23px 45px 0;
	box-sizing: border-box;
	background: #fff;
}
.header.fixed {
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.header .holder {
	/*max-width: none;*/
	padding: 0;
}
.header-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-phone {
	margin: 0;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	color: #09275c;
	text-decoration: none;
	-webkit-transition: color 0.15s linear 0s;
    -moz-transition: color 0.15s linear 0s;
    -o-transition: color 0.15s linear 0s;
    transition: color 0.15s linear 0s;
}
/*.header-phone:hover:after {
    position: absolute;
    bottom: -14px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000;
    content: '';
    opacity: 1;
    -webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
    transition: height 0.3s, opacity 0.3s, transform 0.3s;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
}*/
.header-button {
	padding: 6px 19px 7px;
	font-weight: bold;
	font-size: 18px;
	line-height: 22px;
	color: #FFFFFF;
	text-decoration: none;
	background: #FC675A;
	border-radius: 20px;
}
/************************* header-nav *************************/
.header-nav {
	margin: 0 auto;
}
.header-nav-list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
}
.header-nav-list > li {
	margin: 0 54px 0 0;
	font-weight: 500;
	font-size: 20px;
	line-height: 24px;
}
.header-nav-list > li:last-child {margin: 0;}
.header-nav-list > li > a {
	color: #003366;
	text-decoration: none;
}
.header-nav-list > li > a:hover,
.header-nav-list > li > .active {
	color: #D57056;
}
.nav-parent svg {
	display: inline-block;
	vertical-align: top;
	margin: 5px 5px 0 0;
}
.nav-parent path {
	fill: #003366;
	transition: all 0.3s linear;
}
.nav-parent:hover path {fill: #D57056;}
.subnav {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	z-index: 50;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	background: #fff;
	box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.25);
	visibility: hidden;
	opacity: 0;
	transform: translateY(5px);
	transition: all 0.3s linear;
}
.header-nav-list li:hover .subnav {
	transform: translateY(0px);
	opacity: 1;
	visibility: visible;
}
.subnav:before {
	position: absolute;
	left: 0;
	right: 0;
	top: -40px;
	content: '';
	height: 40px;
}
.subnav-side {
	width: 550px;
	max-width: 50%;
	padding: 43px 0 30px 85px;
	background: #EDF5F6;
}
.subnav-side li {
	margin: 0 0 26px;
	font-weight: 400;
	font-size: 20px;
	line-height: 24px;
}
.subnav-side a {
	position: relative;
	display: block;
	padding: 0 50px 0 0;
	color: #003366;
	text-decoration: none;
	cursor: pointer;
}
.subnav-side a:hover,
.subnav-side li:hover > a {color: #FC675A;}
.subnav-side a:after {
	position: absolute;
	top: 3px;
	right: 18px;
	content: '';
	width: 20px;
	height: 20px;
	background: url(../images/nav-arrow.svg) 50% 50% no-repeat;
	opacity: 0;
	transform: translateX(-10px);
	transition: all 0.3s linear;
}
.subnav-side a:hover:after,
.subnav-side li:hover > a:after {
	opacity: 1;
	transform: translateX(0px);
}
.inner-nav {
	position: absolute;
	left: 550px;
	top: 0;
	bottom: 0;
	overflow-y: auto;
	padding: 43px 40px 30px 65px;
	visibility: hidden;
	opacity: 0;
	transform: translateX(10px);
	transition: all 0.3s linear;
}
.subnav-side li:hover .inner-nav {
	transform: translateX(0px);
	opacity: 1;
	visibility: visible;
}
.inner-nav a:after {display: none;}


.mob-nav-icon {
	position: absolute;
	top: 10px;
	left: 16px;
	z-index: 250;
	padding: 0 0 10px;
	display: none;
}
.mob-nav-block {
    position: relative;
	display: block;
    width: 24px;
    height: 2px;
    margin: 8px 0 0;
	background: #261421;
	transition: all .3s linear;
}
.mob-nav-block:after {
    content: "";
    position: absolute;
    top: -8px;
    left: 0;
    width: 24px;
    height: 2px;
    background: #261421;
	transition: all .3s linear;
}
.mob-nav-block:before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 24px;
    height: 2px;
    background: #261421;
	transition: all .3s linear;
}
.mob-nav-icon.active .mob-nav-block {
    background: none;
}
.mob-nav-icon.active .mob-nav-block:before {
    top: 0;
    transform: rotate(45deg);
}
.mob-nav-icon.active .mob-nav-block:after {
    top: 0;
    transform: rotate(-45deg);
}
.header-webs {display: none;}
.header-time {display: none;}
.soc-networks {
	display: flex;
	gap: 5px;
}
/************************* header-fixed *************************/
.header-fixed {
	position: fixed;
	top: -65px;
	left: 0;
	right: 0;
	z-index: 200;
	height: 65px;
	padding: 10px 0 0;
	background: #fff;
	transition: all 0.3s linear;
}
.header-fixed.fixed {
	top: 0px;
	box-shadow: 0px 0px 46px 0px rgba(0, 7, 3, 0.1);
}
.header-fixed-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

.section-title {
    font-size: 42px;
    line-height: 44px;
    position: relative;
    margin: 0 0 50px 0;
    font-family: "Oswald", "Arial", sans-serif;
    font-weight: 400;
    color: #242526;
    text-transform: uppercase;
}
.section-title::after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: -18px;
    width: 155px;
    height: 4px;
    background-color: #09275c;
}

.zo2-wrapper a, a:hover, a:focus, a:active {
	color: #09275c;
	font-weight: 600;
}
.pros-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0;
	padding: 50px 0 0;
	gap: 30px;
}
.way-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	overflow: hidden;
	width: 100%;
	height: 100%;
	background: #F5FAFA;
	border-radius: 20px;
	box-shadow: 0px 3px 11px rgba(0, 0, 0, 0.1);
}
.way-item.reverse {
	flex-direction: row-reverse;
}
.way-item.reverse .way-content {
	display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: end;
}
.way-img {
	width: 30%;
	min-width: 134px;
}
.way-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.way-content {
	width: 70%;
	padding: 27px 15px 15px;
}
.way-title {
	margin: 0 0 20px;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	text-transform: uppercase;
	color: #09275c;
}
.way-text {
	font-size: 16px;
	line-height: 20px;
}

.doc-way-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	overflow: hidden;
	width: 100%;
	height: 100%;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0px 3px 11px rgba(0, 0, 0, 0.1);
}
.doc-way-img {
	width: 30%;
	min-width: 134px;
	padding: 10px;
}
.doc-way-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.doc-way-content {
	width: 70%;
	padding: 27px 15px 15px;
}
.doc-way-title {
	margin: 0 0 20px;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	text-transform: uppercase;
	color: #09275c;
}
.doc-way-text {
	font-size: 16px;
	line-height: 20px;
}

.form-way-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	overflow: hidden;
	width: 100%;
	height: 100%;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0px 3px 11px rgba(0, 0, 0, 0.1);
}
.form-way-content {
	width: 100%;
	padding: 27px 15px 15px;
}
.form-way-title {
	margin: 0 0 20px;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	text-transform: uppercase;
	color: #09275c;
}
.form-way-text {
	font-size: 16px;
	line-height: 20px;
}
.form-way-text label, .form-way-text input:not(.wpcf7-submit), .form-way-text textarea {
	width: 100%;
	margin: 5px 0;
	
}
.form-way-text label {
	text-transform: uppercase;
}
.form-way-text .wpcf7-submit {
	border: 1px solid #09275c;
    color: #09275c;
    font-size: 18px;
	text-transform: uppercase;
    padding: 10px 20px;
    min-width: 180px;
    max-width: 100%;
}
.form-way-text .wpcf7-submit:hover {
	border: 1px solid #09275c;
    background-color: #09275c;
	color: #fff;
    font-size: 18px;
	text-transform: uppercase;
    padding: 10px 20px;
    min-width: 180px;
    max-width: 100%;
}

#tabs {
	margin: 10px 0;
}
.tabs-nav {
	overflow: hidden;
	margin: 0;
	padding: 0;
}
.tabs-nav li {
	display: block;
	float: left;
	padding: 0;
	list-style: none;
}    
.tabs-nav a {
	display: block;
	padding: 10px 20px;
	border-top: 1px solid #ccc;  
	border-bottom: 1px solid #ccc;
	border-left: 1px solid #ccc;
	background: #fbfbfb; 
	font-size: 18px;
	text-decoration: none;
	text-align: center;
	color: #999;
}		
.tabs-nav li:first-child a {
	border-radius: 5px 0 0 0; 
}
.tabs-nav li:last-child a {
	display: block;
	border-right: 1px solid #ccc;
	border-radius: 0 5px 0 0; 
}
.tabs-nav a.active {
	border-bottom: 1px solid #fff;
	background: #fff;
	color: #09275c;
}    
.tabs-items {
	border: 1px solid #ccc;
	border-radius: 0 5px 5px 5px;
	background: #fff;
	margin: -1px 0 0 0;
}
.tabs-item {
	padding: 15px;
}

#tabs table{
	border: 1px solid #eee;
	table-layout: fixed;
	width: 100%;
	margin-bottom: 20px;
}
#tabs table th {
	font-weight: bold;
	padding: 5px;
	background: #efefef;
	border: 1px solid #dddddd;
}
#tabs table td{
	padding: 5px 10px;
	border: 1px solid #eee;
	text-align: left;
}
#tabs table tbody tr:nth-child(odd){
	background: #fff;
}
#tabs table tbody tr:nth-child(even){
	background: #F7F7F7;
}
.tprt-service {
    font-weight: bold;
    font-size: 16px;
}

img.itm-1, img.itm-5 {
	height: 600px;
    object-fit: cover;
}
img.itm-6 {
	height: 350px;
    width: 100%;
    object-fit: cover;
}
.button-holder {
	position: relative;
}
.button-holder .btn {
	border: 1px solid #09275c;
    color: #09275c;
    font-size: 16px;
    text-transform: uppercase;
    padding: 5px 10px;
    min-width: 180px;
    max-width: 100%;
}
.button-holder .btn:hover {
	border: 1px solid #09275c;
    background-color: #09275c;
	color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    padding: 5px 10px;
    min-width: 180px;
    max-width: 100%;
}

iframe .badge {
	max-width: 100%!important;
}

@media screen and (max-width: 1023px) {
	.zo2-sticky.stick {
		position: fixed;
		top: 0;
		background: #fff;
	}
	.header-block {
        position: relative;
    }
	.header-logo {
        margin: 0 auto;
    }
	.mob-nav-icon {
        display: block;
    }
    .header-nav {
        position: fixed;
        top: 110px;
        left: -100%;
        bottom: 0;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        flex-direction: column;
        width: 100%;
        z-index: 540;
        overflow-y: auto;
        box-sizing: border-box;
        background: #fff;
        transition: all 0.5s ease;
    }
	.header-nav.vis {
        left: 0;
    }
	.header-phone {
        position: absolute;
        top: 10px;
        right: 16px;
        width: 24px;
        height: 24px;
        font-size: 0;
        margin: 0;
        background: url(../images/phone-call.svg) 50% 50% no-repeat;
        background-size: contain;
    }
}
@media screen and (max-width: 768px) {
	.soc-networks {
		display: none;
	}
	nav.zo2-menu .navbar-nav {
		float: none;
	}
	body nav.zo2-menu .navbar-nav > li {
        height: 48px;
        line-height: 35px;
        border-bottom: 1px solid #eaeaea;
    }
	body nav.zo2-menu .navbar-nav > li >a {
		margin: 0;
	}
	.header-webs {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
		align-items: center;
        justify-content: center;
        padding: 10px 20px 20px;
        margin: 20px 0 0;
    }
	.header-webs a {
        margin: 0 20px;
    }
	.images img {
		width: 100%;
	}
	.section-title {
		font-size: 34px;
		line-height: 38px;
		margin-bottom: 50px;
	}
	.pros-block {
		padding: 30px 0 0;
		gap: 30px;
	}
	.way-item {
		flex-direction: column;
	}
	.way-item.reverse {
		flex-direction: column;
	}
	.way-img {
		width: 100%;
		order: 1;
	}
	.way-content {
		width: 100%;
		order: 2;
	}
	
	.doc-way-item {
		flex-direction: column;
	}
	.doc-way-img {
		width: 100%;
	}
	.doc-way-content {
		width: 100%;
	}
	
	.tabs-nav li {
		display: block;
		width: 50%;
		float: left;
		padding: 0;
		list-style: none;
	}
	.tabs-nav li:nth-child(2) a {
		border-radius: 0 5px 0 0;
	}
	.tabs-nav a {
		display: block;
		padding: 10px 10px;
		border-top: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		border-left: 1px solid #ccc;
		border-right: 1px solid #ccc;
		background: #fbfbfb;
		font-size: 14px;
		text-decoration: none;
		text-align: center;
		color: #999;
	}
	#tabs table td:nth-child(2) {
		text-align: center;
	}
	
	.images img {
        width: 100%;
        height: 100%;
    }
	
	.button-holder .btn {
		width: 100%;
	}
}