:root{
    --main: #00ABE7;
    --title: #00ABE7;
    --title2: #3C3C3B;
    --title3: #615E68;
    --text: #9398A8;
    --dblue: #034991;
    --white: #fff;
    --black: #000;
    --line: #E6E7E9;
    --footer1: #006FB9;
    --footer2: #005BA5;
    --footer-design: #004791;
    --int: "Inter", sans-serif;
    --gil: "Gilroy", sans-serif;
    --roboto: "Roboto", sans-serif;
}

body{
    font-family: var(--gil);
    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(--title);
    border-radius: 15px;
}

a{
    text-decoration: none;
    color: #000;
}

hr{
    opacity: 100%;
    -webkit-opacity: 100%;
    background-color: var(--line);
}

.sectitle{
    color: var(--main);
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0.045px;
}

.sectitle::before{
    content: '';
    float: left;
    display: block;
    display: -webkit-block;
    min-width: 7px;
    height: 36px;
    background-color: #5bc5f28c;
    margin-right: 8px;
}

.text{
    color: var(--text);
}

.text p:not(:last-child){
    margin-bottom: 1rem;
}

.text strong{
    color: var(--title3);
}

.text hr{
    margin: 11px 0;
}

.telp,
.mailp{
    display: block;
}

.dbtn{
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    grid-gap: 10px;
    width: fit-content;
    max-width: 100%;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.024px;
    border: 1px solid var(--main);
    border-radius: 62px;
    background-color: var(--main);
    padding: 7px 21px;
    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:after{
    content: url(../../assets/img/icon.svg);
    height: 17px;
    filter: grayscale(1) brightness(1.5);
    -webkit-filter: grayscale(1) brightness(1.5);
    -ms-filter: grayscale(1) brightness(1.5);
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    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:hover{
    color: #034991;
    border-color: #034991;
    background-color: transparent;
}

.dbtn:hover::after{
    filter: none;
    -webkit-filter: none;
    -ms-filter: none;
    transform: rotateY(0);
    -webkit-transform: rotateY(0);
    -moz-transform: rotateY(0);
    -ms-transform: rotateY(0);
    -o-transform: rotateY(0);
}

.wpcf7-not-valid-tip{
    position: absolute;
    font-size: 14px;
    bottom: -20px;
}

h1.entry-title{
    text-align: center;
    margin: 30px 0;
}

.exp{
    position: absolute;
    z-index: 1;
    inset: auto 0 2rem 0;
    width: fit-content;
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -ms-flex-direction: column;
    align-items: center;
    grid-gap: 20px;
    text-align: center;
    color: var(--white);
    font-family: var(--roboto);
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    margin: 0 auto;
}

.exp::before{
    content: '';
    width: 22px;
    height: 38px;
    border: 1px solid var(--white);
    border-radius: 41px;
    background: #FFFFFF33;
}

.exp::after{
    content: '';
    position: absolute;
    inset: 8px 0 auto 0;
    width: 4px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: transparent;
    animation: 2.5s ease-in-out infinite forwards scrll;
    -webkit-animation: 2.5s ease-in-out infinite forwards scrll;
    -moz-animation: 2.5s ease-in-out infinite forwards scrll;
    -ms-animation: 2.5s ease-in-out infinite forwards scrll;
    -o-animation: 2.5s ease-in-out infinite forwards scrll;
    margin: 0 auto;
}

@keyframes scrll{0%{background-color:var(--white)}20%{top:5px}40%{top:30px}60%{top:26px}80%{background-color:transparent}}
@-webkit-keyframes scrll{0%{background-color:var(--white)}20%{top:5px}40%{top:30px}60%{top:26px}80%{background-color:transparent}}
@-moz-keyframes scrll{0%{background-color:var(--white)}20%{top:5px}40%{top:30px}60%{top:26px}80%{background-color:transparent}}
@-ms-keyframes scrll{0%{background-color:var(--white)}20%{top:5px}40%{top:30px}60%{top:26px}80%{background-color:transparent}}
@-o-keyframes scrll{0%{background-color:var(--white)}20%{top:5px}40%{top:30px}60%{top:26px}80%{background-color:transparent}}

.ban{
    background: url(../../assets/img/banbg1.png) no-repeat center,url(../../assets/img/banbg2.png) no-repeat center,var(--main);
    background-size: cover;
    background-blend-mode: color-burn,multiply;
    padding: 2.46rem 0;
}

.ban .title{
    display: flex;
    display: -webkit-flex;
    align-items: center;
    grid-gap: 8px;
    color: var(--white);
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0.045px;
}

.ban .title::before{
    content: '';
    display: block;
    display: -webkit-block;
    min-width: 7px;
    height: 36px;
    background-color: #5bc5f28c;
}

.ban .title::after{
    content: '';
    float: right;
    width: 100%;
    max-width: 648px;
    height: 1px;
    background-color: var(--line);
    margin-left: 20px;
    opacity: 18%;
    -webkit-opacity: 18%;
}

.pathbox{
    display: flex;
    display: -webkit-flex;
    align-items: center;
    grid-gap: 20px;
    width: fit-content;
}

.pathbox .back{
    display: flex;
    display: -webkit-flex;
    align-items: center;
    grid-gap: 9px;
    color: var(--text);
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.536px;
    background: none;
}

.pathbox .back::before{
    content: url('data:image/svg+xml;utf8,<svg width="9" height="13" viewBox="0 0 9 13" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8 12L2 6.5L8 1" stroke="rgb(147,152,168)" stroke-width="2"/></svg>');
}

.pathbox .path,
.pathbox .path>*:not(:last-child){
    display: flex;
    display: -webkit-flex;
    align-items: center;
    grid-gap: 5px;
}

.pathbox .path{
    border-left: 1px solid #EFEFEF;
    padding: 8px 0 8px 2rem;
}

.pathbox .path>*{
    color: var(--text);
}

.pathbox .path>*:not(:last-child)::after{
    content: '/';
}

.pathbox .path>*:last-child{
    color: var(--dblue);
    font-weight: 600;
}

.pagination{
    display: flex;
    display: -webkit-flex;
    align-items: stretch;
    grid-gap: 1rem;
}

.pagination>*{
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    min-width: 53px;
    min-height: 44px;
    color: #9D9FAB;
    font-family: var(--int);
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    border: 1px solid #e6e7e999;
    border-radius: 5px;
    background-color: var(--white);
    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;
}

.pagination>*.active{
    color: var(--white);
    background-color: #006FB9;
}

.pagination>*.disabled{
    background-color: var(--text);
}

@media(max-width:768px){
    .pathbox,
    .pathbox .path{
        flex-wrap: wrap;
        -ms-flex-wrap: wrap;
    }
}