/*
* ----------------------------------------------------------------------------------------
Author        : Rama Hardian
Template Name : Simplixe - multipurpose onepage portfolio
Version       : 1.0 FREE
Edited By     : ViehVentures.com
* ----------------------------------------------------------------------------------------
  TABLE OF CONTENT
* ----------------------------------------------------------------------------------------
* 01.BASE CSS
    - preloader
* 02.HEADER SECTION
    - small menu
* 03.HERO SECTION
* 04.ABOUT SECTION
* 05.WHAT I DO SECTION
* 06.PORTFOLIO SECTION
* 07.COMMISSION SECTION
* 08.PARTNER SECTION
* 09.CONTACT SECTION
* 10.FOOTER SECTION
* 11.ADDITIONAL CODE
*/
/*
* ----------------------------------------------------------------------------------------
* 01.BASE CSS
* ----------------------------------------------------------------------------------------
*/
*,
::after,
::before {
    box-sizing: border-box;
}
html,
body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    background: #6B6782;
    color: #EEEEEE;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
}
a {
    color: #EEEEEE;
}
a:hover {
    text-decoration: none;
    color: #4F159F;
}
input,
textarea {
    padding: 10px 20px;
    font-family: 'Rubik', sans-serif;
    width: 100%;
    margin-bottom: 30px;
    border: 1px solid #918EA6;
}
input:focus,
textarea:focus {
    outline: 1px solid #D9C2F7;
    border: 1px solid #D9C2F7;
}
textarea {
    height: 200px;
}
.button-link {
    background-color: transparent;
    cursor: pointer;
    color: #fff;
    max-width: 100%; 
    width: auto; 
    padding: 10px 20px; 
    box-sizing: border-box; 
    display: inline-block; 
    text-align: center; 
}

/* Media query for screens narrower than 768px (typical mobile devices) */
@media (max-width: 768px) {
    .button-link {
        display: block; 
        margin: 0 auto; 
        text-align: center; 
    }
    .button-link span {
        display: block; 
        width: 100%; 
        text-align: center; 
    }
}
.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: #E1E1E1 1px;
}
.li-text {
    opacity: .2;
}
.da-text {
    opacity: .4;
}
.llinks {
    background-size: 200% 200%;
    background-image:
        linear-gradient(to top, #D9C2F7 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, #D9C2F7 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 35px;
    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: #D9C2F7;
}
.dark-b {
    color: #fff;
    border: 2px solid #fff;
}
.light-b {
    color: #6B6782;
    border: 2px solid #6B6782;
}
.bg-overlay {
    height: 100%;
    width: 30%;
    background: #D9C2F7;
    position: absolute;
    right: 0;
    top: 0;
}
.nav-link.active {
    color: #D9C2F7;
}
.owl-theme .owl-dots .owl-dot.active span {
    width: 50px;
    background: #D9C2F7;
}
.sec-word {
    font-weight: 600;
}
/*
* ----------------------------------------------------------------------------------------
* 01.BASE CSS
    - preloader
* ----------------------------------------------------------------------------------------
*/
.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999999999 !important;
    background-color: #6B6782;
    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: #D9C2F7;
    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: 10px;
    padding-bottom: 10px;
    z-index: 3;
}

.logo-wrap {
  width: 250px;
}

.logo-wrap img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: width 0.3s ease, height 0.3s ease; 
    will-change: width, height; 
}

.svg-logo {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 600px) {
    .logo-wrap {
        width: 187.5px;
        justify-content: center;
        will-change: width; 
    }
}


.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: #E1E1E1;
    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: #6B6782;
    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: #918EA6;
    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: #E1E1E1;
    font-weight: 600;
    text-transform: uppercase;
    transition: all .3s ease;
}
.menu-mobile .navigation-list li a.nav-link.active {
    color: #D9C2F7;
}
.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: #D9C2F7;
}
.sec-detailherowrap {
    padding: 30px 5px 0 100px;
}
.sec-detailherowrap p.title-detail {
    color: #E1E1E1;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-left: 50px;
    position: relative;
}
.sec-detailherowrap>p.title-detail:after {
    content: ' ';
    background: #E1E1E1;
    width: 30px;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 10px;
}
.sec-detailherowrap h3 {
    color: #fff;
}
.wrap-typed {
    display: block;
    position: relative;
    width: 100%;
    padding-top: 10px;
}
.mini-detail {
    padding-top: 20px;
    max-width: 100%; 
    margin: 0 auto; 
    box-sizing: border-box; 
}

.mini-detail p {
    font-family: 'Rubik', sans-serif;
    line-height: 1.8;
    color: #E1E1E1;
}
/* Media query for mobile devices */
@media (max-width: 767px) {
    .mini-detail {
        padding-top: 10px; 
        padding-left: 10px; 
        padding-right: 10px; 
    }
}
.mini-detail2 {
    padding-top: 20px;
    padding-left: 40px; 
    max-width: 100%; 
    margin: 0 auto; 
    box-sizing: border-box; 
    line-height: 1.0; 
}

.mini-detail2 p {
    font-family: 'Rubik', sans-serif; 
    color: #E1E1E1;
    margin: 0; 
    font-size: 80%; 
}

/* Media query for mobile devices */
@media (max-width: 767px) {
    .mini-detail2 {
        padding-top: 10px; 
        padding-left: 10px; 
        padding-right: 10px; 
    }
}

.r-text {
    top: 0;
    right: 0;
}
.sosmed-home {
    margin-top: 100px;
}
.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 #D9C2F7;
    background: #D9C2F7;
    color: #212121;
    position: relative;
}
/*
* ----------------------------------------------------------------------------------------
* 04.ABOUT SECTION
* ----------------------------------------------------------------------------------------
*/
.l-text {
    top: 0;
    left: 0;
}
.wrap-imageabout {
    padding: 10px;
    border: 1px solid #918EA6;
    background: #6B6782;
}
.wrap-imageabout img {
    width: 100%;
}
.about-detailwrap p.title-detail {
    color: #E1E1E1;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-left: 50px;
    position: relative;
}
.about-detailwrap>p.title-detail:after {
    content: ' ';
    background: #E1E1E1;
    width: 30px;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 10px;
}
.about-detailwrap h3 {
    font-weight: 100;
    font-size: 50px;
    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: #E1E1E1;
}
/*
* ----------------------------------------------------------------------------------------
* 05.WHAT I DO SECTION
* ----------------------------------------------------------------------------------------
*/
.wrap-whatido {
    padding: 100px 30px 20px;
    border: 1px solid #918EA6;
    background: #6B6782;
    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: #E1E1E1;
}
#wrapido .owl-stage-outer {
    padding-bottom: 100px;
}
.wrap-whatido:hover {
    background: #D9C2F7;
    box-shadow: unset;
}
.wrap-whatido:hover .inner-detailido h3 {
    color: #6B6782;
}
.wrap-whatido:hover .inner-detailido .icon-w {
    color: #6B6782;
}
.wrap-whatido:hover .inner-detailido p {
    color: #6B6782;
}
/*
* ----------------------------------------------------------------------------------------
* 06.PORTFOLIO SECTION
* ----------------------------------------------------------------------------------------
*/
#portfolio-wrap {
    padding-top: 150px;
    padding-bottom: 150px;
    height: auto;
    position: relative;
    background: #918EA6;
}
.wrap-titleporto p.title-detail {
    color: #E1E1E1;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-left: 50px;
    position: relative;
}
.wrap-titleporto>p.title-detail:after {
    content: ' ';
    background: #E1E1E1;
    width: 30px;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 10px;
}
.wrap-titleporto h3 {
    font-weight: 100;
    font-size: 30px; 
}

/* Media query for mobile devices */
@media (max-width: 767px) {
    .wrap-titleporto h3 {
        font-size: 30px; 
    }
}
.full-width-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 280px;
    height: 50px;
    box-sizing: border-box;
}
.filter-list {
    padding-left: 0;
}

.filter-list li:hover {
    background-color: #D9C2F7;
}
.filter-list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 5px 20px;
    box-sizing: border-box;
    text-decoration: none;
    color: inherit;
}
.bold-text {
    font-weight: bold;
}
/* Media query for screens narrower than 768px (typical mobile devices) */
@media (max-width: 768px) {
    .filter-list {
        text-align: center;
    }
    .filter-list li {
        display: block;
        margin: 0 auto;
    }
}
}
.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;
:hover {
  background-color: #D9C2F7;
}
}
.filter-list li span {
    padding: 5px 20px;
    display: block;
}
.filter-list li.aktip {
}
.porto-content {
    padding-top: 100px;
}
.wrap-portoiner {
    width: 100%;
    height: 400px;
}
.wrap-portoiner2 {
    width: 100%;
    height: 50px;
}

/* Media query for mobile devices */
@media (max-width: 767px) {
    .wrap-portoiner {
        height: auto; 
    }
}
.porto-item {
    cursor: pointer;
    margin: 0;
    position: relative;
    float: right;
    padding: 10px;
    width: 33.3333%;
}
.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: #D9C2F7;
    transform-origin: 0 50%;
    transform: scaleX(0);
    transition: transform .35s cubic-bezier(.07, .98, 0, .96);
}
/* For desktop */
@media screen and (min-width: 768px) {
    .description-porto {
        position: relative;
        padding: 16px 20px;
        width: 100%; 
    }

    .description-porto > h3 {
        opacity: 0;
        font-size: 30px; 
        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: 18px; 
        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.COMMISSION SECTION
* ----------------------------------------------------------------------------------------
*/
#wrap-commission {
    height: auto;
    padding-top: 100px;
    padding-bottom: 0;
    background: #6B6782;
}
.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: #D9C2F7;
    left: 0;
    bottom: -20px;
}
.wrap-itemcommission {
    padding: 35px;
    margin-top: 50px;
    background: #918EA6;
}
.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: #E1E1E1;
}
.work-stat {
    background: #D9C2F7;
    padding: 5px 20px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
}
.part-col {
    padding: 30px 30px;
    margin-top: 50px;
    border: 1px solid #918EA6;
    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: #E1E1E1;
}
.part-col p.title-pp {
    font-size: 13px;
    position: absolute;
    top: -50px; 
    color: #fff;
}
.wrap-bar {
    position: relative;
    background: #918EA6;
    margin-top: 80px;
}
.skill-bar {
    height: 3px;
    position: relative;
    background: #D9C2F7;
}
.skill-bar span {
    position: absolute;
    right: 0;
    bottom: 15px;
    background: #D9C2F7;
    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: #918EA6;
}
.item-partner img {
    opacity: 0.5; 
    transition: opacity 0.3s ease; 
    width: 150px !important;
}

.item-partner:hover img {
    opacity: 0.8; 
}

/*
* ----------------------------------------------------------------------------------------
* 09.CONTACT SECTION
* ----------------------------------------------------------------------------------------
*/

/* 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%;
    height: 100%;
    background: #D9C2F7;
}

/* Form Styles */
.contact-form {
    background: #918EA6;
    box-shadow: rgb(0 0 0 / 25%) 0px 25px 50px -12px;
    padding: 35px 15px 50px;
    position: relative;
    z-index: 1;
    max-width: 100%;
    overflow-x: hidden;
}

.form-group {
    margin-bottom: 5px; /* Reduced from 10px to 5px */
}

.form-control {
    width: 100%;
    padding: 8px; /* Reduced from 10px to 8px */
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-control::placeholder {
    color: #6B6782;
}

.submit-button {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    background-color: transparent;
    border: 2px solid #ffffff;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.submit-button:hover {
    background-color: #ffffff;
    color: #4F159F;
}

/* Notification Styles */
#notification {
    background-color: #4F159F;
    color: white;
    padding: 10px 20px;
    text-align: center;
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
    display: none;
    z-index: 1000;
    white-space: pre-line; /* Allows newline characters to create line breaks */
}

/* Media query for mobile devices */
@media (max-width: 767px) {
    .form-group {
        padding-left: 10px;
        padding-right: 10px;
    }

    .col-lg-6 {
        width: 100%;
        display: block;
    }

    #notification {
        width: 90%;
        white-space: pre-line; /* Allows newline characters to create line breaks */
    }
}

/* Desktop layout */
@media (min-width: 768px) {
    .col-lg-6 {
        float: left;
        width: 50%;
        padding-left: 10px;
        padding-right: 10px;
    }

    .col-lg-12 {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }

    #notification {
        white-space: normal; /* Single line text */
    }
}

/* Additional Styles */
.contact-form .title-top {
    margin-top: 30px;
}

.contact-form .mini-detail,
.detail-contact .mini-detail {
    padding-bottom: 20px;
}

.detail-contact .mini-detail {
    padding-bottom: 5px;
}

.foot-sosmed ul li a i {
    color: #fff;
}

.foot-sosmed ul li a:hover i {
    color: #6B6782;
}

#footer-wrap {
    height: 50px;
    background: #918EA6;
}

.detail-info {
    margin: 20px 0 40px 0;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.the-icon {
    font-size: 20px;
    padding: 10px 11px;
    border-radius: 5px;
    background: #D9C2F7;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: rgb(0 0 0 / 30%) 0px 15px 20px -5px;
    z-index: 1;
}

.inner-detail {
    padding-left: 15px;
    padding-right: 15px;
}

.scroll-top {
    z-index: 999;
    display: block;
    position: fixed;
    width: 0;
    height: 0;
    bottom: 23px;
    right: 23px;
    padding: 0;
    overflow: hidden;
    border: none;
    border-radius: 50%;
    background: #D9C2F7;
    transition: all .3s;
}

.scroll-top .dropicon {
    font-size: 40px;
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translate(-50%, -50%);
    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: #D9C2F7;
}

/*
* ----------------------------------------------------------------------------------------
* 10.FOOTER SECTION
* ----------------------------------------------------------------------------------------
*/
.wrap-title-foot {
    padding-top: 20px;
}

.wrap-title-foot h3 { 
    font-size: 13px;
    font-family: 'Rubik', sans-serif;
}

/* Media query for mobile devices */
@media only screen and (max-width: 600px) {
    .wrap-title-foot {
        padding-top: 10px; 
        text-align: center; 
    }
}


/*
* ----------------------------------------------------------------------------------------
* 11.ADDITIONAL CODE
* ----------------------------------------------------------------------------------------
*/
/* Media query for mobile devices */
@media (max-width: 767px) {
    video {
        width: 100%; 
        height: auto; 
    }
}

/* Default style for <br> */
.br-desktop {
    display: none; 
}

/* Media query for desktop */
@media only screen and (min-width: 601px) {
    .br-desktop {
        display: block; 
    }
}

/* For mobile */
@media screen and (max-width: 767px) {
    .br-mobile {
        display: inline-block;
        width: 100%;
    }
}

/* For desktop */
@media screen and (min-width: 768px) {
    .category-selection {
        font-size: 60px; 
        display: block; 
    }
}

#privacyPopup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #6B6782;
    color: #EEEEEE;
    border: 1px solid #ccc;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    max-width: 80%;
    max-height: 80%;
    overflow: auto;
}

#privacyPopup h2 {
    font-size: 1.5em; /* Adjust the font size as needed */
    margin-top: 0; /* Reset default margin if necessary */
}

@media only screen and (max-width: 768px) {
    #privacyPopup {
        width: 95%;
        max-width: 400px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        text-align: left;
    }
}

#closeButton2 {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    color: #FFFFFF; /* Set the color of the X to white */
    cursor: pointer;
}

#termsPopup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #6B6782;
    color: #EEEEEE;
    border: 1px solid #ccc;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    max-width: 80%;
    max-height: 80%;
    overflow: auto;
}

#termsPopup h2 {
    font-size: 1.5em; /* Adjust the font size as needed */
    margin-top: 0; /* Reset default margin if necessary */
}

@media only screen and (max-width: 768px) {
    #termsPopup {
        width: 95%;
        max-width: 400px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        text-align: left;
    }
}

#closeButton {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    color: #FFFFFF; 
    cursor: pointer;
}

.social-media-list {
    display: flex;
    justify-content: space-evenly; 
}

#zoomImage {
    width: 77px;
    height: 137px;
    transition: width 1s ease, height 1s ease;
}

@media (min-width: 768px) {
    #zoomImage {
        transition-delay: 0.5s;
    }
}

.equal-height {
    display: flex;
    flex-wrap: wrap;
}

.equal-height > .col-lg-6 {
    display: flex;
    flex-direction: column;
}

.equal-height .wrap-itemcommission {
    flex: 1;
}

@media (max-width: 768px) {
    .equal-height {
        display: block;
    }
}

@media (max-width: 767px) {
    .desktop-only-com {
        display: none;
    }
}