/*
* ----------------------------------------------------------------------------------------
Author        : Rama Hardian
Template Name : Dvinic - multipurpose onepage portfolio
Version       : 1.1
* ----------------------------------------------------------------------------------------
  TABLE OF CONTENT
* ----------------------------------------------------------------------------------------
* 01.BASE CSS
* 02.KEYFRAME ANIMATION
* 03.LOADDER
* 04.MAIN HEADDER PAGE CSS
* 05.MAIN NAVIGATION CSS
* 06.MOBILE NAVIGATION
* 07.MAIN HERO SECTION
* 08.MAIN ABOUT SECTION
* 09.GAP SECTION
* 10.PROJECT SECTION
* 11.TESTIMONIAL SECTION
* 12.NEWS SECTION
* 13.CONTACTUS SECTION
* 14.FOOTER SECTION
* 15.MEDIA QUERY PAGE

changelog from version 1.0 to version 1.1 

* improfment css and html image strecth in some old version browser


/*
* ----------------------------------------------------------------------------------------
* 01.BASE CSS
* ----------------------------------------------------------------------------------------
*/

*,
::after,
::before {
    box-sizing: border-box;
}

::-moz-selection {
    color: #000;
    background: #dbdbdb;
}

::selection {
    color: #000;
    background: #dbdbdb;
}

html,
body {
    background-color: #fff;
    font-family: 'Roboto', sans-serif;
    color: #757575;
    background: #FFFFFF;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
}

input,
textarea {
    position: relative;
    display: block;
    width: 100%;
    padding: 8px 15px 8px 16px;
    color: #969696;
    border: 1px solid #d7d2bd;
    height: 50px;
    border-radius: 4px;
    background-color: transparent;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.fixed {
    overflow: hidden;
}

.mouse {
    height: 100vh;
    position: absolute;
    width: 100%;
    bottom: 50px;
}

.mouse::before {
    animation: bounce 1s ease infinite;
    bottom: 2rem;
    color: #fff;
    content: '╲╱';
    font-size: 2rem;
    height: 4rem;
    left: 50%;
    letter-spacing: -1px;
    line-height: 4rem;
    margin-left: -3rem;
    opacity: 0.8;
    position: absolute;
    text-align: center;
    width: 6rem;
}

main {
    overflow: hidden;
}

.modal-title {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.closemodal {
    display: inline-block;
    background: #272727;
    padding: 20px 60px 20px 60px;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 30px;
}

.modal-body p {
    font-size: 18px;
}


/*
* ----------------------------------------------------------------------------------------
* 02.KEYFRAME ANIMATION
* ----------------------------------------------------------------------------------------
*/

@keyframes bounce {
    50% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes effect-ripple {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        top: 0px;
        left: 0px;
        width: 72px;
        height: 72px;
        opacity: 0;
    }
}


/*
* ----------------------------------------------------------------------------------------
* 03. LOADDER
* ----------------------------------------------------------------------------------------
*/

.line-bg>div {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: rgba(175, 173, 173, .2);
}

.line-bg>div:nth-child(1) {
    left: 20%;
}

.line-bg>div:nth-child(2) {
    left: 40%;
}

.line-bg>div:nth-child(3) {
    left: 60%;
}

.line-bg>div:nth-child(4) {
    left: 80%;
}

.wraploadder {
    width: 100%;
    height: 100%;
    position: fixed;
    background: white;
    z-index: 9999;
}

.loadder {
    display: inline-block;
    width: 80px;
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loadder div {
    position: absolute;
    border: 4px solid #969696;
    opacity: 1;
    border-radius: 50%;
    animation: effect-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.loadder div:nth-child(2) {
    animation-delay: -0.5s;
}


/*
* ----------------------------------------------------------------------------------------
* 04. MAIN HEADDER PAGE CSS
* ----------------------------------------------------------------------------------------
*/

#main-headderpage {
    padding-top: 20px;
    position: absolute;
    width: 100%;
    z-index: 1;
    transition: all .3s;
}

#main-headderpage.fixi {
    padding-top: 10px;
    position: fixed;
    padding-bottom: 10px;
    background: #fff;
    z-index: 9;
    box-shadow: 0 1px 40px 0 rgba(32, 33, 36, 0.28);
}

.wrap-logo {
    width: 100px;
    height: 70px;
    filter: invert(1);
}


/*
* ----------------------------------------------------------------------------------------
* 05. MAIN NAVIGATION CSS
* ----------------------------------------------------------------------------------------
*/

.main-wrapnavigation {
    text-align: right;
    padding-top: 30px;
}

.main-wrapnavigation ul li {
    list-style: none;
    margin-right: 50px;
    display: inline-block;
    position: relative;
}

.main-wrapnavigation ul li:nth-last-child(1) {
    margin-right: 0;
}

.main-wrapnavigation ul li a {
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: bold;
    transition: all .3s;
}

.main-wrapnavigation ul li a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 1);
    transition: width .3s;
    position: relative;
    bottom: -10px;
}

.main-wrapnavigation ul li.active a {
    color: rgba(255, 255, 255, 1);
}

.main-wrapnavigation ul li.active a::after {
    width: 50%;
}

.main-wrapnavigation ul li a:hover {
    color: rgba(255, 255, 255, 1);
}

.main-wrapnavigation ul li a:hover::after {
    width: 50%;
    transition: width .3s;
}

.fixi .main-wrapnavigation ul li.active a {
    color: rgba(0, 0, 0, 1);
}

.fixi .main-wrapnavigation ul li a {
    color: rgba(0, 0, 0, .5);
}

.fixi .main-wrapnavigation ul li a:hover {
    color: rgba(0, 0, 0, 1);
}

.fixi .wrap-logo {
    width: 80px;
    filter: invert(0);
}

.fixi .main-wrapnavigation ul li a::after {
    color: rgba(0, 0, 0, 1);
    background: rgba(0, 0, 0, 1);
}


/*
* ----------------------------------------------------------------------------------------
* 06.MOBILE NAVIGATION
* ----------------------------------------------------------------------------------------
*/

.menumobile-icon {
    position: absolute;
    width: 30px;
    height: 20px;
    display: none;
    top: -40px;
    right: 30px;
}

.menumobile-line {
    position: absolute;
    right: 0;
    background-color: #fff;
    height: 2px;
    width: 100%;
    pointer-events: none;
    transition: .3s cubic-bezier(.85, 0, .15, 1);
    -webkit-transition: .3s cubic-bezier(.85, 0, .15, 1);
    -moz-transition: .3s cubic-bezier(.85, 0, .15, 1);
    -ms-transition: .3s cubic-bezier(.85, 0, .15, 1);
    -o-transition: .3s cubic-bezier(.85, 0, .15, 1);
}

.menumobile-line-1 {
    top: 3px;
}

.menumobile-line-2 {
    top: 7px;
    bottom: 0;
    margin: auto;
}

.fixi .menumobile-line {
    background-color: #272727;
}

.mobilenav-wrap {
    height: 100%;
    overflow: auto;
    background: #fff;
    position: fixed;
    top: 0;
    padding: 30px;
    right: -1000px;
    display: none;
    width: 230px;
    z-index: 9;
}

.main-mobilenav {
    text-align: right;
    padding-top: 50px;
}

.main-mobilenav .listmenu li {
    list-style: none;
    margin-bottom: 30px;
    font-size: 20px;
    position: relative;
}

.main-mobilenav ul li a {
    color: rgba(37, 36, 36, 0.88);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: bold;
    transition: all .3s;
}

.main-mobilenav ul li a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: rgba(37, 36, 36, 1);
    transition: width .3s;
    position: relative;
    bottom: 10px;
    left: -80px;
}

.main-mobilenav ul li.active a::after {
    width: 70%;
}

.menu-mobile-overlay {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(37, 36, 36, 0.88);
    top: 0;
}


/*
* ----------------------------------------------------------------------------------------
* 07.MAIN HERO SECTION
* ----------------------------------------------------------------------------------------
*/

#main-herowrap {
    height: 700px;
    overflow: hidden;
    position: relative;
}

#main-hero {
    position: absolute;
    width: 100%;
}

.wrapimg-hero {
    width: 100%;
    height: 700px;
}

#detail-wraphero {
    padding-top: 20%;
}

.wrap-infohero {
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.wrap-infohero h2 {
    font-size: 80px;
    color: #fff;
    font-weight: 800;
}

.wrap-infohero p {
    font-family: 'Roboto', sans-serif;
    font-size: 30px;
    color: #fff;
    letter-spacing: 1px;
}

.wrap-sosmed {
    position: relative;
    text-align: right;
}

.sosmed-up {
    padding-left: 0;
}

.sosmed-up:before {
    content: '';
    height: 100px;
    display: block;
    width: 1px;
    background: #fff;
    position: absolute;
    right: 8px;
    bottom: 170px;
}

.sosmed-up li {
    list-style: none;
    padding-top: 30px;
    font-size: 20px;
    color: #fff;
}


/*
* ----------------------------------------------------------------------------------------
* 08.MAIN ABOUT SECTION
* ----------------------------------------------------------------------------------------
*/

#about-wrap {
    padding-top: 250px;
    padding-bottom: 150px;
}

#wrap-aboutcontainer {
    padding-left: 5%;
    padding-right: 5%;
}

.image-poto-l {
    width: 400px;
    height: 450px;
}

.about-meleftwrap h2 {
    padding-top: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    color: #272727;
    font-weight: 800;
}

.about-meleftwrap p {
    padding-top: 50px;
    font-size: 18px;
    line-height: 1.5;
}

.about-meleftwrap a {
    text-decoration: none;
    color: #272727;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    display: inline-block;
    position: relative;
    padding-top: 20px;
}

.about-meleftwrap a::after {
    content: '';
    display: block;
    width: 50%;
    height: 2px;
    background: #272727;
    transition: width .3s;
    position: relative;
    bottom: -10px;
}

.about-meleftwrap a:hover::after {
    width: 0%;
}

.image-poto-r-one {
    width: 300px;
    height: 400px;
    position: absolute;
    left: -80px;
    top: 50px;
    z-index: 1;
}

.image-poto-r-one img {
    width: 100%;
}

.image-poto-r-two {
    width: 100%;
    height: 600px;
    position: absolute;
}


/*
* ----------------------------------------------------------------------------------------
* 09. GAP SECTION
* ----------------------------------------------------------------------------------------
*/

.bg-gapwrap {
    width: 100%;
    height: 450px;
    background: url('../image/user/gap2.jpg');
    background-position: center;
    position: relative;
    background-repeat: no-repeat;
}

.bg-gapwrap:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.80), rgba(0, 0, 0, 0.93));
    opacity: .6;
}

.textgap-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.textgap-wrap h2 {
    font-size: 35px;
    color: #fff;
    line-height: 50px;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
}

.textgap-wrap p {
    padding: 10px;
    background: #fff;
    position: relative;
    left: 50px;
    top: -5px;
}

.textgap-wrap a {
    padding: 20px;
    position: relative;
    left: 50px;
    color: #272727;
    top: -5px;
    background: #fff;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    letter-spacing: 1px;
}

.textgap-wrap a:focus {
    color: #272727;
    background: #fff;
    text-decoration: none;
}

.textgap-wrap a:hover {
    text-decoration: none;
    color: #272727;
}


/*
* ----------------------------------------------------------------------------------------
* 10. PROJECT SECTION
* ----------------------------------------------------------------------------------------
*/

#portfolio {
    padding-bottom: 150px;
    padding-top: 100px;
}

.title-wrap {
    width: 100%;
    padding-bottom: 30px;
    text-align: right;
}

.title-wrap h2 {
    font-weight: 800;
    color: #272727;
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
}

#porto-wrap {
    padding-right: 5%;
    padding-left: 5%;
    padding-top: 50px;
    position: relative;
}

.poto-wrap {
    transition: all .5s ease-in-out;
    column-gap: 30px;
    column-fill: initial;
    column-count: 3;
}

.texts {
    position: absolute;
    top: 60%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 10px;
    width: 250px;
    color: #fff;
    transition: all .3s;
    opacity: 0;
}

.texts h6 {
    letter-spacing: 3px;
}

.texts h4 {
    line-height: 25px;
    font-family: 'Poppins', sans-serif;
}

.gallery-link {
    transition: all .3s;
    width: 100%;
    height: 100%;
    display: block;
    color: #fff;
}

.gallery-link:hover>.texts {
    top: 50%;
    opacity: 1;
}

.gallery-link:hover>img {
    filter: brightness(0.5);
}

.poto-wrap>.item {
    margin-bottom: 30px;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    position: relative;
}

.poto-wrap .item img {
    width: 100%;
    transition: all .3s ease-in-out;
    backface-visibility: hidden;
}

.btn-pg {
    display: inline-block;
    background: #272727;
    padding: 20px 60px 20px 60px;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #fff;
    float: right;
    letter-spacing: 1px;
    margin-top: 30px;
}

.btn-pg:hover {
    text-decoration: none;
    color: #fff;
}

.btn-pg:focus {
    text-decoration: none;
    color: #fff;
}

.all:before {
    content: '';
    width: 70%;
    height: 2px;
    background: #272727;
    position: absolute;
    left: 0;
    bottom: 30px;
}

.filter-button {
    padding-left: 0;
    text-align: right;
    margin-bottom: 50px;
    border-bottom: 1px solid #b9b9b9;
}

.btfilter {
    padding-bottom: 20px;
    padding-left: 10px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    border: 1px solid transparent;
}

.btfilter:hover {
    padding-bottom: 20px;
    padding-left: 10px;
}

.filter-button .btfilter {
    display: inline-block;
}

.actives {
    color: #272727;
}

.actives:after {
    content: '';
    width: 100%;
    position: absolute;
    height: 2px;
    bottom: -2px;
    left: 0;
    margin-left: 5px;
    background: #272727;
}


/*
* ----------------------------------------------------------------------------------------
* 11. TESTIMONIAL SECTION
* ----------------------------------------------------------------------------------------
*/

.wrap-slidetesti {
    position: relative;
}

.wrap-slidetesti .owl-theme .custom-nav {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 1;
    right: 0;
}

.wrap-slidetesti .owl-theme .custom-nav .owl-prev,
.wrap-slidetesti .owl-theme .custom-nav .owl-next {
    position: absolute;
    height: 100px;
    color: inherit;
    background: none;
    border: none;
    z-index: 100;
}

.wrap-slidetesti .owl-theme .custom-nav .owl-prev i,
.wrap-slidetesti .owl-theme .custom-nav .owl-next i {
    font-size: 2.5rem;
    color: #272727;
}

.wrap-slidetesti .owl-theme .custom-nav .owl-prev {
    left: 0;
}

.owl-prev:focus {
    outline: 0;
}

.owl-prev:active {
    outline: none;
    border: none;
}

.wrap-slidetesti .owl-theme .custom-nav .owl-next {
    right: 0;
}

.owl-next:focus {
    outline: 0;
}

.owl-next:active {
    outline: none;
    border: none;
}

.owl-dot {
    margin-top: 50px;
}

.owl-dot:focus {
    outline: 0;
}

.owl-dotst:active {
    outline: none;
    border: none;
}

.owl-dot.active span {
    background: #272727 !important;
}

.owl-dot span {
    border: 1px solid;
    background: transparent !important;
}

#testimonial-wrap {
    padding-right: 80px;
    padding-left: 80px;
    margin-top: 0;
}

.testi-wrap {
    width: 70%;
    padding-top: 100px;
    padding-bottom: 70px;
    text-align: left;
}

.testi-wrap h2 {
    font-weight: 800;
    color: #272727;
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
}

.testi-wrap p {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 20px;
}

.text-testiwrap {
    width: 50%;
    float: right;
    padding-right: 100px;
    padding-top: 10%;
    padding-bottom: 10%;
}

.text-tesxtiwrap p {
    line-height: 23px;
}

.name-client:before {
    content: '';
    width: 100px;
    height: 2px;
    background: #272727;
    position: absolute;
    left: 0;
    top: 8px;
}

.name-client {
    font-size: 13px;
    position: relative;
    display: inline-block;
    color: #272727;
    margin-top: 10px;
    font-weight: 800;
    padding-left: 130px;
}

.poto-userwarp {
    width: 40%;
    float: left;
    height: 400px;
    padding-right: 50px;
    padding-left: 100px;
}


/*
* ----------------------------------------------------------------------------------------
* 12. NEWS SECTION
* ----------------------------------------------------------------------------------------
*/

.btn-pg-news {
    display: inline-block;
    background: #272727;
    padding: 20px 60px 20px 60px;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #fff;
    letter-spacing: 1px;
    margin-top: 50px;
}

.btn-pg-news:hover {
    text-decoration: none;
    color: #fff;
}

.newstitle-wrap {
    width: 60%;
    padding-top: 0px;
    padding-bottom: 100px;
    text-align: center;
    margin: 0 auto;
}

.newstitle-wrap h2 {
    font-weight: 800;
    color: #272727;
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
}

.newstitle-wrap p {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 20px;
}

.newscard {
    height: auto;
    margin-top: 30px;
}

.news-wrapmain {
    text-align: center;
}

#news-wrap {
    background: #EEEFF1;
    padding-top: 100px;
    padding-bottom: 100px;
    height: auto;
}

.counts {
    text-align: right;
    position: absolute;
    width: 100%;
    left: 0;
    padding-right: 20px;
}

.date {
    font-size: 25px;
    font-weight: bold;
}

.icon {
    display: inline-block;
    position: relative;
}

.icon p {
    margin-bottom: 20px;
    margin-top: 0;
}

.icon p:after {
    content: '';
    width: 100%;
    height: 2px;
    background: #272727;
    left: 0;
    bottom: 0;
    position: absolute;
}

.news-box {
    box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    background: #fff;
    height: auto;
    position: relative;
    padding: 30px;
    text-align: left;
}

.news-content p {
    margin-bottom: 30px;
    line-height: 23px;
    margin-top: 20px;
}

.news-content h3 {
    color: #272727;
    font-weight: 800;
}

.newsimg-wrap {
    height: 200px;
    width: 100%;
}


/*
* ----------------------------------------------------------------------------------------
* 13.CONTACTUS SECTION
* ----------------------------------------------------------------------------------------
*/

#contact-us {
    padding-bottom: 100px;
}

.info-contactwrap {
    text-align: right;
}

.form-contactwrap {
    margin-bottom: 30px;
}

.contacttitle-wrap {
    width: 60%;
    padding-top: 100px;
    padding-bottom: 20px;
    padding-left: 20px;
    text-align: left;
}

.contacttitle-wrap h2 {
    font-weight: 800;
    color: #272727;
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
}

.contacttitle-wrap-bottom {
    width: 100%;
    text-align: right;
    padding-bottom: 30px;
    padding-left: 20px;
    padding-top: 30px;
}

.contacttitle-wrap-bottom h2 {
    font-weight: 800;
    color: #272727;
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    line-height: 1.5;
}

.contacttitle-info {
    padding-right: 50px;
    font-size: 15px;
    position: relative;
}

.error {
    color: red;
    margin-top: 5px;
    font-weight: normal;
    font-size: 12px;
}

.iconscontact {
    position: absolute;
    right: 10px;
    top: 0;
    font-size: 15px;
}

.input.error {
    margin-top: 10px;
}

.input {
    margin-top: 20px;
}

textarea.input {
    resize: none;
    height: 200px;
}

.inputsubmit {
    margin-top: 20px;
    background: #272727;
    border: none;
    padding: 20px;
    color: #fff;
    width: 100%;
    font-weight: bold;
    font-size: 13px;
    letter-spacing: 1px;
}

.image-contactwrap {
    width: 100%;
    height: 600px;
    position: relative;
}

.image-contactwrap-r {
    width: 300px;
    height: 400px;
    position: absolute;
    right: -10px;
    top: 100px;
    z-index: 1;
}

iframe {
    height: 400px;
    width: 100%;
    position: relative;
    border: none;
    top: -100px;
}


/*
* ----------------------------------------------------------------------------------------
* 14.FOOTER SECTION
* ----------------------------------------------------------------------------------------
*/

svg {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -96px;
    margin-top: -50px;
}

.up {
    width: 100%;
    display: block;
    position: relative;
    text-align: center;
    top: -50px;
}

#uparrow {
    font-size: 20px;
    cursor: pointer;
}

#main-footerpage {
    background: #272727;
    padding-top: 20px;
    position: relative;
}

.logo-foot {
    width: 100px;
    padding-bottom: 30px;
    height: 50px;
    filter: invert(1);
}

.foot-miniinfo {
    text-align: left;
    line-height: 1.5;
    font-size: 13px;
    color: #fff;
}

.sosfoot {
    padding-left: 0;
    padding-top: 10px;
    text-align: right;
}

.sosfoot li {
    display: inline-block;
    position: relative;
    margin-left: 30px;
}

.sosfoot li i {
    font-size: 15px;
    color: #fff;
}

.listlinkfoot {
    padding-left: 0;
    padding-top: 10px;
    text-align: center;
}

.listlinkfoot li {
    list-style: none;
    display: inline-block;
    margin-right: 10px;
    margin-left: 10px;
}

.listlinkfoot li a {
    color: rgba(255, 255, 255, 0.49);
    font-family: 'Poppins', sans-serif;
}

.listlinkfoot li a:hover {
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
}

.foot-bottomwrap {
    padding-top: 10px;
    color: rgba(255, 255, 255, .3);
    padding-bottom: 10px;
    text-align: center;
    font-size: 11px;
    letter-spacing: 1px;
}

.up a {
    color: #fff;
}


/* ---------------------------------------------- /*
* 15.MEDIA QUERY PAGE
/* ---------------------------------------------- /*
*/

@media only screen and (min-device-width: 1366px) and (max-device-width: 1366px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
    .image-poto-r-one {
        top: 100px;
    }
    .news-box {
        margin-top: 50px;
    }
}

@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {}

@media screen and (max-width: 1599px) {}

@media screen and (max-width: 1240px) {
    .image-poto-r-one {
        top: 100px;
    }
}

@media (max-width: 999px) {
    .image-poto-r-one {
        display: none !important;
    }
    .filter-button {
        text-align: center;
        position: relative;
        top: 0;
    }
    .btfilter {
        font-size: 13px;
        margin-top: 20px;
    }
    .menumobile-icon {
        display: block;
    }
    .main-wrapnavigation {
        display: none;
    }
    #detail-wraphero {
        padding-top: 300px;
    }
    .wrap-infohero h2 {
        font-size: 50px;
    }
    .wrap-infohero p {
        font-size: 20px;
    }
    #about-wrap {
        padding-top: 100px;
    }
    .image-poto-l {
        display: none;
    }
    .image-poto-r-two {
        width: 100%;
        height: 600px;
        position: relative;
        margin: 0 auto;
    }
    .btfilter {
        padding-left: 10px;
    }
    .actives:after {
        margin-left: 5px;
    }
    .about-merightwrap {
        padding-top: 150px;
    }
    .textgap-wrap {
        display: block;
        width: 70%;
    }
    .textgap-wrap h2 {
        margin-bottom: 30px;
        display: block;
        font-size: 30px;
    }
    .textgap-wrap a {
        display: inline-block;
        left: 0;
    }
    #porto-wrap {
        padding-top: 30px;
    }
    .owl-carousel .owl-dots.disabled,
    .owl-carousel .owl-nav.disabled {
        display: block !important;
    }
    .title-wrap {
        padding-bottom: 0;
        text-align: center;
    }
    .title-wrap h2 {
        font-size: 30px;
    }
    .testi-wrap {
        padding-left: 30px;
        width: 90%;
    }
    .testi-wrap p {
        font-size: 15px;
    }
    .testi-wrap h2 {
        font-size: 30px;
    }
    .text-testiwrap {
        width: 250px;
        padding-left: 0;
        padding-right: 20px;
    }
    .text-testiwrap p {
        line-height: 23px;
    }
    .name-client:before {
        width: 30px;
    }
    .name-client {
        padding-left: 50px;
    }
    .newstitle-wrap p {
        font-size: 15px;
    }
    .poto-userwarp {
        width: 280px;
        height: 250px;
        padding-right: 20px;
        padding-left: 0;
        margin-bottom: 20px;
    }
    .poto-userwarp>img {
        height: 280px !important;
    }
    .newscard {
        margin-top: 50px;
    }
    .image-contactwrap-r {
        display: none !important;
    }
    .image-contactwrap {
        padding-top: 30px;
        margin-bottom: 30px;
        height: 350px;
    }
    .image-contactwrap>img {
        height: 350px;
    }
    .info-contactwrap {
        padding-left: 50px;
    }
    iframe {
        top: 0;
        margin-top: 30px;
    }
    #main-footerpage {
        padding-bottom: 30px;
    }
    .logo-foot {
        width: 100px;
        padding-bottom: 30px;
        margin: 0 auto;
        filter: invert(1);
    }
    .sosfoot {
        padding-left: 0;
        padding-top: 10px;
        text-align: center;
    }
    .sosfoot li {
        margin-left: 20px;
        margin-right: 20px;
    }
    .btn-pg:before {
        width: 50%;
        left: 10px;
    }
}

@media (max-width: 890px) {
    .poto-wrap {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .image-poto-r-two {
        width: 100%;
        height: 350px;
        position: relative;
        margin: 30px 0;
    }
    .poto-userwarp {
        width: 100%;
        height: 250px;
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 20px;
    }
    .text-testiwrap {
        width: 100%;
        padding-left: 0;
        padding-right: 20px;
        padding-top: 50px;
        float: left;
    }
    .name-client {
        padding-left: 0;
        margin-top: 30px;
    }
    .name-client:before {
        width: 50px;
        top: -10px;
    }
    .wraptext {
        width: 100%;
        margin: 0 0 1em 0;
        overflow: hidden;
    }
    .overflows {
        position: relative;
        height: 4.6em;
        /* exactly three lines */
    }
    .overflows:after {
        content: "";
        text-align: right;
        position: absolute;
        bottom: 0;
        right: 0;
        width: 70%;
        height: 1.2em;
        background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 50%);
    }
}

@media only screen and (max-width: 690px) {}

@media only screen and (max-width: 580px) {
    #detail-wraphero {
        padding-top: 230px;
    }
    .wrap-infohero h2 {
        font-size: 30px;
    }
    .wrap-infohero p {
        font-size: 15px;
    }
    .about-meleftwrap p {
        padding-top: 30px;
        font-size: 15px;
        line-height: 1.7;
    }
    .poto-userwarp {
        width: 100%;
        height: 300px;
        padding-right: 30px;
        padding-left: 30px;
        margin-bottom: 0;
    }
    #testimonial-wrap {
        padding-right: 0;
        padding-left: 0;
        margin-top: 0;
    }
    .text-testiwrap {
        padding-left: 30px;
        width: 100%;
        padding-right: 30px;
        padding-top: 30px;
    }
    .wrap-slidetesti .owl-theme .custom-nav {
        display: none;
    }
    .name-client {
        padding-left: 0;
        margin-top: 30px;
    }
    .name-client:before {
        width: 50px;
        top: -10px;
    }
    .text-testiwrap p {
        font-size: 13px;
    }
    .poto-wrap {
        column-count: 1;
        padding: 30px;
    }
    .btn-pg:before {
        width: 30%;
        left: 10px;
    }
    .contacttitle-wrap h2,
    .newstitle-wrap h2,
    .about-meleftwrap h2 {
        font-size: 30px;
    }
    .listlinkfoot li {
        margin-bottom: 10px;
    }
    .all:before {
        width: 30%;
    }
}

@media (max-width: 480px) {}