/* blog-background
/* --------------------------------------------------------------------------- */
section.blog-background {
    width: 100%;
    height: 500px;
    padding: 100px 0;
    position: relative;
    margin: -100px 0 0 0;
    box-sizing: border-box;
    background-size: cover;
    background-color: #1E1E1E;
    background-position: center;
    -webkit-transform: skew(0deg,-6deg);
     -moz-transform: skew(0deg,-6deg);
      -o-transform: skew(0deg,-6deg);
    /* overflow: hidden; */
    z-index: -1;
}

section.blog-background:before {
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.3);
}

section.blog-background div.content {
    display: flex;
    /* position: absolute; */
    padding: 200px 0px;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: center;
    -webkit-transform: skew(0deg,6deg);
     -moz-transform: skew(0deg,6deg);
      -o-transform: skew(0deg,6deg);
}

section.blog-background div.content > p {
    margin: 0;
    text-transform: uppercase;
    color: #0d47a1;
    text-decoration: none;
}

section.blog-background div.content > p > a {
    text-decoration: none;
    color: #fff;
}

section.blog-background div.content > h2 {
    text-transform: uppercase;
    color: #fff;
}

/* blog
/* --------------------------------------------------------------------------- */
section.items-blog {
    width: 100%;
    height: auto;
    padding: 200px 0;
    box-sizing: border-box;
}

section.items-blog div.item {
    width: 100%;
    height: auto;
    float: left;
    padding: 0px 10px 60px 10px;
    box-sizing: border-box;
}

section.items-blog div.item article {
    width: 100%;
    height: auto;
    box-shadow: 0px 0px 30px 0px rgba(33, 30, 25, 0.1);
    background-color: #fff;
}

section.items-blog div.item article figure {
    width: 40%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    line-height: 0px;
    float: left;
    position: relative;
}

section.items-blog div.item article figure > img {
    width: 100%;
    height: auto;
    min-height: 300px;
    -webkit-transition: all .9s ease;
     -moz-transition: all .9s ease;
      -o-transition: all .9s ease;
       -ms-transition: all .9s ease;
}

section.items-blog div.item article figure > img:hover  {
    -webkit-transform: scale(1.1);
     -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
       -o-transform: scale(1.1);
        transform: scale(1.1);
}

section.items-blog div.item article main {
    width: 60%;
    height: auto;
    min-height: auto;
    overflow: hidden;
    line-height: 0px;
    float: right;
    padding: 25px 40px 0px 40px;
    box-sizing: border-box;
}

section.items-blog div.item article main > span {
    color: #808080;
    cursor: pointer;
    text-align: justify;
}

section.items-blog div.item article main > span:hover {
    color: #1e73be;
}

section.items-blog div.item article main > span > i {
    font-size: 18px;
    margin-bottom: 2px;
}

section.items-blog div.item article main > h4 {
    color: #222;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

section.items-blog div.item article main > p {
    color: #808080;
    text-align: justify;
    letter-spacing: 1px;
}

section.items-blog div.item article main > span.line {
    clear: both;
    width: 100%;
    height: 2px;
    margin: 0 0 20px 0;
    display: block;
    background: #eee;
}

section.items-blog div.item article footer {
    width: 60%;
    height: auto;
    min-height: auto;
    float: right;
    padding: 0px 40px 0px 40px;
    box-sizing: border-box;
    text-align: center;
}

section.items-blog div.item article footer > span {
    float: left;
    color: #808080;
    margin-top: 15px;
    text-align: justify;
}

section.items-blog div.item article footer > span > i {
    font-size: 18px;
    margin-bottom: 2px;
}

section.items-blog div.item article footer > a {
    width: auto;
    text-decoration: none;
    display: inline-block;
    vertical-align: middle;
    float: right;
}

section.items-blog div.item article footer > a > span {
    width: 120px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #808080;
    font-size: 12px;
    padding: 15px 10px;
    letter-spacing: 1px;
    box-sizing: border-box;
    justify-content: center;
    text-transform: uppercase;
    overflow: hidden;
    transition: 800ms;
}

section.items-blog div.item article footer > a > span > i {
    font-size: 20px;
    color: #fff;
    opacity: 0;
}

section.items-blog div.item article footer > a > span:hover > i {
    opacity: 1;
    transition: 800ms;
}

section.items-blog div.item article footer > a:hover > span {
    color: #fff !important;
    border-radius: 3px;
    background-color: #1e73be;
}

section.info-contact {
    padding: 50px 0;
}

/* div video
------------------------------------------------------------------------------ */
div.video,
iframe {
    width: 100%;
    height: 48vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 100px;
    /* background-color: #222; */
    overflow: hidden;
}

div.video > video {
    width: 100%;
    height: auto;
    position: absolute;
    background-size: cover;
}

@media (max-width: 1024px) {
    div.video,
    iframe {
        margin-bottom: 50px;
        height: 57vh;
    }
}

@media (max-width: 768px) {
    div.video,
    iframe {
        height: 50vh;
    }
}

@media (max-width: 425px) {
    div.video,
    iframe {
        height: 30vh;
        margin-bottom: 30px;
    }
}

/* description blog
/* --------------------------------------------------------------------------- */
section.description-blog {
    width: 100%;
    height: auto;
    padding: 200px 0 100px 0;
    position: relative;
}

section.description-blog div.container {
    max-width: 800px;
}

section.description-blog h4 {
    text-transform: uppercase;
}

section.description-blog p {
    text-align: justify;
    color: #808080;
}

section.description-blog div.btn-return {
    padding-top: 50px;
    text-align: right;
    box-sizing: border-box;
}

section.description-blog div.btn-return a {
    color: #222;
    font-size: 12px;
    border-radius: 3px;
    letter-spacing: 1px;
    box-sizing: border-box;
    text-decoration: none;
    text-transform: uppercase;
    background-color: #eeeeee;
    padding: 15px 25px 15px 25px;
}

section.description-blog div.btn-return a > i {
    font-size: 16px;
    opacity: 0;
}

section.description-blog div.btn-return a:hover {
    color: #1e73be;
    border-bottom: 2px solid #1e73be;
}

section.description-blog div.btn-return a:hover > i {
    opacity: 1;
    transition: 800ms;
}

/* blog - responsive
/* --------------------------------------------------------------------------- */
@media (max-width: 768px) {
    section.items-blog {
        padding: 100px 0;
    }

    section.items-blog div.item article figure {
        width: 100%;
        float: none;
    }

    section.items-blog div.item article main {
        width: 100%;
        float: none;
        padding: 25px 25px 0px 25px;
    }

    section.items-blog div.item article footer {
        width: 100%;
        float: none;
        padding: 0px 25px 25px 25px;
    }

    section.items-blog div.item article footer > a > span {
        width: 110px;
    }
}

@media (max-width: 425px) {
    section.items-blog div.item {
        width: 100%;
    }
}

@media (max-width: 320px) {
    section.items-blog div.item article figure {
        height: 250px;
    }

    section.items-blog div.item article footer {
        padding: 0px 25px 10px 25px;
    }

    section.items-blog div.item article footer > span,
    section.items-blog div.item article footer > a {
        float: none;
        padding-top: 10px;
    }
}

/* description services - responsive
/* --------------------------------------------------------------------------- */
@media (max-width: 768px) {
    section.description-blog {
        padding: 100px 0;
    }
}

@media (max-width: 425px) {
    section.description-blog {
        padding: 50px 0 100px 0;
    }

    section.description-blog h4 {
        font-size: 22px;
        margin-left: 15px;
        margin-right: 15px;
        text-align: justify;
    }

    section.description-blog p {
        margin: 15px;
    }

    section.description-blog div.btn-return {
        padding-right: 15px;
    }
}
