:root{
    --main: #21B14B;
    --title: #798B80;
    --text: #809A8A;
    --text2: #9D9FAB;
    --strong: #082614;
    --white: #fff;
    --black: #000;
    --green: #8BC63E;
    --line: #E6E7E9;
    --line2: #D6D6D6;
    --footer1: #21B14B;
    --footer2: #0D9D37;
    --footer-design: #008923;
    --roboto: "Roboto", sans-serif;
    --int: "Inter", sans-serif
    --mont: "Montserrat", sans-serif;
}

body{
    font-family: var(--roboto);
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
}

.tupp{
    text-transform: uppercase;
}

.tlc{
    text-transform: lowercase;
}

html::-webkit-scrollbar{
    width: 10px;
}

html::-webkit-scrollbar-track{
    background: #f2F2F2;
}

html::-webkit-scrollbar-thumb{
    background: var(--footer2);
    border-radius: 15px;
}

a{
    text-decoration: none;
    color: #000;
}

.sectitle{
    font-family: sans-serif;
    color: transparent;
    -webkit-text-stroke: 1px var(--title);
    font-size: 42px;
    font-weight: 400;
    line-height: 49px;
}

.sectitle strong{
    font-family: var(--roboto);
    -webkit-text-stroke: 0 transparent;
    color: var(--green);
    font-size: 36px;
    font-weight: 900;
    line-height: 42px;
}

.text{
    color: var(--text);
}

.text strong{
    color: var(--strong);
}

.text p:not(:last-child){
    margin-bottom: 1rem;
}

.telp,
.mailp{
    display: block;
}

.dbtn{
    display: flex;
    display: -webkit-flex;
    align-items: center;
    grid-gap: 10px;
    width: fit-content;
    color: var(--white);
    font-weight: 500;
    border-radius: 4px;
    background-color: var(--main);
    padding: 10px 24px;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.dbtn.w{
    color: var(--main);
    background-color: var(--white);
}

.dbtn::after{
    content: url(../../assets/img/btarrow.svg);
    height: 15px;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
    -ms-filter: brightness(0) invert(1);
}

.dbtn.w::after{
    filter: none;
    -webkit-filter: none;
    -ms-filter: none;
}

.dbtn:hover{
    color: var(--white);
}

.dbtn.w:hover{
    color: var(--main);
}

.wpcf7-not-valid-tip{
    position: absolute;
    font-size: 14px;
    bottom: -20px;
}

h1.entry-title{
    text-align: center;
    margin: 30px 0;
}

.ban{
    background: url(../../assets/img/banbg1.svg) no-repeat bottom right,url(../../assets/img/banbg.png) no-repeat center,var(--main);
    background-size: auto, cover;
    background-blend-mode: normal,multiply;
    padding: 5.73rem 0;
}

.ban .title{
    text-transform: uppercase;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    grid-gap: 10px;
    color: var(--white);
    font-size: 36px;
    font-weight: 700;
    line-height: 42px;
}

.ban .title::before{
    content: '';
    display: block;
    display: -webkit-block;
    width: 72px;
    height: 2px;
    border-radius: 15px;
    background: linear-gradient(to right,var(--white) 0,var(--white) 68%,transparent 68%,transparent 77%,var(--white) 77%,var(--white) 100%);
}

.pathbox{
    display: flex;
    display: -webkit-flex;
    align-items: center;
    grid-gap: 1rem 2.46rem;
    border-top: 1px solid #E1E1E1;
    border-bottom: 1px solid #E1E1E1;
    margin-bottom: 20px;
    padding: 8px 0;
}

.pathbox .back{
    display: flex;
    display: -webkit-flex;
    align-items: center;
    grid-gap: 9px;
    color: var(--green);
    font-weight: 500;
    border: none;
    background: none;
}

.pathbox .back::before{
    content: url(../../assets/img/arrowvm.svg);
    transform: rotateZ(90deg);
    -webkit-transform: rotateZ(90deg);
    -moz-transform: rotateZ(90deg);
    -ms-transform: rotateZ(90deg);
    -o-transform: rotateZ(90deg);
}

.pathbox .path{
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    align-items: center;
    grid-gap: 4px;
    border-left: 1px solid #E1E1E1;
    padding: 8px 0 8px 2rem;
}

.pathbox .path *{
    color: #626F7C;
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0.07px;
}

.pathbox .path>*:not(:last-child)::after{
    content: ' /';
}

.pagination{
    display: flex;
    display: -webkit-flex;
    align-items: stretch;
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
    grid-gap: 7px;
}

.pagination>*{
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    min-width: 40px;
    aspect-ratio: 1/1;
    color: #809A8A;
    font-weight: 500;
    border-radius: 4px;
    background-color: var(--white);
}

.pagination>*:not(:first-child):not(:last-child):hover,
.pagination>*:not(:first-child):not(:last-child).active{
    color: var(--main);
}

@media(max-width:992px){
    .ban{
        background-size: auto 80%,cover;
        padding: 2rem 0;
    }
    .pathbox{
        flex-wrap: wrap;
        -ms-flex-wrap: wrap;
    }
}

@media(max-width:768px){
    .pagination{
        justify-content: center;
        -webkit-justify-content: center;
    }
}