body main {
    padding-bottom: 60px;
}

main .header_container {
    display: block;
    float: left;
    background-image: url(../_img/landing-b2b-header.webp);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: auto 100%;
    width: 100%;
    height: 175px;
}

@media(min-width:1024px) {
    main .header_container {
        height: 220px;
    }
}

@media(min-width:1440px) {
    main .header_container {
        height: 318px;
    }
}

main .content {
    display: block;
    margin: auto;
    padding: 0px 12px;
    width: 100%;
    max-width: 924px;
}

@media(min-width:1800px) {
    main .content {
        max-width: 1120px;
    }
}

main .gray-bg .content {
    max-width: 1450px;
}

main .row {
    display: block;
    float: left;
    width: 100%;
}

main .row.gray-bg {
    margin: 40px 0px 0px;
    background-color: #F2F5F8;
    padding: 40px 0px 55px;
}

@media(min-width:1024px) {
    main .row.gray-bg {
        margin: 90px 0px 0px;
        padding: 50px 0px 75px;
    }
}

main .intro {
    margin: 26px 0px 60px;
}

@media(min-width:1024px) {
    main .intro {
        margin: 45px 0px 86px;
    }
}

.intro h1 {
    display: block;
    float: left;
    color: #173250;
    font-family: 'Lato-Light';
    font-size: 28px;
    font-weight: normal;
    text-align: center;
    line-height: 34px;
    width: 100%;
}

@media(min-width:1024px) {
    .intro h1 {
        font-size: 40px;
        line-height: 48px;
    }
}

.gray-bg p,
.intro p {
    display: block;
    float: left;
    margin-top: 20px;
    color: #434343;
    font-size: 20px;
    text-align: center;
    line-height: 24px;
    width: 100%;
}

.gray-bg p strong,
.intro p strong {
    color: inherit;
    font-size: inherit;
    font-family: 'Lato-Bold';
    font-weight: normal;
}

.gray-bg ul {
    display: grid;
    float: left;
    margin-top: 20px;
    grid-template-columns: 1fr;
    gap: 34px 66px;
    padding-bottom: 20px;
    width: 100%;
}

@media(min-width:1024px) {
    .gray-bg ul {
        margin-top: 55px;
        grid-template-columns: repeat(5, 1fr);
        justify-content: space-between;
        padding-bottom: 40px;
    }
}

.gray-bg ul li {
    display: block;
    position: relative;
    font-size: 18px;
    text-align: center;
    line-height: 22px;
    padding-top: 104px;
}

.gray-bg ul li:before {
    display: block;
    position: absolute;
    top: 0px;
    left: 50%;
    border-radius: 50%;
    background-image: url(../_img/sprite-breakbrakes-b2b.webp);
    background-repeat: no-repeat;
    background-position: center top;
    transform: translateX(-50%);
    content: '';
    width: 78px;
    height: 78px;
}

.gray-bg ul li:nth-of-type(2):before {
    background-position: center -78px;
}

.gray-bg ul li:nth-of-type(3):before {
    background-position: center -156px;
}

.gray-bg ul li:nth-of-type(4):before {
    background-position: center -234px;
}

.gray-bg ul li:nth-of-type(5):before {
    background-position: center -312px;
}

.gray-bg ul li strong {
    display: block;
    float: left;
    margin-bottom: 10px;
    color: #0092BE;
    justify-content: center;
    width: 100%;
}

main .btn-container {
    display: flex;
    float: left;
    justify-content: center;
    width: 100%;
}

.content .subtitle {
    display: block;
    float: left;
    position: relative;
    margin-top: 22px;
    color: #173250;
    font-size: 18px;
    font-weight: normal;
    text-align: center;
    line-height: 22px;
    width: 100%;
}

@media(min-width:768px) {
    .content .subtitle {
        margin-top: 48px;
        font-size: 22px;
        line-height: 27px;
    }
}

.content .title {
    display: block;
    float: left;
    margin-top: 15px;
    color: #0092BE;
    font-size: 24px;
    font-weight: normal;
    text-align: center;
    text-transform: uppercase;
    line-height: 29px;
    width: 100%;
}

@media(min-width:768px) {
    .content .title {
        margin-top: 10px;
        font-size: 32px;
        line-height: 39px;
    }
}

.content .section_title {
    display: block;
    float: left;
    margin-top: 12px;
    color: #173250;
    font-family: 'Lato-Bold';
    font-size: 18px;
    font-weight: normal;
    text-align: center;
    line-height: 24px;
    padding: 0px 12px;
    width: 100%;
}

@media(min-width:1024px) {
    .content .section_title {
        font-size: 20px;
    }
}

@media(min-width:1800px) {
    .content .section_title {
        margin-top: 20px;
    }
}

.content .top_section {
    display: grid;
    float: left;
    margin-top: 28px;
    grid-template-columns: 1fr;
    gap: 15px 38px;
    place-items: center;
    width: 100%;
}

@media(min-width:768px) {
    .content .top_section {
        margin-top: 40px;
        grid-template-columns: 280px 1fr;
    }

    .content .top_section.reversed {
        grid-template-columns: 1fr 280px;
        grid-auto-flow: dense;
    }
}

.top_section img {
    display: block;
    border-radius: 50%;
    width: 265px;
}

@media(min-width:768px) {
    .top_section img {
        width: 280px;
    }

    .content .top_section.reversed img {
        grid-column-start: 2;
    }

    .content .top_section.reversed div {
        grid-column-start: 1;
    }
}

.top_section .top_title {
    display: block;
    float: left;
    color: #0092BE;
    font-family: 'Lato-Bold';
    font-size: 20px;
    line-height: 24px;
    width: 100%;
    padding: 0px 12px;
}

@media(min-width:768px) {
    .top_section .top_title {
        padding: 0px;
    }
}

.content .text,
.content .center_text {
    display: block;
    float: left;
    margin-top: 21px;
    color: #444;
    font-size: 18px;
    line-height: 22px;
    width: 100%;
    padding: 0px 12px;
}

.content .principal+.center_text {
    margin-top: 35px;
}

@media(min-width:768px) {

    .content .text,
    .content .center_text {
        padding: 0px;
    }
}

.content .center_text {
    text-align: center;
}

.center_text .blue,
.text.blue,
.text .blue {
    color: #0092BE;
}

.text.bold,
.center_text .bold {
    font-family: 'Lato-Bold';
}

.text strong {
    color: inherit;
    font-family: 'Lato-Bold';
    font-size: inherit;
    font-weight: normal;
}

.text a,
.center_text a {
    color: #0092BE;
    font-family: inherit;
    font-size: inherit;
    text-decoration: underline;
}

.text a:hover,
.center_text a:hover {
    text-decoration: none;
}

main .secondary_title {
    display: block;
    float: left;
    margin-top: 45px;
    color: #0092BE;
    font-size: 22px;
    text-align: center;
    line-height: 27px;
    width: 100%;
}

main .secondary_title_left {
    display: block;
    float: left;
    margin-top: 45px;
    color: #0092BE;
    font-size: 22px;
    line-height: 27px;
    width: 100%;
}

@media(min-width:1024px) {
    main .secondary_title {
        margin-top: 55px;
        margin-bottom: 15px;
    }

    main .row_form .secondary_title {
        font-size: 28px;
        line-height: 34px;
    }
}

@media(min-width:1800px) {
    main .secondary_title {
        margin-top: 70px;
    }
}

main .tertiary_title {
    display: block;
    float: left;
    margin-top: 15px;
    color: #173250;
    font-size: 19px;
    text-align: center;
    line-height: 24px;
    width: 100%;
}

@media(min-width:1024px) {
    main .tertiary_title {
        margin-top: 0px;
        margin-bottom: 15px;
        font-size: 20px;
    }
}

/*#######################

        SECTION
    SPECIAL CONDITIONS

########################*/

main .special_conditions_container {
    margin-bottom: 40px;
}

@media (min-width:1024px) {
    main .special_conditions_container {
        margin-bottom: 70px;
    }
}

.special_conditions_container .secondary_title {
    font-size: 30px;
    font-weight: normal;
    text-transform: uppercase;
    line-height: 36px;
}

@media (min-width:1024px) {
    .special_conditions_container .secondary_title {
        font-size: 32px;
        line-height: 39px;
    }
}

main .special_conditions {
    display: block;
    float: left;
    width: 100%;
    margin: 10px 0px 30px;
}

.special_conditions span {
    font-family: 'Lato-Bold';
}

.special_conditions .half {
    display: block;
    float: left;
    width: 100%;
}

@media (min-width:1024px) {
    .special_conditions .half {
        display: block;
        float: left;
        width: 50%;
    }
}

.special_conditions div.half {
    margin-top: 25px;
}

.special_conditions div.half+div.half {
    margin-top: 32px;
}

@media (min-width:1024px) {
    .special_conditions div.half {
        padding: 0px 26px 0px 0px;
    }

    .special_conditions div.half+div.half {
        border-left: 2px dotted #0092BE;
        margin-top: 25px;
        padding: 0px 0px 0px 26px;
    }
}

@media (min-width:1800px) {
    .special_conditions div.half {
        padding: 0px 50px 0px 0px;
    }

    .special_conditions div.half+div.half {
        padding: 0px 0px 0px 50px;
    }
}


.special_conditions .half .subtitle_special_conditions {
    display: block;
    float: left;
    position: relative;
    color: #fff;
    font-size: 18px;
    line-height: 22px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding: 14px 14px 14px 50px;
    width: 100%;
}

@media (min-width:1800px) {
    .special_conditions .half .subtitle_special_conditions {
        font-size: 20px;
        line-height: 54px;
        padding: 0px 14px 0px 60px;
    }
}


.subtitle_special_conditions.warning {
    background-color: #F78E1E;
}

.subtitle_special_conditions.blocked {
    background-color: #B3B3B3;
}

.subtitle_special_conditions.warning:before,
.subtitle_special_conditions.blocked:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10px;
    background-image: url(../_img/warning.svg);
    background-repeat: no-repeat;
    margin-top: -15px;
    width: 33px;
    height: 30px;
}

.subtitle_special_conditions.blocked:before {
    background-image: url(../_img/blocked.svg);
    width: 29px;
    height: 29px;
}

@media (min-width:1800px) {
    .subtitle_special_conditions.blocked:before {
        left: 21px;
    }
}

.special_conditions .blue {
    color: #0092BE;
}

.special_conditions .text {
    display: block;
    float: left;
    font-size: 16px;
    margin-top: 20px;
    width: 100%;
}

@media (min-width:1800px) {
    .special_conditions .text {
        font-size: 16px;
    }

    .special_conditions .text.orange {
        font-size: 16px;
    }
}

.special_conditions .orange {
    color: #F78E1E;
}

@media (min-width:1024px) {
    .special_conditions .orange {
        margin-top: 41px;
    }
}

@media (min-width:1800px) {
    .special_conditions .orange {
        margin-top: 61px;
    }
}

.special_conditions .image_container {
    display: block;
    max-width: 287px;
    margin: auto;
    width: 100%;
}

@media (min-width:1024px) {
    .special_conditions .image_container {
        max-width: 380px;
    }
}

.special_conditions .image_container img {
    display: block;
    float: left;
    margin-top: 20px;
    width: 89px;
    height: 73px;
}

@media (min-width:1800px) {
    .special_conditions .image_container img {
        margin-top: 30px;
    }
}

.special_conditions .image_container img+img {
    margin-left: 3.096%;
}

@media (min-width:1024px) {
    .special_conditions .image_container img+img {
        margin-left: 10%;
    }
}

@media (min-width:1800px) {
    .special_conditions .image_container img+img {
        margin-left: 14%;
    }
}

.special_conditions ul {
    display: block;
    float: left;
    width: 100%;
    padding: 30px 27px 20px;
}

@media (min-width:1024px) {
    .special_conditions ul {
        padding: 30px 0px 5px 15px;
    }
}

@media (min-width:1024px) {
    .special_conditions ul.half {
        width: 47%;
    }
}


.special_conditions ul li {
    display: block;
    float: left;
    position: relative;
    font-size: 16px;
    width: 100%;
}



@media (min-width:1800px) {
    .special_conditions ul li {
        font-size: 16px;
    }
}

.special_conditions ul.half+ul.half {
    padding-top: 0px;
}

@media (min-width:1024px) {
    .special_conditions ul.half+ul.half {
        padding-top: 30px;
        margin-left: 6%;
    }
}

.special_conditions ul.half li {
    font-size: 16px;
}

@media (min-width:1800px) {
    .special_conditions ul.half {
        padding: 30px 0px 5px 25px;
    }
}

.special_conditions ul li:before {
    content: "";
    position: absolute;
    display: block;
    top: 4px;
    left: -22px;
    border-right: 3px solid #0092BE;
    border-top: 3px solid #0092BE;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 8px;
    height: 8px;
}


.special_conditions ul li.dark_blue:before {
    border-right: 3px solid #173250;
    border-top: 3px solid #173250;
}

.special_conditions ul li+li {
    margin-top: 22px;
}



@media (min-width:1800px) {
    .special_conditions ul li+li {
        margin-top: 30px;
    }
}

.when_contract_service_container ul {
    padding-left: 15px;
}

.when_contract_service_container ul li {
    display: block;
    float: left;
    position: relative;
    font-size: 18px;
    width: 100%;
    margin-top: 19px;

}

@media(max-width:768px) {
    .when_contract_service_container ul li {
        width: calc(100% - 15px);
    }

    .when_contract_service_container ul {
        padding: 0 20px;
    }

    .advantages_international_service_container ul li {
        width: calc(100% - 15px);
    }

    .advantages_international_service_container ul {
        padding: 0 20px;
    }

}

.when_contract_service_container ul li:before {
    content: "";
    position: absolute;
    display: block;
    top: 6px;
    left: -18px;
    border-right: 3px solid #0092BE;
    border-top: 3px solid #0092BE;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 8px;
    height: 8px;
}

.advantages_international_service_container ul li {
    display: block;
    float: left;
    position: relative;
    font-size: 18px;
    width: 100%;
    margin-top: 19px;
}

.advantages_international_service_container ul {
    padding-left: 15px;
}


.advantages_international_service_container ul li:before {
    content: "";
    position: absolute;
    display: block;
    top: 6px;
    left: -18px;
    border-right: 3px solid #0092BE;
    border-top: 3px solid #0092BE;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 8px;
    height: 8px;
}

/*#######################

        BUTTON

########################*/


a.button {
    display: block;
    float: left;
    background-color: #0092BE;
    border-radius: 25px;
    color: #fff;
    font-family: 'Lato-Bold';
    font-size: 17px;
    text-align: center;
    text-decoration: none;
    line-height: 20px;
    padding: 13px;
    margin-top: 30px;
    width: 100%;
    max-width: 336px;
}

.logistics-section a.button {
    max-width: 380px;
}

@media (min-width:1024px) {
    a.button {
        max-width: 357px;
    }

    .logistics-section a.button {
        margin-top: 0px;
        max-width: 400px;
    }
}

@media (min-width:1024px) {
    a.bottom_button {
        max-width: 450px;
    }
}

a.button:hover {
    background-color: #173250;
}

/*#######################

        SECTION
     OURS SERVICES

########################*/

main .other_services {
    display: block;
    float: left;
    margin-top: 35px;
    background-color: #F2F5F8;
    padding-bottom: 55px;
    width: 100%;
}

@media(min-width:768px) {
    main .other_services {
        padding-bottom: 70px;
    }
}

@media(min-width:1800px) {
    main .other_services {
        margin-top: 65px;

    }
}

.content .services_container {
    display: block;
    float: left;
    margin-top: 20px;
    width: 100%;
}


.services_container li {
    display: block;
    float: left;
    position: relative;
    margin-top: 32px;
    color: #173250;
    font-size: 18px;
    text-align: center;
    line-height: 22px;
    width: 100%;
}

@media(min-width:1024px) {
    .services_container li {
        width: 20%;
    }

    .services_container li+li {
        margin-left: 6.66%;
    }
}

@media(min-width:1800px) {
    .services_container li {
        width: 18.1%;
    }

    .services_container li+li {
        margin-left: 9.2%;
    }
}

.services_container li a {
    display: block;
    float: left;
    position: relative;
    padding-top: 203px;
    width: 100%;
}

@media(min-width:1024px) {
    .services_container li a {
        padding-top: 235px;
    }
}


.services_container li img {
    display: block;
    position: absolute;
    top: 0px;
    left: 50%;
    border-radius: 50%;
    transform: translateX(-50%);
    width: 186px;
    max-width: 100%;
}

@media(min-width:1800px) {
    .services_container li img {
        width: 200px;
    }
}

.services_container li .vertical_container {
    display: table;
    float: left;
    width: 100%;
    height: 30px;
}

@media(min-width:1024px) {
    .services_container li .vertical_container {
        height: 45px;
    }
}

.vertical_container span {
    display: table-cell;
    width: 100%;
    vertical-align: middle;
}

.vertical_container.padding_text span {
    padding-top: 20px;
}

/**/

/* section with cyrlce elements*/

/**/

ul.elements {
    display: block;
    float: left;
    width: 100%;
    list-style: none;
    position: relative;
}


@media(min-width:1024px) {
    ul.elements.three::before {
        content: ' ';
        width: 80%;
        height: 2px;
        border-top: 2px dotted #F78D1E;
        position: absolute;
        top: 225px;
        left: 9%;
    }

    ul.elements.three {
        max-width: 850px;
        float: none;
        margin: auto;
    }

    ul.elements.four::before {
        content: ' ';
        width: 80%;
        height: 2px;
        border-top: 2px dotted #F78D1E;
        position: absolute;
        top: 85px;
        left: 9%;
    }
}

@media(min-width:1080px) {
    ul.elements.four {
        max-width: 875px;
    }
}

@media(min-width:1080px) {
    ul.elements.four {
        max-width: 1080px;
    }
}

@media(min-width:1800px) {
    ul.elements.three::before {
        top: 242px;
    }

    ul.elements.four {
        max-width: 1080px;
        float: none;
        margin: auto;
    }

    ul.elements.four::before {
        content: ' ';
        width: 80%;
        height: 2px;
        border-top: 2px dotted #F78D1E;
        position: absolute;
        top: 200px;
        left: 9%;
    }
}



ul.elements li {
    display: block;
    float: left;
    width: 100%;
    font-size: 20px;
    color: #565757;
    text-align: center;
    line-height: 24px;
    position: relative;
    padding-top: 120px;
    margin-top: 35px;
}

@media(min-width:1024px) {
    ul.elements.three li {
        width: 240px;
    }

    ul.elements.three li+li {
        margin-left: 65px;
    }

    ul.elements.four li {
        width: 180px;
    }

    ul.elements.four li+li {
        margin-left: 51px;
    }
}

@media(min-width:1800px) {
    ul.elements.four li {
        width: 225px;
    }

    ul.elements.four li+li {
        margin-left: 60px;
    }
}


ul.elements li:before {
    content: '';
    background-image: url(../_img/sprite.png);
    width: 102px;
    height: 102px;
    position: absolute;
    margin-left: -51px;
    top: 0px;
    left: 50%;
    background-position: 0px 0px;
}

ul.elements li.suite:before {
    background-position: -132px -169px;
}

ul.elements li.truck:before {
    background-position: -266px -169px;
}

ul.elements li.barrow:before {
    background-position: -132px -398px;
}

ul.elements li.access:before {
    background-position: -268px -398px;
}

ul.elements li.call:before {
    background-position: -398px -398px;
}

/*#############*/

/* tips section*/

/*#############*/


main .tips_container {
    display: block;
    margin: auto;
    width: 100%;
    max-width: 360px;
}

@media(min-width:1024px) {
    main .tips_container {
        max-width: 980px;
    }
}

@media(min-width:1800px) {
    main .tips_container {
        max-width: 1700px;
    }
}

.tips_container li {
    display: block;
    float: left;
    margin-top: 34px;
    width: 100%;
}

@media(min-width:1024px) {
    .tips_container li {
        margin-top: 38px;
        font-size: 16px;
        line-height: 19px;
        width: 28.5%;
    }

    .tips_container li+li {
        /*margin-left: 60px;*/
        margin-left: 7.25%;
    }
}

@media(min-width:1800px) {
    .tips_container li {
        margin-top: 54px;
        font-size: 22px;
        line-height: 27px;
        padding: 0px 5px;
        /*width: 359px;*/
        width: 29.41%;
    }

    .tips_container li+li {
        /*margin-left: 60px;*/
        margin-left: 5.885%;
    }
}

.tips_container img {
    display: block;
    margin: 0px auto 12px;
    width: 250px;
}

@media(min-width:1024px) {
    .tips_container img {
        margin: 0px auto;
        width: 100%;
    }
}

@media(min-width:1800px) {
    .tips_container img {
        margin: 0px auto;
    }
}


.tips_container span {
    display: block;
    float: left;
    font-family: 'Lato-Bold';
    color: #173250;
    font-size: 18px;
    text-align: center;
    line-height: 24px;
    padding: 16px 25px;
    width: 100%;
}

@media(min-width:1024px) {
    .tips_container span {
        width: 100%;
        padding: 25px 10px;
    }
}

@media(min-width:1800px) {
    .tips_container span {
        padding: 25px 115px;
    }
}

.tips_container a {
    display: block;
    margin: auto;
    color: #F78E1E;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    line-height: 22px;
    width: 210px;
}

.tips_container .a:hover {
    text-decoration: underline;
}


/*####################*/

/* agency section*/

/*####################*/

.agency_img {
    display: block;
    width: 280px;
    margin: auto;
}

.agency_img img {
    width: 280px;
    display: block;
    float: left;
    border-radius: 50%;
    margin-top: 25px;
}

@media(min-width:1024px) {
    .agency_img img {
        margin-top: 20px;

    }
}

@media(min-width:1024px) {
    .agency_img img {
        margin-top: 10px;

    }
}

.agency_img+.center_text {
    margin-top: 25px;
}

@media(min-width:1024px) {
    .agency_img img {
        margin-top: 35px;

    }
}

@media(min-width:1024px) {
    .agency_img img {
        margin-top: 50px;
    }
}

.button_container {
    display: block;
    margin: auto;
    max-width: 357px;
}

.content_information_left {
    margin-top: 70px;
    padding-top: 0px;
}

.content_information_left .top_title {
    display: block;
    float: left;
    color: #0092BE;
    font-family: 'Lato-Bold';
    font-size: 20px;
    line-height: 24px;
    width: 100%;
    padding: 0px 12px;
}

.top_section ul {
    display: block;
    float: left;
    width: 100%;
    padding: 0px 27px 20px;
}

.top_section p+ul {
    margin-top: 20px;
}

@media (min-width:1024px) {
    .top_section ul {
        padding: 0px 0px 5px 15px;
    }
}

.top_section ul li {
    display: block;
    float: left;
    position: relative;
    color: #444;
    font-size: 18px;
    width: 100%;
}

.top_section ul li strong {
    color: inherit;
    font-family: 'Lato-Bold';
    font-size: inherit;
    font-weight: normal;
}

.top_section ul li:before {
    content: "";
    position: absolute;
    display: block;
    top: 4px;
    left: -18px;
    border-right: 3px solid #0092BE;
    border-top: 3px solid #0092BE;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 8px;
    height: 8px;
}

.top_section ul li+li {
    margin-top: 22px;
}

@media (min-width:1800px) {
    .top_section ul li+li {
        margin-top: 30px;
    }
}

.top_section ul+p {
    margin-top: 22px;
}

@media (min-width:1800px) {
    .top_section ul+p {
        margin-top: 30px;
    }
}

main .opinion_container {
    margin-top: 70px;
}

.text span {
    display: block;
    float: left;
    color: #0092BE;
    font-family: 'Lato-Bold';
    font-size: 20px;
    line-height: 30px;
    width: 100%;
}

.text a {
    color: #F78D1E;
    font-size: inherit;
    text-decoration: underline;
}

.text a:hover {
    text-decoration: none;
}

.intro h2,
.gray-bg h2 {
    display: block;
    float: left;
    color: #173250;
    font-family: 'Lato-Light';
    font-size: 28px;
    text-align: center;
    line-height: 34px;
    width: 100%;
}

@media(min-width:1024px) {

    .intro h2,
    .gray-bg h2 {
        font-size: 40px;
        line-height: 48px;
    }
}

.faq_section {
    display: block;
    float: left;
    margin-top: 50px;
    width: 100%;
}

@media(min-width: 1024px) {
    .faq_section {
    margin-top: 70px;
        padding: 0px 20px;
    }
}

.faq_section h2 {
    margin-bottom: 40px;
    font-size: 30px;
    color: #0092BE;
    text-align: center;
    text-transform: uppercase;
    font-weight: normal;
    line-height: 36px;
}

@media(min-width: 1024px) {
    .faq_section h2 {
        font-size: 32px;
        line-height: 39px;
    }
}

.faq_section .title_faq {
    display: block;
    float: left;
    font-size: 20px;
    line-height: 22px;
    position: relative;
    text-align: left;
    height: auto;
    margin-bottom: 10px;
    width: 100%;
}

@media(min-width: 1800px) {
    .faq_section .title_faq {
        font-size: 18px;
    }
}

.faq_section .title_faq .question {
    background-color: #0092BE;
    padding: 15px 25px;
    padding-right: 30px;
    font-family: 'Lato-Bold';
    cursor: pointer;
}

.faq_section .title_faq .question:before {
    display: block;
    background-image: url(../_img/sprite.png);
    content: ' ';
    right: 15px;
    background-position: 337px -14px;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 15px;
}

.faq_section .title_faq .question.open:before {
    top: 18px;
    background-position: 337px top;
}

.content_reply {
    display: none;
    float: left;
    width: 100%;
    padding: 20px 25px 0px;
}

@media(min-width: 1024px) {
    .content_reply {
        padding: 30px 25px 10px;
    }
}

.content_reply ol {
    display: block;
    float: left;
    padding: 0px 0px 0px 18px;
    width: 100%;
}

.content_reply ol li {
    font-size: 17px;
    line-height: 19px;
    margin-bottom: 15px;
}

.faq_section .title_faq span {
    display: block;
    float: left;
    color: #fff;
    margin: auto;
    padding-left: 10px;
    width: 100%;
}

@media(min-width: 1800px) {
    .faq_section li span {
        width: 100%;
    }
}

.faq_section .list_faq {
    display: block;
    list-style: none;
    float: left;
    width: 100%;
    margin-top: 0px;
    margin-bottom: 20px;
}

.content_reply p {
    display: block;
    float: left;
    font-size: 17px;
    line-height: 19px;
    margin-bottom: 15px;
    width: 100%;
}

.content_reply a {
    color: #0092BE;
    font-family: inherit;
    font-size: inherit;
    text-decoration: underline;
}

main .logistics-section {
    margin: 40px 0px 0px;
    background-color: #F2F5F8;
    padding: 40px 0px 55px;
}

@media(min-width:1024px) {
    main .logistics-section {
        margin: 90px 0px 0px;
        padding: 50px 0px 75px;
    }
}

.logistics-section .content+.content {
    max-width: 1360px;
}

.logistics-section h2 {
    display: block;
    float: left;
    color: #173250;
    font-family: 'Lato-Light';
    font-size: 28px;
    font-weight: normal;
    text-align: center;
    line-height: 34px;
    width: 100%;
}

@media(min-width:1024px) {
    .logistics-section h2 {
        font-size: 40px;
        line-height: 48px;
    }
}

.logistics-section p {
    display: block;
    float: left;
    margin-top: 20px;
    color: #434343;
    font-size: 20px;
    text-align: center;
    line-height: 24px;
    width: 100%;
}

.logistics-section p strong {
    color: inherit;
    font-size: inherit;
    font-family: 'Lato-Bold';
    font-weight: normal;
}

.logistics-section ul {
    display: grid;
    float: left;
    margin-top: 20px;
    grid-template-columns: 1fr;
    gap: 34px 20px;
    padding-bottom: 20px;
    width: 100%;
}

@media(min-width:1024px) {
    .logistics-section ul {
        margin-top: 55px;
        grid-template-columns: repeat(4, min(22%, 300px));
        justify-content: space-between;
        padding-bottom: 40px;
    }
}

.logistics-section ul li {
    display: block;
    position: relative;
    font-size: 18px;
    text-align: center;
    line-height: 22px;
}

.logistics-section ul li img {
    max-width: 100%;
}

.logistics-section li strong {
    display: block;
    margin-bottom: 10px;
    color: #0092BE;
    font-size: 21px;
    font-family: 'Lato-Bold';
    font-weight: normal;
}

main .services_form {
    display: none;
    float: left;
    width: 100%;
    margin-top: 10px;
    padding: 0px 5px;
}

main .services_form.visible {
    display: block;
}

@media(min-width:1024px) {
    main .services_form {
        padding: 0px;
    }
}

@media(min-width:1800px) {
    main .services_form {
        margin-top: 45px;
    }
}

.services_form .half,
.services_form .third {
    display: block;
    float: left;
    width: 100%;
}

@media(min-width:1024px) {
    .services_form .third {
        width: 29.28%;
    }

    .services_form .third+.third {
        margin-left: 6.08%;
    }

    .services_form .half {
        width: 45.55%;
    }

    .services_form .half+.half {
        margin-left: 8.9%;
    }


}

.services_form .row+.row,
.services_form label+label,
.services_form .others_address,
.services_form .subtitle+label,
.services_form .subtitle+.row {
    margin-top: 18px;
}

@media(min-width:1024px) {

    .services_form label+label,
    .services_form .others_address {
        margin-top: 0px;
    }

    .services_form .row+.row {
        margin-top: 26px;
    }
}

.services_form .title {
    display: block;
    float: left;
    position: relative;
    border-bottom: 2px dotted #334A65;
    font-size: 20px;
    font-family: 'Lato-Regular';
    color: #0092BE;
    font-weight: normal;
    line-height: 24px;
    margin-top: 40px;
    margin-bottom: 15px;
    text-align: left;
    padding-bottom: 11px;
    padding-left: 60px;
    width: 100%;
}

@media(min-width:1024px) {
    .services_form .title {
        font-size: 24px;
        padding-bottom: 15px;
    }
}

.title:before {
    content: '';
    display: block;
    position: absolute;
    background-image: url(../_img/sprite-step-5.png);
    background-repeat: no-repeat;
}

.title.contact_data:before {
    background-position: 0px 0px;
    width: 32px;
    height: 32px;
    top: -3px;
    left: 9px;
}

.title.service_data:before {
    background-position: 0px -418px;
    width: 40px;
    height: 38px;
    top: -7px;
    left: 7px;
}

.title.articles_data:before {
    background-position: 0px -459px;
    width: 40px;
    height: 38px;
    top: -7px;
    left: 7px;
}



.services_form label {
    display: block;
    float: left;
    position: relative;
    color: #646464;
    font-family: 'Lato-Bold';
    font-size: 18px;
    line-height: 22px;
    width: 100%;
}

.services_form input,
.services_form select,
.services_form textarea {
    display: block;
    float: left;
    margin-top: 10px;
    border: 1px solid #E7E8EA;
    color: #404141;
    border-radius: 3px;
    background-color: #F4F4F4;
    font-size: 16px;
    line-height: 30px;
    padding: 5px 10px;
    width: 100%;
    height: 40px;
}

.services_form textarea {
    font-size: 17px;
    padding: 15px 20px;
    line-height: 21px;
    resize: vertical;
    min-height: 221px;
}

@media(min-width:1024px) {
    .services_form textarea {
        min-height: 109px;
    }
}

.services_form .left_container,
.services_form .right_container {
    display: block;
    float: left;
    width: 100%;
}

@media(min-width:1024px) {

    .services_form .left_container,
    .services_form .right_container {
        margin-top: 26px;
    }

    .services_form .left_container.radio_options {
        padding-top: 32px;
    }

    .services_form .left_container {
        width: 29.28%;
    }

    .services_form .left_container+.right_container {
        margin-left: 6.08%;
    }

    .services_form .right_container {
        width: 64.64%;
    }
}

.services_form .left_container+.right_container {
    margin-top: 18px;
}

.services_form .radio_options {
    margin: 20px 0px 0px;
}

@media(min-width:1024px) {

    .services_form .radio_options,
    .services_form .left_container+.right_container {
        margin-top: 26px;
    }

}

#itemToSend_container.right_container {
    display: none;
}

.services_form .radio_options.pick_it_up {
    margin: 20px 0px 0px;
}

.radio_options .mobile_half {
    display: block;
    float: left;
    width: 50%;
}

@media(min-width:1024px) {
    .radio_options .mobile_half {
        width: 100%;

    }
}

@media(min-width:1800px) {
    .radio_options .mobile_half {
        width: 50%;

    }
}

.radio_options label {
    font-size: 17px;
    line-height: 33px;
}

.radio_options.pick_it_up label {
    /* margin-top: 20px;*/
    line-height: 22px;
    font-family: 'Lato-Bold';
    font-size: 18px;
}

@media(min-width:600px) {
    .radio_options.pick_it_up label {
        line-height: 37px;
    }
}

@media(min-width:1024px) {
    .radio_options.pick_it_up .subtitle {
        line-height: 40px;
        width: 35%;
    }

    .radio_options.pick_it_up label {
        width: 65%;
    }
}

.radio_options input[type="radio"],
.radio_options input[type="checkbox"] {
    margin-right: -51px;
    width: 51px;
    height: 27px;
}

.radio_options input[type="radio"],
.radio_options input[type="checkbox"] {

    display: block;
    position: relative;
    float: left;
    margin-right: -67px;
    width: 67px;
    height: 35px;
    opacity: 0.01;
    z-index: 1;
}

.radio_options span {
    display: block;
    position: relative;
    float: left;
    margin-right: 10px;
    border: 1px solid #95989A;
    border-radius: 17px;
    width: 62px;
    height: 34px;
    transition: border-color 150ms, background-color 150ms;
}

.radio_options.pick_it_up span {
    margin-top: 3px;
}

.radio_options input:checked+span {
    border-color: #173250;
    background-color: #173250;
}

.radio_options span:before {
    display: block;
    position: absolute;
    top: 2px;
    left: 3px;
    border-radius: 50%;
    background-color: #95989A;
    content: '';
    width: 28px;
    height: 28px;
    transition: left 150ms, background-color 150ms;
}

.radio_options input:checked+span:before {
    left: 30px;
    background-color: #fff;
}

.services_form .date,
.services_form .hour {
    position: relative;
}

.services_form .hour {
    display: none;
}

.services_form .date:before,
.services_form .hour:before {
    content: '';
    display: block;
    position: absolute;
    background-image: url(../_img/sprite-inputs.png);
    background-repeat: no-repeat;
    background-position: 0px 0px;
    width: 23px;
    height: 23px;
    top: 41px;
    left: 11px;
}

.services_form .hour:before {
    height: 26px;
    top: 39px;
    background-position: 0px -24px;

}

.services_form .date input,
.services_form .hour select {
    padding-left: 50px;
}

.services_form .date #datepicker {
    display: none;
    position: absolute;
    top: 80px;
    z-index: 1;
}


.row.elevator span {
    line-height: 40px;
}

.row.elevator label {
    width: 80px;
    margin-left: 10px;
    line-height: 40px;
}

.row.elevator input {
    width: 35px;
    margin-right: 5px;
    margin-top: 0px;
}

.row.elevator label+label {
    margin-top: 0px;
}

.services_form .subtitle {
    display: block;
    float: left;
    font-family: 'Lato-Regular';
    color: #0795BF;
    font-size: 18px;
    margin-top: 18px;
    line-height: 22px;
    text-align: left;
    width: 100%;
}

.others_address .number,
.others_address .floor,
.others_address .door {
    display: block;
    float: left;
    width: 23%;
}

@media(min-width:1024px) {

    .others_address .number,
    .others_address .floor,
    .others_address .door {
        display: block;
        float: left;
        width: 30.16%;
    }
}

.others_address label+label {
    margin-top: 0px;
    margin-left: 15.5%;
}

@media(min-width:1024px) {
    .others_address label+label {
        margin-top: 0px;
        margin-left: 4.76%;
    }
}

.services_form .strong {
    display: block;
    float: left;
    font-size: 18px;
    color: #646464;
    font-family: 'Lato-Bold';
}

.left_container .number_products {
    width: 126px;
}

.row.select_list {
    padding-left: 5px;
    counter-reset: select_list;
}

@media(min-width:1024px) {

    .row.select_list {
        padding-left: 0px;
    }

    .services_form .select_list label+label {
        margin-top: 29px;
    }
}

.select_list label:before {
    display: block;
    float: left;
    margin-right: 20px;
    background-color: #0092BE;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    font-family: 'Lato-Bold';
    font-size: 18px;
    counter-increment: select_list;
    content: counter(select_list);
    line-height: 40px;
    width: 40px;
}

@media(min-width:1024px) {
    .select_list label:before {
        line-height: 45px;
        width: 45px;
        margin-right: 40px;
    }

    .strong.article_type {
        padding-left: 85px;
    }
}

.select_list label select {
    margin-top: 2px;
    width: 80.34%;
    max-width: 309px;
}

.services_form .checkbox_container {
    position: relative;
    margin-top: 15px;
    line-height: 19px;
    font-family: 'Lato-regular';
    padding-left: 26px;
}

.checkbox_container input {
    display: block;
    float: left;
    position: absolute;
    left: 0;
    height: 15px;
    top: 50%;
    margin-top: -7px;
    width: 15px;
}

.row label.message {
    margin-top: 32px;
}

.checkbox_container a {
    color: #0092BE;
}

.services_form a.button {
    border-radius: 100px;
    max-width: 374px;
}

.services_form a.button.inactive {
    color: #e3e3e3;
    background-color: #CCCCCC;
    cursor: default;
}

.third .detail {
    display: block;
    float: left;
    margin-top: 5px;
    color: #646464;
    font-size: 16px;
    line-height: 19px;
    width: 100%;
}

.extratop .row {
    margin-top: 45px;
}

@media(min-width:1024px) {
    .extratop .row {
        margin-top: 70px;
    }
}

main .other-business {
    display: block;
    float: left;
    margin: 0px 0px 30px;
    background-color: #F2F5F8;
    padding: 38px 0px;
    width: 100%;
}

@media(min-width:1024px) {
    main .other-business {
        margin: 25px 0px 50px;
        padding: 38px 0px 56px;
    }
}

.other-business .content {
    max-width: 740px;
}

.other-business h2 {
    display: block;
    float: left;
    color: #173250;
    font-family: 'Lato-Light';
    font-size: 28px;
    font-weight: normal;
    text-align: center;
    line-height: 34px;
    width: 100%;
}

@media (min-width: 1024px) {
    .other-business h2 {
        font-size: 40px;
        line-height: 48px;
    }
}

.other-business p {
    display: block;
    float: left;
    margin-top: 20px;
    color: #444;
    font-size: 18px;
    text-align: center;
    line-height: 22px;
    width: 100%;
}

.other-business ul {
    display: flex;
    float: left;
    margin-top: 20px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

@media (min-width: 1024px) {
    .other-business ul {
        justify-content: space-between;
    }
}

.other-business ul li {
    display: block;
}

.other-business ul li img {
    display: block;
    width: 100%;
}

main .contact-section {
    display: block;
    float: left;
    margin-top: 50px;
    width: 100%;
}

.contact-section h2 {
    display: block;
    float: left;
    color: #173250;
    font-family: 'Lato-Light';
    font-size: 28px;
    font-weight: normal;
    text-align: center;
    line-height: 34px;
    width: 100%;
}

@media (min-width: 1024px) {
    .contact-section h2 {
        font-size: 40px;
        line-height: 48px;
    }
}

.contact-section .content {
    max-width: 1240px;
}

.contact-section .content+.content {
    max-width: 1120px;
}

.contact-section .content > p {
    display: block;
    float: left;
    margin-top: 30px;
    color: #434343;
    font-size: 20px;
    text-align: center;
    line-height: 26px;
    width: 100%;
}