@font-face {
    font-family: "Poppins";
    src: url(../../assets/fonts/Poppins-Thin.otf) format('opentype');
    font-display: swap;
    font-weight: 100;
}

@font-face {
    font-family: "Poppins";
    src: url(../../assets/fonts/Poppins-ExtraLight.otf) format('opentype');
    font-display: swap;
    font-weight: 200;
}

@font-face {
    font-family: "Poppins";
    src: url(../../assets/fonts/Poppins-Light.otf) format('opentype');
    font-display: swap;
    font-weight: 300;
}

@font-face {
    font-family: "Poppins";
    src: url(../../assets/fonts/Poppins-Regular.otf) format('opentype');
    font-display: swap;
    font-weight: 400;
}

@font-face {
    font-family: "Poppins";
    src: url(../../assets/fonts/Poppins-Medium.otf) format('opentype');
    font-display: swap;
    font-weight: 500;
}

@font-face {
    font-family: "Poppins";
    src: url(../../assets/fonts/Poppins-SemiBold.otf) format('opentype');
    font-display: swap;
    font-weight: 600;
}

@font-face {
    font-family: "Poppins";
    src: url(../../assets/fonts/Poppins-Bold.otf) format('opentype');
    font-display: swap;
    font-weight: 700;
}

@font-face {
    font-family: "Poppins";
    src: url(../../assets/fonts/Poppins-ExtraBold.otf) format('opentype');
    font-display: swap;
    font-weight: 800;
}

@font-face {
    font-family: "Poppins";
    src: url(../../assets/fonts/Poppins-Black.otf) format('opentype');
    font-display: swap;
    font-weight: 900;
}

@font-face {
    font-family: "Carnas ☞";
    src: url(../../assets/fonts/Carnas\ Thin.otf) format('opentype');
    font-display: swap;
    font-weight: 100;
}

@font-face {
    font-family: "Carnas ☞";
    src: url(../../assets/fonts/Carnas\ Extra\ Light.otf) format('opentype');
    font-display: swap;
    font-weight: 200;
}

@font-face {
    font-family: "Carnas ☞";
    src: url(../../assets/fonts/Carnas\ Light.otf) format('opentype');
    font-display: swap;
    font-weight: 300;
}

@font-face {
    font-family: "Carnas ☞";
    src: url(../../assets/fonts/Carnas\ Regular.otf) format('opentype');
    font-display: swap;
    font-weight: 400;
}

@font-face {
    font-family: "Carnas ☞";
    src: url(../../assets/fonts/Carnas\ Medium.otf) format('opentype');
    font-display: swap;
    font-weight: 500;
}

@font-face {
    font-family: "Carnas ☞";
    src: url(../../assets/fonts/Carnas\ Bold.otf) format('opentype');
    font-display: swap;
    font-weight: 700;
}

@font-face {
    font-family: "Carnas ☞";
    src: url(../../assets/fonts/Carnas\ Extra\ Bold.otf) format('opentype');
    font-display: swap;
    font-weight: 800;
}

@font-face {
    font-family: "Carnas ☞";
    src: url(../../assets/fonts/Carnas\ Black.otf) format('opentype');
    font-display: swap;
    font-weight: 900;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .7px;
    /* iOS Safari */
    -webkit-touch-callout: none;
    /* Safari */
    -webkit-user-select: none;
    /* Konqueror HTML */
    -khtml-user-select: none;
    /* Old versions of Firefox */
    -moz-user-select: none;
    /* Internet Explorer/Edge */
    -ms-user-select: none;
    /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
    user-select: none;
}

.cfnt {
    font-family: "Carnas ☞", sans-serif;
}

.tupp {
    text-transform: uppercase;
}

input[type="checkbox"] {
    border-color: #A62F14;
}

img,
picture {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}


/* SCROLLBAR */


/* WIDTH DA SCROLLBAR */

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


/* FUNDO DA SCROLLBAR */

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


/* SCROLLBAR */

html::-webkit-scrollbar-thumb {
    background: #F53D0F;
    border-radius: 15PX;
}


/* SCROLLBAR ! */

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

.sectitle {
    color: #fff;
    font-size: 60px;
}

.telp strong,
.mailp strong {
    cursor: pointer;
}

.dbtn {
    display: flex;
    align-items: center;
    width: fit-content;
    height: 53px;
    padding: 0 35px;
    font-size: 23px;
    font-weight: 200;
    border-radius: 5px;
    color: #fff;
    background-color: #400601;
    transition: .3s ease-in-out;
}

.dbtn:hover {
    background-color: #F53D0F;
    color: #fff;
    transition: all .3s ease-in-out;
}

.backbtn {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    width: fit-content;
    height: 51px;
    border: 1px solid #274259;
    border-radius: 5px;
    color: #274259;
    font-size: 18px;
    padding: 0 35px;
    transition: .3s ease-in-out;
}

.backbtn svg {
    margin-right: 14px;
}

.backbtn svg path {
    transition: .3s ease-in-out;
}

.backbtn::before {
    content: '';
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    width: 105%;
    height: 100%;
    transform-origin: top left;
    background-color: #274259;
    transform: rotateZ(90deg);
    transition: .3s ease-in-out;
}

.backbtn:hover {
    color: #fff;
    transition: all .3s ease-in-out;
}

.backbtn:hover svg path {
    fill: #fff;
    transition: all .3s ease-in-out;
}

.backbtn:hover::before {
    transform: rotateZ(0);
    transition: all .3s ease-in-out;
}

.wpcf7-not-valid-tip {
    position: absolute;
    bottom: -25px;
}

.menu-header-menu-container ul,
.menu-header-menu-container li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-header-menu-container a {
    white-space: nowrap;
}

.menu-item-has-children {
    position: relative;
}

.menu-item-has-children a {
    width: fit-content;
    position: relative;
}

.menu-item-has-children>a::before {
    content: '';
    width: 7px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    bottom: 12px;
    right: -14px;
    transform: rotateZ(45deg);
}

.menu-item-has-children>a::after {
    content: '';
    width: 7px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    bottom: 12px;
    right: -19px;
    transform: rotateZ(-45deg);
}

.menu-header-menu-container li ul a::after,
.menu-header-menu-container li ul a::before {
    bottom: 9px;
}

.menu-item-has-children .sub-menu,
.offcanvas .menu-item-has-children .sub-menu {
    display: none;
    width: fit-content;
    position: absolute;
    background-color: #fff;
    left: 0;
    border-radius: 0;
    top: 104px;
    opacity: 0;
    transform: translateY(.6rem);
    transition: .3s ease-in-out;
}

.menu-item-has-children .sub-menu li,
.offcanvas .menu-item-has-children .sub-menu li {
    width: 100%;
    margin: 0 !important;
}

.menu-item-has-children .sub-menu a,
.offcanvas .menu-item-has-children .sub-menu a {
    display: flex;
    align-items: center;
    width: 100% !important;
    color: #A62F14 !important;
    font-size: 12px;
    font-weight: 400;
    padding: 3.5px 8px;
    border-bottom: 1px solid #707070;
}


/* .offcanvas .menu-item-has-children .sub-menu {
    width: 100%;
    height: 0;
    background-color: #f2f2f2;
    display: flex;
    justify-content: center;
    padding: 8px;
    border-radius: 5px;
    opacity: 0;
    transform: translateY(-.6rem);
    transition: .3s ease-in-out;
} */

.menu-item-has-children:hover>.sub-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    transition: all .3s ease-in-out;
}


/* .offcanvas .menu-item-has-children:hover>.sub-menu {
    position: initial;
    height: fit-content;
    border-radius: 0;
    opacity: 1;
    transform: translateY(0);
    transition: all .3s ease-in-out;
} */

.menu-item-has-children>.sub-menu .sub-menu {
    right: 120%;
    top: -8px;
}

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

.pagination li {
    margin-right: 15px;
}

.pagination li a {
    width: 40px;
    height: 40px;
    background-color: #fff;
    color: #A62F14;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    transition: .3s ease-in-out;
}

.pagination li a:focus,
.pagination li a:focus-visible {
    outline: none;
    box-shadow: none;
    background-color: #fff;
}

.pagination li.active a {
    background-color: #A62F14 !important;
    border-color: #A62F14 !important;
    color: #fff;
    transition: all .3s ease-in-out;
}

input[type="checkbox"]:checked::before {
    filter: invert(1);
}

input[type="checkbox"]:checked {
    background-color: #A62F14;
}

@media(max-width: 768px) {
    .sectitle {
        font-size: 40px;
        text-align: center;
    }
}