/*
Theme Name: Tema JYC
Theme URL:
Description: Diseño JYC para Wordpress
Author: Oscar Granados
Author
Template: twentyseventeen
Version: 1.0.0
Text jyc
*/

html {
    scroll-behavior: smooth;
    margin: 0 !important;
}

.grecaptcha-badge {
    display: none;
}

#wpadminbar {
    display: none;
}

body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

p {
    color: #5c5b59;
    font-size: 14px;
    font-family: 'Archivo', sans-serif;
}

.container-jyc-big {
    width: 100%;
    max-width: 1500px;
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto;
    margin-left: auto;
}

.container-jyc-normal {
    width: 100%;
    max-width: 1500px;
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto !important;
    margin-left: auto !important;
}

.container-jyc-small {
    width: 100%;
    max-width: 1000px;
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto !important;
    margin-left: auto !important;
}

.background-banner {
    background-position: top center !important;
}

/* Header */

#header-jyc {
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

#header-jyc .menu-icon {
    display: none;
}

#header-jyc.active {
    background-color: #fff;
    box-shadow: 0px 16px 80px 0px rgba(0, 29, 58, 0.1);
}

#header-jyc #site-navigation {
    padding-top: 24px;
    padding-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header-jyc #site-navigation .custom-logo-link {
    width: 185px;
    height: auto;
}


#header-jyc #site-navigation .custom-logo-link img {
    width: 100%;
    height: auto;
}

#header-jyc #site-navigation .menu-container {
    width: calc(100% - 185px - 185px);
    display: flex;
    justify-content: center;
    align-items: center;
}

#header-jyc #site-navigation .menu-container ul {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
}

#header-jyc #site-navigation .menu-container ul li a {
    padding: 14px 20px 10px 20px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: 0.08em;
    text-align: left;
    border-top: 2px solid transparent;
    color: #666666;
}

#header-jyc #site-navigation .menu-container ul li.current-menu-item a {
    border-color: #068F61;
    color: #068F61;
    font-weight: 600;
}

#header-jyc .header-button {
    width: 185px;
}

#header-jyc .header-button a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    background-color: #8F0634;
    color: #fff;
    text-transform: uppercase;
    border-style: none;
    width: 168px;
    height: 46px;
    border-radius: 4px;
}

@media screen and (max-width: 1024px) {

    #header-jyc #site-navigation {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    #header-jyc #site-navigation .custom-logo-link {
        width: 150px;
    }

    #header-jyc #site-navigation .menu-container {
        width: 100vw;
        height: 100vh;
        position: fixed;
        top: 0;
        left: -200vw;
        background-color: #fff;

        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

    #header-jyc #site-navigation .menu-container.active {
        left: 0;
    }

    #header-jyc #site-navigation .menu-container ul {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #header-jyc .header-button {
        display: none;
    }

    #header-jyc .menu-icon {
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        width: 25px;
        height: 15px;

    }

    #header-jyc .menu-icon span {
        display: inline-block;
        width: 100%;
        height: 2px;
        background-color: #8F0634;

        -webkit-transition: 0.3s;
        transition: 0.3s;
    }


    #header-jyc .menu-icon.active span:nth-child(1) {
        transform: translate(0, 11px) rotate(-45deg);
    }

    #header-jyc .menu-icon.active span:nth-child(2) {
        opacity: 0;
    }

    #header-jyc .menu-icon.active span:nth-child(3) {
        transform: translate(0, -2px) rotate(45deg);
    }
}


p, ul, ol, li {
    font-family: 'Poppins';
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.02em;
    text-align: left;
    color: #8F8F8F;
    margin: 0;
}

ul, ol {
    margin-left: 15px;
}

b, strong {
    font-weight: 600;
}
h1,h2,h3,h4,h5 {
    font-family: 'Gloock';
    color: #068F61;
    padding: 0;
}

h1 {
    font-size: 58px;
    font-weight: 400;
    line-height: 120%;
    text-align: left;
}

h2 {
    font-size: 48px;
    font-weight: 400;
    line-height: 120%;
    text-align: left;
}

h3 {
    font-family: 'Poppins';
    font-size: 18px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0.08em;
    color: #666666;
    margin: 0;
}

@media screen and (max-width: 1024px) {
    h1 {
        font-size: 45px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-family: 'Poppins';
        font-size: 16px;
    }
}

footer {
    width: 100%;
    background: rgba(6, 143, 97, 1);
    padding: 20px 12px;
    margin: 0 !important;
}

footer .container-jyc-normal {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .container-jyc-normal  .copyright-content {
    display: flex;
    align-items: center;
}

footer .container-jyc-normal  .copyright-content img {
    width: 28px;
    height: auto;
    margin-right: 20px;
}

footer .container-jyc-normal  .copyright-content p {
    margin: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: 0em;
    text-align: left;
}

footer .container-jyc-normal  .copyright-content p a {
    color: #fff;
    text-decoration: underline;
}

footer .container-jyc-normal .links-icons img {
    width: 40px;
    height: auto;
}

@media screen and (max-width: 850px){
    footer .container-jyc-normal {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    footer .container-jyc-normal  .copyright-content {
        margin-bottom: 15px;
        justify-content: center;
        align-items: center;
    }
}

/* Override Elements Elementor */

.elementor-widget-n-accordion .e-n-accordion-item {
    border: none;
    border-top: 12px solid #666666;
    background: #FAFAFA;
    box-shadow: 0px 24px 32px 0px #12332833;
    border-radius: 8px;
    padding: 20px;
}

.elementor-widget-n-accordion .e-n-accordion-item-title {
    border: none !important;
    font-family: 'Poppins';
    font-size: 20px;
    justify-content: space-between !important;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: 0.08em;
    text-align: left;
    text-transform: uppercase;
    color: #666666 !important;
    padding-bottom: 15px;
}

.elementor-widget-n-accordion .e-n-accordion-item div[data-element_type="container"] {
    border: none !important;
    border-top: 2px solid #666666 !important;
    padding-top: 25px;
}

.elementor-widget-n-accordion .e-n-accordion-item div[data-element_type="container"] ul,
.elementor-widget-n-accordion .e-n-accordion-item div[data-element_type="container"] ol {
    margin-left: 40px;
    margin-top: 10px;
}

@media screen and (max-width: 1024px){
    .elementor-widget-n-accordion .e-n-accordion-item {
        padding: 10px;
    }
}

/* Owl Carousel */

.owce-carousel .owl-subtitle {
    font-family: 'Poppins';
}

.owl-carousel .owl-stage-outer {
    padding: 0;
}

.owce-carousel-basic .item {
    padding: 0 15px !important;
}

.owl-carousel.owl-drag .owl-item .item {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
}

.owce-carousel-testimonial.owl-drag .owl-item .item .owl-content {
    order: 0;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.04em;
    color: #919191;
    text-align: center;

}

.owce-carousel-testimonial.owce-carousel .owl-subtitle {
    font-size: 23px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0.16em;
    text-align: center;
}

.owl-carousel .owl-item .item .owl-content {
    order: 0;
    font-family: 'Poppins';
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    font-style: normal;
    text-align: center;
    padding: 0 !important;
}

.owl-carousel.owl-drag .owl-item .item .owl-content {
    order: 1;
}

.owl-carousel.owl-drag .owl-item .item .owl-title {
    order: 2;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.04em;
    text-align: center;

}

/* Form */

.wpcf7 label {
    color: #fff;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 1px;
    font-style: 15px;
}

.wpcf7 form  {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.wpcf7 form p {
    width: 100%;
    margin-bottom: 8px;
}
.wpcf7 form p:nth-child(3),
.wpcf7 form p:nth-child(4) {
    flex-basis: calc(50% - 10px);
    width: calc(50% - 10px);
}

@media screen and (max-width: 768px){
    .wpcf7 form p:nth-child(3),
    .wpcf7 form p:nth-child(4) {
        flex-basis: 100%;
        width: 100%;
    }
}

