body {
    margin: 0;
    overflow-x: hidden;
}
:focus {
    outline: none;
}

/*=== Height & Width ===*/
.width100 {
    width: 100%;
}
.height100 {
    height: 100%;
}
.onepageheight {
    min-height: 100vh;
}
.threequarterheight {
    min-height: 75vh;
}
.halfpageheight {
    min-height: 50vh;
}
.onequarterheight {
    min-height: 25vh;
}
.min-height-vh {
    min-height: 100vh;
}
.maxwidth100 {
    max-width: 100%;
}


/*=== Forms ===*/
textarea {
    resize: none;
    box-shadow: none !important;
}
.btn, a ,i {
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    text-decoration: none;
    
}
.btn:focus , a:focus, .btn:hover , a:hover {
    outline: none;
    text-decoration: none;
}
.form-control:focus , .form-control:hover {
    box-shadow: none;
}

/*=== Scroll ===*/
::-webkit-scrollbar-track {
    background-color: #f2f2f2;
}
::-webkit-scrollbar-thumb {
    background-color: #9E9E9E;
    border-radius: 10px;
}
::-webkit-scrollbar {
    width: 5px;
}

/*=== New Library ===*/

.withunderline {
    width: 100%;
    height: 1px;
    max-width: 150px;
    background: black;
    margin: 0 auto
}

/*--- Background ---*/
.background-image {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.background-image-blend {
    background-color: rgba(0,0,0,0.3) !important;
    background-blend-mode: multiply;
}

/*--- Display ---*/
.show {
    display: block;
}
.showinline {
    display: inline-block;
}

/*--- Text ---*/
.text-leftright {
    display: flex;
    justify-content: space-between;
}

/*--- Overlay ---*/
.overlay {
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
}
.overlay-white {
    background: rgba(255, 255, 255, 0.7);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
}
.overlay.transparent {
    background: transparent;
}

/*--- Letter Spacing ---*/

.letterspacing-1 {
    letter-spacing: 1px;
}

.letterspacing-2 {
    letter-spacing: 2px;
}

.letterspacing-3 {
    letter-spacing: 3px;
}

.letterspacing-4 {
    letter-spacing: 4px;
}

.letterspacing-5 {
    letter-spacing: 5px;
}

/*--- Line Height ---*/

.lineheight-1 {
    line-height: 100%;
}

.lineheight-2 {
    line-height: 125%;
}

.lineheight-3 {
    line-height: 150%;
}

.lineheight-4 {
    line-height: 175%;
}

.lineheight-5 {
    line-height: 200%;
}

/*--- Line Clamp ---*/

.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-clamp-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-clamp-5 {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/*--- Font Awesome Socialmedia Color ---*/
.fa-facebook-official.custom-color,
.fa-facebook.custom-color,
.fa-facebook-square.custom-color {
    color: #3b5998;
}
.fa-twitter.custom-color, 
.fa-twitter-square.custom-color {
    color: #1dcaff;
}
.fa-instagram.custom-color {
    color: #000;
}
.fa-youtube.custom-color,
.fa-youtube-play.custom-color,
.fa-youtube-square.custom-color {
    color: #cc181e;
}
.fa-google-plus-official.custom-color,
.fa-google-plus.custom-color,
.fa-google-plus-square.custom-color {
    color: #d34836;
}
.fa-linkedin.custom-color,
.fa-linkedin-square.custom-color {
    color: #0e76a8;
}