html {
	overflow-x: hidden;
}

button:active,
input:active,
textarea:active,
select:active,
.form-control:active,
button:focus,
input:focus,
textarea:focus,
select:focus,
.form-control:focus {
    outline: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner,
textarea::-moz-focus-inner,
select::-moz-focus-inner {
    border: 0;
}

body {
    font-family: 'Myriad Pro';
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #4d506d;
    overflow-x: hidden;
}

body .container-fluid {
    margin: 0 auto;
}

body .grecaptcha-badge {
    display: none;
}

/* HEADER ************************************************************************************** */

.header {
    width: 100%;
    background: white;
    z-index: 99;
}
/*
.header-logo_cont::before {
	content: '';
	position: absolute;
	width: 183px;
	height: 54px;
	background-image: url('../images/logo_text.png');
	left: 160px;
	bottom: -2px;
	background-size: contain;
	background-repeat: no-repeat;
	z-index: 4;
}
*/
.header .logo_cont {
    height: 106px;
    padding: 10px 0;
    display: block;
    position: relative;
    float: left;
}

.header .logo_cont img {
    position: relative;
    z-index: 2;
    width: auto;
    height: 83px;
    top: 16px;
}

.header .nav_cont {
    display: flex;
    flex-wrap: wrap;
    height: 53px;
    padding: 10px 0;
    margin-bottom: 0px;
    align-items: flex-start;
    justify-content: flex-end;
}

.nav_cont ul {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.nav_cont ul, .nav_cont li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.header .nav_cont a {
    color: #4d506d;
    font-size: 14px;
    font-weight: 700;
    transition: 0.2s;
    padding: 0 8px;
    text-transform: uppercase;
}

.header .nav_cont a:hover {
    color: #dd0000;
    text-decoration: none;
}

	
.header .nav_cont ul.sub-menu {
	width: 191px;
}

.header .nav_cont .menu-item-has-children {
	position: relative;
}

.header .nav_cont .sub-menu {
	flex-direction: column;
    background-color: white;
    padding: 25px 15px 15px 30px;
	list-style-image: url('../images/marker.png');
	display: none;
	position: absolute;
}

.header .nav_cont li:hover .sub-menu {
	display: flex;
}

.header .nav_cont .sub-menu li a {
	text-transform: none;
    font-weight: normal;
    padding: 5px 0;
    display: inline-block;
}

.header .phone_cont {
    height: 53px;
    padding: 7px 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.header .phone_cont .phone_cont_item {
    color: #4d506d;
    font-size: 20px;
    font-weight: 700;
    transition: 0.2s;
	margin-right: 20px;
}

.header .phone_cont .phone_cont_item:hover {
    color: #dd0000;
    text-decoration: none;
}

.header .callback_link {
    color: #EA1311;
    font-size: 12px;
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
    display: inline-block;
}

.header .callback_link:hover {
    color: #dd0000;
    text-decoration: none;
}

.header .btn-style {
    width: 180px;
    height: 80px;
    margin-right: -90px;
    line-height: 80px;
    border-radius: 0px;
}

.hamburger {
    width: 20px;
    height: 16px;
    position: relative;
    text-decoration: none;
    color: #95a5a6;
    margin-top: 33px;
    float: left;
    display: none;
}

.header .hamburger .line {
    display: block;
    width: 20px;
    height: 2px;
    position: relative;
    background: #4f526f;
    left: 0;
    border-radius: 4px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
}

.header.black .hamburger .line {
    background: #ecf0f1;
}

.hamburger .line.line-1 {
    top: 0;
}

.hamburger .line.line-2 {
    top: 50%;
}

.hamburger .line.line-3 {
    width: 20px;
    top: 100%;
}

.hamburger:hover .line.line-1 {
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
}

.hamburger:hover .line.line-3 {
    transform: translateY(2px);
    -webkit-transform: translateY(2px);
    -moz-transform: translateY(2px);
}

.hamburger.active .line.line-1 {
    transform: translateY(10px) translateX(0) rotate(45deg);
    -webkit-transform: translateY(10px) translateX(0) rotate(45deg);
    -moz-transform: translateY(10px) translateX(0) rotate(45deg);
}

.hamburger.active .line.line-2 {
    width: 0px;
    opacity: 0;
    left: 50%;
}

.hamburger.active .line.line-3 {
    width: 20px;
    transform: translateY(-10px) translateX(0) rotate(-45deg);
    -webkit-transform: translateY(-10px) translateX(0) rotate(-45deg);
    -moz-transform: translateY(-10px) translateX(0) rotate(-45deg);
}

/* FPAGE *************************************************************************************** */

.fpage {
    color: #2B2A28;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 181px;
    padding-bottom: 48px;
}

.fpage .fpage_icons {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.fpage .fpage_icons .fpage_icons-item {
    width: 71px;
    height: 71px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    transition: 0.2s;
    opacity: 1;
}

.fpage .fpage_icons .fpage_icons-item:hover {
    opacity: 0.75;
}

.fpage .fpage_title {
    margin-top: 35px;
}

.fpage .fpage_title .fpage_title-text {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
}

.fpage .fpage_title .fpage_title-subtext {
    margin-top: 32px;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 400;
}

.fpage__license {
	margin-top: 35px;
	font-size: 25px;
}

/* ADVANTAGE ******************************************************************************* */

.advantage {
    background-color: #EA1311;
    padding-top: 23px;
}

.advantage_item-wrapper {
    padding: 0;
}

.advantage .advantage_item {
    margin-bottom: 44px;
}

.advantage .advantage_item .advantage_item-title {
    padding-bottom: 2px;
    color: white;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    position: relative;
    text-decoration: underline;
    text-underline-position: under;
}

.advantage .advantage_item .advantage_item-text {
    font-size: 18px;
    line-height: 1.2;
    color: white;
    padding-right: 30px;
    padding-top: 30px;
}

/* OFFICE ***************************************************************************************** */
.office {
	background-position: center;
    background-size: cover;
    padding-top: 40px;
    padding-bottom: 130px;
}

.office__title {
	color: #EA1311;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
}

.office__text {
	font-size: 20px;
	color: #2B2A28;
}

/* TRACKING *************************************************************************************** */
#tracking {
    padding: 92px 0 62px;
	background-image: url('../images/tracking.jpg');
	background-size: cover;
	overflow-x: hidden;
}

.tracking__title {
	display: inline-block;
	color: white;
    font-size: 35px;
    font-weight: 900;
    line-height: 1.2;
    padding-bottom: 10px;
    text-transform: uppercase;
	margin-right: 20px;
	vertical-align: top;
}

.tracking__container {
	display: inline-block;
	background-color: white;
	padding: 5px;
	border-radius: 4px;
	box-shadow: 0px 2px 5px 2px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 2px 5px 2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 2px 5px 2px rgba(0, 0, 0, 0.2);
	position: relative;
	z-index: 8;
}

/* CUSTOMS **************************************************************************************** */

.services .col-12 {
    padding: 0;
}

.services .bg_full {
    content: "";
    height: 100%;
    background-position: center;
    background-size: cover;
}

.services_cont {
    padding: 0;
}

.services_cont-wrapper {
    padding: 50px 50px 20px;
}

.services .services_title {
    color: #212449;
    font-size: 35px;
    font-weight: 900;
    line-height: 1.2;
    padding-bottom: 10px;
    text-transform: uppercase;
}

#customs .services_text {
	text-align: justify;
}

.services_text p {
    margin-top: 25px;
}

.services_cont ol {
    color: #212449;
    font-size: 14px;
    line-height: 1.2;
    margin-top: 24px;
    counter-reset: item;
    padding-left: 0;
}

.services_cont ol li {
    display: block;
    list-style-position: unset;
}

.services_cont ol li:before {
    content: counter(item) ". ";
    counter-increment: item;
    color: #e70502;
    font-weight: 900;
    width: 20px;
    height: 22px;
    display: inline-block;
    margin-right: 20px;
}

.callback_from {
    background-color: #eef2f5;
    padding: 30px;
    text-align: right;
}

.callback-border {
    border: 3px solid #EA1311;
    border-radius: 8px;
    padding: 12px;
    width: 539px;
    display: inline-block;
}

.callback-border img {
    float: left;
    margin-top: -15px;
    margin-left: -15px;
    height: 45px;
}

.callback_from-flex {
    display: flex;
    align-items: center;
}

.callback_from .callback_from-text {
    color: #212449;
    font-size: 16px;
    text-transform: uppercase;
    width: 275px;
    position: relative;
    margin-right: 49px;
    text-align: justify;
}

.callback_from-text::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 21px solid #EA1311;
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
    display: inline-block;
    position: absolute;
    right: -35px;
    top: 5px;
}

.btn-style {
    color: white;
    text-align: center;
    font-size: 16px;
    line-height: 41px;
    font-weight: 500;
    width: 185px;
    height: 41px;
    border: 0;
    border-radius: 4px;
    background: #EA1311;
    text-transform: uppercase;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: 0.2s;
    position: relative;
}

.btn-style:hover {
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
    -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
    -moz-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
}

/* REASON ********************************************************************************************* */
.reason {
    color: white;
    background-color: #EA1311;
    padding: 25px 0 15px;
}

.triangle-right .container {
	position: relative;
}

.triangle-left .container {
	position: relative;
}

.triangle-right .container::before {
	content: '';
	width: 0;
	height: 0;
	position: absolute;
	top: -25px;
	right: 15px;
	border-top: 25px solid white;
	border-left: 30px solid transparent;
	border-right: 30px solid transparent;
}

.triangle-left .container::before {
	content: '';
	width: 0;
	height: 0;
	position: absolute;
	top: -25px;
	left: 15px;
	border-top: 25px solid white;
	border-left: 30px solid transparent;
	border-right: 30px solid transparent;
}

.reason .reason_title p {
    font-weight: 300;
    text-align: center;
    font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.reason .reason_title strong {
    font-weight: 900;
}

.reason ol {
    counter-reset: item;
    list-style-type: none;
    padding-inline-start: 0;
	margin-bottom: 20px;
	display: grid;
	grid-gap: 20px 60px;
	grid-template-columns: auto auto auto;
}

.reason ol li {
    padding-left: 63px;
    position: relative;
    min-height: 55px;

}

.reason ol li::before {
    content: counter(item) " ";
    counter-increment: item;
    background-color: #F7AFB0;
    display: block;
    color: #EA1311;
    font-weight: 900;
    width: 55px;
    height: 55px;
    position: absolute;
    left: 0;
    padding-left: 9px;
    padding-top: 10px;
    font-size: 70px;
    line-height: 45px;
}

/* DELIVERY ***************************************************************************************** */
.services.delivery .services_title {
    text-align: right;
}

.services .services_title .services_text {
    color: #4d506d;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 60px;
    text-align: justify;
    text-transform: none;
}

.services.delivery .services_cont {
    float: right;
}

.services .services_item {
    border: 3px solid transparent;
    padding: 12px;
}

.services .services_item.active {
    border-color: #dd1a19;
}

.services .services_item.active .services_item-title {
    color: #EA1311;
    border-bottom-color: #EA1311;
    text-decoration: none;
}

.services_item__img {
    width: 100%;
    height: 50px;
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
}

.services .services_item.active .services_item__img {
    filter: brightness(0) saturate(100%) invert(26%) sepia(85%) saturate(7000%) hue-rotate(356deg) brightness(94%) contrast(95%);
}

.services .services_item .services_item-title {
    color: #212449;
    font-size: 20px;
    line-height: 1;
    font-weight: 900;
    border-bottom: 0.5px solid #212449;
    background-position: left top;
    background-repeat: no-repeat;
    text-transform: uppercase;
    transition: 0.2s;
    text-align: left;
    display: inline-block;
}

.services .services_item .services_item-text {
    font-size: 16px;
    line-height: 1.2;
    margin-top: 16px;
    text-align: justify;
}

.services .services_item .services_item-cont {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    text-align: left;
}

.services .services_item .services_item-option {
    min-height: 22px;
    font-size: 14px;
    line-height: 1.2;
    padding-top: 2px;
    padding-left: 30px;
    margin-top: 16px;
    margin-right: 15px;
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 22px 22px;
}

/* CUSTODY **************************************************************************************** */
#custody .services_text {
	text-align: justify;
}

#custody .services_text ul {
	padding-left: 17px;
	list-style: none;
}

#custody .services_text ul li::before {
	content: "\2022";
  	color: #EA1311;
  	font-weight: bold;
  	display: inline-block; 
  	width: 1em;
  	margin-left: -1em;
}

/* ABOUT ****************************************************************************************** */

.about {
    color: white;
    padding: 90px 0 70px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.about .about_title {
    font-weight: 700;
    font-size: 50px;
    text-transform: uppercase;
}

.about .about_desc {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 200px;
}

.about .about_item {
    margin-top: 36px;
    margin: 20px 0;
}

.about .about_item .about_item-num {
    color: white;
    font-size: 73px;
    font-weight: 700;
    line-height: 1;
}

.about .about_item .about_item-text {
    font-size: 16px;
	text-transform: uppercase;
}

/* CASE ******************************************************************************************** */
.case {
    background: #E5E9EC;
    padding: 70px 0;
}

.case .case_item {
    width: 100%;
}

.case__title {
	color: #212449;
    font-size: 35px;
    font-weight: 900;
    line-height: 1.2;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.case .case_item .case_item-name {
    color: #EA1311;
    font-size: 35px;
    line-height: 1.2;
    margin-top: 20px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 25px;
}

.case .case_item .case_item-desc .case_item-paragraph .case_item-paragraph_text {
    font-size: 18px;
	text-align: justify;
}

.case .case_item .case_item-desc .case_item-paragraph .case_item-paragraph_text ul {
	padding-left: 17px;
}

.case_item-paragraph_text p:not(:last-child) {
    margin-bottom: 25px;
}

.case .case_item .case_item-img {
    margin-top: 20px;
}

.case .case_item .case_item-img img {
    border-radius: 3px;
    width: 100%;
    height: auto;
}

.case .case_item .case_dots {
    height: 30px;
    margin-top: 20px;
    position: relative;
}

.case .case_item .case_dots > div {
    float: left;
}

.case .case_item .case_dots .case_dots-count {
    width: 25px;
}

.case .case_item .case_dots .case_dots-count span {
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}

.case .case_item .case_dots .case_dots-count span.active {
    color: #EA1311;
}

.case .case_item .case_dots .case_dots-cont {
    padding-left: 10px;
}

.case .case_item .case_dots .case_dots-cont button {
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
    cursor: pointer;
}

.case .case_item .case_dots .case_dots-cont button span {
    width: 12px;
    height: 12px;
    border: 3px solid #212449;
    background: transparent;
    margin: 4px;
    display: block;
    border-radius: 50%;
}

.case .case_item .case_dots .case_dots-cont button.active span {
    border: 3px solid #EA1311;
}

.case .case_item .case_dots .nav {
    width: 60px;
    height: 20px;
    display: inline-block;
}

.case .case_item .case_dots .nav > div {
    width: 30px;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    opacity: 0.2;
    transition: 0.2s;
    display: inline-block;
}

.case .case_item .case_dots .nav > div.left {
    float: left;
    background-image: url(../images/arrow_left.svg);

}

.case .case_item .case_dots .nav > div.left:hover {
    opacity: 1;
}

.case .case_item .case_dots .nav > div.right {
    float: right;
    background-image: url(../images/arrow_right.svg);
}

.case .case_item .case_dots .nav > div.right:hover {
    opacity: 1;
}

/* COMMENT ******************************************************************************************* */
.comment {
    background: #E5E9EC;
    padding: 50px 0;
}

.comment .comment_title {
    color: #2B2A28;
    font-weight: 700;
    font-size: 50px;
    text-align: center;
    margin-bottom: 25px;
	text-transform: uppercase;
}

.comment .comment_slider {
    position: relative;
}

.comment .comment_slider .owl-carousel {
    z-index: 9;
    position: relative;
}

.comment_slider .owl-stage {
	display: flex;
	align-items: center;
}

.comment .comment_slider .owl-carousel .owl-item img {
    margin: 10px 0;
    width: 100%;
    height: auto;
}

.comment .comment_slider .owl-carousel .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    border: 3px solid #212449;
    background: transparent;
    margin: 4px;
}

.comment .comment_slider .owl-carousel .owl-dots .owl-dot.active span {
    border: 3px solid #EA1311;
}

.comment .comment_slider .nav {
    width: calc(100% + 152px);
    height: 45px;
    z-index: 5;
    top: calc(50% - 45px);
    left: -76px;
    position: absolute;
    display: block;
}

.comment .comment_slider .nav > div {
    width: 30px;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    opacity: 0.2;
    transition: 0.2s;
}

.comment .comment_slider .nav > div.left {
    float: left;
    background-image: url(../images/arrow_left.svg);
}

.comment .comment_slider .nav > div.left:hover {
    opacity: 1;
}

.comment .comment_slider .nav > div.right {
    float: right;
    background-image: url(../images/arrow_right.svg);
}

.comment .comment_slider .nav > div.right:hover {
    opacity: 1;
}

/* ADDRESS ******************************************************************************************** */
.address {
    background-color: #EA1311;
    padding: 38px 0 22px;
    color: white;
}

.contacts_title {
    height: 85px;
    font-weight: 700;
    font-size: 50px;
}

.address__item {
    margin-bottom: 55px;
}

.address p:last-child {
    margin-bottom: 0;
}

.address__city {
    text-transform: uppercase;
    font-weight: bold;
}

.address__work {
    display: flex;
    justify-content: flex-end;
}

.address__work_icon {
    height: 54px;
    width: 62px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 25px;
}

.address__work_hours {
    padding-right: 10px;
    border-right: 1px solid white;
	height: 19px;
    margin-top: 17px;
}

.address__work_days {
    padding-left: 10px;
	height: 19px;
    margin-top: 17px;
}

/* CONTACTS ******************************************************************************************* */
.contacts {
    color: white;
    background-color: #000;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.contacts .contacts_cont {
    padding: 45px 0;
}

.contacts .form {
    margin-top: 75px;
}

.contacts .form .form_title {
    text-align: center;
    font-size: 35px;
    max-width: 650px;
    margin: auto;
}

.contacts .form .form_cont {
    margin-top: 38px;
}

.contacts .form .form_cont input {
    font-size: 18px;
    margin: 12px 0;
    padding: 0 22px;
    height: 60px;
    display: inline-block;
}

.contacts .form .form_cont textarea {
    margin: 12px 0;
    resize: none;
}

.contacts .form .form_cont .btn-style {
    margin: 0 auto;
    margin-top: 18px;
}

/*MODALS ******************************************************************************************** */
.modal.modal-style .modal-header {
    padding: 16px;
    border-bottom: 0px;
}

.modal.modal-style .modal-header .close {
    color: #3d3f60;
    padding: 16px;
    opacity: 1;
    transition: 0.2s;
    transform: rotate(0deg);
}

.modal.modal-style .modal-header .close:hover {
    transform: rotate(180deg);
}

.modal.modal-style .modal-header .close:hover span {
    color: #e60200;
}

.modal.modal-style .modal-header .close span {
    font-weight: 100;
    font-size: 30px;
    color: #212449;
}

.modal.modal-style .modal-body {
    color: #212449;
    padding-top: 0px;
}

.modal.modal-style .modal-body .modal_cont-title {
    color: #3d3f60;
    text-align: center;
    line-height: 1.2;
    font-size: 24px;
    margin-top: -20px;
}

.modal.modal-style .modal-body .modal_cont-subtitle {
    color: #c9cad0;
    text-align: center;
    line-height: 1.2;
    font-size: 18px;
    margin-top: 8px;
}

.modal.modal-style .modal-body .modal_cont {
    margin: 40px 10% 0;
    font-size: 14px;
    padding: 12px 12px;
    line-height: 1.2;
    border: 4px solid #dd1a19;
}

.modal.modal-style .modal-body .modal_cont input[type="text"],
.modal.modal-style .modal-body .modal_cont input[type="email"],
.modal.modal-style .modal-body .modal_cont input[type="tel"],
.modal.modal-style .modal-body .modal_cont textarea {
    font-size: 16px;
    margin-top: 20px;
    padding: 0 22px;
    height: 52px;
    display: inline-block;
    border: 2px solid #ebeef4;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.07);
}

.modal.modal-style .modal-body .modal_cont textarea {
    padding: 12px 25px;
    margin-bottom: 20px;
    height: 140px;
    resize: none;
}

.modal.modal-style .modal-body .modal_cont .checks {
    line-height: 1.2;
}

.modal.modal-style .modal-body .modal_cont .checks label {
    margin-left: 16px;
}

.modal.modal-style .modal-body .btn-style {
    margin: 6px auto 15px;
}

.modal.modal-style .modal-body .politics {
    width: 100%;
    font-size: 14px;
    text-align: center;
    opacity: 0.3;
    margin-bottom: 8px;
}

#calculationModal form p,
#callbackModal form p{
    margin: auto;
    padding-left: 20px;
}