/*
Theme Name: Barrington
Theme URI: https://www.barringtongroup.com.my/
Author: eJeeban Web Design Company
Author URI: https://www.ejeeban.com/
Description: Customized theme for Barrington Group Website.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: black, light, one-column, flexible-width, custom-header, custom-menu, featured-images, post-formats, sticky-post
Text Domain: barrington
*/

/*  --------------------------------------------------
    Generic CSS Setup
    -------------------------------------------------- */
html{
    width: 100%;
    height: 100%;
    margin: 0;
}
body{
    position: relative;
    font-size: 15px;
    color: var(--black);
    font-family: var(--publicsans);
    font-weight: 100;
    height: 100%;
    width: 100%;
    margin: 0;
    overflow-x: hidden;
}
.smooth-scroll{
    overflow: hidden;
}
.no-scroll{
    overflow: hidden;
}
:root{
    --lgrey: #dddddd;
    --lblue: #66b6e8;
    --black: #181818;
    --white: #ffffff;
    --border: rgba(0, 0, 0, 0.2);
    --publicsans: 'Public Sans', sans-serif;
    --padding: 0 6%;
    --top: 100px;
    --bottom: 100px;
}
img{
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
video{
    width: 100%;
}
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus{
    outline: none;
}
h1{
    font-size: 55px;
    font-weight: 400;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 30px;
}
h2{
    font-size: 45px;
    color: var(--black);
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: 400;
}
h2 span{
    color: var(--lblue);
}
h3{
    font-size: 25px;
    font-weight: 400;
    color: var(--lblue);
    margin-bottom: 20px;
}
h4{
    font-size: 13px;
    font-weight: 400;
}
h5{
    font-size: 13px;
    font-weight: 100;
    margin-top: 0;
    margin-bottom: 10px;
    text-transform: uppercase;
}
h6{
    font-size: 14px;
    font-weight: 100;
    text-transform: uppercase;
}
p{
    line-height: 1.6;
}
a,
a:hover{
    color: inherit;
    transition: .2s;
}
button{
    appearance: none;
    -webkit-appearance: none;
    transition: .2s;
}
button:focus, input:focus, select:focus, textarea:focus{
    outline: none;
}
form{
    width: 100%;
}
form label{
    margin-bottom: 0;
}
input,
select,
textarea{
    font-family: var(--publicsans);
    color: var(--black);
    font-weight: 400;
    display: block;
    width: 100%;
    outline: 0;
    padding: 50px 0px 20px;
    margin: 0;
    border: none;
    border-bottom: 1px solid var(--border);
    background-color: transparent;
}
::placeholder{
    font-family: var(--publicsans);
    font-size: 16px;
    font-weight: 100;
    color: var(--black);
}
textarea{
    height: 100px;
}
input[type="submit"]{
    margin: 0;
    padding: 0;
    min-width: 200px;
    width: auto;
    height: 60px;
    display: inline-block;
    border: none;
    color: white;
    font-size: 14px;
    font-weight: 100;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Public Sans', sans-serif;
    background-color: black;
    color: white;
    margin-top: 40px;
    cursor: pointer;
    transition: .2s;
}
input[type="submit"]:hover{
    background-color: var(--lblue);
    color: var(--black);
}
select{
    font-family: var(--publicsans);
    font-weight: 100;
    text-transform: uppercase;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--black) 50%),
        linear-gradient(135deg, var(--black) 50%, transparent 50%);
    background-position:
        calc(100% - 20px) calc(10px + 20px),
        calc(100% - 15px) calc(10px + 20px),
        calc(100% - 2.5em) 1.5em;
    background-size:
        5px 5px,
        5px 5px,
        1px 1.5em;
    background-repeat: no-repeat;
    cursor: pointer;
}
.grecaptcha-badge {
    display: none;
}


/*  --------------------------------------------------
    Nav
    -------------------------------------------------- */
header {
    position: relative;
    width: 100%;
    z-index: 2;
}
nav{
    position: absolute;
    width: 100%;
    padding: 40px 3%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}
.nav-logo img{
    width: 150px;
}
.menu{
    display: flex;
    list-style: none;
    padding-inline-start: 0px;
}
.menu li{
    position: relative;
    padding-right: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu li:last-child{
    padding-right: 0;
}
.menu li a{
    text-decoration: none;
    position: relative;
    transition: .2s;
}
.menu li:hover a{
    color: var(--lblue);
}


/*  --------------------------------------------------
    Nav Light
    -------------------------------------------------- */
.nav-light .nav-logo img{
    filter: invert(1000%);
}
.nav-light .menu li{
    color: white;
}


/*  --------------------------------------------------
    Mobile Menu
    -------------------------------------------------- */
.mobile-menu{
    display: none;
}
.btn-menu{
    height: 15px;
    width: 24px;
    position: relative;
    transition: all .25s ease-out;
    cursor: pointer;
    display: none;
}
.btn-menu span{
    display: block;
    width: 100%;
    height: 2px;
    transition: all .25s ease-out;
    position: relative;
    will-change: transform;
    background-color: var(--black);
}
.btn-menu span:nth-child(1) {
    transform: translateY(0px);
}
.btn-menu span:nth-child(2) {
    transform: translateY(7px);
}
.btn-menu span:nth-child(3) {
    transform: translateY(15px);
}
.nav-light .btn-menu span{
    background-color: white;
}


/*  --------------------------------------------------
    Preloader
    -------------------------------------------------- */
.preloader-page{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1100;
    background-color: #000;
}
.preloader-page .loader-text{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: calc(70% + 0.1vw);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.preloader-page .loader-circle{
    display: block;
    position: absolute;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    animation-name: SpinAround;
    animation-iteration-count: infinite;
    animation-duration: 2s;
    animation-fill-mode: both;
    animation-timing-function: linear;
    box-shadow: 0px 0px 1px white;
}
.preloader-page .loader-circle:nth-of-type(1){
    animation-direction: reverse;
    transform-origin: 49.6% 49.8%;
}
.preloader-page .loader-circle:nth-of-type(2){
    transform-origin: 49.5% 48.8%;
}
@keyframes SpinAround{
    0% {
        transform: translate(-50%, -50%) rotate(0);
    }
    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}


/*  --------------------------------------------------
    Sidebar
    -------------------------------------------------- */
.sidebar{
    position: fixed;
    z-index: 10;
    left: 40px;
    height: 100vh;
    top: 0;
    margin: auto;
    display: flex;
    align-items: center;
    -webkit-transform-origin: 0 50%;
    -ms-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transform: rotate(90deg) translate(-50%, 0%);
    -ms-transform: rotate(90deg) translate(-50%, 0%);
    transform: rotate(90deg) translate(-50%, 0%);
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    pointer-events: none;
}
#sidebar{
    opacity: 0;
    visibility: hidden;
}
#sidebar.show{
    opacity: 1;
    visibility: visible;
}
.vertical-txt{
    color: grey;
    font-size: 12px;
    text-decoration: none;
    margin: 0;
    padding: 0;
    margin-left: 10px;
    -webkit-transform: rotate(180deg) translate(0%, 0%);
    -ms-transform: rotate(180deg) translate(0%, 0%);
    transform: rotate(180deg) translate(0%, 0%);
    cursor: pointer;
    pointer-events: auto;
}
progress {
  -webkit-appearance: none;
  appearance: none;
  left: 30px;
  width: 10vh;
  height: 2px;
  margin-top: 1px;
}
progress::-webkit-progress-bar {
  background-color: grey;
}
progress[value="100"]::-webkit-progress-bar {
  background-color: var(--lblue);
}
progress::-webkit-progress-value {
  background-color: var(--lblue);
  border-bottom-right-radius: 15px;
  border-top-right-radius: 15px;
}


/*  --------------------------------------------------
    Footer
    -------------------------------------------------- */
footer{
    padding: 20px 3%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
footer .social-media{
    list-style: none;
    padding-inline-start: 0;
    color: var(--white);
    display: flex;
    flex-wrap: wrap;
}
footer .social-media li{
    padding-right: 40px;
}
footer .social-media li:last-child{
    padding-right: 0;
}
footer .social-media li a{
    text-decoration: none;
}


/*  --------------------------------------------------
    Circular Text / Cursor / Scroller
    -------------------------------------------------- */
.circular-text{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    position: fixed; 
    top: calc(100vh - 250px);
    right: 0;
    z-index: 10;
}
.circular-text a{
    display: contents;
}
.circular-text .text{
    font-weight: 100;
    letter-spacing: 2.89px;
    font-size: 12px;
    text-transform: uppercase;
    color: grey;
}
.circular-text .circle{
    display: block;
    width: 90px;
    height: 90px;
    position: absolute;
    border-radius: 50%;
    transition: 0.3s;
}
.circular-text .circle img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.circular-text:hover .text{
    opacity: 0.7;
}
.circular-text:hover .circle{
    border: 1px solid grey;
}

#cursor{
    z-index: 99;
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    will-change: transform;
}
#cursor .cursor-inner{
    width: 1.5vw;
    height: 1.5vw;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: solid 1px var(--lblue);
}


/*  --------------------------------------------------
    Common
    -------------------------------------------------- */
.bg-blue{
    background-color: var(--lblue);
}
.bg-grey{
    background-color: var(--lgrey);
}
.bg-dark{
    background-color: #060606;
}
.bg-dark h1, .bg-dark h2, .bg-dark h4, .bg-dark h5, .bg-dark p, .bg-dark .btn-link a{
    color: var(--white);
}
.bg-dark .btn-link img{
    filter: invert(1);
}
.top-section{
    padding-top: 250px !important;
}
.top-section .top-title-holder{
    width: 70%;
    margin-bottom: 70px;
}
.sec-banner{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.intro-bg{
    height: 100%;
    position: relative;
}
.intro-bg img, 
.intro-bg video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.intro-bg img{
    opacity: 0.8;
}
.intro-txt{
    position: absolute;
    bottom: 10%;
    left: 6%;
    width: 50%;
}
.padding{
    padding: var(--padding);
}
.top{
    padding-top: var(--top);
}
.bottom{
    padding-bottom: var(--bottom);
}
.container-holder{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1%;
    justify-content: space-between;
    align-items: center;

}
.container-holder .holder-left{
    width: 40%;
    padding: 0 1%;
}
.container-holder .holder-right{
    width: 55%;
    padding: 0 1%;
}
.img-holder{
    position: relative;
    overflow: hidden;
    background-color: black;
}
.img-holder img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.img-holder:after{
    content: "";
    display: block;
    padding-bottom: 100%;
}
.btn-link{
    margin-top: 30px;
    color: var(--black);
}
.btn-link a{
    text-decoration: none;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
}
.btn-link img{
    width: 50px;
    margin-left: 10px;
    transition: 0.5s;
}
.btn-link:hover img{
    margin-left: 5px;
}
.shape{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45%;
    opacity: 0.3;
    transition: 0.5s;
}
.clear-both{
    clear: both;
}


/*  --------------------------------------------------
    Form / Contact
    -------------------------------------------------- */
form{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1%;
    justify-content: space-between;
}
form .col-holder{
    width: 46%;
    padding: 0 1%;
}
form .col-holder.full-col{
    width: 100%;
}
.sec-form .container-holder{
    align-items: flex-start;
}
.sec-form  .container-holder .holder-left{
    width: 55%;
}
.sec-form  .container-holder .holder-right{
    width: 40%;
}
.form-holder a{
    font-weight: 400;
}
.form-holder a:hover{
    text-decoration: none;
}


#contact .sec-contact{
    padding-top: 200px;
}
#contact .sec-contact .container-holder{
    align-items: flex-start;
}
#contact .sec-contact .container-holder .holder-left{
    width: 30%;
}
#contact .sec-contact .location-holder{
    display: flex;
    flex-wrap: wrap;
}
#contact .sec-contact .location-holder .location-item{
    margin-right: 20px;
}
#contact .sec-contact .location-holder img{
    width: 25px;
}
#contact .sec-contact .location-holder .location-item:hover img{
    opacity: 0.8;
}


/*  --------------------------------------------------
    Services Listing
    -------------------------------------------------- */
.sec-services{
    position: relative;
}
.sec-services .title-wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.service-slider {
    display: flex;
    justify-content: space-evenly;
}
.service-slider a{
    text-decoration: none;
    display: contents;
}
.service-slider .service-item{
    position: relative;
    width: 100%;
    padding: 0px;
    cursor: pointer;
}
.service-slider .service-item .img-holder{
    opacity: 0.8;
    transition: 0.5s;
}
.service-slider .service-item .img-holder:after{
    padding-bottom: 175%;
}
.service-slider .service-item:hover .img-holder{
    opacity: 0.5;
    transition: 0.5s;
}
.service-slider .service-item .img-wrapper{
    position: relative;
    background-color: var(--black);
}
.service-slider .service-item .shape{
    width: 80%;
    opacity: 0;
}
.service-slider .service-item:hover .shape{
    opacity: 1;
}
.service-slider .content-holder {
    position: absolute;
    top: 20px;
    left: 30px;
    bottom: 20px;
    right: 30px;
}
.service-slider .content-holder h2,
.service-slider .content-holder h3,
.service-slider .content-holder h4,
.service-slider .content-holder p,
.service-slider .content-holder a{
    color: var(--white);
}
.service-slider .content-holder h4{
    font-size: 12px;
}
.service-slider .content-holder p{
    position: absolute;
    bottom: 20px;
    font-size: 14px;
    opacity: 0;
    transition: all 0.3s
}
.service-slider .service-item:hover .content-holder p{
    opacity: 1;
}
.service-slider .content-holder .readmore {
    position: absolute;
    bottom: 0;
    color: var(--white);
}


/*  --------------------------------------------------
    Tiles Gallery Grid
    -------------------------------------------------- */
.gallery-wrapper {
    margin: 0 6%;
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
}
.gallery-wrapper .gallery-item{
    width: 100%;
    margin: 0 5px 12px 5px; /* for separating masonry-bricks vertically*/
}
.gallery-wrapper .gallery-item img{
    width: 100%;
    display: block;
}


/*  --------------------------------------------------
    Home
    -------------------------------------------------- */
#home .sec-banner .intro-txt{
    z-index: 2;
}
#home .sec-banner .intro-bg{
    height: 100vh;
}
#home .sec-banner .intro-bg video{
    opacity: 0.6;
}
#home .sec-banner .cover{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100vh;
}
#home .sec-banner .cover img{
    opacity: 0; 
}
#home .sec-banner .banner-slider .slick-active .cover img{
    animation: fadeOut 5s;
    -webkit-animation: fadeOut 5s;
    -moz-animation: fadeOut 5s;
    -o-animation: fadeOut 5s;
    -ms-animation: fadeOut 5s;
}
@keyframes fadeOut{
    20% {
    opacity: 1;
    }
    100% {
    opacity: 0;
    }
}
#home .sec-banner .banner-slider .banner-item{
    position: relative;
}
#home .sec-banner .intro-txt{
    top: unset;
    transform: unset;
    bottom: 10%;
}
#home .sec-banner .slick-nav{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 9%;
    justify-content: space-between;
    width: 81%;
}
#home .sec-banner .slick-nav .nav-btn{
    background-color: transparent;
    border: 1px solid white;
    width: 120px;
    height: 120px;
}
#home .sec-banner .slick-nav .nav-btn p{
    color: white;
    text-transform: uppercase;
    font-size: 14px;
}

#home .sec-about .img-holder:after{
    padding-bottom: 80%;
}
#home .sec-whyus {
    position: relative;
}
#home .sec-whyus .listing-holder {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}
#home .sec-whyus .listing-holder li{
   flex-basis: calc(100% - 30px);
   margin-right: 30px;
}
#home .sec-whyus .listing-holder li:last-child {
    margin-right: 0;
}
#home .sec-whyus .listing-holder h3{
    color: var(--black);
    font-size: 20px;
}
#home .sec-prd-rental{
    position: relative;
    width: 100%;
    overflow: hidden;
}
#home .sec-prd-rental .slick-nav{
    right: 0;
    width: 35%;
    padding: 0 5%;
    position: relative;
    z-index: 1;
}
#home .bg-blue .slick-nav .nav-btn{
    background-color: white;
}
#home .sec-prd-rental .prd-image-slider-wrap{
    width:55%;
    float:left;
}
#home .sec-prd-rental .prd-text-slider-wrap{
    width: 35%;
    float: left;
    padding: 5%;
} 
#home .sec-prd-rental .prd-text-slider button.slick-prev, .prd-text-slider button.slick-next{
    display: none !important;
}
#home .sec-prd-rental .shape-holder{
    position: absolute;
    bottom: 20px;
    z-index: 1;
}
#home .sec-client {
    position: relative;
    z-index: 3;
    overflow: hidden;
}
#home .sec-client .title-wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#home .sec-client .logo-slider .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}
#home .sec-client .logo-slider .logo-item {
    position: relative;
    width: 30%;
  flex-shrink: 0;
    margin-right: 20px;
}
#home .sec-client .logo-slider .logo-holder{
    padding: 50px 0;
    transition: all 0.3s ease;
    height: 80px;
    position: relative;
    border: 1px solid var(--lgrey);
}
#home .sec-client .logo-slider .logo-holder img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
}
#home .sec-client .logo-slider .logo-item:hover .logo-holder{
    background-color: #f8f8f8;
}
#home .sec-client .logo-slider .logo-item:hover img{
    filter: grayscale(0);
}


/*  --------------------------------------------------
    About
    -------------------------------------------------- */
#about .sec-banner .intro-bg video{
    opacity: 0.6;
}
#about .sec-banner .number-holder {
    margin-top: 30px;
    display: flex;
}
#about .sec-banner .number-holder h2,
#about .sec-banner .number-holder h2 span,
#about .sec-banner .number-holder p{
    padding: 0;
    margin: 0;
    color: var(--white);
}
#about .sec-banner .number-holder h2 {
    width: 50%;
    font-size: 12px;
}
#about .sec-banner .number-holder h2 span{
    font-size: 75px;
    display: block;
}
#about .sec-banner .number-holder .item {
    position: relative;
    width: 25%;
    padding: 25px;
    margin-right: 30px;
}
#about .sec-banner .number-holder .item:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    border-left: 5px solid rgba(255, 255, 255, 0.3);
    border-top: 5px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s;
    content: "";
}
#about .sec-banner .number-holder .item:after {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    border-right: 5px solid rgba(255, 255, 255, 0.3);
    border-bottom: 5px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s;
    content: "";
}
#about .sec-banner .number-holder .item:hover:before {
    border-left: 5px solid rgba(255, 255, 255, 0.75);
    border-top: 5px solid rgba(255, 255, 255, 0.75);
}
#about .sec-banner .number-holder .item:hover:after {
    border-right: 5px solid rgba(255, 255, 255, 0.75);
    border-bottom: 5px solid rgba(255, 255, 255, 0.75);
}
#about .sec-about .holder-right .content-holder p{
    font-size: 20px;
}
#about .sec-value .content-holder{
    width: 50%;
    margin: 0 auto;
    text-align: center;
    padding: 30px 0 100px;
}
#about .sec-value{
    position: relative;
}
#about .sec-value .value-slider{
    position: relative;
    z-index: 1;
    margin-bottom: 70px;
    display: flex;
    justify-content: space-between;
}
#about .sec-value .value-slider .wrapper-item{
    position: relative;
    width: 50%;
}
#about .sec-value .value-slider .video-holder{
    height: 550px;
    position: relative;
}
#about .sec-value .value-slider .video-holder video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(80%);
}
#about .sec-value .value-slider .txt-holder{
    position: absolute;
    bottom: 50px;
    left: 50px;
    color: var(--white);
    width: 50%;
}
#about .sec-value .value-slider .txt-holder h2{
    color: var(--white);
}
.coreval-holder {
    position: relative;
    padding: 0 6%;
    text-align: center;
}
.coreval-holder .sec-listing {
    display: flex;
}
.coreval-holder .sec-listing .item {
    flex-basis: calc(100% - 30px);
    margin-right: 30px;
}
.coreval-holder .sec-listing .item:last-child {
    flex-basis: 100%;
    margin-right: 0;
}
.coreval-holder .sec-listing .item .ico-holder {
    width: 60px;
    margin: 0 auto 10px auto;
}
.coreval-holder .sec-listing .item .ico-holder img{
    width: 100%;
    height: auto;
}
.coreval-holder .sec-listing h3{
    padding: 0;
    margin: 0;
    font-size: 18px;
    color: var(--black);
}
.sec-career {
    margin: 100px 6%;
    text-align: center;
}
.sec-career .btn-link a{
    width: 200px;
    margin: 0 auto;
    padding: 15px;
    background-color: var(--black);
    color: var(--white);
    display: block;
    text-align: center;
}
.sec-career .btn-link a:hover {
    background-color: var(--lblue);
}
#about .empty-space{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 375px;
    background-color: white;
}

/* marquee div container */
.marquee{
    font-size: 8vw;
    height: 8.5vw;
    font-weight: 400;
    -webkit-text-stroke: 1px var(--black);
    color: transparent;
    overflow: hidden;
    position: relative;
    display:flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    min-width: 100%;
}
.marquee span{
    padding-left: 0.5em;
}
.message{
    display: flex;
    flex-shrink: 0;
    align-items: center;
    animation: slide-left 20s linear infinite;
}
@keyframes slide-left{
  from{
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to{
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}


/*  --------------------------------------------------
    Services
    -------------------------------------------------- */
#services .listing-holder{
    display: block;
    padding: 0 12%;
}
#services .listing-holder li{
    position: relative;
    float: left;
    margin-bottom: 10%;
    width: 45%;
}
#services .listing-holder li:nth-child(2){
    padding-top: 15%    ;
}
#services .listing-holder li:nth-child(2n){
    float: right;
}
#services .listing-holder li a{
    text-decoration: none;
}
#services .listing-holder li .img-holder:after{
    padding-bottom: 140%;
}
#services .service-title{
    margin-top: 30px;
}
#services .service-title h4{
    margin-top: 0;
}
#services  .listing-holder li:hover .img-holder{
    opacity: 0.7;
    transition: 0.5s;
}
#services .img-wrapper{
    position: relative;
}
#services  .listing-holder li .shape{
    width: 80%;
    opacity: 0;
}
#services  .listing-holder li:hover .shape{
    opacity: 1;
}

/*services-details*/
#services .sec-intro{
    padding: 100px 20%;
}
#services .sec-intro p{
    font-size: 20px;
}
#services .list-holder{
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
#services .icon{
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto;
    background-color: white;
}
#services .icon img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100px;
}
#services .sec-gallery .gallery-slider .slider-item .img-holder:after{
    padding-bottom: 60%;
}
#services .sec-gallery .title-wrap{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
#services .sec-gallery .gallery-slider .slick-current .img-holder:after{
    padding-bottom: 65%;
    transition: all 0.3s ease;
}


/*  --------------------------------------------------
    Slick Slider
    -------------------------------------------------- */
.slick-slider{
    cursor: grab;
}
#services .slick-list{
    padding-right: 25%;
    padding-left: 25%;
    margin: 0 -10px;
}
.slider-item{
    margin: 0 10px;
    display: inline-block !important;
    float: none;
    vertical-align: middle;
}
.slick-track{
    margin: 0 auto;
    align-items: center;
    vertical-align: middle;
}
.has-progress{
    overflow: hidden;
}
.slick-progress{
    width: 50%;
    margin: 0 auto;
}
.progress{
    display: block;
    width: 100%;
    height: 2px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0);
    background-image: linear-gradient(to right, var(--lblue), var(--lblue));
    background-repeat: no-repeat;
    background-size: 0 100%;
    transition: background-size .4s ease-in-out;
    margin-top: 50px;
    position: relative;
}
.progress:before{
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 1px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.1);
}
.slick-disabled{
    opacity: 0;
    visibility: hidden;
}
.slick-nav{
    display: flex;
}
.nav-btn{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--lblue);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
    cursor: pointer;
    margin-right: 20px;
}
.nav-btn img{
    width: 20px;
}
.nav-btn:last-child{
    margin-right: 0;
}
.slick-dots{
    position: absolute;
    list-style: none;
    padding-inline-start: 0px;
    top: 50%;
    transform: translateY(-50%);
    right: 2.5%;
    z-index: 2;
    margin: 0;
}
.slick-dots li{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--lblue);
    border: 1px solid white;
    border-color: white;
    margin-bottom: 3vh;
    position: relative;
    z-index: 2;
    transition: .2s;
    cursor: pointer;
}
.slick-dots li:last-child{
    margin-bottom: 0;
}
.slick-dots li.slick-active{
    opacity: 0.5;
}
.slick-dots button{
    position: absolute;
    top: 0;
    opacity: 0;
}


/*  --------------------------------------------------
    Past Events
    -------------------------------------------------- */
#events .listing-holder{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0 -1%;
}
#events .listing-holder li{
    position: relative;
    width: 48%;
    padding: 0 1%;
    transform: scale(1.0);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}
#events .listing-holder li .img-holder:before{
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,0) 100%); 
    z-index: 1;
}
#events .listing-holder li .img-holder:after{
    padding-bottom: 60%;
}
#events .event-title{
    position: absolute;
    left: 60px;
    bottom: 30px;
    z-index: 2;
}
#events .event-title h3{
    color: white;
}
#events .listing-holder li:hover img{
    transform: scale(1.05);
}


#events .container-holder{
    align-items: flex-start;
}
#events .top-section .holder-left{
    width: 30%;
}
#events .top-section .side-info ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}
#events .top-section .side-info ul li{
    max-width: 35%;
    margin-right: 50px;
    margin-bottom: 50px;
}
#events .top-section .side-info h6{
    color: var(--lblue);
    font-weight: 400;
    margin: 0;
}
#events .top-section .holder-right{
    width: 65%;
}
#events .top-section .holder-right .img-holder:after{
    padding-bottom: 60%;
}
#events .top-section .holder-right .event-gallery-item{
    margin-bottom: 50px;
}
#events .top-section .holder-right .event-gallery-item:last-child{
    margin-bottom: 0;
}
#events .gallery-wrapper {
    margin: 0;
}


/*  --------------------------------------------------
    Clients
    -------------------------------------------------- */
#clients .listing-holder{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1%;
    align-items: center;
    list-style: none;
    padding: 0;
}
#clients .listing-holder li{
    width: 18%;
    padding: 0 1%;
    margin-bottom: 50px;
}
#clients .listing-holder li .logo-holder{
    text-align: center;
    width: 100%;
    height: 150px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}
#clients .listing-holder li .logo-holder img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
}
#clients .listing-holder li:hover .logo-holder{
    background-color: #f8f8f8;
    filter: grayscale(1);
}
#clients .listing-holder li:hover .logo-holder img{
    filter: grayscale(0);
}


/*  --------------------------------------------------
    Product Rental
    -------------------------------------------------- */
#equipments .sec-intro{
    padding: 100px 6%;
}
#equipments .sec-intro p{
    font-size: 20px;
}
.sec-eq-listing .listing-holder {
    display: flex !important;
    flex-wrap: wrap;
    margin: 0 -1%;
    padding: 0 !important;
}
.sec-eq-listing .listing-holder .item {
    width: 48%;
    padding: 0 1%;
    margin-bottom: 50px;
}
#equipments .top-section .the-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#equipments .top-section .col-left {
    width: 50%;
}
#equipments .top-section .col-left .img-holder:after {
    padding-bottom: 85%;
}
#equipments .top-section .col-right {
    width: 45%;
}
#equipments .top-section .price-holder {
    font-size: 1.2rem;
}
#equipments .sec-gallery {
    margin: 0 6% 100px 6%;
}
#equipments .sec-gallery .slick-dots {
    position: static;
    margin: 35px auto 0px auto;
    display: flex;
    justify-content: center;
}
#equipments .sec-gallery .slick-dots li {
    margin: 0 5px;
    opacity: 0.5;
}
#equipments .sec-gallery .slick-dots li.slick-active {
    opacity: 1;
}
#equipments .sec-gallery .slick-list {
    margin: 0 -15px;
}
#equipments .sec-gallery .slick-slide {
    margin: 0 15px;
}
.sec-prod-details {
    margin: 0 6% 100px 6%;
}
.sec-prod-details img{
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}


/*  --------------------------------------------------
    Ipad Pro Landscape
    -------------------------------------------------- */
@media only screen and (min-width: 1366px) and (min-height: 1024px) {

}

/*  --------------------------------------------------
    Ipad Landscape
    -------------------------------------------------- */
@media only screen and (max-width: 1200px) {

}

/*  --------------------------------------------------
    Ipad Potrait
    -------------------------------------------------- */
@media only screen and (max-width: 1025px) {

    h1{
        font-size: 45px;
    }
    h2{
        font-size: 35px;
    }
}

/*  --------------------------------------------------
    Ipad Potrait
    -------------------------------------------------- */
@media only screen and (max-width: 991px) {
    body{
        font-size: 14px;
    }
    :root{
        --padding: 0 5%;
    }
    h1{
        font-size: 50px;
        margin-bottom: 20px;
    }
    h2{
        font-size: 40px;
        margin-bottom: 20px;
    }
    h3{
        font-size: 20px;
        margin-bottom: 20px;
    }
    h4{
        font-size: 14px;
    }
    h5{
        font-size: 14px;
    }
    p{
        font-size: 14px;
    }
    input,
    select,
    textarea{
        font-size: 14px;
    }
    ::placeholder{
        font-family: var(--publicsans);
        font-size: 14px;
    }

    nav{
        padding: 40px 5%;
    }
    .menu{
        display: none;
    }
    .btn-menu{
        display: block;
    }
    .btn-close{
        position: absolute;
        top: 20px;
        right: 20px;
        color: white;
        font-size: 30px;
    }
    .mobile-menu{
        position: fixed;
        top: 0;
        right: -1000px;
        width: 100%;
        height: 100%;
        padding-right: 0;
        background-color: black;
        transition: .5s;
        z-index: 500;
        display: block;
    }
    .mobile-menu.show{
        right: 0;
    }
    .mobile-menu-content{
        overflow: hidden;
        overflow-y: auto;
        text-align: center;
        list-style: none;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .mobile-menu ul{
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .mobile-menu a, .nav-light .mobile-menu ul li a{
        font-size: 30px;
        color: white;
        text-decoration: none;
        text-transform: uppercase;
    }
    .mobile-menu a:hover{
        color: var(--lblue);
    }
    .mobile-menu li{
        padding: 10px;
    }

    footer{
        padding: 20px 5%;
        display: block;
    }
    footer .social-media li{
        padding-right: 30px;
    }

    /*unknown*/
    .top-section{
        padding-top: 250px !important;
    }
    .top-section .top-title-holder{
        width: 70%;
        margin-bottom: 70px;
    }


    .sec-banner{
        height: 680px;
    }
    .intro-txt{
        left: 5%;
        width: 85%;
    }
    .container-holder{
        display: block;
        margin: 0;
    }
    .container-holder .holder-left{
        width: 100%;
        padding: 0;
        margin-bottom: 30px;
    }
    .container-holder .holder-right{
        width: 100%;
        padding: 0;
    }

    form{
        display: block;
        margin: 0;
    }
    form .col-holder{
        width: 100%;
        padding: 0;
    }
    .sec-form .container-holder{
        display: block;
    }
    .sec-form  .container-holder .holder-left{
        width: 100%;
    }
    .sec-form  .container-holder .holder-right{
        width: 100%;
    }

    #contact .sec-contact{
        padding-top: 200px;
    }
    #contact .sec-contact .container-holder{
        display: block;
    }
    #contact .sec-contact .container-holder .holder-left{
        width: 100%;
        margin-bottom: 30px;
    }

    .sec-services .title-wrap{
        display: block;
    }
    .service-slider {
        display: block;
    }
    .service-slider .service-item .img-holder:after{
        padding-bottom: 100%;
    }
    .service-slider .content-holder {
        top: 30px;
        left: 5%;
        bottom: 50px;
        right: 5%;
    }
    .service-slider .content-holder h3{
        margin-bottom: 10px;
    }
    .service-slider .content-holder h4{
        font-size: 12px;
    }
    .service-slider .content-holder p{
        opacity: 1;
    }

    .gallery-wrapper {
        margin: 0 5%;
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2;
    }

    #home .sec-banner .intro-bg{
        height: 600px;
    }
    #home .sec-banner .cover{
        height: 600px;
    }
    #home .sec-whyus .listing-holder {
        display: flex;
        flex-wrap: wrap;
    }
    #home .sec-whyus .listing-holder li{
        width: calc(50% - 30px);
        flex-basis: unset;
        margin-right: 30px;
    }
    #home .sec-whyus .listing-holder li:nth-child(even) {
        width: 50%;
        margin-right: 0;
    }
    #home .sec-whyus .listing-holder h3{
        color: var(--black);
        font-size: 20px;
    }
    #home .sec-prd-rental .prd-image-slider-wrap{
        width: 100%;
    }
    #home .sec-prd-rental .prd-text-slider-wrap{
        width: 100%;
        padding: 12%;
        box-sizing: border-box;
    }
    #home .sec-prd-rental .slick-nav{
        width: 100%;
        padding: 30px 12%;
        bottom: 65px;
    }
    #home .sec-client .title-wrap{
        display: block;
        margin-bottom: 30px;
    }
    #home .sec-client .logo-slider .logo-holder{
        padding: 50px 0;
        transition: all 0.3s ease;
        height: 80px;
        position: relative;
        border: 1px solid var(--lgrey);
    }

    #about .sec-banner .number-holder {
        margin-top: 30px;
        display: flex;
    }
    #about .sec-banner .number-holder h2 {
        font-size: 11px;
    }
    #about .sec-banner .number-holder h2 span{
        font-size: 40px;
    }
    #about .sec-about .holder-right .content-holder p{
        font-size: 14px;
    }
    #about .sec-value .content-holder{
        width: 90%;
        padding: 30px 0 80px;
    }
    #about .sec-value .value-slider .video-holder{
        height: 500px;
    }
    .coreval-holder {
        position: relative;
        padding: 0 5%;
        text-align: center;
    }
    .coreval-holder .sec-listing {
        display: flex;
    }
    .coreval-holder .sec-listing .item {
        flex-basis: calc(100% - 20px);
        margin-right: 20px;
    }
    .sec-career {
        margin: 100px 5%;
    }
    #about .empty-space{
        height: 300px;
    }
    .top-section .top-title-holder{
        width: 100%;
    }

    #services .listing-holder{
        padding: 0;
    }
    #services .sec-intro{
        padding: 100px 5%;
    }
    #services .listing-holder li{
        position: relative;
        float: left;
        margin-bottom: 10%;
        width: 45%;
    }
    #services .listing-holder li:nth-child(2){
        padding-top: 15%    ;
    }
    #services .listing-holder li:nth-child(2n){
        float: right;
    }
    #services .listing-holder li a{
        text-decoration: none;
    }
    #services .listing-holder li .img-holder:after{
        padding-bottom: 140%;
    }
    #services .service-title{
        margin-top: 30px;
    }
    #services .service-title h4{
        margin-top: 0;
    }
    #services  .listing-holder li:hover .img-holder{
        opacity: 0.7;
        transition: 0.5s;
    }
    #services .img-wrapper{
        position: relative;
    }
    #services  .listing-holder li .shape{
        width: 80%;
        opacity: 0;
    }
    #services  .listing-holder li:hover .shape{
        opacity: 1;
    }

    #services .sec-intro{
        padding: 100px 5%;
    }
    #services .sec-intro p{
        font-size: 14px;
    } 

    #events .listing-holder li .img-holder:after{
        padding-bottom: 80%;
    }
    #events .event-title{
        left: 50px;
    }
    #events .top-section .holder-left{
        width: 100%;
    }
    #events .top-section .side-info ul li{
        max-width: 30%;
    }
    #events .top-section .holder-right{
        width: 100%;
    }
    #events .top-section .holder-right .img-holder:after{
        padding-bottom: 80%;
    }

    #clients .listing-holder li{
        width: 30%;
    }

    #contact .sec-contact .container-holder .holder-left{
        width: 100%;
        margin-bottom: 50px;
    }
    .sec-form .container-holder{
        flex-direction: column-reverse;
    }
    #equipments .sec-intro{
        padding: 100px 5%;
    }
    #equipments .top-section .the-row {
        display: block;
    }
    #equipments .top-section .col-left {
        width: 100%;
        margin-bottom: 50px;
    }
    #equipments .top-section .col-left .img-holder:after {
        padding-bottom: 85%;
    }
    #equipments .top-section .col-right {
        width: 100%;
    }
    #equipments .sec-gallery {
        margin: 0 5% 100px 5%;
    }
    #equipments .sec-gallery .slick-list {
        margin: 0 -5px;
    }
    #equipments .sec-gallery .slick-slide {
        margin: 0 5px;
    }
    .sec-prod-details {
        margin: 0 5% 100px 5%;
    }
}


/*  --------------------------------------------------
    Mobile Landscape
    -------------------------------------------------- */
@media only screen and (max-height: 600px) {
    
}

@media only screen and (max-width: 600px) {
    :root{
        --padding: 0 6%;
        --top: 80px;
        --bottom: 80px;
    }
    h1{
        font-size: 35px;
    }
    h2{
        font-size: 20px;
        margin-bottom: 30px;
    }
    h3{
        font-size: 18px;
        margin-bottom: 20px;
    }

    nav{
        padding: 40px 6%;
    }
    .nav-logo img{
        width: 120px;
    }

    footer{
        padding: 20px 6%;
    }
    footer .social-media li{
        padding-right: 20px;
    }

    .sec-banner{
        height: 600px;
    }
    .intro-txt{
        left: 6%;
        width: 88%;
    }

    #contact .sec-contact{
        padding-top: 150px;
    }

    .service-slider .content-holder {
        top: 30px;
        left: 6%;
        bottom: 50px;
        right: 6%;
    }

    .gallery-wrapper {
        margin: 0 6%;
        -moz-column-count: 1;
        -webkit-column-count: 1;
        column-count: 1;
    }
    .gallery-wrapper .gallery-item{
        width: 100%;
        margin: 0 0 12px 0px;
    }

    #home .sec-prd-rental .slick-nav{
        bottom: 30px;
    }
    #home .sec-whyus .listing-holder {
        display: block;
    }
    #home .sec-whyus .listing-holder li{
        width: 100%;
        margin-right: 0px;
        margin-bottom: 30px;
    }
    #home .sec-whyus .listing-holder li:nth-child(even) {
        width: 100%;
    }
    #home .sec-whyus .listing-holder li:last-child {
        margin-bottom: 0;
    }
    #home .sec-client .logo-slider .logo-item {
        width: 200px;
    }
    #home .sec-client .logo-slider .logo-holder{
        padding: 35px 0;
    }

    #about .sec-banner{
        height: 750px;
    }
    #about .sec-banner .number-holder h2 {
        width: 100%;
    }
    #about .sec-banner .number-holder h2 span{
        font-size: 35px;
    }
    #about .sec-banner .number-holder .item {
        width: 30%;
        padding: 20px;
        margin-right: 20px;
    }
    #about .sec-value .content-holder{
        width: 88%;
        padding: 30px 0 70px;
    }
    #about .sec-value .value-slider{
        display: block;
    }
    #about .sec-value .value-slider .wrapper-item{
        width: 100%;
    }
    #about .sec-value .value-slider .video-holder{
        height: 420px;
    }
    .coreval-holder {
        padding: 0 6%;
    }
    .coreval-holder .sec-listing {
        display: block;
    }
    .coreval-holder .sec-listing .item {
        width: 100%;
        flex-basis: unset;
        margin-bottom: 20px;
        margin-right: 0px;
    }
    .sec-career {
        margin: 80px 6%;
    }
    #about .empty-space{
        height: 270px;
    }

    #services .sec-intro{
        padding: 80px 6%;
    }
    #services .listing-holder li{
        width: 100%;
    }
    #services .list-holder li{
        width: 48%;
    }
    .nav-btn{
        width: 35px;
        height: 35px;
    }
    #services .slick-list{
        padding-right: 15%;
        padding-left: 15%;
    }
    .top-section{
        padding-top: 200px !important;
    }
    .top-section .top-title-holder{
        margin-bottom: 30px;
    }

    #events .listing-holder{
        display: block;
        margin: 0px;
    }
    #events .listing-holder li{
        width: 100%;
        padding: 0px;
    }
    #events .event-title{
        left: 30px;
    }
    #events .top-section .side-info ul{
        display: block;
    }
    #events .top-section .side-info ul li{
        max-width: 100%;
        margin-right: 0px;
        margin-bottom: 30px;
    }
    #clients .listing-holder li{
        width: 48%;
    }
    #clients .listing-holder li .logo-holder img{
        width: 120px;
    }

    #equipments .sec-intro{
        padding: 100px 6%;
    }
    .sec-eq-listing .listing-holder {
        display: block;
        margin: 0;
    }
    .sec-eq-listing .listing-holder .item {
        width: 100%;
        padding: 0;
    }
    #equipments .sec-gallery {
        margin: 0 6% 100px 6%;
    }
    #equipments .sec-gallery .slick-list {
        margin: 0;
    }
    #equipments .sec-gallery .slick-slide {
        margin: 0;
    }
    .sec-prod-details {
        margin: 0 6% 100px 6%;
    }
}