.card-post {
    width: 100%;
    background: #fff;
    transition: box-shadow .3s ease-in-out;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}

.card-post figure {
    height: 300px;
    width: 100%;
    overflow: hidden;
}

.card-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .1s linear;
}

.card-post.product img {
    object-fit: contain;
}

.card-post h3 {
    text-align: center;
    font-size: 25px;
    text-transform: uppercase;
    line-height: 25px;
    min-height: 115px;
    padding: 15px 25px 20px;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-post:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.card-post:hover a {
    color: var(--color-secondary);
}

.card-post:hover img {
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .card-post figure {
        height: 200px;
    }

    .card-post h3 {
        font-size: 18px;
        min-height: 85px;
    }
}

@media (max-width: 767px) {
    .card-post {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .card-post figure {
        height: auto;
    }

    .card-post h3 {
        min-height: 0;
    }
}


#cta {
    background: #C4D5EA;
    padding: 50px 0;
}
#cta h3{
    margin-top: 0;
}
#cta p{
    max-width: 950px;
    font-size: 17px;
}

#cta p span{
    padding: 3px 5px;
    background: var(--color-white);
}
#cta form{
    margin-top: 20px;
    display: inline-block;
    width: 100%;
}

#cta form button{
    width: 100%;
    border-radius: 50px;
    background: #3699CF;
    text-transform: uppercase;
    color: var(--color-white);
    border: none;
    height: 50px;
    font-weight: 600;
    letter-spacing: 1px;
}
#cta form button:hover{
    background: var(--color-highlight-darken);
}

.list-social {
    margin: 80px 0 0;
}

.list-social li {
    padding: 0 20px;
}

#footer {
    background: #f1f1f1;
    padding: 60px 0 30px;
}

.home #footer {
    padding-top: 120px;
}

#footer .footer-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px 80px;
    flex-gap: 20px 80px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

#footer .footer-row.flex-start {
    justify-content: flex-start;
}

#footer .footer-row .footer-media {
    display: flex;
    gap: 15px;
    flex-gap: 15px;
}

#footer .footer-media .footer-media-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-gap: 10px;
}

#footer .footer-media .footer-media-body p {
    font-size: 14px;
    line-height: 18px;
}

#footer .col {
    display: flex;
    flex-direction: column;
}

#footer .col h4 {
    color: var(--color-highlight-lighten);
    text-transform: uppercase;
    font-family: var(--ff-secondary);
    font-size: 16px;
    margin-top: 0;
}

#footer .col p {
    font-size: 14px;
}

#footer .col ul {
    padding: 0;
    list-style: none;
}

#footer .col li a {
    font-weight: 600;
    text-transform: uppercase;
    line-height: 30px;
    font-size: 15px;
}

#footer .col li a:hover, #footer .col li a:focus {
    color: var(--color-highlight-lighten);
}

#footer .links-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-gap: 10px;
}

#footer .links-box a {
    border: 2px solid;
    border-radius: 50px;
    padding: 7px 10px;
    text-transform: uppercase;
    color: var(--color-highlight-lighten);
    font-weight: 600;
    font-size: 14px;
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-gap: 10px;
    min-width: 220px;
}

#footer .links-box a:hover {
    color: var(--color-black);
}

#footer .links-box a + small {
    color: var(--color-highlight-lighten);
    margin-top: -8px;
    font-weight: 600;
    font-size: 70%;
    text-transform: uppercase;
    text-align: center;
}

#footer .google-verification img {
    transition: all 0.3s ease-in-out;
}

#footer .google-verification:hover img {
    filter: grayscale(100);
}

@media (max-width: 1260px) {
    #footer .footer-row.flex-start {
        justify-content: center;
    }
}

@media (max-width: 550px) {
    #footer {
        padding-top: 60px;
    }

    #footer .footer-row {
        flex-direction: column;
        align-content: center;
        gap: 20px 0;
        text-align: center;
    }

    #footer .footer-row .footer-media {
        flex-direction: column;
        align-items: center;
    }

    #footer .footer-row .footer-media img + img {
        height: 130px;
        object-fit: cover;
        border-radius: 20px;
    }

    #footer .footer-media .footer-media-body {
        align-items: center;
    }

    #footer .google-verification img {
        max-width: 250px;
    }
}

#header {
    background: var(--color-highlight-darken);
    color: #fff;
    display: inline;
    float: left;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

#header .open-nav {
    left: 30px;
    position: absolute;
    top: 15px;
    z-index: 1;
}

#header .logo {
    display: inline-block;
    max-width: 100%;
    width: 220px;
}

#header ul {
    margin: 0;
    display: flex;
    list-style: none;
    padding: 0;
    justify-content: center;
}

#header ul li {
    display: flex;
}

#header ul li a, #header ul li a:focus {
    color: #fff;
    font-size: 13px;
    font-family: var(--ff-secondary);
    text-transform: uppercase;
    padding: 10px 25px;
}

#header ul li:hover a, #header ul li a.active {
    background: var(--color-white);
    color: var(--color-black);
}

@media (max-width: 1200px) {
    #header .container {
        width: 100%;
    }
    #header ul {
        justify-content: space-around;
    }

    #header ul li a {
        padding: 10px 0;
    }
}

@media (max-width: 991px) {
    #header {
        background: var(--color-highlight);
    }

    #header .container {
        display: flex;
        justify-content: center;
    }

    #header #logo img {
        transform: scale(0.7);
    }
}

@media (max-width: 767px) {
    #header .search-pan-open {
        font-size: 20px;
        position: absolute;
        right: 30px;
        top: 30px;
        z-index: 1;
    }
}

@media (max-width: 400px) {
    #header .open-nav {
        left: 10px;
    }

    #header .open-nav img {
        transform: scale(0.8);
    }

    #header #logo img {
        transform: scale(0.6);
    }
}

.offset-canvas-mobile {
    background-color: var(--color-highlight);
    bottom: 0;
    left: 0;
    padding: 50px 0 0 0;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transition: transform 1s cubic-bezier(1, 0, 0, 1);
    -o-transition: transform 1s cubic-bezier(1, 0, 0, 1);
    -webkit-transition: transform 1s cubic-bezier(1, 0, 0, 1);
    z-index: 1200;
}

.offset-canvas-mobile .menu-top {
    position: absolute;
    background: var(--color-highlight-darken);
    width: 100%;
    top: 0;
    display: flex;
    padding: 10px 0;
    justify-content: center;
}

.offset-canvas-mobile > div {
    background: url('../../../images/bg-menu-mobile-top.png') no-repeat center top,
    url('../../../images/bg-menu-mobile-bottom.png') no-repeat center bottom;
    background-size: 400px;
    height: 100%;
    overflow: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.offset-canvas-mobile .links-box {
    margin: 30px 0 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-gap: 20px;
}

.offset-canvas-mobile .links-box a {
    background: var(--color-white);
    border: 2px solid;
    border-radius: 50px;
    padding: 7px 10px;
    text-transform: uppercase;
    color: var(--color-highlight-lighten);
    font-weight: 600;
    font-size: 14px;
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-gap: 10px;
    min-width: 220px;
}

.offset-canvas-mobile .links-box a:hover {
    color: var(--color-black);
}

.offset-canvas-mobile .links-box a + small {
    color: var(--color-white);
    margin-top: -18px;
    font-weight: 600;
    font-size: 70%;
    text-transform: uppercase;
    text-align: center;
}

.offset-canvas-mobile nav {
    padding: 0 20px;
}

.offset-canvas-mobile nav h4 {
    text-transform: uppercase;
    color: var(--color-white);
    font-size: 18px;
}

.offset-canvas-mobile ul {
    list-style: none;
    margin-top: 10px;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.offset-canvas-mobile nav, .offset-canvas-mobile ul li {
    width: 100%;
}

.offset-canvas-mobile ul a {
    background: var(--color-white);
    width: 100%;
    display: inline-block;
    border-radius: 50px;
    font-size: 16px;
    text-transform: uppercase;
    padding: 3px 0;
}

.offset-canvas-mobile ul a:hover {
    background: var(--color-highlight-darken);
    color: var(--color-white);
}

.offset-canvas-mobile.open-canvas {
    transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    -webkit-transform: translateX(0);
}

.offset-canvas-mobile .close-canvas {
    background: red;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 50px;
    width: 30px;
    height: 30px;
    overflow: hidden;
    border: 2px solid #fff;
    top: 11px;
    position: absolute;
    left: 10px;
}

.offset-canvas-mobile .close-canvas::before {
    font-family: 'FontAwesome', sans-serif;
    content: "\f00d";
    color: var(--color-white);
}

.offset-canvas-mobile .search-pan-open {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 5;
}

.offset-canvas-mobile .close-canvas:focus, .offset-canvas-mobile .close-canvas:active {
    text-decoration: none;
}

.search-panel > div {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.search-panel {
    background-color: #f55f12;
    height: 0;
    left: 0;
    opacity: 0;
    position: fixed;
    right: 0;
    top: 0;
    visibility: hidden;
    z-index: 1201;
}

.search-panel > a {
    position: absolute;
    right: 30px;
    top: 20px;
}

.search-panel > div {
    overflow: hidden;
    width: 50%;
}

.search-panel label, .search-panel input[type="text"] {
    position: relative;
}

.search-panel label {
    color: #fff;
    font-size: 32px;
}

.search-panel input[type="text"] {
    background-color: transparent;
    border: none !important;
    border-bottom: 3px solid #fff !important;
    color: #fff;
    height: 55px;
    padding: 6px 22px;
    text-align: center;
}

.search-panel input[type="text"]:focus {
    box-shadow: none;
    -webkit-box-shadow: none;
}

.search-panel::-webkit-input-placeholder {
    color: #fff;
    font-size: 14px;
    text-transform: lowercase;
}

.search-panel:-moz-placeholder {
    color: #fff;
    font-size: 14px;
    text-transform: lowercase;
}

.search-panel::-moz-placeholder {
    color: #fff;
    font-size: 14px;
    text-transform: lowercase;
}

.search-panel:-ms-input-placeholder {
    color: #fff;
    font-size: 14px;
    text-transform: lowercase;
}

.search-panel.show-pan {
    height: 100%;
    opacity: 1;
    visibility: visible;
}

@media only screen and (max-width: 500px) {
    .search-panel > div {
        padding: 0 30px;
        width: 100%;
    }
}

.mobile-menu-search {
    background: none;
    border: none;
    position: relative;
    z-index: 201;
}

#banner {
    background: #e9ebf6 url('../../images/bg-banner.jpg') center 100px no-repeat;
    padding: 100px 0 175px;
}

#banner .block {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

#banner .block h1 {
    font-size: 54px;
    background: url('../../images/carrinha.png') no-repeat top right;
    padding: 60px calc(100% - 400px) 90px 0;
    margin: 0;
}

@media (max-width: 1200px) {
    #banner {
        padding-bottom: 80px;
    }

    #banner .block h1 {
        background: url('../../images/carrinha-celular.png') no-repeat top right;
        font-size: 40px;
        padding: 40px calc(100% - 300px) 50px 0;
    }
}

@media (max-width: 991px) {
    #banner {
        padding-top: 120px;
    }
}

@media (max-width: 767px) {
    #banner {
        background: #fff;
        text-align: center;
        max-height: initial;
        display: flex;
        padding-bottom: 0;
        margin-bottom: -45px;
    }

    #banner h1 {
        display: none;
    }

    #banner .block img {
        position: initial;
        max-width: 100%;
    }
}

#block-contents {
    padding: 20px 0;
}

#block-contents h1 {
    color: #DA491C;
    font-size: 50px;
    position: relative;
}

#block-contents h1 a, #block-contents h1 a:focus {
    border-bottom: 3px solid;
    font-size: 20px;
    letter-spacing: 0;
    margin-left: 10px;
    padding-bottom: 5px;
    position: relative;
    top: -10px;
}

#block-contents h1 a:hover {
    border-bottom-color: #000;
    color: #000;
}

#block-contents .content-item {
    box-shadow: 0 0 38px 0 rgba(0,0,0,0.25);
    border-radius: 36px;
    overflow: hidden;
    transform: scale(0.9);
}

#block-contents .content-item figure {
    display: inline-block;
    height: 390px;
    overflow: hidden;
    border-radius: 36px;
    position: relative;
}

#block-contents .content-item figure img {
    height: 100%;
    transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    width: 100%;
    object-fit: cover;
}

#block-contents .content-item:hover figure img {
    transform: scale(1.1) rotate(3deg);
    -moz-transform: scale(1.1) rotate(3deg);
    -o-transform: scale(1.1) rotate(3deg);
    -webkit-transform: scale(1.1) rotate(3deg);
}

#block-contents .content-item .content-info {
    background: #fff;
    display: inline-block;
    margin-top: -10px;
    padding: 20px;
    width: 100%;
    height: 130px;
    overflow: hidden;
}

#block-contents .content-item .content-info h3 {
    font-size: 20px;
    line-height: 30px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 600;
}

#block-contents .content-item .content-info .content-description {
    font-size: 20px;
    line-height: 35px;
    margin-bottom: 20px;
    min-height: 210px;
}

#block-contents .content-item .content-info .btn {
    background: #00A650;
    border-radius: 0;
    color: #fff;
    font-size: 20px;
    padding: 14px 30px 12px;
}

#block-contents .content-item .content-info .btn:hover {
    background: #000;
    color: #fff;
}

@media (max-width: 991px) {
    #block-contents h1 {
        font-size: 45px;
    }

    #block-contents h1 span {
        display: inline-block;
        left: 90px;
        position: absolute;
        top: -5px;
        width: calc(100% - 100px);
    }

    #block-contents h1 a {
        left: 90px;
        position: absolute;
        top: 46px;
    }
}

@media (max-width: 767px) {
    #block-contents h1 {
        font-size: 30px;
        text-align: center;
    }

    #block-contents h1 img {
        margin-bottom: 15px;
    }

    #block-contents h1 span {
        display: inline-block;
        position: initial;
        width: 100%;
    }

    #block-contents h1 a {
        display: inline-block;
        margin: 10px 0 0;
        position: initial;
    }
}

@media (max-width: 400px) {
    #block-contents .content-item figure, #block-contents .content-item figure img {
        height: 300px;
    }

    #block-contents .content-item .content-info {
        padding: 20px;
    }

    #block-contents .content-item .content-info h3 {
        font-size: 23px;
    }

    #block-contents .content-item .content-info .content-description {
        font-size: 18px;
        letter-spacing: 0.8px;
        line-height: 30px;
        min-height: initial;
    }

    #block-contents .content-item .content-info .btn {
        padding: 14px 15px 12px;
        white-space: inherit;
        width: 100%;
    }
}

#brands {
    background: #f1f1f1;
    padding: 80px 0;
}

#brands a {
    display: flex;
    justify-content: center;
}

@media (max-width: 767px) {
    #brands {
        padding: 60px 0;
    }
}

@media (max-width: 580px) {
    #brands {
        padding: 20px 0;
    }
}

::placeholder {
    color: #00000080 !important;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #00000080 !important;
}

::-ms-input-placeholder {
    color: #00000080 !important;
}

.input-featured::placeholder {
    color: #fff !important;
    opacity: 1;
}

.input-featured:-ms-input-placeholder {
    color: #fff !important;
}

.input-featured::-ms-input-placeholder {
    color: #fff !important;
}

#contacts {
    padding: 30px 0;
}

#contacts .container {
    background: #fff;
    padding: 40px;
}

#contacts .container h2 {
    font-size: 72px;
    line-height: 75px;
    margin-bottom: 20px;
}

#contacts .container h4 {
    font-size: 20px;
    letter-spacing: 0.6px;
    line-height: 35px;
}

#contacts .container h4 strong {
    font-family: 'HelveticaNeueLT W1G 65 Md', sans-serif;
}

#contacts .container form {
}

#contacts .container form input {
    background: #D7D7D7;
    border-color: #D7D7D7 !important;
    font-size: 18px;
}

#contacts .container form .input-featured {
    background: #DE5728;
    border-color: #DE5728 !important;
    color: #fff;
}

#contacts .container form textarea {
    background: #d7d7d7;
    border-color: #d7d7d7 !important;
    font-size: 18px;
}

#contacts .container form .select2-container--default .select2-selection--single {
    background: #DE5728;
    border-color: #DE5728 !important;
}

#contacts .container form .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #fff;
}

#contacts .container form .btn {
    background: #00A650;
    border-radius: 0;
    color: #fff;
    font-size: 30px;
    line-height: 40px;
    padding-bottom: 7px;
}

#contacts .container form .btn:hover {
    background: #000;
    color: #fff;
}

#contacts h3 {
    font-size: 30px;
    margin: 30px 0 15px;
}

#contacts .box-address {
    display: inline-block;
    padding: 20px 20px 20px 50px;
    position: relative;
}

#contacts .box-address img {
    left: 7px;
    position: absolute;
    top: 27px;
}

#contacts .box-address p {
    line-height: 35px;
    margin: 0;
}

@media (max-width: 991px) {
    #contacts .container form {
        margin-bottom: 30px;
    }

    #contacts h3 + img {
        display: inline-block;
    }
}

@media (max-width: 767px) {
    #contacts .container {
        padding: 40px 20px;
    }

    #contacts .container h2 {
        font-size: 50px;
        line-height: 55px;
    }

    #contacts .text-center-xs {
        text-align: center;
    }

    #contacts .text-center-xs > img {
        display: inline-block;
    }

    #contacts .box-address {
        padding: 20px 20px 0;
        width: 100%;
    }

    #contacts .box-address i {
        position: initial;
    }
}

#featured-carousel {
    position: relative;
}

#featured-carousel .slider-shadow {
    box-shadow: 0 -260px 200px -110px rgba(0, 0, 0, 0.5) inset;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}

#featured-carousel .slider figure img {
    min-height: 700px;
    object-fit: cover;
    width: 100%;
}

#featured-carousel .slider figure .container {
    position: relative;
    z-index: 2;
}

#featured-carousel .slider figure h1 {
    bottom: 0;
    color: #fff;
    font-size: 60px;
    line-height: 80px;
    margin: 0 0 30px;
    position: absolute;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 1200px) {
    #featured-carousel .slider figure img {
        min-height: 500px;
    }

    #featured-carousel .slider figure h1 {
        font-size: 50px;
        line-height: 70px;
        margin: 0 0 10px;
    }
}

@media (max-width: 991px) {
    #featured-carousel .slider figure img {
        min-height: 450px;
    }

    #featured-carousel .slider figure h1 {
        font-size: 40px;
        line-height: 50px;
        margin: 0 0 10px;
    }
}

@media (max-width: 767px) {
    #featured-carousel .slider-shadow {
        box-shadow: 0 -260px 360px -110px rgba(0, 0, 0, 0.8) inset;
    }

    #featured-carousel .slider figure img {
        min-height: 300px;
    }

    #featured-carousel .slider figure h1 {
        font-size: 25px;
        line-height: 35px;
        margin: 0 0 10px;
        left: 0;
        padding: 0 20px;
    }

    #block-contents .content-item .content-info {
        height: auto;
    }
}

#video {
    position: relative;
}

#video a {
    position: absolute;
    left: calc(50% - 195.5px);
    bottom: -71.5px;
}

@media (max-width: 1200px) {
    #video a {
        left: calc(50% - 150px);
        bottom: -55px;
    }

    #video a img {
        width: 300px;
    }
}

@media (max-width: 991px) {
    #video a {
        left: calc(50% - 125px);
        bottom: -45px;
    }

    #video a img {
        width: 250px;
    }
}

@media (max-width: 767px) {
    #video a {
        left: calc(50% - 100px);
        bottom: -36px;
    }

    #video a img {
        width: 200px;
    }
}

@media (max-width: 500px) {
    #video a {
        left: calc(50% - 75px);
        bottom: -27px;
    }

    #video a img {
        width: 150px;
    }
}

a#back-to-top, a#back-to-top:focus {
    background-color: #D94C18;
    border-radius: 4px;
    bottom: 10px;
    color: #fff;
    display: none;
    height: 50px;
    line-height: 50px;
    position: fixed;
    right: 10px;
    text-align: center;
    width: 50px;
    z-index: 2;
}

a#back-to-top:hover {
    background-color: #010302;
}

.card {
    background-color: #fff;
    border: 1px solid #e4e7ed;
    border-radius: 4px;
    margin-bottom: 15px;
}

.card .card__header {
    border-bottom: 1px solid #e4e7ed;
    border-radius: 4px 4px 0 0;
    overflow: hidden;
    padding: 18px 23px;
    position: relative;
}

.card .card__header::before {
    background-color: #094730;
    border-radius: 3px 0 0 0;
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    position: absolute;
    top: 0;
    width: 6px;
}

.card .card__header > h4 {
    font-size: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2em;
    margin: 0;
    text-transform: uppercase;
}

.card .card__content {
    padding: 24px 24px;
}

@media (min-width: 1199px) {
    .card .card__header .card-header__button {
        float: right;
    }
}
:root {
    --ff-primary: 'Barlow', sans-serif;
    --ff-secondary: 'Montserrat', cursive;

    --color-primary: #CE4343;
    --color-secondary: #A01E1E;
    --color-tertiary: #FFEB00;
    --color-white: #fff;
    --color-black: #222;
    --color-highlight: #045BA6;
    --color-highlight-darken: #0D3159;
    --color-highlight-lighten: #5B77FC;
}

body {
    background: var(--color-white);
    color: var(--color-black);
    font-family: var(--ff-primary);
    font-weight: 300;
    font-size: 16px;
    overflow-x: hidden;
    padding-top: 38px;
}

:hover, :focus {
    outline: none;
}

/* Reset
======================= */
a, a:focus, a:hover, button, button:focus, button:hover {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    outline: none;
    text-decoration: none;
    color: inherit;
}

textarea {
    resize: none;
}

.group-button {
    line-height: 28px;
}

.btn-apple-android{
    max-width: 480px;
}

@media (min-width: 1270px) {
    .container {
        width: 1270px;
    }
}

@media (max-width: 1200px) {
    body {
    }
}

@media (max-width: 991px) {
    body {
        padding-top: 58px;
    }
}

@media (max-width: 767px) {
    body {
    }
}

@media (max-width: 500px) {
    .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11 {
        width: 100%;
    }
}

.form-control, .form-control:focus:not(textarea) {
    height: 48px;
}

.form-control, .form-control:focus {
    border-radius: 8px;
    border:1px solid #dfdfdf;
    box-shadow: none;
    width: 100%;
}

input.form-control, input.form-control:focus {
    height: 50px;
    background: #F4F5F8;
    border: none;
    box-shadow: none;
    outline: none;
}

.has-feedback label ~ .form-control-feedback {
    top: 37px;
}

.input-group {
    width: 100%;
}

.input-group-addon {
    background: #fff !important;
    border: none;
    font-size: 20px;
    width: 50px;
}

.post-pagination {
    border-top: 1px dashed rgba(0, 0, 0, 0.2);
    display: inline;
    float: left;
    margin-top: 10px;
    text-align: center;
    width: 100%;
}

.post-pagination .pagination {
    overflow: hidden;
    padding: 10px;
}

.post-pagination .pagination li a, .post-pagination .pagination li span {
    background: none;
    border-radius: 50%;
    color: #1E2024;
    margin: 0 5px;
    width: 37px;
}

.post-pagination .pagination li a:hover, .post-pagination .pagination li span:hover {
    background-color: #fff;
}

.post-pagination .pagination li a:focus, .post-pagination .pagination li span:focus {
    color: #0E9E1A;
}

.post-pagination .pagination li.active span, .post-pagination .pagination li.disabled span {
    transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.post-pagination .pagination li.active span {
    background: #0E9E1A;
    border-color: #0E9E1A;
    box-shadow: 0 0 10px #0E9E1A;
    color: #fff;
}

.post-pagination .pagination li.active span:hover {
    background: #fff;
    color: #040508 !important
}

/* Select2
===================== */
.select2-container {
    width: 100% !important;
}

.select2-container--default .select2-selection--single {
    background: none;
    border-color: #dfdfdf !important;
    border-radius: 0 !important;
    height: 48px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 44px !important;
    font-family: var(--ff-secondary);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 10px !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--color-primary);
}

.select2-results__option {
    font-family: var(--ff-secondary);
}

/* Photoswipe Config
===================== */
.pswp__caption__center {
    text-align: center;
}

/* ======================= */

/* Lazyload
===================== */
.lazyload {
    background: url('../../images/preloader.gif') no-repeat 50% 50%;
    background-size: 50px 50px;
    width: 100%;
}

/* ======================= */

/* iCheck
===================== */
.icheckbox_line-blue, .iradio_line-blue {
    background: #94c7e6 !important;
}

.icheckbox_line-blue.checked, .iradio_line-blue.checked {
    background: #2489c5 !important;
}

.icheckbox_line-green, .iradio_line-green {
    margin-bottom: 10px !important;
}

/* ======================= */

/* Headroom
===================== */
.headroom {
    -webkit-transition: transform 0.3s;
    -moz-transition: transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
}

.headroom--pinned {
    transform: translateY(0%);
    -ms-transform: translateY(0%);
}

.headroom--unpinned {
    transform: translateY(-100%);
    -ms-transform: translateY(-100%);
}

/* ======================= */

/* Salvattore
===================== */
.column {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
}

.size-1of4 {
    width: 25%;
}

.size-1of3 {
    width: 33.333%;
}

.size-1of4 {
    width: 25%;
}

.size-1of2 {
    width: 50%;
}

#salvattore[data-columns]::before {
    content: '1 .column';
}


@media screen and (min-width: 1201px) {
    #salvattore.salvattore-lgg-4[data-columns]::before {
        content: '4 .column.size-1of4';
    }

    #salvattore.salvattore-lgg-3[data-columns]::before {
        content: '3 .column.size-1of3';
    }

    #salvattore.salvattore-lgg-2[data-columns]::before {
        content: '2 .column.size-1of2';
    }

    #salvattore.salvattore-lgg-1[data-columns]::before {
        content: '1 .column';
    }
}


@media screen and (max-width: 1200px) {
    #salvattore.salvattore-lg-4[data-columns]::before {
        content: '4 .column.size-1of4';
    }

    #salvattore.salvattore-lg-3[data-columns]::before {
        content: '3 .column.size-1of3';
    }

    #salvattore.salvattore-lg-2[data-columns]::before {
        content: '2 .column.size-1of2';
    }

    #salvattore.salvattore-lg-1[data-columns]::before {
        content: '1 .column';
    }
}

@media screen and (max-width: 991px) {
    #salvattore.salvattore-md-4[data-columns]::before {
        content: '4 .column.size-1of4';
    }

    #salvattore.salvattore-md-3[data-columns]::before {
        content: '3 .column.size-1of3';
    }

    #salvattore.salvattore-md-2[data-columns]::before {
        content: '2 .column.size-1of2';
    }

    #salvattore.salvattore-md-1[data-columns]::before {
        content: '1 .column';
    }
}

@media screen and (max-width: 767px) {
    #salvattore.salvattore-sm-4[data-columns]::before {
        content: '4 .column.size-1of4';
    }

    #salvattore.salvattore-sm-3[data-columns]::before {
        content: '3 .column.size-1of3';
    }

    #salvattore.salvattore-sm-2[data-columns]::before {
        content: '2 .column.size-1of2';
    }

    #salvattore.salvattore-sm-1[data-columns]::before {
        content: '1 .column';
    }
}

@media screen and (max-width: 500px) {
    #salvattore.salvattore-xs-4[data-columns]::before {
        content: '4 .column.size-1of4';
    }

    #salvattore.salvattore-xs-3[data-columns]::before {
        content: '3 .column.size-1of3';
    }

    #salvattore.salvattore-xs-2[data-columns]::before {
        content: '2 .column.size-1of2';
    }

    #salvattore.salvattore-xs-1[data-columns]::before {
        content: '1 .column';
    }
}

/* ======================= */

.error-404 {
    overflow: hidden;
    padding: 10px 15px 20px 15px;
    position: relative;
    text-align: center;
}

.error-404__figure {
    display: inline-block;
    margin-bottom: 30px;
    max-width: 75%;
    position: relative;
}

.error-404__figure::before, .error-404__figure::after {
    background-color: #ffdc11;
    border-radius: 3px;
    bottom: 0;
    content: "";
    display: block;
    height: 25px;
    position: absolute;
    right: 0;
    width: 120px;
}

.error-404__figure::before {
    transform: translate(50px, -70px) rotate(45deg);
    -webkit-transform: translate(50px, -70px) rotate(45deg);
}

.error-404__figure::after {
    transform: translate(50px, -70px) rotate(-45deg);
    -webkit-transform: translate(50px, -70px) rotate(-45deg);
}

.error__header {
    margin-bottom: 20px;
}

.error__title {
    font-size: 24px;
    margin-bottom: 0.33em;
}

.error__subtitle {
    font-size: 18px;
}

.error__description {
    margin-bottom: 30px;
}

@media (min-width: 1200px) {
    .error__header {
        margin-bottom: 40px;
    }

    .error-404__figure {
        margin-bottom: 55px;
    }

    .error__title {
        font-size: 38px;
    }

    .error__description {
        margin-bottom: 60px;
    }

    .error__subtitle {
        font-size: 22px;
    }
}

@media (min-width: 992px) {
    .error-404 {
        padding: 20px 0 40px 0;
    }

    .error__title {
        font-size: 32px;
    }

    .error__cta .btn {
        margin: 0 10px;
    }
}

@media (max-width: 767px) {
    .error__cta .btn {
        margin: 5px 0;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
    }
}

@media (min-width: 480px) {
    .error-404__figure {
        max-width: 100%;
    }
}
section.gallery {
    margin-top: 10px;
    border-top: 1px solid #e4e7ed;
    padding-top: 10px;
}

section.gallery figure {
    background-color: #171d21;
    border-radius: 4px;
    display: block;
    float: left;
    height: 170px;
    margin: 1px;
    overflow: hidden;
    position: relative;
    width: calc((100% - 6px) / 3);
}

section.gallery figure a {
    display: inline-block;
    height: 100%;
    position: relative;
    width: 100%;
    z-index: 1;
}

section.gallery figure img {
    height: 100% !important;
    min-width: 100%;
    opacity: 1;
    transition: opacity 0.3s ease;
    -webkit-transition: opacity 0.3s ease;
    width: auto;
    object-fit: cover;
}

section.gallery figure .gallery_item-desc {
    display: block;
    left: 0;
    opacity: 0;
    padding: 0 10px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 50%;
    transform: scale(0.95) translateY(-50%);
    -webkit-transform: scale(0.95) translateY(-50%);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    visibility: hidden;
}

section.gallery figure .gallery_item-desc h4 {
    color: #fff;
    font-size: 14px;
    line-height: 1.1em;
    margin-bottom: .35em;
    text-transform: uppercase;
    word-break: break-all;
}

section.gallery figure .gallery_item-desc time {
    color: #9a9da2;
    display: block;
    font-size: 10px;
    letter-spacing: -0.02em;
    line-height: 1.2em;
    margin-bottom: .9em;
    text-transform: uppercase;
}

section.gallery figure .gallery_item-desc span {
    border-radius: 50%;
    display: block;
    height: 50px;
    left: auto;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    top: auto;
    width: 50px;
}

section.gallery figure .gallery_item-desc span::before {
    height: 3px;
    width: 17px;
}

section.gallery figure .gallery_item-desc span::after {
    height: 17px;
    width: 3px;
}

section.gallery figure .gallery_item-desc span::before, section.gallery figure .gallery_item-desc span::after {
    background-color: #ffdc11;
    content: "";
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transition: -webkit-transform 0.25s ease;
    transition: transform 0.25s ease, -webkit-transform 0.25s ease;
    -webkit-transition: -webkit-transform 0.25s ease;
}

section.gallery figure .gallery_item-desc span:hover::before, section.gallery figure .gallery_item-desc span:hover::after {
    transform: translate(-50%, -50%) rotate(90deg);
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
}

section.gallery figure:hover img {
    opacity: 0.2;
}

section.gallery figure:hover .gallery_item-desc {
    opacity: 1;
    transform: scale(1) translateY(-50%);
    -webkit-transform: scale(1) translateY(-50%);
    visibility: visible;
}

@media (max-width: 767px) {
    section.gallery figure .gallery_item-desc h4 {
        display: none;
    }

    section.gallery figure .gallery_item-desc time {
        display: none;
    }
}

@media (max-width: 596px) {
    section.gallery figure {
        width: calc((100% - 4px) / 2);
    }
}

@media (max-width: 400px) {
    section.gallery figure {
        width: 100%;
    }
}

#section-default {
    background: #DE5728;
}

#content_inner .container {
    background: #fff;
    padding: 40px 0;
}

#content_inner .container h1 {
    font-size: 72px;
    margin-bottom: 20px;
}

#content_inner .container .content-description {
    font-size: 20px;
    line-height: 35px;
}

#content_inner .container .content-description blockquote {
    background: #F1F1F1;
    border: none;
    font-size: inherit;
    padding: 20px 30px;
}

#content_inner .container .content-description blockquote p {
    margin-bottom: 0;
}

#content_inner .container .content-description p {
    margin-bottom: 20px;
}

#content_inner .container .content-description strong {
    font-family: var(--ff-primary);
    color: var(--color-highlight);
}

#content_inner .container .content-description u {
    text-decoration: none;
    color: var(--color-highlight);
}

#content_inner .container .content-description img {
    max-width: 100%;
    height: auto !important;
}

#content_inner .container .content-description .content_embed {
    background: #efefef;
    border: 4px solid #DA491C;
    display: inline-block;
    max-width: 700px;
    position: relative;
    width: 100%;
}

#content_inner .container .content-description .content_embed .media-object {
    display: block;
    height: 150px;
    width: 150px;
    object-fit: cover;
}

#content_inner .container .content-description .content_embed .media-body {
    padding: 0 20px;
    text-align: left;
    vertical-align: middle;
}

#content_inner .container .content-description .content_embed .media-body h2 {
    font-size: 30px;
    line-height: 35px;
}

@media (max-width: 767px) {
    #content_inner .container {
        padding: 30px 20px 0 20px;
    }

    #content_inner .container h1 {
        font-size: 32px;
        line-height: 35px;
    }

    #content_inner .container .content-description .content_embed .media-left {
        display: inline-block;
        padding: 0;
        width: 100%;
    }

    #content_inner .container .content-description .content_embed .media-object {
        height: auto;
        min-height: 200px;
        width: 100%;
    }

    #content_inner .container .content-description .content_embed .media-body {
        display: inline-block;
        padding: 20px;
        width: 100%;
    }

    #content_inner .container .content-description .content_embed .media-body h2 {
        font-size: 24px;
        line-height: 35px;
    }

    #content_inner .container .content-description blockquote {
        margin: 0 -20px 0px -20px;
        padding: 20px;
    }
}

.contents-container {
    padding: 20px 0;
}

.contents-container .content-item {
    background-color: #fff;
    border: 1px solid #e4e7ed;
    border-radius: 4px;
    margin-bottom: 15px;
}

.contents-container .content-item > figure {
    border-radius: 4px 4px 0 0;
    float: none;
    margin: 0;
    max-height: 250px;
    min-height: 250px;
    overflow: hidden;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.contents-container .content-item > figure > a {
    color: #fff;
    text-align: center;
}

.contents-container .content-item > figure > div {
    display: block;
    left: 23px;
    margin-bottom: 8px;
    overflow: hidden;
    position: absolute;
    top: 23px;
    z-index: 1;
}

.contents-container .content-item > figure .label {
    background-color: #00993f;
    border-radius: .25em;
    color: #fff;
    display: block;
    float: left;
    font-size: 10px;
    line-height: 1;
    padding: .6em;
    text-align: center;
    text-transform: uppercase;
    vertical-align: baseline;
    white-space: nowrap;
}

.contents-container .content-item > figure img {
    display: inline-block;
    height: 250px;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    -moz-transition: transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    -webkit-transition: -webkit-transform 0.5s ease;
    -webkit-transition: transform 0.5s ease;
    width: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    object-fit: cover;
}

.contents-container .content-item > figure img:hover {
    transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.contents-container .content-item .content-item_info {
    padding: 18px 24px 24px;
    position: relative;
}

.contents-container .content-item .content-item_info > a {
    background-color: #00993f;
    border-radius: 50%;
    display: block;
    height: 50px;
    overflow: hidden;
    position: absolute;
    right: 23px;
    top: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    width: 50px;
}

.contents-container .content-item .content-item_info > a:before {
    height: 3px;
    width: 17px;
}

.contents-container .content-item .content-item_info > a:after {
    height: 17px;
    width: 3px;
}

.contents-container .content-item .content-item_info > a:hover:before, .contents-container .content-item .content-item_info > a:hover:after {
    transform: translate(-50%, -50%) rotate(90deg);
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
}

.contents-container .content-item .content-item_info > a:before, .contents-container .content-item .content-item_info > a:after {
    background-color: #fff;
    content: "";
    display: block;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transition: -webkit-transform 0.25s ease;
    transition: transform 0.25s ease;
    -moz-transition: transform 0.25s ease;
    -o-transition: transform 0.25s ease;
    -webkit-transition: -webkit-transform 0.25s ease;
    -webkit-transition: transform 0.25s ease;
}

.contents-container .content-item .content-item_info > time, .contents-container .content-item .content-item_info > span {
    display: inline-block;
    font-size: 11px;
    line-height: 1.2em;
    text-transform: uppercase;
}

.contents-container .content-item .content-item_info > h6 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.4em;
    margin-bottom: 0.8em;
    margin-top: 10px;
    min-height: 84px;
}

.contents-container .content-item .content-item_info > .content-item_description {
    min-height: 108px;
}

.contents-container .content-item footer {
    border-top: 1px solid #e4e7ed;
    display: table;
    height: 100%;
    padding: 17px 24px;
    width: 100%;
}

.contents-container .content-item .content-item_author {
    display: table-cell;
    text-align: left;
    width: 50%;
}

.contents-container .content-item .content-item_author > figure {
    border-radius: 50%;
    display: inline-block;
    height: 24px;
    margin: 0 14px 0 0;
    overflow: hidden;
    vertical-align: middle;
    width: 24px;
}

.contents-container .content-item .content-item_author img {
    height: auto;
    max-width: 100%;
    vertical-align: top;
}

.contents-container .content-item .content-item_author-info {
    display: inline-block;
    position: relative;
    vertical-align: middle;
}

.contents-container .content-item .content-item_author-info h4 {
    color: #9a9da2;
    font-size: 12px;
    margin: 0;
    text-transform: uppercase;
}

.tagcloud .btn {
    font-size: 11px;
    font-weight: 400;
    margin: 0 5px 6px 0;
    padding: 5px;
}
#content article {
    border: 1px solid #f0f0f0;
    background: #fff;
    padding: 20px 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

#content article figure {
    width: 100%;
    margin-bottom: 25px;
}

#content article figure img {
    max-width: 100%;
}

#content .description {
    font-size: 20px;
    line-height: 25px;
}

#content .description p {
    margin-bottom: 20px;
}

#content .description img {
    max-width: 100%;
    height: auto !important;
    border-radius: 8px
}

@media (max-width: 1200px) {
    #content aside {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    #content article {
        padding: 20px;
    }

    #content h1 {
        font-size: 22px;
    }
}

#blog-list .posts {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#blog-list .posts {}

.embed-box {
    background: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    display: flex;
    width: 100%;
    max-width: 650px;
    align-items: center;
    padding-right: 20px;
    margin-bottom: 20px;
    min-height: 70px;
}

#content .embed-box figure {
    width: 300px;
    margin: 0;
    overflow: hidden;
}

#content .embed-box img {
    transition: transform .3s ease-in-out;
}

#content .embed-box:hover img {
    transform: scale(1.05);
}

#content .embed-box h4 {
    line-height: 30px;
    margin: 0 0 0 20px;
    font-size: 30px;
    max-width: 300px;
}

@media (max-width: 767px) {
    .embed-box {
        flex-direction: column;
        padding: 0;
        overflow: hidden;
    }

    #content .embed-box figure {
        width: 100%;
    }

    #content .embed-box h4 {
        font-size: 25px;
        max-width: 100%;
        padding: 15px 20px;
        margin: 0;
    }
}
