body,
html {
    background-color: #fff;
    color: #5b5b5b;
    font-family: "Assistant", sans-serif;
    font-size: 15px;
    font-weight: 300;
    margin: 0px;
    padding: 0px;
}
body {
    height: 100%;
    overflow-x: hidden;
}
body.grey {
    background-color: #f6f5f5;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
img {
    display: block;
}
table {
    border: none;
    border-collapse: collapse;
}
a {
    cursor: pointer;
    text-decoration: none;
    outline: none;
}
p,
form,
input,
ul,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
figure,
hr,
span,
blockquote,
fieldset {
    margin: 0px;
    padding: 0px;
}
ul li {
    list-style-type: none;
    list-style-position: outside;
}
ol li {
    list-style-position: inside;
}
img {
    border: 0px;
}
input,
textarea,
select {
    border-radius: 0px;
    color: #2a363d;
    font-family: "Assistant", sans-serif;
    font-size: 15px;
    font-weight: 400;
    border: none;
    resize: none;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}
@-moz-document url-prefix() {
    body {
        font-weight: lighter !important;
    }
}
strong {
    font-weight: 600;
}
.generalWrap {
    margin: auto;
    max-width: 1280px;
}
.generalWrap.section {
    padding: 140px 0 80px 0;
}

h1 {
    color: #00804b;
    font-family: "PT Sans Narrow", sans-serif;
    font-size: 2.2em;
    text-align: center;
    text-transform: uppercase;
    position: relative;
}
h1 > a.current {
    left: -11px;
    top: -4px;
}
h1 > a.current i {
    font-size: 0.5em;
    color: #fa991b;
}
@media only screen and (max-width: 1370px) {
    .generalWrap {
        margin: 0 28px;
    }
}

/*-------------header--------------*/
header {
    background-color: rgba(255, 255, 255, 0.84);
    height: 90px;
    position: fixed;
    transition: all 0.3s ease;
    width: 100%;
    z-index: 1000;
}
header.change {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 0 60px rgba(40, 40, 40, 0.15);
}
header.white {
    background-color: #fff;
    box-shadow: 0 0 60px rgba(40, 40, 40, 0.15);
}

/*-------------nav--------------*/
nav {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    height: 90px;
}
nav > ul {
    display: grid;
    grid-template-columns: repeat(7, auto);
    justify-content: center;
}
nav ul > li a {
    display: block;
    color: #5b5b5b;
    font-family: "PT Sans Narrow", sans-serif;
    font-size: 1.25em;
    height: 90px;
    line-height: 89px;
    padding: 0 25px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
nav ul > li > a:hover {
    background-color: rgba(255, 255, 255, 0.5);
    color: #00804b;
}
nav ul > li > a.current {
    background-color: rgba(255, 255, 255, 0.8);
    color: #ef9544;
    cursor: default;
}
nav ul > li > a.current span {
    border-bottom: 2px solid #ef9544;
    padding-bottom: 3px;
}
a.logo {
    background-color: #fff !important;
    padding: 0 40px;
}
a.logo img {
    margin-top: 12px;
    width: 114px;
}
nav #closeMenu,
nav #navButton {
    background-color: #fff;
    border-radius: 50%;
    color: #2b2b2b;
    display: none;
    font-size: 1.3em;
    height: 44px;
    line-height: 43px;
    position: absolute;
    right: 12px;
    text-align: center;
    top: 22px;
    width: 44px;
    z-index: 999999;
}

nav > ul > li > a > i {
    position: absolute;
    top: 43%;
    right: 11px;
    font-size: 0.8em;
}

/* Submenu up from mobile screens */

nav > ul > li > ul.submenu {
    display: none;
    position: absolute;
    background-color: #fff;
    width: max-content;
    max-height: 90vh;
    overflow-y: auto;
}
nav > ul > li.btnDropdown:hover > ul.submenu {
    display: block !important;
    transition: all 0.3s ease;
}

nav .icons {
    align-items: center;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: 90px;
}
nav .icons a {
    color: #00804b;
    font-size: 1.3em;
    padding: 12px 10px;
    transition: all 0.3s ease;
    line-height: 65px;
}
nav .icons a:hover {
    color: #ef9544;
}

@media only screen and (max-width: 1115px) {
    nav {
        grid-template-columns: 100%;
        overflow: inherit;
    }
    nav > ul {
        display: none;
        background-color: #fff;
        height: 88.5vh;
        text-align: center;
        right: 0;
        overflow-y: auto;
    }
    nav > ul > li {
        border-top: 1px solid #f4f4f4;
    }
    nav #navButton {
        display: block;
    }
    a.logo {
        width: 200px;
        padding-bottom: 12px;
    }
    nav > ul > li.btnDropdown > ul.submenu.open {
        display: block !important;
        position: relative;
        width: 100%;
        background-color: #fbfbfb;
        transition: all 0.3s ease-in;
    }
}

/*-------------footer--------------*/
footer {
    background-color: #f6f5f5;
    border-bottom: 2px solid #e6e6e6;
}
footer.shadow {
    box-shadow: 0 0 60px rgba(40, 40, 40, 0.15);
}
footer .generalWrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    padding: 34px 28px;
    text-align: center;
}
footer p {
    font-size: 1.18em;
    font-weight: 500;
}
footer p.rrss > a > i,
footer p i {
    color: #00804b;
    margin-right: 10px;
}
footer p.rrss > a i{
    font-size: 1.2em; margin: 0 10px; transition: all .3s;
}
footer p.rrss > a:hover i{
    color: #33a6e8;
}

#info {
    background-color: #f6f5f5;
    font-size: 1.05em;
    font-weight: 400;
    padding: 15px 28px;
    text-align: center;
}
#info a {
    color: #5b5b5b;
    transition: all 0.3s ease;
}
#info a:hover {
    color: #00804b;
}

@media only screen and (max-width: 908px) {
    footer .generalWrap {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
}

/*-------------banner--------------*/
.banner {
    overflow: hidden;
}

#mainSlider {
    opacity: 0;
    position: relative;
    transition: opacity 1s ease;
    visibility: hidden;
}
#mainSlider.slick-initialized {
    visibility: visible;
    opacity: 1;
}
#mainSlider,
#mainSlider .item {
    height: 710px;
}
#mainSlider figure {
    background-size: cover;
    background-position: center center;
    height: 100%;
    left: 0;
    position: relative;
    top: 0;
    width: 100%;
}
#mainSlider .overlay {
    align-items: center;
    background-color: rgba(30, 30, 30, 0.4);
    display: grid;
    height: 100%;
    padding: 80px 0 0 56px;
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    z-index: 100;
}
#mainSlider .overlay h1 {
    border-bottom: 3px solid #ef9544;
    color: #fff;
    display: table;
    font-family: "PT Sans Narrow", sans-serif;
    font-size: 2.4em;
    padding-bottom: 5px;
    text-transform: uppercase;
}
#mainSlider .overlay p {
    color: #fff;
    font-size: 1.25em;
    font-weight: 400;
    line-height: 1.5em;
    margin-top: 10px;
    max-width: 410px;
}
#mainSlider .overlay a {
    background-color: #ef9544;
    border: 2px solid #fff;
    color: #fff;
    display: table;
    font-family: "PT Sans Narrow", sans-serif;
    font-size: 1.2em;
    font-weight: 700;
    margin-top: 20px;
    padding: 8px 42px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
#mainSlider .overlay a:hover {
    background-color: #00804b;
}

@media only screen and (max-width: 920px) {
    #mainSlider .overlay {
        width: 100%;
    }
}

/* Transitions */
#mainSlider .animated {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0 * 100);
    filter: alpha(opacity=0 * 100);
}
#mainSlider .activate {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=1 * 100);
    filter: alpha(opacity=1 * 100);
}

/* Slider */
.slick-slider {
    position: relative;
    display: block;
    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: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after {
    display: table;
    content: "";
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}
.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir="rtl"] .slick-slide {
    float: right;
}
.slick-slide img {
    display: block !important;
}
.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;
}

/* fcc */
.slick-dots {
    bottom: 94px !important;
}
.slick-dots li {
    margin: 0 0 !important;
}
.slick-dots li button:before {
    color: #8b2231 !important;
    font-size: 11px !important;
}
.slick-dots li.slick-active button:before {
    color: #8b2231 !important;
}
.slick-dotted.slick-slider {
    margin-bottom: 0 !important;
}

.slick-next:before,
.slick-prev:before {
    color: rgba(255, 255, 255, 0.95) !important;
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    font-size: 32px !important;
    opacity: 1 !important;
    text-shadow: 0 0 4px rgba(40, 40, 40, 0.6);
}
.slick-prev:before {
    content: "\f053" !important;
}
.slick-next:before {
    content: "\f054" !important;
}
.slick-next,
.slick-prev {
    height: 32px !important;
    width: 32px !important;
    z-index: 10;
}
#mainSlider .slick-next,
#mainSlider .slick-prev {
    margin-top: 45px !important;
}
.slick-prev {
    left: 20px !important;
}
.slick-next {
    right: 20px !important;
}
#productSlide .slick-prev {
    left: -36px !important;
}
#productSlide .slick-next {
    right: -36px !important;
}
@media only screen and (max-width: 560px) {
    .slick-next,
    .slick-prev {
        display: none !important;
    }
}

/*-----------mainText-----------*/
.mainText {
    text-align: justify;
    
}
.mainText h2 {
    color: #52abdc;
    font-size: 2.3em;
    font-weight: 500;
    line-height: 1.3em;
    margin-bottom: 6px;
    text-align: left !important;
}
.mainText h2 + .sideImg,
.mainText h2 + h3 {
    margin-top: 30px;
}
.mainText h2 + .sideImg.imgLeft,
.mainText h2 + .sideImg.imgRight {
    margin-top: 0;
}
.mainText h3 {
    color: #d89949;
    display: table;
    font-size: 1.6em;
    font-weight: 500;
    line-height: 1.45em;
    margin-bottom: 4px;
    text-align: left !important;
}
.mainText p {
    font-size: 1.2em;
    hyphens: auto;
    line-height: calc(1.5em + 0.2vw);
    margin-bottom: 24px;
}
.mainText p:last-of-type {
    margin-bottom: 0;
}
.mainText p:last-of-type + ul,
.mainText p:last-of-type + ol,
.mainText p:last-of-type + .embedContainer,
.mainText p:last-of-type + h3 {
    margin-top: 24px;
}
.mainText p:last-of-type + .sideImg,
.mainText p:last-of-type + h6,
.mainText p + h2,
.mainText .sideImg + h2 {
    margin-top: 46px;
}
.mainText p a {
    color: #005688;
    font-weight: 400;
    text-decoration: underline;
    transition: all 0.3s ease;
}
.mainText p a:hover {
    color: #33a6e8;
}

.mainText ul,
.mainText ol {
    display: flow-root;
    counter-reset: myCounter;
    margin-bottom: 24px;
}
.mainText h2 + ul,
.mainText h2 + ol {
    margin-top: 16px;
}
.mainText h3 + ul,
.mainText h3 + ol {
    margin-top: 12px;
}
.mainText ul:last-of-type,
.mainText ol:last-of-type {
    margin-bottom: 0;
}
.mainText ul:last-of-type + p,
.mainText ol:last-of-type + p {
    margin-top: 24px;
}
.mainText ul:last-of-type + .sideImg,
.mainText ol:last-of-type + .sideImg {
    margin-top: 36px;
}
.mainText ul:last-of-type + h2,
.mainText ol:last-of-type + h2,
.mainText ul:last-of-type + h3,
.mainText ol:last-of-type + h3,
.embedContainer + h2 {
    margin-top: 46px;
}
.mainText ul:last-of-type + .embedContainer,
.mainText ol:last-of-type + .embedContainer {
    margin-top: 24px;
}
.mainText ul > li {
    font-size: 1.15em;
    hyphens: auto;
    line-height: calc(1.5em + 0.2vw);
    padding: 0 0 8px 20px;
}
.mainText ul > li a {
    color: #005688;
    font-weight: 400;
    text-decoration: underline;
    transition: all 0.3s ease;
}
.mainText ul > li a:hover {
    color: #33a6e8;
}
.mainText ul > li p {
    font-size: 1em;
}
.mainText ul > li:before {
    background-color: #f58021;
    content: "";
    height: 8px;
    left: 0;
    position: absolute;
    top: 11px;
    width: 8px;
}
.mainText ol > li {
    counter-increment: myCounter;
    font-size: 1.15em;
    hyphens: auto;
    line-height: calc(1.5em + 0.2vw);
    list-style: none;
    padding: 0 0 10px 32px;
}
.mainText ol > li:before {
    content: counter(myCounter) ".";
    left: 0;
    position: absolute;
    text-align: right;
    top: 0;
    width: 22px;
}
.mainText ol > li a {
    color: #005688;
    font-weight: 400;
    text-decoration: underline;
    transition: all 0.3s ease;
}
.mainText ol > li a:hover {
    color: #33a6e8;
}
.mainText ol > li > ul {
    margin-top: 12px;
}
.mainText ol > li > ul > li {
    font-size: 1em;
}
.mainText .embedContainer {
    margin-bottom: 24px;
    width: 100%;
}
.mainText iframe {
    width: 100%;
}

.sideImg {
    margin: 0 0 24px 0;
    width: 100%;
}
.sideImg.imgLeft,
.sideImg.imgRight {
    border: none;
    width: 48%;
}
.sideImg.imgLeft {
    float: left;
    margin: 6px 24px 24px 0;
}
.sideImg.imgRight {
    float: right;
    margin: 6px 0 24px 24px;
}
.sideImg.imgLeft + p:after,
.sideImg.imgRight + p:after {
    content: "";
    clear: both;
    display: block;
}

.sideImg a {
    display: block;
    z-index: 20;
}
.sideImg:first-child {
    margin: 10px 0 24px 0;
}
.sideImg img {
    border-radius: 20px 0 0 0;
    display: block;
    width: 100%;
}
.sideImg.imgLeft img,
.sideImg.imgRight img {
    left: 0;
    top: 0;
}
.sideImg.imgRight img {
    border-radius: 0 20px 0 0;
}

.mainText h6 {
    border-top: 1px solid #e6e6e6;
    cursor: pointer;
    font-size: 1.5em;
    font-weight: 400;
    line-height: 1.36em;
    padding: 17px 32px 17px 0;
    position: relative;
    text-align: left;
    transition: all 0.3s ease;
}
.mainText h6 a {
    color: #443f3f;
    transition: all 0.3s ease;
}
.mainText h6:hover a {
    color: #52abdc;
    text-decoration: none;
}
.mainText h2 + h6,
.mainText h3 + h6 {
    margin-top: 24px;
}
.mainText h6:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f107";
    color: #52abdc;
    font-size: 1em;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.mainText h6.symbol:before {
    content: "\f106";
    color: #add039;
}
.mainText h6.symbol a {
    color: #52abdc;
}
.mainText blockquote {
    display: none;
    padding: 0 0 24px 0;
}
.mainText .h6line {
    background-color: #e6e6e6;
    display: block;
    height: 1px;
}

.mainText table {
    margin-bottom: 24px;
    width: 100% !important;
}
.mainText table th {
    background-color: #166897;
    color: #fff;
    height: auto !important;
    padding: 9px 12px;
    width: auto !important;
}
.mainText table td {
    border: 1px solid #166897;
    height: auto !important;
    padding: 9px 12px;
    width: auto !important;
}

@media only screen and (max-width: 650px) {
    .mainText {
        text-align: left;
    }
    .mainText p {
        hyphens: initial;
        text-align: left !important;
    }
    .mainText ul > li {
        hyphens: initial;
        text-align: left !important;
    }
    .mainText ol > li {
        hyphens: initial;
        text-align: left !important;
    }
    .sideImg.imgLeft,
    .sideImg.imgRight {
        width: 100%;
    }
    .sideImg.imgLeft {
        float: initial;
        margin: 6px 0 24px 0;
    }
    .sideImg.imgRight {
        float: initial;
        margin: 6px 0 24px 0;
    }
    .mainText h2 + .sideImg.imgLeft,
    .mainText h2 + .sideImg.imgRight {
        margin-top: 30px;
    }
    .mainText table {
        display: grid;
        overflow-x: scroll;
    }
    .mainText h2 {
        font-size: 2em;
    }
}

/*-----------generalForm-----------*/
.generalForm h2 {
    color: #ef9544;
    font-size: 1.8em;
    font-weight: 500;
    margin-bottom: 24px;
}
.generalForm .title {
    display: block;
    font-size: 1.05em;
    font-weight: 400;
    margin-bottom: 9px;
    text-align: left;
}
.generalForm input[type="text"],
.generalForm input[type="date"],
.generalForm input[type="password"],
.generalForm input[type="file"],
.generalForm select,
.generalForm textarea {
    border: 1px solid #6d6f7b;
    border-radius: 8px;
    font-size: 1.05em;
    font-weight: 400;
    margin-bottom: 30px;
    outline: none;
    padding: 14px 18px;
    width: 100%;
}
.generalForm textarea {
    overflow: hidden;
    overflow-y: auto;
}
.generalForm input[type="text"].error,
.generalForm input[type="password"].error,
.generalForm input[type="file"].error,
.generalForm select.error,
.generalForm textarea.error {
    box-shadow: 0 0 0 4px #e67e80;
}

.generalForm input[readonly="readonly"] {
    background-color: #f7f7f7 !important;
    border: 1px solid #c5c5c5 !important;
}
.generalForm select[disabled="disabled"] {
    background-color: #f7f7f7 !important;
    border: 1px solid #c5c5c5 !important;
}

.generalForm select {
    background-color: #fff;
    background-image: url(../img/arrow.png);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 24px;
    margin-bottom: 30px;
    padding: 10px 24px 10px 14px;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.generalForm input[type="text"]:focus,
.generalForm textarea:focus,
.generalForm select:focus {
    border-color: #52abdc;
}

.generalForm input[type="radio"] {
    background-color: transparent;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #1e7547;
    cursor: pointer;
    height: 14px;
    margin-right: 10px;
    outline: none;
    top: 2px;
    width: 14px;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.generalForm input[type="radio"]:hover {
    background-color: #efefef;
}
.generalForm input[type="radio"]:checked {
    background-color: #1e7547;
    border: 3px solid #fff;
    box-shadow: 0 0 0 1px #1e7547;
}

.generalForm input[type="checkbox"] {
    background-color: transparent;
    box-shadow: 0 0 0 1px #1e7547;
    cursor: pointer;
    height: 14px;
    margin-right: 10px;
    top: 2px;
    width: 14px;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.generalForm input[type="checkbox"]:checked {
    background-color: #fa991b;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #fa991b;
}
.generalForm .mChoice {
    color: #6d6f7b;
    cursor: pointer;
    display: block;
    font-size: 1.14em;
    font-weight: 400;
    margin: 6px 0 5px 2px;
}
.generalForm .captcha {
    background-position: right top;
    background-repeat: no-repeat;
    background-size: contain;
}

.generalForm input[type="submit"],
.generalForm button[type="submit"] {
    background-color: #ef9544;
    border-radius: 4px;
    box-shadow: 0 0 0 3px transparent;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 1.1em;
    font-weight: 500;
    outline: none;
    padding: 14px 26px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.generalForm input[type="submit"]:hover,
.generalForm button[type="submit"]:hover {
    background-color: #52abdc;
}

/*-----------misc-----------*/
.msjError,
.msjSuccess {
    font-size: 1em;
    font-weight: 500;
    margin-top: 30px;
    padding: 14px 18px;
    text-align: center;
}
.msjError i,
.msjSuccess i {
    margin-right: 8px;
}
.msjError {
    border: 1px solid #e35d34;
    color: #e35d34;
}
.msjSuccess {
    border: 1px solid #add039;
    color: #add039;
}
.embedContainer {
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}
.embedContainer.map {
    padding-bottom: 26%;
}
.embedContainer iframe,
.embedContainer object,
.embedContainer embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.col50 {
    display: grid;
    grid-gap: 24px;
    grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 1220px) {
    .embedContainer.map {
        padding-bottom: 36%;
    }
}
@media only screen and (max-width: 880px) {
    .embedContainer.map {
        padding-bottom: 46%;
    }
}
@media only screen and (max-width: 560px) {
    .embedContainer.map {
        padding-bottom: 66%;
    }
}
@media only screen and (max-width: 480px) {
    .embedContainer.map {
        padding-bottom: 80%;
    }
    .col50 {
        grid-gap: 0;
        grid-template-columns: repeat(1, 1fr);
    }
}

/*-----------serviceMain-----------*/
#serviceMain {
    background-color: #f6f5f5;
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(3, auto);
    justify-content: center;
}
#serviceMain.v2 {
    background-color: transparent !important;
    margin-top: 100px;
}
#serviceMain a {
    max-width: 280px;
    text-align: center;
    top: -50px;
}
#serviceMain figure {
    background-color: #ef9544;
    background-position: center;
    background-size: cover;
    border-radius: 50%;
    box-shadow: 0 0 0 5px #fff, 0 0 36px rgba(50, 50, 50, 0.3);
    display: table;
    height: 184px;
    margin: auto;
    width: 184px;
}
#serviceMain p {
    color: #5b5b5b;
    font-family: "PT Sans Narrow", sans-serif;
    font-size: 1.6em;
    font-weight: 700;
    margin: 20px 0 6px 0;
    padding: 0 30px;
    text-transform: uppercase;
}

@media only screen and (max-width: 850px) {
    #serviceMain {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 490px) {
    #serviceMain {
        grid-template-columns: repeat(1, 1fr);
        justify-items: center;
    }
}

/*-----------middleBanner-----------*/
.middleBanner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.middleBanner figure {
    background-position: center;
    background-size: cover;
}
.middleBanner .text {
    display: grid;
    justify-content: end;
    padding: 100px 0;
}
.middleBanner.v2 .text {
    justify-content: start;
}
.middleBanner .text:before {
    background-color: #fff;
    content: "";
    height: 100%;
    position: absolute;
    right: -76px;
    width: 77px;
    z-index: 100;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.middleBanner.v2 .text:before {
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
    left: -76px;
    right: 0;
}
.middleBanner .text > div {
    max-width: 490px;
    padding-right: 80px;
}
.middleBanner.v2 .text > div {
    padding-left: 80px;
    padding-right: 0;
}
.middleBanner .text h2 {
    color: #ef9544;
    display: table;
    font-family: "PT Sans Narrow", sans-serif;
    font-size: 2.4em;
    text-transform: uppercase;
}
.middleBanner .text h2.cyan {
    color: #69bfec;
}
.middleBanner .text p {
    font-size: 1.25em;
    font-weight: 400;
    line-height: 1.5em;
    margin-top: 10px;
    max-width: 410px;
}

@media only screen and (max-width: 1028px) {
    .middleBanner {
        grid-template-columns: 1fr;
        position: relative;
    }
    .middleBanner .text {
        background-color: #f2f2f2b0;
        justify-content: center;
        position: absolute;
        text-align: center;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }
    .middleBanner .text h2 {
        display: block;
    }
    .middleBanner .text:before {
        content: none;
    }
    .middleBanner .text > div {
        max-width: none;
        padding-right: 0;
    }
    .middleBanner.v2 .text {
        justify-content: center;
    }
    .middleBanner.v2 .text > div {
        padding-left: 0px;
    }
    .middleBanner figure {
        height: 368px;
        width: 100%;
    }
}
@media only screen and (max-width: 850px) {
    .middleBanner figure {
        height: 234px;
    }
    .middleBanner .text {
        padding: 42px 20px;
        font-size: 0.8em;
    }
}
@media only screen and (max-width: 490px) {
    .middleBanner figure {
        height: 274px;
    }
}

/*-----------plagas-----------*/
#plagues {
    background-color: #f5f4f4;
    background-position: center;
    background-size: cover;
}
#plagues h2 {
    color: #5b5b5b;
    font-family: "PT Sans Narrow", sans-serif;
    font-size: 2.2em;
    padding: 60px 0 0 0;
    text-align: center;
    text-transform: uppercase;
}
#plagues .box {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(6, 1fr);
    margin: auto;
    max-width: 1000px;
    padding: 30px 0 60px 0;
}
#plagues .box a {
    text-align: center;
}
#plagues .box figure {
    background-color: #ef9544;
    background-position: center;
    background-size: cover;
    box-shadow: 0 0 6px rgba(50, 50, 50, 0.3);
    border-radius: 50%;
    display: table;
    height: 102px;
    margin: auto;
    width: 102px;
}
#plagues p {
    color: #5b5b5b;
    font-family: "PT Sans Narrow", sans-serif;
    font-size: 1.3em;
    font-weight: 700;
    margin-top: 16px;
    text-transform: uppercase;
}

@media only screen and (max-width: 1028px) {
    #plagues .box {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 480px) {
    #plagues .box {
        grid-template-columns: repeat(2, 1fr);
    }
}

/*-----------productsMain-----------*/
#productsMain {
    background-attachment: fixed;
    background-color: #ef9544;
    background-position: center;
    background-size: cover;
    padding: 0 0 60px 0;
}
#productsMain h2 {
    color: #fff;
    font-family: "PT Sans Narrow", sans-serif;
    font-size: 2.2em;
    margin-bottom: 32px;
    padding: 60px 0 0 0;
    text-align: center;
    text-transform: uppercase;
}
#productsMain .more {
    border: 2px solid #fff;
    color: #fff;
    display: table;
    font-family: "PT Sans Narrow", sans-serif;
    font-size: 1.1em;
    font-weight: 700;
    margin: 50px auto 0 auto;
    padding: 8px 42px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
#productsMain .more:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

#productSlide {
    margin: auto;
    max-width: 940px;
}
#productSlide .circle {
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(50, 50, 50, 0.3);
    display: grid;
    height: 274px;
    margin: auto;
    width: 274px;
}
#productSlide .circle > div {
    margin: auto;
    padding: 0 50px;
    text-align: center;
}
#productSlide .circle figure {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 110px;
    margin: auto;
    width: 128px;
}
#productSlide .circle .title {
    color: #ef9544;
    font-family: "PT Sans Narrow", sans-serif;
    font-size: 1.15em;
    font-weight: 700;
    text-transform: uppercase;
}
#productSlide .circle .descrip {
    color: #5b5b5b;
    font-size: 1.05em;
    font-weight: 400;
}
/*----------------------- PRODUCTOS ------------------------*/
.gBox {
    display: grid;
    grid-template-columns: 250px 1fr;
}

.navLateral {
    position: relative;
    display: block;
    height: max-content;
    background-color: #f3f3f3;
    border-radius: 9px 9px 0 0;
    box-shadow: 1px 3px 7px -5px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 1px 3px 7px -5px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 1px 3px 7px -5px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}
.navLateral p,
.navLateral a {
    background-color: #fafafa;
    display: block;
    padding: 20px;
    border-bottom: 1px solid #d6d4d4;
    color: #5b5b5b;
}
.navLateral p {
    text-align: center;
    font-weight: 600;
    border-radius: 0 0 9px 9px;
    box-shadow: 0px 3px 7px -5px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 0px 3px 7px -5px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 3px 7px -5px rgba(0, 0, 0, 0.75);
}

.navLateral a {
    border-bottom: 1px solid #e2e2e2;
}

.navLateral a:hover {
    background-color: #fff;
}

/*-----------productsBox-----------*/
.productsBox {
    margin-top: 40px;
}
.productsBox {
    display: grid;
    grid-gap: 70px 0;
    grid-template-columns: repeat(3, 1fr);
}
.productsBox a {
    padding: 0 15px;
    text-align: center;
}
.productsBox a figure {
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 22px rgba(50, 50, 50, 0.1);
    display: grid;
    height: 220px;
    margin: auto;
    width: 220px;
}
.productsBox a figure img {
    margin: auto;
    max-height: 160px;
}

.productsBox a p {
    color: #5b5b5b;
    font-size: 1.05em;
    font-weight: 400;
    margin-top: 2px;
}

.productsBox a .title {
    color: #ef9544;
    font-family: "PT Sans Narrow", sans-serif;
    font-size: 1.4em;
    font-weight: 700;
    margin-top: 12px;
}

.insideBanner {
    background-position: center;
    background-size: cover;
    height: 600px;
    left: 0;
    position: absolute;
    top: 90px;
    width: 100%;
}

/* ----------- productDetail -----------*/
.productDetail {
    border-bottom: 1px solid #e6e6e6;
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 60% auto;
    margin: auto;
    max-width: 840px;
    padding-bottom: 20px;
}
.productDetail .title {
    border-bottom: 1px solid #e6e6e6;
    grid-column: span 2;
    padding-bottom: 18px;
}
.productDetail .title h1 {
    letter-spacing: 1px;
    text-align: left;
}
.productDetail .title p {
    font-size: 1.5em;
    font-weight: 500;
}
.productDetail .text {
    font-weight: 400;
    font-size: 1.15em;
    line-height: 1.5em;
}
.productDetail .text .download {
    border: 1px solid #00804b;
	outline: none;
    color: #00804b;
    display: inline-block;
    font-weight: 500;
    margin-top: 20px;
    padding: 6px 14px 7px 14px;
    transition: all 0.3s ease;
    margin-right: 17px;
}

.productDetail .text .download:focus {
    outline: none;
}

.productDetail .text .download:hover {
    background-color: #00804b;
    color: #fff;
}
.productDetail .text .download i {
    margin-right: 8px;
}
.productDetail .text p {
    margin-bottom: 15px;
}
.productDetail .text h3 {
    line-height: 1.5;
}
.productDetail .img img {
    margin: auto;
    max-width: 200px;
    width: 100%;
}

.productDetail .text ul {
    position: relative;
    padding-left: 15px;
    text-align: left !important;
}
.productDetail .text ul > li:before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #f58021;
    left: -12px;
    top: 11px;
}

#slideProduct {
    max-width: 265px;
    overflow: hidden;
    margin: 0 auto;
    height: max-content;
}

#slideProduct img {
    margin: 0 auto;
}
#slideProduct .slick-next,
#slideProduct .slick-prev {
    transform: translateY(-50%);
}

@media only screen and (max-width: 1115px) {
    .productDetail {
        grid-template-columns: 100%;
    }
    .productDetail.v2 {
        margin: auto 28px;
    }
    .productDetail .title {
        grid-column: span 1;
    }
    #slideProduct {
        max-width: 175px;
        grid-row: 1;
    }
}

/*-----------Productos Categorias-----------*/

.productsBox {
    margin-top: 40px;
}
.productsBox {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 16px;
    justify-content: center;
}
.productsBox a.box1,
.productsBox a.box2 {
    padding: 26px;
    text-align: center;
}

.productsBox a figure {
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 5px #fff, 0 0 36px rgba(50, 50, 50, 0.3);
    height: 200px;
    width: 200px;
    background-position: center;
    background-size: cover;
    margin: auto;
}
.productsBox a:hover figure {
    box-shadow: 0 0 0 5px #fff, 0 0 36px rgba(50, 50, 50, 0.3);
}

.productsBox a p {
    color: #5b5b5b;
    font-size: 1.05em;
    font-weight: 400;
    margin-top: 2px;
}

.productsBox a .title {
    color: #ef9544;
    font-family: "PT Sans Narrow", sans-serif;
    font-size: 1.4em;
    font-weight: 700;
    margin-top: 12px;
    text-align: center;
}

a.border1 figure {
    box-shadow: 0 0 0 5px #ef9544, 0 0 36px rgba(50, 50, 50, 0.3) !important;
}
a.border2 figure {
    box-shadow: 0 0 0 5px #00804b, 0 0 36px rgba(50, 50, 50, 0.3) !important;
}
a.border3 figure {
    box-shadow: 0 0 0 5px #69bfec, 0 0 36px rgba(50, 50, 50, 0.3) !important;
}

@media only screen and (max-width: 890px) {
    .productsBox {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media only screen and (max-width: 600px) {
    .productsBox {
        grid-template-columns: repeat(1, 1fr);
    }
}
/* ----------- Paginator -----------*/
.paginatorPage {
    margin: 40px 0 0 4px;
    text-align: center;
}
.paginatorPage li {
    display: inline;
}
.paginatorPage a {
    background-color: #fff;
    color: #515151;
    display: inline-block;
    font-size: 1em;
    height: 30px;
    line-height: 30px;
    margin-bottom: 12px;
    margin-left: -4px;
    text-align: center;
    transition: all 0.3s ease;
    width: 34px;
}

.paginatorPage span {
    background-color: #fff;
    color: #515151;
    display: inline-block;
    font-size: 1em;
    height: 30px;
    line-height: 30px;
    margin-bottom: 12px;
    margin-left: -4px;
    text-align: center;
    transition: all 0.3s ease;
    width: 34px;
}

.paginatorPage a:hover {
    background-color: #5b5b5b;
    color: #fff;
}
.paginatorPage .active span {
    background-color: #00804b;
    color: #fff;
    text-shadow: 0 0 24px rgba(45, 45, 45, 0.8);
}
@media only screen and (max-width: 700px) {
    .paginatorPage {
        margin: 24px 0 0 4px;
    }
}

/*-----------Servicios-----------*/

.servicesBox {
    margin-top: 40px;
}
.servicesBox {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 16px;
    justify-content: center;
}
.servicesBox a.box1,
.servicesBox a.box2 {
    padding: 26px;
    text-align: center;
}

.servicesBox a figure {
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 5px #fff, 0 0 36px rgba(50, 50, 50, 0.3);
    height: 200px;
    width: 200px;
    background-position: center;
    background-size: cover;
    margin: auto;
}
.servicesBox a:hover figure {
    box-shadow: 0 0 0 5px #fff, 0 0 36px rgba(50, 50, 50, 0.3);
}

.servicesBox a p {
    color: #5b5b5b;
    font-size: 1.05em;
    font-weight: 400;
    margin-top: 2px;
}

.servicesBox a .title {
    color: #ef9544;
    font-family: "PT Sans Narrow", sans-serif;
    font-size: 1.4em;
    font-weight: 700;
    margin-top: 12px;
    text-align: center;
}

a.border1 figure {
    box-shadow: 0 0 0 5px #ef9544, 0 0 36px rgba(50, 50, 50, 0.3) !important;
}
a.border2 figure {
    box-shadow: 0 0 0 5px #00804b, 0 0 36px rgba(50, 50, 50, 0.3) !important;
}
a.border3 figure {
    box-shadow: 0 0 0 5px #69bfec, 0 0 36px rgba(50, 50, 50, 0.3) !important;
}

@media only screen and (max-width: 890px) {
    .servicesBox {
        grid-template-columns: repeat(1, 1fr);
    }
    .servicesBox a figure {
        height: 150px;
        width: 150px;
    }
}

/* ----------- serviceDetail -----------*/
.serviceDetail {
    display: grid;
    /* grid-gap: 20px;
	grid-template-columns: 60% auto; */
    margin: auto;
    max-width: 840px;
    padding-bottom: 20px;
}
.serviceDetail .title {
    border-bottom: 1px solid #e6e6e6;
    grid-column: span 2;
    padding-bottom: 18px;
}
.serviceDetail .title h1 {
    letter-spacing: 1px;
    text-align: left;
}
.serviceDetail .title p {
    font-size: 1.5em;
    font-weight: 500;
}
.serviceDetail .text {
    font-weight: 400;
    font-size: 1.15em;
    line-height: 1.5em;
}
.serviceDetail .download {
    border: 1px solid #00804b;
    color: #00804b;
    display: inline-block;
    font-weight: 500;
    margin-top: 20px;
    padding: 6px 14px 7px 14px;
    transition: all 0.3s ease;
    margin-right: 17px;
}
.serviceDetail .download:hover {
    background-color: #00804b;
    color: #fff;
}
.serviceDetail .download i {
    margin-right: 8px;
}
.serviceDetail .text p {
    margin-bottom: 15px;
}
.serviceDetail .text h3 {
    line-height: 1.5;
}
.serviceDetail .img img {
    margin: auto;
    max-width: 200px;
    width: 100%;
}

.serviceDetail .text ul {
    position: relative;
    padding-left: 15px;
}
.serviceDetail .text ul > li:before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #f58021;
    left: -12px;
    top: 11px;
}

#slideService {
    max-width: 265px;
    overflow: hidden;
    margin: 0 auto;
    height: max-content;
    border-radius: 50%;
    position: absolute;
    right: 0;
}

#slideService img {
    margin: 0 auto;
}
#slideService .slick-next,
#slideService .slick-prev {
    transform: translateY(-50%);
}

@media only screen and (max-width: 890px) {
    .serviceDetail,
    .productDetail {
        text-align: justify;
    }
}

#modalForm .download {
    border: 1px solid #00804b;
    color: #00804b;
    display: inline-block;
    font-weight: 500;
    margin-top: 20px;
    padding: 6px 14px 7px 14px;
    transition: all 0.3s ease;
    margin-right: 17px;
}
#modalForm .download:hover {
    background-color: #00804b;
    color: #fff;
}

/*----------- CONTACTO ----------*/
.contact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-shadow: 1px 1px 9px -2px rgba(170, 170, 170, 0.5);
    box-shadow: 1px 1px 9px -2px rgba(170, 170, 170, 0.5);
}
.imgContact .data {
    display: grid;
    /* grid-template-columns: repeat(2, 2fr); */
    gap: 20px;
    text-align: center;
    font-size: 1.2em;
    color: #fff;
    padding-top: 20px;
}
.imgContact .data p.rrss a {color: #fff; font-size: 1.2em; margin: 0 10px; transition: all .3s;}
.imgContact .data p.rrss a:hover {color: #f0a210;}
.imgContact {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 106px 20px;
    position: relative;
}
.imgContact:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.514);
}

@media only screen and (max-width: 890px) {
    .contact {
        grid-template-columns: repeat(1, 1fr);
    }
    .imgContact {
        height: 260px;
        padding: 21px 20px;
    }
}

@media only screen and (max-width: 600px) {
    .imgContact {
        height: 340px;
        padding: 10px 20px;
    }
}

form {
    position: relative;
    padding: 10px 35px;
    background-color: #fffdfda8;
}

form label {
    display: block;
    line-height: 1.5;
    font-size: 1em;
    font-family: "Assistant", sans-serif;
}

form input,
textarea {
    margin-bottom: 8px;
    width: 100%;
    position: relative;
    padding: 6px 5px;
    border-radius: 4px;
    border: 1px solid #dedede;
    box-shadow: 0px 1px 8px -6px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 0px 1px 8px -6px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 1px 8px -6px rgba(0, 0, 0, 0.75);
}

form input:focus,
textarea:focus,
form input:focus-within,
textarea:focus-within,
form input:focus-visible,
textarea:focus-visible {
    border: dashed 1px #fa991b;
    border-radius: 4px;
    outline: unset;
}

.bgCode {
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
}
.btnContact {
    background-color: #00804b;
    color: #fff;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1.2em;
}

p.txt {
    color: #505050;
    padding: 5px;
    background-color: #7fff7f;
}

/* -----------Nosotros / article ------------- */
.generalWrap.article {
    max-width: 960px;
    padding: 140px 0 80px 0;
    margin: 0 auto;
}
.article .mainText h1 {
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-align: left;
}
.article .mainText img {
    width: 300px;
    margin: 15px 0;
}
.article .mainText img.imgR {
    float: right;
    margin-left: 20px;
}
.article .mainText img.imgL {
    float: left;
    margin-right: 20px;
}
.article .mainText img.img100 {
    width: 100% !important;
}

.article .mainText .docBox {
    display: inline-grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    position: relative;
    width: 100%;
}
.article .mainText .docBox a {
    display: block;
    padding: 10px 7px;
    border: 1px solid #00804b;
    text-align: center;
    color: #00804b;
    transition: all 0.4s ease;
}
.article .mainText .docBox a:hover {
    color: #fdfdfd;
    background-color: #00804b;
}
.article .mainText .docBox a > i {
    margin-right: 5px;
}
.docBox p.title {
    grid-column-start: 1;
    grid-column-end: 5;
    font-weight: 600 !important;
    font-size: 1.2em;
    line-height: 1.3em;
    border-bottom: 1px solid #8d8b8b;
}

#generalSlider {
    margin-bottom: 25px;
    max-height: 360px;
    overflow: hidden;
}

@media only screen and (max-width: 500px) {
    .article .mainText .docBox {
        grid-template-columns: repeat(2, 1fr);
    }
    .docBox p.title {
        grid-column-end: 3;
    }
}

/*-----------plagueBox-----------*/
.subTitle {
    display: block;
    text-align: center !important;
    font-size: 1.5em;
    font-weight: 500;
}
.plagueBox {
    margin-top: 40px;
}
.plagueBox {
    display: grid;
    grid-gap: 70px 0;
    grid-template-columns: repeat(3, 1fr);
}
.plagueBox a {
    padding: 0 15px;
    text-align: center;
}
.plagueBox a figure {
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 22px rgba(50, 50, 50, 0.1);
    display: grid;
    height: 220px;
    margin: auto;
    width: 220px;
    overflow: hidden;
}
.plagueBox a figure img {
    margin: auto;
    width: 100%;
}

.plagueBox a p {
    color: #5b5b5b;
    font-size: 1.05em;
    font-weight: 400;
    margin-top: 2px;
}

.plagueBox a .title {
    color: #ef9544;
    font-family: "PT Sans Narrow", sans-serif;
    font-size: 1.4em;
    font-weight: 700;
    margin-top: 12px;
}

#generalSlider.v2 {
    width: 100%;
    padding-top: 90px;
    max-height: 440px;
    overflow: hidden;
}

#slidePlaga, .detailPlaga {
    max-width: 265px;
    min-width: 265px;
    overflow: hidden;
    margin: 0 auto;
    height: 265px;
    border-radius: 50%;
    right: 0;
    top: -109px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
}
.detailPlaga {
    background-position: center;
background-repeat: no-repeat;
background-size: cover;
}

#slidePlaga img {
    margin: 0 auto;
}
#slidePlaga .slick-next,
#slidePlaga .slick-prev {
    transform: translateY(-50%);
}

@media only screen and (max-width: 1115px) {
    #slidePlaga {
        top: 0;
        grid-row: 1;
    }
}

@media only screen and (max-width: 890px) {
    .plagueBox {
        grid-template-columns: repeat(2, 1fr);
    }
    .plagueBox a figure {
        height: 190px;
        width: 190px;
    }
}

@media only screen and (max-width: 600px) {
    .plagueBox {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* ----------- Magnific -----------*/
.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200000;
    overflow: hidden;
    position: fixed;
    background-color: #45565c;
    opacity: 0.66;
    filter: alpha(opacity=66);
}
.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200002;
    position: fixed;
    outline: none !important;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
}
.mfp-container:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}
.mfp-align-top .mfp-container:before {
    display: none;
}
.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}
.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}
.mfp-ajax-cur {
    cursor: progress;
}
.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}
.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}
.mfp-auto-cursor .mfp-content {
    cursor: auto;
}
.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.mfp-loading.mfp-figure {
    display: none;
}
.mfp-hide {
    display: none !important;
}
.mfp-preloader {
    color: #ccc;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}
.mfp-preloader a {
    color: #ccc;
}
.mfp-preloader a:hover {
    color: #fff;
}
.mfp-s-ready .mfp-preloader {
    display: none;
}
.mfp-s-error .mfp-content {
    display: none;
}
button.mfp-close,
button.mfp-arrow {
    background-color: transparent;
    overflow: visible;
    cursor: pointer;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    -webkit-box-shadow: none;
    box-shadow: none;
}
#modalBox2 button.mfp-close {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 0 0 0 14px;
}
button::-moz-focus-inner {
    padding: 0;
    border: 0;
}
.mfp-close {
    cursor: pointer;
    font-size: 13px;
    height: 34px;
    line-height: 33px !important;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    width: 34px;
}
.mfp-close:hover,
.mfp-close:focus {
    opacity: 1;
    filter: alpha(opacity=100);
}
.mfp-close-btn-in .mfp-close {
    color: #a8b1b6;
}
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #fff;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
    width: 100%;
}
.mfp-counter {
    color: #334b98;
    font-size: 12px;
    position: absolute;
    top: 7px;
    right: 10px;
    line-height: 18px;
    white-space: nowrap;
}
.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    filter: alpha(opacity=65);
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent;
}
.mfp-arrow:active {
    margin-top: -54px;
}
.mfp-arrow:hover,
.mfp-arrow:focus {
    opacity: 1;
    filter: alpha(opacity=100);
}
.mfp-arrow:before,
.mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
}
.mfp-arrow:after,
.mfp-arrow .mfp-a {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
}
.mfp-arrow:before,
.mfp-arrow .mfp-b {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7;
}
.mfp-arrow-left {
    left: 0;
}
.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
    border-right: 17px solid #fff;
    margin-left: 31px;
}
.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
    margin-left: 25px;
    border-right: 27px solid #3f3f3f;
}
.mfp-arrow-right {
    right: 0;
}
.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
    border-left: 17px solid #fff;
    margin-left: 39px;
}
.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
    border-left: 27px solid #3f3f3f;
}
.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
    top: -40px;
}
.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000;
}
/* Main image in popup */
img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    padding: 40px 0 40px;
    margin: 0 auto;
}
/* The shadow behind the image */
.mfp-figure {
    line-height: 0;
}
.mfp-figure:after {
    content: "";
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 14px rgba(41, 41, 41, 0.4);
    background: #444;
}
.mfp-figure small {
    color: #bdbdbd;
    display: block;
    font-size: 12px;
    line-height: 14px;
}
.mfp-figure figure {
    margin: 0;
}
.mfp-bottom-bar {
    margin-top: -40px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}
.mfp-title {
    background-color: #fff;
    box-shadow: 0 0 14px rgba(41, 41, 41, 0.4);
    color: #303030;
    font-size: 13px;
    font-weight: 400;
    min-height: 34px;
    text-align: left;
    line-height: 18px;
    word-wrap: break-word;
    padding: 8px 36px 10px 14px;
}
.mfp-image-holder .mfp-content {
    max-width: 100%;
}
.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape),
    screen and (max-height: 300px) {
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }
    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }
    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }
    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }
    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
    }
    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0;
    }
    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }
    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}
@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
    }
    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0;
    }
    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%;
    }
    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}

/*--------------------------- buscador ---------------------------------*/
#modal,
#modalForm {
    background: #fff;
    box-shadow: 0 0 20px rgba(64, 64, 64, 0.45);
    margin: 26px auto;
    max-width: 500px;
    padding: 24px 28px 26px;
    position: relative;
}
#modalForm {
    max-width: 680px;
}

#modal:focus,
.modalForm:focus {
    outline: none;
}
#modal h1,
#modalForm h2,
.helpBox h1 {
    color: #00804b;
    font-size: 1.5em;
    margin-bottom: 10px;
    text-align: center;
}
#modalForm span {
    display: block;
    font-size: 1.25em;
    font-weight: 500;
    color: #ff8040;
    text-align: center;
}

#modal p,
#modalForm p {
    margin-top: 4px;
    font-weight: 400;
}
#modal form {
    padding: 10px;
}
#modalForm form {
    margin-top: 16px;
}
#modalForm label {
    display: block;
    margin-bottom: 6px;
}
#modal input[type="text"],
#modal textarea,
#modalForm input[type="text"],
#modalForm textarea {
    border: 1px solid #dedede;
    border-radius: 4px;
    color: #2a363d;
    font-size: 0.9em;
    margin: 0 0 18px 0;
    padding: 8px 10px 8px 10px;
    width: 100%;
    transition: all 0.5s ease-in-out;
}
#modal input[type="text"]:focus,
#modal textarea:focus,
#modalForm input[type="text"]:focus,
#modalForm textarea:focus {
    border-color: #52abdc;
}

#modalForm input[type="text"].error,
#modalForm input[type="password"].error,
#modalForm input[type="file"].error,
#modalForm select.error,
#modalForm textarea.error {
    box-shadow: 0px 0px 4px 0px rgba(230, 54, 54, 0.75);
}

#modal.mSearch input[type="text"] {
    width: 85%;
}
#modal .btnSearch,
#modalForm a {
    display: inline-block;
    background-color: #00804b;
    color: #fff;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1.2em;
    padding: 6px 20px 7px 20px;
    border: none;
}
#modalForm label.numCant {
    max-width: 50%;
}
/* Resultados de búsqueda */
.searchBox {
    display: grid;
    grid-template-columns: 90% 1fr;
    gap: 10px;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.searchBox input {
    display: inline-block;
    border: 1px solid #dedede;
    border-radius: 4px;
    color: #2a363d;
    font-size: 0.9em;
    padding: 8px 10px 8px 10px;
    width: 100%;
    transition: all 0.5s ease-in-out;
}

.searchBox .btnSearch {
    display: inline-block;
    background-color: #00804b;
    color: #fff;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1.2em;
    padding: 6px 20px 7px 20px;
    border: none;
}

.results {
    position: relative;
    padding: 20px 0px;
}

.results > p {
    font-size: 1.2em;
    padding-bottom: 10px;
}
.results > p > span {
    color: #2b2b2b;
}

.results a {
    background-color: #fff;
    display: block;
    border-radius: 4px;
    padding: 10px 18px;
    color: #2a363d;
    line-height: 1.3;
    margin-bottom: 20px;
    box-shadow: 0 0 60px rgba(40, 40, 40, 0.15);
}

.results a > h3 {
    color: #ef9544;
}
.results a:hover {
    color: #ef9544;
}
