/*
* ----------------------------------------------------------------------------------------
Author        : Rama Hardian Sidik
Template Name : Zenx - personal multipurpose portfolio onepage html
Version       : 1.0
Filename      : main.css
* ----------------------------------------------------------------------------------------
  TABLE OF CONTENT
* ----------------------------------------------------------------------------------------
* 01.BASE CSS
    - loadder
* 02.ANIMATION CSS
* 03.HEADDER CSS
    - navigation
    - menu mobile
* 04.HERO CSS
* 05.ABOUT CSS
* 06.SERVICE CSS
* 07.PORTFOLIO CSS
* 08.GAP CSS
* 09.TESTIMONIAL CSS
* 10.PARTNER CSS
* 11.BLOG CSS
* 12.CONTACT CSS
* 13.FOOTER CSS
*/


/*
* ----------------------------------------------------------------------------------------
* 01.BASE CSS
* ----------------------------------------------------------------------------------------
*/

*,
::after,
::before {
    box-sizing: border-box;
}

html,
body {
    font-family: 'Karla', sans-serif;
    font-weight: 400;
    background: #fff;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
}

a {
    color: #212121;
}

a:hover {
    text-decoration: none;
}

.btn-dark-m {
    color: #212121;
    background-image: linear-gradient(to bottom, #212121 50%, transparent 50%);
    background-size: 100% 200%;
    background-position: bottom;
    transition: background-position 0.1s ease-in-out;
}

.btn-dark-m a {
    color: #212121;
}

.btn-dark-m:hover a {
    color: #fff;
}

.btn-dark-m a:hover {
    color: #fff;
}

.btn-dark-m-b {
    color: #212121;
    border: 1px solid #212121;
    background-image: linear-gradient(to bottom, #212121 50%, transparent 50%);
    background-size: 100% 200%;
    background-position: bottom;
    transition: background-position 0.1s ease-in-out;
}

.btn-dark-m-b a {
    color: #212121;
}

.btn-dark-m-b:hover a {
    color: #fff;
}

.btn-dark-m-b a:hover {
    color: #fff;
}

.btn-light-m {
    color: #fff;
    border: 1px solid #fff;
    background-image: linear-gradient(to bottom, #fff 50%, transparent 50%);
    background-size: 100% 200%;
    background-position: bottom;
    transition: background-position 0.1s ease-in-out;
}

.btn-light-m a {
    color: #fff;
}

.btn-light-m:hover a {
    color: #212121;
}

.btn-light-m a:hover {
    color: #212121;
}

.button-wrap {
    padding: 20px 60px 20px 60px;
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
}

.button-wrap:hover {
    background-position: top;
}

.button-pl {
    display: block;
    position: relative;
    overflow: hidden;
    letter-spacing: 3px;
}

.button-pl .one {
    font-style: normal;
    left: 0;
    position: absolute;
    transform: translateY(100%);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.button-pl .two {
    font-style: normal;
    font-weight: bold;
    position: relative;
    display: block;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.button-wrap:hover .button-pl .one {
    transform: translateY(0);
}

.button-wrap:hover .button-pl .two {
    transform: translateY(-100%);
}

.button-wrap.w-100 a {
    text-align: center;
    width: 100%;
}

.button-wrap.w-100 a em {
    width: 100%;
}

.nav-link {
    padding: unset;
}

.section-h {
    position: relative;
    padding: 100px 0 100px 0;
}

.section-h_top {
    position: relative;
    padding: 100px 0 50px 0;
}

.section-h100 {
    position: relative;
    padding: 200px 0 100px 0;
}

.section-h200 {
    position: relative;
    padding: 200px 0 200px 0;
}

.lines {
    position: absolute;
    width: 1px;
    height: 10%;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all .7s;
    -moz-transition: all .7s;
    -ms-transition: all .7s;
    -o-transition: all .7s;
    transition: all .7s;
}

.lines:before {
    content: "";
    background-color: #fff;
    width: 1px;
    height: 10%;
    display: block;
    bottom: 0;
    -webkit-animation: scroll-down 2s ease-in-out infinite;
    -ms-animation: scroll-down 2s ease-in-out infinite;
    animation: scroll-down 2s ease-in-out infinite;
}

.invert-color {
    color: #fff !important;
}

#mainwrap {
    overflow: hidden;
}

.w-color {
    color: rgba(255, 255, 255, .5);
}

.l-color {
    color: rgba(33, 33, 33, .5);
}

.title-contact {
    margin: 0 0 50px;
}

.d-color {
    color: #f23333;
}

.slick-dots li button:before {
    font-size: 10px;
}

input {
    width: 100%;
    margin: 20px 0 10px 0;
    border: none;
    padding: 10px 0 10px;
    border-bottom: 2px solid rgba(33, 33, 33, .3);
    transition: all .3s;
}

input:focus {
    outline: none;
    border-bottom: 2px solid rgba(33, 33, 33, 1);
}

textarea {
    width: 100%;
    margin: 20px 0 10px 0;
    border: none;
    padding: 10px 0 30px 10px;
    border-bottom: 2px solid rgba(33, 33, 33, .3);
    transition: all .3s;
}

textarea:focus {
    outline: none;
    border-bottom: 2px solid rgba(33, 33, 33, 1);
}

input.error,
textarea.error {
    border-bottom: 2px solid #f23333;
}

.flashinfo {
    display: none;
    margin-top: 30px;
    padding-left: 50px;
    position: relative;
    background: #bcbcbc;
    padding: 10px 50px;
}

.flashinfo span {
    position: absolute;
    left: 10px;
}

.wrap-half>label.error {
    color: #f23333;
    font-size: 13px;
}

.wrap-bottom>label.error {
    color: #f23333;
    font-size: 13px;
}


/*
* ----------------------------------------------------------------------------------------
* 01.BASE CSS
    - loadder
* ----------------------------------------------------------------------------------------
*/

.wrap-loader {
    background: #fff;
    display: block;
    position: fixed;
    z-index: 99;
    width: 100%;
    height: 100%;
    padding: 0px;
    margin: 0px;
}

.loading {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.dot {
    position: absolute;
    width: 16px;
    height: 16px;
    top: 12px;
    left: 15px;
    background: #000;
    border-radius: 50%;
    transform: translateX(0);
    animation: dot 2.8s infinite;
}

.dots {
    transform: translateX(0);
    margin-top: 12px;
    margin-left: 31px;
    animation: dots 2.8s infinite;
}

.dots span {
    display: block;
    float: left;
    width: 16px;
    height: 16px;
    margin-left: 16px;
    background: #000;
    border-radius: 50%;
}


/*
* ----------------------------------------------------------------------------------------
* 02.ANIMATION CSS
* ----------------------------------------------------------------------------------------
*/

@-webkit-keyframes scroll-down {
    0% {
        height: 0
    }
    50% {
        height: 100%
    }
    70% {
        height: 100%;
        transform: scaleY(.5);
        transform-origin: bottom
    }
    100% {
        height: 100%;
        transform: scaleY(0);
        transform-origin: bottom
    }
}

@-webkit-keyframes fade-in-bottom {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fade-in-bottom {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

.fadeup {
    -webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: fade-in-bottom 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@keyframes rotate {
    0% {
        transform: rotateZ(360deg);
    }
    100% {
        transform: rotateZ(0deg);
    }
}

@-moz-keyframes dot {
    50% {
        transform: translateX(96px);
    }
}

@-webkit-keyframes dot {
    50% {
        transform: translateX(96px);
    }
}

@-o-keyframes dot {
    50% {
        transform: translateX(96px);
    }
}

@keyframes dot {
    50% {
        transform: translateX(96px);
    }
}

@-moz-keyframes dots {
    50% {
        transform: translateX(-31px);
    }
}

@-webkit-keyframes dots {
    50% {
        transform: translateX(-31px);
    }
}

@-o-keyframes dots {
    50% {
        transform: translateX(-31px);
    }
}

@keyframes dots {
    50% {
        transform: translateX(-31px);
    }
}


/*
* ----------------------------------------------------------------------------------------
* 03.HEADDER CSS
* ----------------------------------------------------------------------------------------
*/

#main-headder {
    border-bottom: 1px solid rgba(33, 33, 33, .3);
    position: fixed;
    width: 100%;
    z-index: 3;
    transition: all .2s;
}

#main-headder .logo-wrap {
    width: 100px;
    padding: 20px 0 20px 0;
    text-align: center;
    transition: all .2s;
}

#main-headder .logo-wrap img {
    width: 50%;
}

.fixid {
    border-bottom: unset !important;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 20px 0 rgb(48 54 77 / 20%);
}

#main-headder.fixid .logo-wrap {
    padding: 10px 0 10px 0;
}


/*
* ----------------------------------------------------------------------------------------
* 03.HEADDER CSS
    - navigation
* ----------------------------------------------------------------------------------------
*/

.navigationcrop {
    border-left: 1px solid rgba(33, 33, 33, .2);
    padding: 0;
}

.list-nav {
    text-align: right;
    display: inline-block;
    float: right;
}

.list-nav .nav-li {
    position: relative;
    list-style: none;
    padding: 20px 30px 20px 30px;
    display: inline-block;
    float: left;
    line-height: 33px;
    border-left: 1px solid rgba(33, 33, 33, .2);
}

.list-nav .nav-li:nth-last-child(1) {
    border-right: 1px solid rgba(33, 33, 33, .2);
}

.list-nav .nav-li a {
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 700;
    display: block;
    position: relative;
    overflow: hidden;
}

.fixid .list-nav .nav-li {
    padding: 10px 30px 10px 30px;
}

.list-nav .nav-li a .one {
    font-style: normal;
    left: 0;
    position: absolute;
    transform: translateY(100%);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.list-nav .nav-li a .two {
    font-style: normal;
    font-weight: bold;
    position: relative;
    display: block;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.list-nav .nav-li {
    background-image: linear-gradient(to bottom, #212121 50%, transparent 50%);
    background-size: 100% 200%;
    background-position: bottom;
    transition: background-position 0.1s ease-in-out;
}

.list-nav .nav-li:hover {
    background-position: top;
}

.list-nav .nav-li:hover a .one {
    transform: translateY(0);
}

.list-nav .nav-li:hover a .two {
    transform: translateY(-100%);
}

.nav-li.active a .one {
    transform: translateY(0);
    color: #fff;
}

.nav-li.active a .two {
    transform: translateY(-100%);
}

.nav-li.active {
    background-position: top;
}


/*
* ----------------------------------------------------------------------------------------
* 03.HEADDER CSS
    - menu mobile
* ----------------------------------------------------------------------------------------
*/

.overlayclose {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-in-out;
}

.shows {
    visibility: visible;
    opacity: .8;
}

#menumobile {
    position: absolute;
    right: 20px;
    top: 30px;
    width: 40px;
    font-size: 40px;
    display: none;
    z-index: 10;
    transition: all .3s;
}

.fixid #menumobile {
    top: 20px;
}

#menumobile .burger:focus {
    outline: none;
}

.burger {
    display: flex;
    outline: none;
    height: 20px;
    width: 30px;
    border: 0px;
    padding: 0px;
    background: transparent;
    transition: all 250ms ease-out;
    cursor: pointer;
}

.burger:before,
.burger:after {
    content: '';
    width: 30px;
    height: 3px;
    position: absolute;
    background: #000;
    transition: all 250ms ease-out;
    will-change: transform;
}

.burger:before {
    transform: translateY(-3px);
    top: 0;
}

.burger:after {
    transform: translateY(3px);
    top: 5px;
}

.open.burger:before {
    transform: translateY(0) rotate(45deg);
    top: 5px;
}

.open.burger:after {
    transform: translateY(0) rotate(-45deg);
    top: 5px;
}

.slideout-menu {
    width: 50%;
    right: -500px;
    visibility: hidden;
    height: 100%;
    position: fixed;
    z-index: 5;
    background: #fff;
    top: 0;
    overflow-x: hidden;
    overflow-y: auto;
    transition: all 500ms ease-out;
}

#mobile-navigation {
    position: relative;
    top: 150px;
    left: 30px;
    padding-bottom: 50px;
}

#mobile-navigation>.list-navigation {
    display: block !important;
    padding-left: 0;
}

#mobile-navigation>.list-navigation li {
    display: block !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 15px;
    position: relative;
    margin-bottom: 20px;
}

#mobile-navigation>.list-navigation li a:focus {
    color: #212121;
}

#mobile-navigation>.list-navigation li.active a {
    color: #f23333;
}

.openmenu {
    visibility: visible;
    right: 0;
}


/*
* ----------------------------------------------------------------------------------------
* 04.HERO CSS
* ----------------------------------------------------------------------------------------
*/

#hero-wrap {
    height: 100%;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
    position: relative;
    background-image: url('../images/hero/1.webp');
    background-attachment: fixed !important;
    z-index: 1;
}

#hero-wrap:after {
    content: '';
    background: rgba(0, 0, 0, .3);
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.p-title {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 5px;
}

.h3-title {
    font-size: 72px;
    letter-spacing: 5px;
    font-weight: 700;
}

.h3-title span {
    color: #fff;
}

.medium-title {
    font-size: 25px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
}


/*
* ----------------------------------------------------------------------------------------
* 05.ABOUT CSS
* ----------------------------------------------------------------------------------------
*/

.wrap-aboutcontentpic {
    position: relative;
}

.wrap-aboutcontentpic img {
    width: 100%;
    border-radius: 5px;
}

.emblem {
    position: absolute;
    right: 0;
    top: -5vh;
    margin: 0 auto;
    width: 0;
    height: 200px;
    border-radius: 50%;
    font-weight: bold;
    color: #f23333;
    z-index: 1;
    animation: rotate 20s linear infinite;
    text-align: center;
}

.emblem span {
    position: absolute;
    display: inline-block;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    text-transform: uppercase;
    font-size: 15px;
    transition: all 0.5s cubic-bezier(0, 0, 0, 1);
}

.resume-list {
    padding: 40px 0 30px 60px;
    position: relative;
    border-bottom: 1px solid rgba(33, 33, 33, .2);
}

.resume-list .icons-resume {
    position: absolute;
    left: 0;
    background: rgba(242, 51, 51, .2);
    padding: 10px;
    border-radius: 100%;
    font-size: 20px;
}

.list-resume li {
    position: relative;
    margin-bottom: 5px;
    list-style: none;
    border: 2px solid rgba(33, 33, 33, .1);
    display: inline-block;
    margin-left: 0;
    cursor: pointer;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.resume-list:last-child {
    border-bottom: none;
}

.content-dabout {
    color: #555;
}

.list-resume li span {
    padding: 5px 20px;
    display: block;
    font-weight: 700;
    color: rgba(33, 33, 33, .1);
}

.list-resume li:hover {
    border: 2px solid rgba(33, 33, 33, 1);
}

.list-resume li:hover span {
    color: rgba(33, 33, 33, 1);
}

.list-resume li.tab-current:hover {
    border: 2px solid #f23333;
}

.list-resume li.tab-current {
    border: 2px solid #f23333;
}

.list-resume li.tab-current span {
    background: #f23333;
    color: #fff !important;
}

.resume-text-wrap p.first {
    font-weight: 600;
    font-size: 13px;
    color: #f23333;
}

.resume-text-wrap p.detail-p {
    font-size: 15px;
}

.resume-text-wrap h6 {
    color: rgba(33, 33, 33, .5);
    text-transform: uppercase;
}

.resume-text-wrap h3 {
    font-weight: 700;
    font-size: 25px;
}

.block-resume {
    display: none;
}

.block-resume.content-current {
    display: block;
}

.wrap-bar {
    position: relative;
    background: #f8f9fa;
    margin-top: 70px;
}

p.title-pp {
    font-size: 13px;
    position: absolute;
    top: -25px;
    text-transform: uppercase;
}

.skill-bar {
    height: 10px;
    position: relative;
    background: #f23333;
}

.skill-bar span {
    position: absolute;
    right: 0;
    bottom: 15px;
    color: #fff;
    background: #f23333;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: 600;
}

.skill-bar:after {
    content: "";
    position: absolute;
    bottom: 8px;
    right: 0;
    border-left: 7px solid transparent;
    border-top: 8px solid #f23333;
}


/*
* ----------------------------------------------------------------------------------------
* 06.SERVICE CSS
* ----------------------------------------------------------------------------------------
*/

#service-wrap {
    background: #f8f9fa;
}

.wrap-service {
    padding: 20px;
    background: #fff;
    box-shadow: rgb(48 54 77 / 20%) 0px 25px 50px -12px;
    transition: all .3s;
}

.wrap-service .wrap-innerservice {
    padding: 20px;
    border: 1px solid rgba(33, 33, 33, .1);
    position: relative;
    overflow: hidden;
}

.wrap-service .icons {
    font-size: 60px;
    margin-bottom: 25px;
}

.wrap-service .bigicon {
    font-size: 250px;
    position: absolute;
    right: -50px;
    z-index: 1;
    opacity: 0;
    transition: all .3s;
}

.wrap-service h3 {
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 25px;
}

.wrap-service p {
    color: rgba(33, 33, 33, .5);
}

.wrap-service:hover {
    box-shadow: unset;
}

.wrap-service:hover .wrap-innerservice .icons {
    color: #f23333;
}

.wrap-service:hover .wrap-innerservice .bigicon {
    opacity: .1;
}


/*
* ----------------------------------------------------------------------------------------
* 07.PORTFOLIO CSS
* ----------------------------------------------------------------------------------------
*/

.masonry {
    transition: all .5s ease-in-out;
    padding-top: 30px;
    position: relative;
    padding-left: 0;
    padding-right: 0;
    z-index: 1;
}

.masonry>.item {
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    margin: 0;
    position: relative;
    float: right;
    padding: 10px;
    width: 33.3333%;
}

.masonry .item a {
    display: block;
    overflow: hidden;
}

.masonry .item img {
    width: 100%;
    transition: all .3s ease-in-out;
}

.texts {
    position: absolute;
    top: 60%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 10px;
    width: 100%;
    color: #fff;
    transition: all .3s;
    opacity: 0;
    z-index: 1;
}

.texts h6 {
    letter-spacing: 1px;
}

.texts h4 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
}

.item a:hover>.texts {
    top: 50%;
    opacity: 1;
}

.item a:hover img {
    transform: scale(1.1);
}

.masonry .item a:hover img {
    filter: brightness(0.1);
}

.filter-button {
    padding-left: 0;
    text-align: center;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(33, 33, 33, .2);
}

.btfilter {
    padding: 10px 10px 20px 20px;
    cursor: pointer;
    font-size: 15px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    border: 1px solid transparent;
    color: rgba(33, 33, 33, .5);
}

.btfilter:hover {
    padding: 10px 10px 20px 20px;
    color: #f23333;
}

.filter-button .btfilter {
    display: inline-block;
}

.actives {
    color: #f23333;
}

.actives:after {
    content: '';
    width: 100%;
    position: absolute;
    height: 2px;
    bottom: -2px;
    left: 0;
    margin-left: 5px;
    background: #f23333;
}


/*
* ----------------------------------------------------------------------------------------
* 08.GAP CSS
* ----------------------------------------------------------------------------------------
*/

#gap-section {
    padding: 100px 0 100px 0;
    position: relative;
    z-index: 1;
}

#gap-section:after {
    content: '';
    background: rgba(33, 33, 33, .8);
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: -1;
}


/*
* ----------------------------------------------------------------------------------------
* 09.TESTIMONIAL CSS
* ----------------------------------------------------------------------------------------
*/

#testimonial-section {
    background: #fff;
}

.wrap-testimonial {
    padding: 0 0 0 0;
}

.item-testimonial {
    padding: 100px 0 0 0;
    position: relative;
}

.icons-testi {
    font-size: 200px;
    position: absolute;
    color: rgba(33, 33, 33, .1);
    right: 0;
    top: 0;
}

.content-testimonial h3 {
    line-height: 1.5;
    margin: 0 0 80px 0;
}

.bottominner-wrap img {
    width: 20%;
    margin: 0 auto;
    border-radius: 100%;
    position: relative;
    vertical-align: middle;
    border-style: none;
    box-shadow: 0px 0px 1px 30px rgba(242, 51, 51, .2);
}

.user-name {
    margin: 50px 0 0 0;
    font-weight: 600;
    font-size: 20px;
}

.user-name>p {
    margin: 0;
    color: #f23333;
}

.user-name>p.title-user {
    font-weight: 100;
    margin: 0 0 30px 0;
    color: initial;
}


/*
* ----------------------------------------------------------------------------------------
* 10.PARTNER CSS
* ----------------------------------------------------------------------------------------
*/

.partner-wrap {
    padding: 50px 0 50px 0;
}

.inner-partner {
    margin: 0 10px 0 10px;
    text-align: center;
}

.item-partner img {
    opacity: .5;
    padding: 20px;
    margin: 0 auto;
    border: 1px solid rgba(33, 33, 33, .2);
    width: 200px !important;
    transition: all .3s;
}

.item-partner:hover img {
    opacity: 1;
}


/*
* ----------------------------------------------------------------------------------------
* 11.BLOG CSS
* ----------------------------------------------------------------------------------------
*/

#blog-section {
    background: #f8f9fa;
}

.wrap-imgblog {
    height: 300px;
    overflow: hidden;
}

.wrap-imgblog img {
    width: 100%;
    transition: all .3s;
}

.postnews {
    margin: 30px 0;
}

.wrap-content {
    padding: 20px;
    margin: -50px 10px 0;
    box-shadow: rgb(0 0 0 / 25%) 0px 25px 50px -12px;
    position: relative;
    background: #fff;
    transition: all .3s;
}

.wrap-content h3 {
    font-weight: 600;
    margin: 10px 0 20px 0;
    font-size: 20px;
}

.category-story {
    display: inline-block;
}

.wrap-content p {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin: 0 0 12px;
    font-size: 15px;
    color: rgba(33, 33, 33, .5);
}

.postnews:hover .wrap-imgblog img {
    transform: scale(1.1) rotate(-5deg);
}

.postnews:hover .wrap-content {
    box-shadow: unset;
}


/*
* ----------------------------------------------------------------------------------------
* 12.CONTACT CSS
* ----------------------------------------------------------------------------------------
*/

.wrap-contactinfo {
    padding: 0 20px 30px;
    background: #f8f9fa;
    text-align: center;
}

.wrap-contactinfo .icons-contact {
    padding: 20px;
    font-size: 30px;
    background: #f23333;
    color: #fff;
    border-radius: 10px;
    position: relative;
    top: -30px;
}

.wrap-half label {
    position: relative;
    display: block;
    color: rgba(33, 33, 33, .5);
}

.title-contact h4 {
    font-weight: 600;
}

.title-contact p {
    color: rgba(33, 33, 33, .5);
}

.list-infocontact {
    padding-left: 0;
}

.list-infocontact li {
    list-style: none;
    position: relative;
    display: block;
}

.list-infocontact li .icons-contact {
    position: absolute;
    left: 0;
    position: absolute;
    left: 0;
    background: rgba(242, 51, 51, .2);
    padding: 10px;
    border-radius: 100%;
    font-size: 20px;
}

.list-infocontact li .mini-infocontact {
    padding-left: 70px;
}

.list-infocontact li .mini-infocontact p.p-1 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 3px;
    line-height: 1;
    padding-left: 0 !important;
}

.list-infocontact li .mini-infocontact p.p-2 {
    padding-left: 0 !important;
    padding-top: 0 !important;
}

.wrap-bottom label {
    position: relative;
    display: block;
    color: rgba(33, 33, 33, .5);
}

.subbuton {
    background: transparent;
    border: none;
    cursor: pointer;
}

.subbuton .one {
    width: 100%;
    text-align: center;
    color: #fff;
}


/*
* ----------------------------------------------------------------------------------------
* 13.FOOTER CSS
* ----------------------------------------------------------------------------------------
*/

#footer-section {
    height: auto;
    background: #212121;
    background-image: url('../images/asset/pattern.png');
}

.wrap-logobottom {
    width: 100px;
}

.wrap-logobottom img {
    width: 100%;
}

.title-bottom h3 {
    color: #fff;
    font-weight: 600;
}

.title-bottom p {
    color: #fff;
}

.title-foot {
    color: #fff;
    font-weight: 600;
}

.link-list li {
    list-style: none;
    position: relative;
    padding: 5px 0 5px 0;
}

.link-list li a {
    color: rgba(255, 255, 255, .5);
    font-weight: 600;
    transition: all .3s;
}

.link-list li a:hover {
    color: rgba(255, 255, 255, 1);
}

.bottom-footer {
    border-top: 1px solid rgba(255, 255, 255, .2);
}

.title-bottom {
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.bottom-footer p {
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
}

.bottom-footer p .mini-p {
    font-weight: normal;
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
}