* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: none;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    border-width: 1px 1px 1px 2px;
    border-color: #fff;
    background-color: #111111;
}

::-webkit-scrollbar-thumb:hover {
    border-width: 1px 1px 1px 2px;
    border-color: #fff;
    background-color: #111111;
}

::-webkit-scrollbar-track {
    border-width: 1px;
    background-color: #eee;
    border-color: #fff;
}

::-webkit-scrollbar-track:hover {
    border: solid 1px #111111;
    border-color: #fff;
}

@font-face {
    font-family: "lato";
    src: url("../fonts/lato-regular/lato-regular.eot");
    src: url("../fonts/lato-regular/lato-regular.eot?#iefix") format("embedded-opentype"),
        url("../fonts/lato-regular/lato-regular.woff") format("woff"),
        url("../fonts/lato-regular/lato-regular.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
	font-display: swap;
}

@font-face {
    font-family: "lato";
    src: url("../fonts/lato-medium/lato-medium.eot");
    src: url("../fonts/lato-medium/lato-medium.eot?#iefix") format("embedded-opentype"),
        url("../fonts/lato-medium/lato-medium.woff") format("woff"),
        url("../fonts/lato-medium/lato-medium.ttf") format("truetype");
    font-style: normal;
    font-weight: 500;
	font-display: swap;
}

@font-face {
    font-family: "lato";
    src: url("../fonts/lato-bold/lato-bold.eot");
    src: url("../fonts/lato-bold/lato-bold.eot?#iefix") format("embedded-opentype"),
        url("../fonts/lato-bold/lato-bold.woff") format("woff"),
        url("../fonts/lato-bold/lato-bold.ttf") format("truetype");
    font-style: normal;
    font-weight: 700;
	font-display: swap;
}

@font-face {
    font-family: "lato";
    src: url("../fonts/lato-black/lato-black.eot");
    src: url("../fonts/lato-black/lato-black.eot?#iefix") format("embedded-opentype"),
        url("../fonts/lato-black/lato-black.woff") format("woff"),
        url("../fonts/lato-black/lato-black.ttf") format("truetype");
    font-style: normal;
    font-weight: 900;
	font-display: swap;
}

@font-face {
    font-family: 'fontello';
    src: url('../fonts/fontello.eot?63485450');
    src: url('../fonts/fontello.eot?63485450#iefix') format('embedded-opentype'),
        url('../fonts/fontello.woff2?63485450') format('woff2'),
        url('../fonts/fontello.woff?63485450') format('woff'),
        url('../fonts/fontello.ttf?63485450') format('truetype');
    font-weight: normal;
    font-style: normal;
	font-display: swap;
}

body {
    font-family: "lato";
    font-size: 17px;
    font-weight: 500;
    line-height: 22px;
    color: #111111;
}

.white {
    color: #fff;
}

.h1,
h1 {
    font-size: 55px;
    font-weight: 700;
    line-height: 70px;
    text-transform: uppercase;
    margin-bottom: 55px;
}

.h1 span,
h1 span {
    color: #ffbf00;
    display: block;
}
.h1 span span,
h1 span span {
    color: #fff; 
	text-transform: none;
	display: inline-block;
}

.h2,
h2 {
    font-size: 36px;
    font-weight: 900;
    line-height: 42px;
    margin-bottom: 40px;
}

.h3,
h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 20px;
}

.h4,
h4 {
    font-size: 24px;
    font-weight: 700;
    line-height: 33px;
}

.h3 span,
h3 span {
    color: #127ec2;
}

.title {
    text-align: center;
}

li {
    list-style: none;
}

.why_we li {
    padding: 0 0 15px 20px;
    position: relative;
}

.why_we li:before {
    content: "";
    width: 12px;
    height: 10px;
    background: url("../images/check-mark.svg") center/cover no-repeat;
    position: absolute;
    left: 0;
    top: 8px;
}

img {
    max-width: 100%;
}

a,
a:hover {
    color: inherit;
    text-decoration: none;
}

.btn1 {
    box-shadow: 2px 6px 10px 1px rgba(1, 21, 33, 0.16);
    border-radius: 5px;
    background: #1785ca;
    border: 2px solid #1785ca;
    color: #fff;
    padding: 19px 50px;
    height: 60px;
    line-height: 60px;
    line-height: 1;
    text-align: center;
    display: inline-block;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.36px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
}

.btn1:hover {
    background: #fff;
    color: #1785ca;
}

.btn2 {
    box-shadow: 2px 6px 10px 1px rgba(1, 21, 33, 0.16);
    border-radius: 5px;
    background: #fec51b;
    color: #111111;
    border: 2px solid #fec51b;
    padding: 19px 60px;
    line-height: 1;
    text-align: center;
    display: inline-block;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.36px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
}

.btn2:hover {
    background: #fff;
    color: #fec51b;
}

header .container {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    justify-content: space-between;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    padding: 15px 0;
}


header .logo_box {
    width: 130px;
}

.lang_box {
    position: absolute;
    top: -15px;
    right: 0;
}

.lang_box .active {
    pointer-events: none;
}

.lang_box ul {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
}

.lang_box ul li a {
    font-size: 15px;
    font-weight: 500;
    line-height: 32px;
    text-transform: uppercase;
    padding: 0 5px;
}

.lang_box ul li:hover a,
.lang_box ul li.active a {
    color: #127ec2;
    font-weight: 700;
    text-decoration: underline;
}

header .nav ul {
    margin: 0 -15px;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    justify-content: space-between;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
}

header .nav li {
    padding: 0 15px;
    display: inline-block;
}

header .nav a {
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

header .wrapp {
    position: relative;
    padding-top: 20px;
    width: calc(100% - 450px);
}

header .phone {
    margin: 0;
    transition: 0.3s;
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 21px;
}

header .phone:hover,
header .nav a:hover {
    color: #127ec2;
}

header .btn1 {
    padding: 15px 26px;
    height: auto;
    font-size: 16px;
    font-weight: 500;
}

.main_section {
    text-align: center;
    padding: 180px 0;
    min-height: calc(100vh - 90px);
	/*background-image: url("../images/home.jpg");*/
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
   /* background: url("../images/home.jpg") center/cover no-repeat; */
    position: relative;
}

.main_section p {
    font-size: 28px;
    font-weight: 500;
    line-height: 42px;
    margin-bottom: 50px;
}

.main_section:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(11, 71, 108, 0.72);
    z-index: 1;
}

.main_section .container {
    z-index: 2;
    position: relative;
}

.main_section form .phone {
    border-radius: 5px;
    background-color: #ffffff;
    padding: 10px 55px;
    color: #848484;
    font-size: 18px;
    height: 60px;
    margin-right: 15px;
    border: none;
}

.main_section .phone_box {
    position: relative;
}

.main_section .phone_box:after {
    content: "";
    width: 13px;
    height: 13px;
    background: url("../images/phone.svg") center/cover no-repeat;
    padding: 5px;
    position: absolute;
    top: 5px;
    left: 20px;
    cursor: pointer;
}

.main_section .phone_box:before {
    content: "";
    width: 24px;
    height: 24px;
    background-color: #bababa;
    border-radius: 50%;
    padding: 5px;
    position: absolute;
    top: 0;
    left: 15px;
    cursor: pointer;
}

.services {
    padding: 65px 0;
}

.service_item {
    box-shadow: 0 0 20px 1px rgba(77, 77, 77, 0.13);
    border-radius: 5px;
    border: 1px solid #127ec2;
    background-color: #ffffff;
    padding: 36px 60px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
    cursor: pointer;
    height: 160px;
    transition: 0.3s;
}

.service_item .num {
    position: absolute;
    left: -8px;
    top: -10px;
    background-color: #127ec2;
    border-radius: 50%;
    height: 44px;
    text-align: center;
    line-height: 44px;
    color: #ffffff;
    font-size: 16px;
    padding: 3px 8px 0 14px;
    transition: 0.3s;
}

.service_item .service_item__head {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
}

.service_item .text_box {
    font-size: 30px;
    font-weight: 700;
    line-height: 38px;
    margin-left: 40px;
}

.service_item .text_box span {
    font-weight: 900;
    font-size: 32px;
    color: #127ec2;
    display: block;
    transition: 0.3s;
}

.service_item .service_item__body {
    display: none;
}

.services .row {
    padding-left: 0;
    /*    transition: 0.3s;*/
}

.services .row.active {
    padding-left: 60%;
    position: relative;
}

.services .row > div {
    /*    transition: 0.3s;*/
    position: relative;
    top: 0;
    left: 0;
}

.services .row.active > div {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.services .row.active > div.active {
    position: absolute;
    top: 0;
    left: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%;
    width: 60%;
    padding-right: 30px;
}

.services .service_item:hover,
.services .row.active > div.active .service_item {
    background-color: #127ec2;
    color: #fff;
}

.services .row.active > div.active .service_item {
    padding: 30px 50px 10px 50px;
    height: 543px;
}

.services .row.active > div.active .service_item__head {
    justify-content: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
}

.services .service_item:hover .num,
.services .row.active > div.active .num {
    background-color: #fff;
    color: #111111;
}

.services .row.active > div.active .text_box span {
    color: #ffbf00;
    display: inline-block;
}

.services .service_item:hover .text_box span {
    color: #ffbf00;
}

.services .service_item .icon_box svg {
    transition: 0.3s;
}

.services .service_item:hover .icon_box svg,
.services .row.active > div.active .icon_box svg {
    fill: #fff;
}

.services .row.active > div.active .service_item__body {
    display: block;
}

.services li {
    padding: 0 0 15px 20px;
    position: relative;
    font-weight: 400;
}

.services li:before {
    content: "";
    width: 12px;
    height: 10px;
    background: url(../images/check-mark-yellow.svg) center/cover no-repeat;
    position: absolute;
    left: 0;
    top: 8px;
}

.delivery_methods {
    text-align: center;
    /*background: url("../images/cargo.jpg") center/cover no-repeat;*/
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
    position: relative;
    padding: 50px 0;
}

.bg {
    position: relative;
}

.bg:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(18, 126, 194, 0.95);
    z-index: 1;
}

.bg .container {
    z-index: 2;
    position: relative;
}

.delivery_methods p {
    font-size: 25px;
    line-height: 38px;
    margin-bottom: 45px;
}

.delivery_methods .accordion {
    color: #111111;
    position: relative;
    margin: 0 -7px;
    padding-top: 179px;
}

.delivery_methods .card-header {
    width: 20%;
    position: absolute;
    left: 0;
    top: 0;
    padding: 0 7px;
}

.delivery_methods .card-header > div {
    background: #fff;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
    padding: 20px 15px 25px 15px;
}

.delivery_methods .card-header > div.collapsed {
    border-radius: 5px;
    padding: 20px 15px 15px 15px;
}

.delivery_methods .card:nth-child(2) .card-header {
    left: 20%;
}

.delivery_methods .card:nth-child(3) .card-header {
    left: 40%;
}

.delivery_methods .card:nth-child(4) .card-header {
    left: 60%;
}

.delivery_methods .card:nth-child(5) .card-header {
    left: 80%;
}

.delivery_methods .card-header .icon_box {
    margin-bottom: 5px;
    min-height: 78px;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    justify-content: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
}

.delivery_methods .card-header p {
    font-size: 20px;
    line-height: 26px;
    height: 51px;
    margin: 0;
    letter-spacing: -0.5px;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    justify-content: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.delivery_methods .card-header p b {
    width: auto;
    display: inline-block;
    margin-right: 4px;
}

.delivery_methods .card-body {
    text-align: left;
    background: #fff;
    padding: 25px 30px;
    margin: 0 7px;
    box-shadow: 2px 4px 17px 1px rgba(2, 71, 117, 0.4);
    border-radius: 0 0 5px 5px;
    font-size: 21px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 30px;
}

.delivery_methods .card-body li {
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}

.delivery_methods .card-body li:before {
    content: '-';
    position: absolute;
    left: 0;
    top: 0;
}

.delivery_methods .card-header > div.collapsed svg,
.delivery_methods svg {
    /*    min-width: 100px;*/
    fill: #319fe4;
    transition: 0.3s;
}

.delivery_methods .card-header > div svg,
.delivery_methods .card-header:hover > div svg {
    fill: #ffbf00;
}

.we_work {
    padding: 60px 0;
    background-color: #f6fafc;
}

.we_work .container {
    position: relative;
}

.we_work .img_box {
    width: 60%;
    position: absolute;
    top: 90px;
    left: 50%;
}

.we_work .row > div {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
}

.we_work .box {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    margin-bottom: 30px;
}

.we_work .box:first-child .num {
    margin: 0 30px 0 0;
}

.we_work .num {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 36px;
    text-align: center;
    border: 1px dashed #127ec2;
    border-radius: 50%;
    background-color: #ffffff;
    margin: 0 40px;
    color: #127ec2;
    font-weight: 700;
    position: relative;
    transition: 0.3s;
}

.we_work .num:before {
    content: '';
    width: 40px;
    height: 1px;
    border-bottom: 1px dashed #127ec2;
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.we_work .num:after {
    content: '';
    width: 40px;
    height: 1px;
    border-bottom: 1px dashed #127ec2;
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.we_work .col-lg-6:before {
    content: '';
    position: absolute;
    bottom: 15px;
    height: 102px;
    right: 0;
    left: 15px;
    border-width: 0 1px 1px 0;
    border-style: dashed;
    border-color: #127ec2;
    border-radius: 0 5px 5px 0;
}

.we_work .box:last-child .item:after {
    content: '';
    width: 21px;
    height: 1px;
    border-bottom: 1px dashed #127ec2;
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.we_work .box:first-child .num:before {
    content: '';
    width: 21px;
    height: 102px;
    border-width: 1px 0px 1px 1px;
    border-style: dashed;
    border-color: #127ec2;
    border-radius: 5px 0px 0px 5px;
    position: absolute;
    right: 100%;
    bottom: 18px;
    top: initial;
    transform: translateY(0%);
}

.we_work .row:last-child .box:last-child .item:after,
.we_work .row.first .box:first-child .num:before {
    display: none;
}


@-webkit-keyframes hvr-ripple-out {
    100% {
        top: -12px;
        right: -12px;
        bottom: -12px;
        left: -12px;
        opacity: 0;
    }
}

.we_work .item:before {
    content: '';
    position: absolute;
    border: #fff solid 6px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.we_work .box:hover .num {
    background-color: #2697df;
    color: #fff;
    border: 1px solid #2697df;
}

.we_work .box:hover .item:before,
.we_work .box:focus .item:before,
.we_work .box:active .item:before {
    -webkit-animation: hvr-ripple-out 1s ease-in-out infinite;
    animation: hvr-ripple-out 1s ease-in-out infinite;
}

.we_work .item {
    box-shadow: 2px 4px 20px 2px rgba(2, 71, 117, 0.22);
    border-radius: 5px;
    background-color: #ffffff;
    padding: 10px;
    text-align: center;
    display: inline-block;
    position: relative;
    z-index: 2;
}

.we_work .item > div {
    box-shadow: 2px 4px 20px 2px rgba(2, 71, 117, 0.13);
    border-radius: 5px;
    background-color: #ffffff;
    padding: 15px 5px 10px 5px;
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
    width: 150px;
    height: 150px;
}

.we_work .icon_box {
    display: inline-block;
    width: 62px;
    height: 62px;
    line-height: 85px;
    text-align: center;
    background-color: #2697df;
    border-radius: 50%;
    margin-bottom: 20px;
}

.why_we {
    padding: 80px 0 30px 0;
}

.why_we img {
    width: 100%;
    display: block;
}

.why_we .box {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    margin-bottom: 50px;
    box-shadow: 2px 4px 13px rgba(2, 71, 117, 0.17);
    border-radius: 5px;
    overflow: hidden;
}

.why_we .box.grey {
    background-color: #f6fafc;
}

.why_we .small {
    -ms-flex: 0 0 49%;
    flex: 0 0 49%;
    max-width: 49%;
}

.why_we .big {
    -ms-flex: 0 0 51%;
    flex: 0 0 51%;
    max-width: 51%;
    padding: 30px 60px 15px 60px;
}

.what_products {
    padding: 60px 0;
}

.what_products button {
    padding: 19px 25px;
}

.what_products .title {
    padding-bottom: 55px;
}

.what_products .row {
    margin: 0 -5px;
}

.what_products .col {
    max-width: 20%;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    padding: 0 5px;
}

.what_products .item {
    box-shadow: 2px 4px 20px 2px rgba(2, 71, 117, 0.24);
    border-radius: 5px;
    background-color: #ffffff;
    padding: 0 10px 10px 10px;
    text-align: center;
    margin-bottom: 55px;
    transition: 0.3s;
}

.what_products .item:hover {
    color: #127ec2;
}

.what_products .item .img_box {
    margin-bottom: -20px;
    position: relative;
    bottom: 20px;
    height: 100px;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    align-items: flex-end;
    -webkit-box-align: flex-end;
    -webkit-align-items: flex-end;
    -ms-flex-align: flex-end;
    justify-content: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
}

.what_products .item .text_box {
    font-weight: 700;
    line-height: 22px;
    min-height: 44px;
}

.for_whom {
    background-color: #f6fafc;
    padding: 60px 0 80px 0;
}

.for_whom .box {
    margin: 0 -35px;
    text-align: center;
}

.for_whom .box > div {
    padding: 0 35px;
}

.for_whom .box .img_box {
    margin-bottom: 30px;
}

.have_questions {
    padding: 60px 0;
    /*background: url("../images/questions.jpg") center/cover no-repeat;*/
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.order_now {
    text-align: center;
    padding: 60px 0;
   /* background: url("../images/boxes.jpg") center/cover no-repeat;*/
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.order_now .title {
    margin-bottom: 20px;
}

.order_now .form,
.have_questions .form {
    margin: 30px 0;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    justify-content: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;

}

.team {
    padding: 70px 0 20px 0;
    text-align: center;
}

.team p {
    margin-bottom: 30px;
}

.team .item {
    margin-bottom: 50px;
}

.team .item p {
    margin: 0;
    line-height: 1.4;
}

.team .item span {
    font-size: 16px;
    font-weight: 500;
    line-height: 18px;
}

.team .img_box {
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}

.team .item:hover .img_box img:nth-child(1),
.team .img_box img:nth-child(2) {
    display: none;
}

.team .item .img_box img:nth-child(1),
.team .item:hover .img_box img:nth-child(2) {
    display: block;
}

.office .row {
    margin: 0 -10px;
}

.office .height {
    margin-bottom: 20px;
    overflow: hidden;
    height: 235px;
}

.office .row > div {
    padding: 0 10px;
}


.map {
    position: relative;
    text-align: right;
}

.map .img_box {
    padding: 0 50px;
}

.map iframe {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.map .contact_item {
    text-align: left;
    position: relative;
    display: inline-block;
    margin: 15px 0;
    height: 570px;
    width: 400px;
    box-shadow: 1px -3px 16px rgba(80, 80, 80, 0.23);
    background-color: #ffffff;
    z-index: 1;
    padding: 18px 40px;
}

.map .contact_item .title {
    text-align: left;
    margin: 15px 0;
    font-weight: 700;
}

.map .contact_item span {
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.map .contact_item p {
    margin-bottom: 15px;
}

.fancybox-can-zoomIn .fancybox-content {
    cursor: auto;
}

footer {
    padding: 35px 0 70px 0;
    background-color: #0b73b4;
}

footer .container {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: space-between;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    line-height: 34px;
}

footer .logo_box {
    width: 195px;
}

footer a {
    display: block;
}

footer a:hover {
    text-decoration: underline;
}

.social_box {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
}

.social_box a {
    width: 32px;
    height: 32px;
    line-height: 29px;
    text-align: center;
    border: 1px solid #ffffff;
    border-radius: 50%;
    margin: 0 7px;
    display: inline-block;
    vertical-align: middle;
    opacity: 0.9;
    transition: 0.3s;
}

.social_box a:hover {
    opacity: 1;
}

/* Slider */
.slick-slider {
    position: relative;
    display: block;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    justify-content: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: "";
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    display: inline-block;
    height: 100%;
    min-height: 1px;
}

[dir="rtl"] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
    margin: 0 auto;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.montePlay {
    display: none;
}


.monteNext,
.montePrev,
.slick-arrow {
    background: none;
    padding: 0;
    margin: 0;
    border: none;
    font-size: 0;
    font-family: "fontello";
    cursor: pointer;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
    color: #127ec2;
}

.slick-prev {
    left: -30px;
}

.reviews_slider .slick-prev {
    left: -60px;
}

.slick-next {
    right: -30px;
}

.reviews_slider .slick-next {
    right: -60px;
}

.slick-prev:before {
    content: '\e800';
    font-size: 25px;
}

.slick-next:before {
    content: '\e801';
    font-size: 25px;
}

.slick-arrow:hover {
    color: #111111;
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: .2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-left-open:before {
    content: '\e800';
}

.icon-right-open:before {
    content: '\e801';
}

.icon-facebook:before {
    content: '\f09a';
}

.icon-whatsapp:before {
    content: '\f232';
}

.icon-instagram:before {
    content: '\f32d';
}

.awards {
    padding: 80px 0;
}

.awards .img_box {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    justify-content: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    padding: 0 15px;
}

.reviews {
    padding: 50px 0 100px 0;
    background-color: #f6fafc;
    max-width: 100%;
    overflow: hidden;
}

.reviews .box {
    width: 750px;
    margin: 0 auto;
    max-width: 100%;
}

.reviews_slider .slick-list {
    padding: 0 !important;
}

.reviews_slider .item {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    justify-content: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    padding: 60px 15px;
}

.reviews_slider .img_box a,
.reviews_slider .img_box img {
    display: block;
    width: 100%;
}

.reviews_slider .img_box {
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
    transition: 0.3s;
    box-shadow: 2px 4px 10px rgba(2, 71, 117, 0.14);
    pointer-events: none;
}

.reviews_slider .slick-center {
    position: relative;
    z-index: 999;
}

.reviews_slider .slick-center .img_box {
    -moz-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    -webkit-transform: scale(1.2, 1.2);
    -o-transform: scale(1.2, 1.2);
    transform: scale(1.3, 1.3);
    pointer-events: all;
}

.modal-open {
    overflow: hidden;
}

.fade {
    transition: opacity 0.15s linear;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.show {
    opacity: 0.5;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog {
    position: relative;
    width: 600px;
    pointer-events: none;
    max-width: 100%;
    margin: 1.75rem auto;
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem);
}

.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -50px);
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    border: none;
    border-radius: 0;
    outline: 0;
    padding: 35px 120px 90px 120px;
    background-color: #f6f8fb;
}

#thanks .modal-content {
    text-align: center;
    padding: 50px 70px;
    width: 500px;
    margin: 0 auto;
    max-width: 100%;
}

#thanks .title {
    color: #137ec2;
    font-weight: 900;
    margin-bottom: 50px;
}

.close {
    border: none;
    background: none;
    color: #272727;
    font-size: 25px;
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    width: 30px;
    height: 30px;
}

.modal .iti {width:100%; margin-bottom:15px;}
.bg .iti {margin-right: 25px;}
.main_section .iti {margin-right: 15px;}
.iti {color: #939393;}
.main_section .iti--allow-dropdown input, .main_section .iti--allow-dropdown input[type=tel] {padding-right: 55px;}

.form {
    text-align: center;
}

.form input {
    padding: 12px 25px;
    color: #939393;
    border-radius: 5px;
    border: 1px solid #e8e8e8;
    background-color: #ffffff;
    font-size: 17px;
    font-weight: 500;
    margin: 0 25px 0 0;
}

.form button {
    padding: 13px 28px;
    height: 46px;
    min-width: 190px;
}

.modal-content form {
    display: block;
    text-align: center;
    margin: 35px 0 0 0;
}

.modal-content form input {
    width: 100%;
    display: block;
    margin: 0 0 15px 0;
    padding: 14px 25px;
}

.modal-content form button {
    padding: 13px 50px;
    width: 100%;
}

.collapse {
    display: none;
}

.collapse.show {
    display: block;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: 0.3s ease-out;
}

.navbar-toggle {
    display: none;
}

@media screen and (max-width: 1200px) {
    .form button {
        padding: 13px 20px;
    }

    .what_products .item .text_box {
        font-size: 15px;
    }

    .services .row.active > div.active .service_item {
        padding: 25px 30px 10px 30px;
    }
}

@media screen and (max-width: 1024px) {
    body {
        font-size: 16px;
        line-height: 20px;
    }

    .service_item {
        padding: 40px;
    }

    .delivery_methods .accordion {
        padding-top: 168px;
    }

    .delivery_methods .card-header p {
        font-size: 17px;
        line-height: 20px;
    }

    .delivery_methods .card-body {
        font-size: 18px;
        line-height: 24px;
    }

    .what_products .item {
        padding: 0 5px 10px 5px;
        font-size: 16px;
    }

    header .nav a {
        font-size: 14px;
    }

    header .nav li {
        padding: 0 10px;
    }

    header .phone {
        margin: 0 10px 0 0;
    }

    .office .height {
        height: 194px;
    }

    .we_work .num {
        margin: 0 10px;
    }

    .we_work .box:first-child .num {
        margin: 0 10px 0 0;
    }

    .we_work .col-lg-6:before {
        height: 100px;
        right: -9px;
    }

    .we_work .img_box {
        width: 50%;
        top: 140px;
        left: 50%;
    }

    .service_item .text_box span {
        font-size: 28px;
    }

    .service_item .text_box {
        font-size: 28px;
        line-height: 32px;
        margin-left: 20px;
    }
}

@media screen and (max-width: 991px) {
    .navbar-toggle {
        display: inline-block;
        padding: 5px;
        position: absolute;
        right: 10px;
        top: 35px;
        z-index: 99;
        transition: 0.3s;
    }

    .icon-bar {
        width: 25px;
        height: 3px;
        background: #111111;
        display: block;
        margin: 4px;
        position: relative;
        transition: 0.3s;
    }

    .navbar-toggle.active .icon-bar:nth-child(1) {
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 4px;
    }

    .navbar-toggle.active .icon-bar:nth-child(2) {
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        bottom: 3px;
    }

    .navbar-toggle.active .icon-bar:nth-child(3) {
        display: none;
    }

    body.active {
        overflow: hidden;
    }
	
	.iti input[type=tel], .iti input[type=text] {width: 100%;}
	.main_section .iti {
    margin-right: 0;
    width: 100%;
    margin-bottom: 15px;
}

    header .container {
        display: block;
        position: relative;
        padding: 30px 15px 0 15px;
    }

    header .wrapp {
        position: static;
        padding: 10px 0;
        text-align: center;
        width: 100%
    }

    header .phone {
        position: static;
        margin: 0;
    }

    .lang_box {
        position: absolute;
        top: 5px;
        right: 50%;
        transform: translateX(50%);
    }

    header .nav {
        position: fixed;
        background: #fff;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 50px 10px;
        visibility: hidden;
        z-index: -1;
        opacity: 0;
        transition: 0.3s;
    }

    header .nav.open {
        z-index: 9;
        visibility: visible;
        opacity: 1;
    }

    header .nav ul {
        max-width: 540px;
        margin: 0 auto;
        display: block;
    }

    header .nav li {
        padding: 10px 0;
        display: block;
    }

    header .container > a {
        margin: 0 0 10px 0;
        display: block;
        text-align: center;
    }

    .main_section p {
        font-size: 24px;
        line-height: 32px;
    }

    .main_section form .phone {
        margin: 0 0 10px 0;
    }

    .h1,
    h1 {
        font-size: 50px;
        line-height: 60px;
        margin-bottom: 50px;
    }

    .main_section {
        padding: 100px 0;
    }

    .main_section form button,
    .main_section form input {
        width: 100%;
    }

    .delivery_methods .accordion {
        padding-top: 0;
    }

    .delivery_methods .card-header {
        width: 100%;
        position: static;
    }

    .delivery_methods .card-header > div.collapsed {
        margin-bottom: 10px;
    }

    .delivery_methods .card-body {
        font-size: 16px;
        line-height: 22px;
        box-shadow: none;
    }

    .what_products .col {
        max-width: 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    }

    .why_we .box {
        display: block;
    }

    .why_we .box > div {
        width: 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .for_whom .box .img_box {
        margin-bottom: 10px;
    }

    .for_whom .box .text {
        margin-bottom: 30px;
    }

    .order_now .form,
    .have_questions .form {
        display: block;
    }

    .order_now .form > *,
    .have_questions .form > * {
        width: 100%;
        margin-bottom: 10px;
    }

    .office img {
        margin-bottom: 20px;
    }

    .office .height {
        height: auto;
        margin-bottom: 0
    }

    footer .container {
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    footer .container > * {
        width: 100%;
        text-align: center;
        margin-bottom: 25px;
    }

    .social_box {
        justify-content: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
    }

    .services .row.active {
        padding-left: 0;
    }

    .services .row.active > div.active {
        position: static;
        -ms-flex: 0 0 60%;
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        padding-right: 15px;
    }

    .service_item,
    .services .row.active > div.active .service_item {
        height: auto;
    }

    .we_work .img_box {
        width: 100%;
        position: static;
    }

    .we_work .box,
    .we_work .row > div {
        display: block;
        text-align: center;
    }

    .we_work .box:first-child .num,
    .we_work .num {
        display: block;
        margin: 0 auto 25px auto;
    }

    .we_work .col-lg-6:before,
    .we_work .box:last-child .item:after,
    .we_work .num:before {
        display: none;
    }

    .we_work .num:after {
        content: '';
        width: 1px;
        height: 40px;
        border-bottom: none;
        border-right: 1px dashed #127ec2;
        position: absolute;
        left: 50%;
        top: 100%;
        transform: translateX(-50%);
    }

    .map iframe {
        position: static;
        width: calc(100% + 30px);
        margin: 0 -15px;
    }

    .map .contact_item {
        height: auto;
        width: 100%;
        padding: 18px 15px;
        width: calc(100% + 30px);
        margin: 0 -15px;
        box-shadow: none;
    }
    
    .reviews_slider .item {
        padding: 25px 0;
    }

    .reviews_slider .slick-center .img_box {
        -moz-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
        pointer-events: all;
    }
}

@media screen and (max-width: 768px) {

    .slick-prev,
    .reviews_slider .slick-prev {
        left: 0px;
        z-index: 9;
    }

    .slick-next,
    .reviews_slider .slick-next {
        right: 0px;
        z-index: 9;
    }

    .h2,
    h2 {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 25px;
    }

    .h1,
    h1 {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 25px;
    }

    .services,
    .delivery_methods,
    .what_products,
    .why_we,
    .for_whom,
    .order_now,
    .team,
    .awards,
    .reviews,
    .have_questions,
    footer {
        padding: 40px 0 25px 0;
    }

    .why_we .big {
        padding: 25px 15px 15px 15px;
    }

    .reviews .box:before,
    .reviews .box:after {
        display: none;
    }

    .delivery_methods p {
        font-size: 22px;
        line-height: 32px;
        margin-bottom: 25px;
    }

    .what_products .item .text_box {
        min-height: 65px;
        font-size: 14px;
        display: flex;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        align-items: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        justify-content: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
    }

    .justify-content-md-center {
        justify-content: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
    }

    .service_item .service_item__head {
        display: block;
        text-align: center;
    }

    .service_item {
        padding: 20px 40px 40px 40px;
    }

    .service_item .text_box {
        margin-left: 0;
        font-size: 28px;
        line-height: 32px;
    }

    header .nav ul {
        max-width: 100%;
    }

    .for_whom .box > div {
        padding: 0 15px;
    }

    .for_whom .box {
        margin: 0 -15px;
    }

    section {
        overflow: hidden;
    }

    .awards .img_box {
        padding: 0;
    }

    #thanks .title {
        margin-bottom: 25px;
    }

    .modal-content {
        padding: 50px 25px;
    }

    #thanks .modal-content {
        padding: 50px 25px;
    }

    .services .row.active > div.active .service_item {
        padding: 30px 15px 10px 15px;
    }
}
