/*
* ----------------------------------------------------------------------------------------
Author        : Rama Hardian (Modified and Consolidated)
Template Name : Simplixe - multipurpose onepage portfolio
Version       : 2.0
* ----------------------------------------------------------------------------------------
  TABLE OF CONTENT
* ----------------------------------------------------------------------------------------
* 01. ROOT VARIABLES AND BASE STYLES
* 02. LAYOUT AND CONTAINERS
* 03. GALLERY GRID AND ITEMS
* 04. RESPONSIVE STYLES
* 05. PORTFOLIO AND FILTERS
* 06. VIDEO CONTAINER
* 07. UTILITIES AND FIXES
*/

/* 01. ROOT VARIABLES AND BASE STYLES */
:root {
    --primary-color: #009999;
    --secondary-color: #0CC;
    --text-color: #666666;
    --white-color: #ffffff;
    --dark-color: #000000;
    --background-color: #f4f4f4;
    --gray-color: #666666;
    --item-bg-color: #f3f3f3;
    --container-padding: 15px;
    --grid-gap: 3px;
    --item-margin: 3px;
    --transition-speed: 0.3s;
}

/* Base Reset */
*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 19px;
    line-height: 1.8em;
    background-color: var(--background-color);
    color: var(--text-color);
}

/* 02. LAYOUT AND CONTAINERS */
/* Override Bootstrap containers */
.container,
.container-fluid,
.tm-container,
.tm-page-wrap,
.tm-content-container,
[class*='col-'] {
    width: 100%;
    max-width: 100%;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    margin: 0 auto;
}

.row {
    margin-left: calc(var(--container-padding) * -1);
    margin-right: calc(var(--container-padding) * -1);
    width: auto;
    display: flex;
    flex-wrap: wrap;
}

[class*="col-"] {
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    position: relative;
    width: 100%;
}

/* 03. GALLERY GRID AND ITEMS */
.tm-catalog-item-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3px;
    padding: var(--container-padding);
    width: 100% !important;
    max-width: 1800px;
    margin: 0 auto;
}

.tm-catalog-item {
    position: relative;
    margin: 1.5px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 400px !important;
    width: 400px !important;
}

.tm-thumbnail-container {
    position: relative;
    width: 400px !important;
    height: 400px !important;
    overflow: hidden;
    border-radius: 10px;
    background: var(--dark-color);
    margin: 0 auto;
    flex-shrink: 0;
}

.tm-catalog-item-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    position: absolute;
    top: 0;
    left: 0;
    transition: all var(--transition-speed) ease;
    min-width: 400px !important;
    min-height: 400px !important;
}

.tm-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

/* Force correct sizing on all screens */
.tm-catalog-item,
.tm-thumbnail-container,
.porto-item,
.wrap-portoiner {
    width: 400px !important;
    min-width: 400px !important;
    max-width: 400px !important;
    flex: 0 0 400px !important;
}

/* Ensure grid works with fixed-width items */
.tm-catalog-item-list,
.porto-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, 400px);
    justify-content: center;
    gap: 3px;
    width: 100%;
}

/* 04. RESPONSIVE STYLES */
@media (min-width: 768px) {
    :root {
        --container-padding: 30px;
    }
    
    .tm-catalog-item-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .tm-catalog-item-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    :root {
        --container-padding: 60px;
    }
    
    .container,
    .container-fluid,
    .tm-container {
        max-width: 1920px;
    }
    
    .tm-catalog-item-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile and Tablet Specific */
@media (max-width: 767px) {
    .tm-thumbnail-container,
    .wrap-portoiner {
        width: 300px !important;
        height: 300px !important;
    }
    
    .tm-catalog-item-list,
    .porto-content {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .tm-catalog-item,
    .porto-item {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

/* 05. PORTFOLIO AND FILTERS */
.filter-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 15px;
    margin-bottom: 40px;
    justify-content: center;
    gap: 10px;
}

.filter-list li {
    cursor: pointer;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all var(--transition-speed) ease;
}

.filter-list li.aktip {
    background-color: var(--dark-color);
    color: var(--white-color);
}

/* 06. VIDEO CONTAINER */
#tm-video-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    background-color: var(--dark-color);
}

#tm-video {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* 07. UTILITIES AND FIXES */
.tm-page-wrap {
    position: relative;
    overflow: hidden;
}

.tm-content-container {
    position: relative;
    z-index: 1;
}

/* Hover Effects */
.tm-catalog-item:hover .tm-catalog-item-img {
    transform: scale(1.1);
    opacity: 0.7;
}

.tm-catalog-item:hover .tm-img-overlay {
    opacity: 1;
}

/* Additional Utility Classes */
.w-100 { width: 100%; }
.h-100 { height: 100%; }
.mx-auto { margin-left: auto; margin-right: auto; }
.position-relative { position: relative; }
.position-absolute { position: absolute; }
.text-center { text-align: center; }
.text-white { color: var(--white-color); }

/* Animations */
.tm-btn-animate {
    transition: all var(--transition-speed) ease;
}

.tm-btn-animate:hover {
    transform: translateY(-2px);
}
/*
* ----------------------------------------------------------------------------------------
* 01.BASE CSS
* ----------------------------------------------------------------------------------------
*/
*,
::after,
::before {
    box-sizing: border-box;
}
html,
body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    background: #2D2D2D;
    color: #EEEEEE;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
}


a {
    color: #EEEEEE;
}
a:hover {
    text-decoration: none;
}
input,
textarea {
    padding: 10px 20px;
    font-family: 'Rubik', sans-serif;
    width: 100%;
    margin-bottom: 30px;
    border: 1px solid #434648;
}
input:focus,
textarea:focus {
    outline: 1px solid #f7bd00;
    border: 1px solid #f7bd00;
}
textarea {
    height: 200px;
}
button.button-link {
    background-color: transparent;
    cursor: pointer;
    color: #fff;
}
.padtopbottom {
    padding-top: 150px;
    padding-bottom: 150px;
    position: relative;
}
.big-text {
    font-size: 150px;
    font-weight: 800;
    z-index: 1;
    letter-spacing: 2px;
    position: absolute;
    color: transparent;
    -webkit-text-stroke: #b7b7b7 1px;
}
.li-text {
    opacity: .2;
}
.da-text {
    opacity: .4;
}
.llinks {
    background-size: 200% 200%;
    background-image:
        linear-gradient(to top, #f7bd00 50%, transparent 50%);
    -webkit-transition: background-position 300ms, color 300ms ease, border-color 300ms ease;
    -moz-transition: background-position 300ms, color 300ms ease, border-color 300ms ease;
    -ms-transition: background-position 300ms, color 300ms ease, border-color 300ms ease;
    -o-transition: background-position 300ms, color 300ms ease, border-color 300ms ease;
    transition: background-position 300ms, color 300ms ease, border-color 300ms ease;
}
.llinks:hover {
    background-image:
        linear-gradient(to top, #f7bd00 51%, transparent 50%);
    background-position: 0 100%;
    -webkit-transition: background-position 300ms, color 300ms ease, border-color 300ms ease;
    -moz-transition: background-position 300ms, color 300ms ease, border-color 300ms ease;
    -ms-transition: background-position 300ms, color 300ms ease, border-color 300ms ease;
    -o-transition: background-position 300ms, color 300ms ease, border-color 300ms ease;
    transition: background-position 300ms, color 300ms ease, border-color 300ms ease;
}
.button-link {
    padding: 15px 60px;
    margin-top: 20px;
    display: inline-block;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
}
.button-link:hover {
    color: #fff;
    border-color: #f7bd00;
}

.Pilot-Vid{
    margin-left: -15px;
    
}
.dark-b {
    color: #fff;
    border: 2px solid #fff;
}
.light-b {
    color: #2D2D2D;
    border: 2px solid #2D2D2D;
}
.bg-overlay {
    height: 100%;
    width: 30%;
    background: #f7bd00;
    position: absolute;
    right: 0;
    top: 0;
}
.nav-link.active {
    color: #f7bd00;
}
.owl-theme .owl-dots .owl-dot.active span {
    width: 50px;
    background: #f7bd00;
}
.sec-word {
    font-weight: 600;
    color: #f7bd00;
}
/*
* ----------------------------------------------------------------------------------------
* 01.BASE CSS
    - preloader
* ----------------------------------------------------------------------------------------
*/
.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999999999 !important;
    background-color: #2D2D2D;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.preloader .ellipsis {
    display: inline-block;
    position: absolute;
    width: 80px;
    height: 80px;
    margin-top: -40px;
    margin-left: -40px;
    top: 50%;
    left: 50%;
}
.preloader .ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #f7bd00;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.preloader .ellipsis div:nth-child(1) {
    left: 8px;
    animation: ellipsis1 0.6s infinite;
}
.preloader .ellipsis div:nth-child(2) {
    left: 8px;
    animation: ellipsis2 0.6s infinite;
}
.preloader .ellipsis div:nth-child(3) {
    left: 32px;
    animation: ellipsis2 0.6s infinite;
}
.preloader .ellipsis div:nth-child(4) {
    left: 56px;
    animation: ellipsis3 0.6s infinite;
}
@keyframes ellipsis1 {
    0% {
      transform: scale(0);
    }
    100% {
      transform: scale(1);
    }
}
@keyframes ellipsis3 {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(0);
    }
}
@keyframes ellipsis2 {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(24px, 0);
    }
}
/*
* ----------------------------------------------------------------------------------------
* 02.HEADER SECTION
* ----------------------------------------------------------------------------------------
*/
#header-wrap {
    position: fixed;
    width: 100%;
    padding-top: 20px;
    z-index: 3;
}
.logo-wrap {
    width: 50px;
}
.logo-wrap img {
    width: 100%;
    transition: all .3s ease;
}
.navigation-wrap {
    text-align: right;
    margin-top: 10px;
    transition: all .3s ease;
}
.navigation-list li {
    list-style: none;
    position: relative;
    margin-left: 30px;
    display: inline-block;
}
.navigation-list li a {
    font-size: 15px;
    letter-spacing: 1px;
    color: #b7b7b7;
    font-weight: 600;
    text-transform: uppercase;
    transition: all .3s ease;
}
#header-wrap:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #2D2D2D;
    transition: all .3s ease;
}
#header-wrap.fixed:before {
    height: 100%;
    box-shadow: 0 1px 10px rgb(0 0 0 / 10%);
}
#header-wrap.fixed .logo-wrap img {
    width: 50%;
    filter: unset;
}
#header-wrap.fixed .navigation-wrap {
    margin-top: 5px;
}
#header-wrap.fixed .navigation-list li a {
    font-size: 13px;
}
.button-menu {
    position: absolute;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 30px;
    top: 15px;
    cursor: pointer;
    color: #fff;
    transition: all .3s;
    display: none;
}
#header-wrap.fixed .button-menu{
    font-size: 25px;
}
.button-menu:focus {
    outline: none;
}

/*
* ----------------------------------------------------------------------------------------
* 02.HEADER SECTION
    - small menu
* ----------------------------------------------------------------------------------------
*/
.overlay-fade {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 5;
    opacity: .8;
    display: none;
    transition: all .3s;
}
.wrap-mobilemenu {
    position: fixed;
    z-index: 9;
    height: 100%;
    background: #434648;
    padding-top: 200px;
    padding-bottom: 200px;
    display: none;
    width: 250px;
    right: -500px;
    top: 0;
    overflow-x: hidden;
    overflow-y: auto;
}
.menu-mobile
.navigation-list {
    padding-left: 0;
}
.menu-mobile 
.navigation-list li {
    text-align: right;
    list-style: none;
    position: relative;
    margin-left: 30px;
    display: block;
}
.menu-mobile
.navigation-list li a {
    font-size: 15px;
    letter-spacing: 1px;
    color: #b7b7b7;
    font-weight: 600;
    text-transform: uppercase;
    transition: all .3s ease;
}
.menu-mobile .navigation-list li a.nav-link.active {
    color: #f7bd00;
}
.wrap-mobilemenu .button-menu {
    color: #fff;
    display: block;
}
/*
* ----------------------------------------------------------------------------------------
* 03.HERO SECTION
* ----------------------------------------------------------------------------------------
*/
#wrap-hero {
    height: 100vh;
}
#wrap-hero:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #212121;
    left: 0;
    opacity: .6;
    top: 0;
    z-index: 0;
}
.inner-herocontent {
    min-height: 100vh;
    position: relative;
    z-index: 1;
}
.detail-herowrap h1 {
    color: #fff;
    font-size: 80px;
    font-weight: 600;
}
.detail-herowrap h1 span.sec-word {
    display: inline-block;
    color: #f7bd00;
}
.sec-detailherowrap {
    padding: 30px 5px 0 100px;
}
.sec-detailherowrap p.title-detail {
    color: #b7b7b7;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-left: 50px;
    position: relative;
}
.sec-detailherowrap>p.title-detail:after {
    content: ' ';
    background: #b7b7b7;
    width: 30px;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 10px;
}
.sec-detailherowrap h3 {
    color: #fff;
}

.my-intro{
    color: #f7bd00;
}

.wrap-typed {
    display: block;
    position: relative;
    width: 100%;
    padding-top: 10px;
    color: #f7bd00;
}
.mini-detail {
    padding-top: 20px;
}
.mini-detail p {
    font-family: 'Rubik', sans-serif;
    line-height: 1.8;
    color: #b7b7b7;
}
.r-text {
    top: 0;
    right: 0;
}
.sosmed-home {
    margin-top: 50px;
}
.sosmed-list {
    padding-left: 0;
}
.sosmed-list li {
    list-style: none;
    display: inline-block;
    margin-left: 15px;
    position: relative;
}
.sosmed-list li a i {
    border: 2px solid #fff;
    color: #fff;
    font-size: 15px;
    padding: 10px;
    border-radius: 100px;
    transition: all 0.3s ease;
}
.sosmed-list li a:hover i {
    border: 2px solid #f7bd00;
    background: #f7bd00;
    color: #212121;
    position: relative;
}
/*
* ----------------------------------------------------------------------------------------
* 04.ABOUT SECTION
* ----------------------------------------------------------------------------------------
*/
.l-text {
    top: 0;
    left: 0;
}
.wrap-imageabout {
    padding: 10px;
    border: 1px solid #434648;
    background: #2D2D2D;
}
.wrap-imageabout img {
    width: 100%;
}
.about-detailwrap p.title-detail {
    color: #b7b7b7;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-left: 50px;
    position: relative;
}
.about-detailwrap>p.title-detail:after {
    content: ' ';
    background: #b7b7b7;
    width: 30px;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 10px;
}
.about-detailwrap h3 {
    font-weight: 100;
    font-size: 60px;
    color: #FFFFFF;
}
.mini-detailabout {
    margin-top: 30px;
}
.inner-detailabout {
    padding-bottom: 20px;
}
.inner-detailabout p {
    font-weight: 600;
    font-size: 13px;
}
.inner-detailabout h3 {
    font-size: 15px;
    color: #b7b7b7;
}


/*
* ----------------------------------------------------------------------------------------
* 05.WHAT I DO SECTION
* ----------------------------------------------------------------------------------------
*/
.wrap-whatido {
    padding: 100px 30px 20px;
    border: 1px solid #434648;
    background: #2D2D2D;
    box-shadow: rgb(0 0 0 / 25%) 0px 25px 50px -25px;
    transition: all .3s;
}
.mini-detailwhatido {
    position: relative;
    top: 100px;
}
.wrap-whatidodetail {
    position: relative;
}
.inner-detailido {
    padding-left: 60px;
}
.icon-w {
    position: absolute;
    font-size: 35px;
    left: 0;
}
.inner-detailido h3 {
    font-size: 25px;
    margin-bottom: 20px;
    position: relative;
    color: #fff;
}
.inner-detailido p {
    font-family: 'Rubik', sans-serif;
    line-height: 1.8;
    color: #b7b7b7;
}
#wrapido .owl-stage-outer {
    padding-bottom: 100px;
}
.wrap-whatido:hover {
    background: #f7bd00;
    box-shadow: unset;
}
.wrap-whatido:hover .inner-detailido h3 {
    color: #2D2D2D;
}
.wrap-whatido:hover .inner-detailido .icon-w {
    color: #2D2D2D;
}
.wrap-whatido:hover .inner-detailido p {
    color: #2D2D2D;
}
/*
* ----------------------------------------------------------------------------------------
* 06.PORTFOLIO SECTION
* ----------------------------------------------------------------------------------------
*/
#portfolio-wrap {
    padding-top: 150px;
    padding-bottom: 150px;
    height: auto;
    position: relative;
    background: #434648;
}
.wrap-titleporto p.title-detail {
    color: #b7b7b7;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-left: 50px;
    position: relative;
}
.wrap-titleporto>p.title-detail:after {
    content: ' ';
    background: #b7b7b7;
    width: 30px;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 10px;
}
.wrap-titleporto h3 {
    font-weight: 100;
    font-size: 60px;
}
.filter-list {
    padding-left: 0;
}
.filter-list li:nth-child(1) {
    margin-left: 0;
}
.filter-list li {
    position: relative;
    margin-bottom: 5px;
    list-style: none;
    border: 2px solid rgba(0, 0, 0, .1);
    display: inline-block;
    margin-left: 0;
    cursor: pointer;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.filter-list li span {
    padding: 5px 20px;
    display: block;
}
.filter-list li.aktip {
    border: 2px solid;
}
.porto-content {
    padding-top: 100px;
}
.porto-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
    padding-top: 100px;
    margin: 0 auto;
    max-width: 1800px;
}

.porto-item {
    cursor: pointer;
    margin: 1.5px;
    position: relative;
    padding: 0;
}

.wrap-portoiner {
    width: 400px;
    height: 400px;
    overflow: hidden;
    display: block;
    margin: 0 auto;
}

.wrap-portoiner img,
.wrap-portoiner iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 992px) {
    .porto-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .porto-content {
        grid-template-columns: 1fr;
    }
}
.porto-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.info-porto {
    position: absolute;
    opacity: 0;
    bottom: 40px;
    left: 40px;
    display: inline-block;
    width: 78%;
    max-width: 260px;
    -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
    transition: opacity .2s .3s, -webkit-clip-path 0s .3s;
    transition: opacity .2s .3s, clip-path 0s .3s;
    transition: opacity .2s .3s, clip-path 0s .3s, -webkit-clip-path 0s .3s;
}
.info-porto:after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #f7bd00;
    transform-origin: 0 50%;
    transform: scaleX(0);
    transition: transform .35s cubic-bezier(.07, .98, 0, .96);
}
.description-porto {
    position: relative;
    padding: 16px 20px;
}
.description-porto>h3 {
    opacity: 0;
    font-size: 20px;
    position: relative;
    z-index: 2;
    color: #fff;
}
.description-porto>span {
    font-family: 'Rubik', sans-serif;
    color: #fff;
    opacity: 0;
    position: relative;
    z-index: 2;
    display: inline-block;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 700;
}
.gallery-link:hover img {
    opacity: .5;
    transform: scale(.9);
    box-shadow: rgb(0 0 0 / 100%) 0px 25px 50px -25px;
}
.gallery-link:hover .info-porto {
    opacity: 1;
    color: #212121;
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
    transition: -webkit-clip-path .8s cubic-bezier(.07, .98, 0, .96);
    transition: clip-path .8s cubic-bezier(.07, .98, 0, .96);
    transition: clip-path .8s cubic-bezier(.07, .98, 0, .96), -webkit-clip-path .8s cubic-bezier(.07, .98, 0, .96);
}
.gallery-link:hover .info-porto:after {
    transform-origin: 100% 50%;
    transform: scaleX(1);
    transition: transform .7s cubic-bezier(.07, .98, 0, .96);
}
.gallery-link:hover .description-porto h3 {
    opacity: 1;
}
.gallery-link:hover .description-porto span {
    opacity: 1;
}
/*
* ----------------------------------------------------------------------------------------
* 07.RESUME SECTION
* ----------------------------------------------------------------------------------------
*/
#wrap-resume {
    height: auto;
    padding-top: 100px;
    padding-bottom: 0;
    background: #2D2D2D;
}
.title-top {
    margin-top: 100px;
    margin-bottom: 50px;
}
.title-top h3 {
    font-weight: 600;
    font-size: 30px;
    position: relative;
    color: #fff;
}
.title-top h3:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 5px;
    background: #f7bd00;
    left: 0;
    bottom: -20px;
}
.wrap-itemresume {
    padding: 35px;
    margin-top: 50px;
    background: #434648;
}
.l-side h3 {
    font-size: 20px;
    font-weight: 600;
}
.l-side p {
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    font-size: 13px;
}
.r-side h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}
.r-side p {
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    font-size: 15px;
    color: #b7b7b7;
}
.work-stat {
    background: #f7bd00;
    padding: 5px 20px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
}
.part-col {
    padding: 30px 30px;
    margin-top: 50px;
    border: 1px solid #434648;
    box-shadow: rgb(0 0 0 / 25%) 0px 25px 50px -25px;
}
.part-col h3 {
    font-size: 20px;
    font-weight: 600;
}
.part-col p {
    padding-top: 10px;
    position: relative;
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    font-size: 15px;
    color: #b7b7b7;
}
.part-col p.title-pp {
    font-size: 13px;
    position: absolute;
    top: -50px; 
    color: #fff;
}
.wrap-bar {
    position: relative;
    background: #434648;
    margin-top: 80px;
}
.skill-bar {
    height: 3px;
    position: relative;
    background: #f7bd00;
}
.skill-bar span {
    position: absolute;
    right: 0;
    bottom: 15px;
    background: #f7bd00;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: 600;
}
/*
* ----------------------------------------------------------------------------------------
* 08.PARTNER SECTION
* ----------------------------------------------------------------------------------------
*/
#partner-sliderwrap {
    margin-top: 100px;
    padding-top: 50px;
    padding-bottom: 50px;
}
.wrap-partnercontainer {
    background: #434648;
}
.item-partner img {
    opacity: .8; 
    filter: contrast(0.5);
    transition: opacity .3s;
    width: 200px !important;
}
.item-partner:hover img {
    opacity: 1;
}

/* blog wrapper */

.blog-title{
    color: #f7bd00;
}
.blog-card {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    text-align: left;
    border: 1px solid #f7bd00;
    margin-bottom: 30px;
    overflow: hidden;
    margin: 0 15px 30px;
  }
  
  .blog-card .img-holder {
    min-width: 350px;
    max-width: 350px;
  }
  
  .blog-card .img-holder img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  
  .blog-card .content-holder {
    padding: 30px 20px 30px 30px;
    margin: 30px 20px 30px 30px;
  }
  
  .blog-card .content-holder .title {
    font-weight: 500;
    font-size: 25px;
    opacity: .8;
  }
  
  .blog-card .content-holder .post-details {
    margin: 15px 0 15px !important;
  }
  
  .blog-card .content-holder .post-details i {
    display: inline-block;
    width: 15px;
  }
  
  .blog-card .content-holder .post-details a {
    margin-right: 10px;
    color: #f7bd00;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    opacity: .7;
    font-size: 13px;
  }
  
  .blog-card .content-holder .read-more {
    text-decoration: none;
    margin-top: 20px;
    display: block;
    font-size: 13px;
  }
  
  .blog-card .content-holder .read-more i {
    position: relative;
    top: 1px;
  }

  .videos{
    border-color: #f7bd00;
    border-left: 1cm;
    border-right: 1cm;
    margin-left: -15px;
    margin-right: 1cm;

    position: fixed;


  }
  
  @media (max-width: 991.98px) {
    .blog-card {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
    }
    .blog-card .img-holder {
      width: 100%;
      max-width: 100%;
      min-width: 100%;
    }
  }

/*
* ----------------------------------------------------------------------------------------
* 09.CONTACT SECTION
* ----------------------------------------------------------------------------------------
*/
#contact-section {
    position: relative;
    height: auto;
    padding: 100px 0;
}
#contact-section:after {
    content: "";
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    width: 40%;
    background: #f7bd00;
}
.contact-form {
    background: #434648;
    box-shadow: rgb(0 0 0 / 25%) 0px 25px 50px -12px;
    padding: 35px 35px 50px;
    position: relative;
    z-index: 1;
}
.contact-form .title-top {
    margin-top: 30px;
}
.contact-form .mini-detail {
    padding-top: 0;
    padding-bottom: 20px;
}
.detail-contact .mini-detail {
    padding-top: 0;
    padding-bottom: 5px;
}
.foot-sosmed ul li a i {
    color: #fff;
}
.foot-sosmed ul li a:hover i {
    color: #2D2D2D;
}
#footer-wrap {
    height: 50px;
    background: #434648;
}
.detail-info {
    margin: 20px 0 40px 0;
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}
.the-icon {
    font-size: 20px;
    padding: 10px 11px;
    border-radius: 5px;
    background: #f7bd00;
    height: auto;
    color: #fff;
    position: absolute;
    box-shadow: rgb(0 0 0 / 30%) 0px 15px 20px -5px;
}
.inner-detail {
    padding-left: 80px;
}
.scroll-top {
    z-index: 999;
    display: block;
    position: fixed;
    width: 0;
    height: 0;
    bottom: 23px;
    right: 23px;
    padding: 0;
    overflow: hidden;
    outline: 0;
    border: none;
    border-radius: 2px;
    box-shadow: 0 3px 10px rgb(0 0 0 / 50%);
    border-radius: 50%;
    background: #f7bd00;
    transition: all .3s;
}
.scroll-top .dropicon {
    font-size: 40px;
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translate(-50%, -50%);
    content: "";
    width: 0;
    border-radius: 100%;
    color: #fff;
}
.show {
    width: 56px;
    height: 56px;
    border: 1px solid rgba(255, 255, 255, .1);
}
.scroll-top:hover {
    box-shadow: 0 3px 10px rgb(0 0 0 / 50%), 0 3px 15px rgb(0 0 0 / 50%);
    background: #f7bd00;
}
/*
* ----------------------------------------------------------------------------------------
* 10.FOOTER SECTION
* ----------------------------------------------------------------------------------------
*/
.wrap-title-foot {
    padding-top: 20px;
}
.wrap-title-foot h3 { 
    font-size: 13px;
    font-family: 'Rubik', sans-serif;
}