*{
    padding: 0;
    margin: 0;
}
html{scroll-behavior: smooth}
.mar0{margin: 0!important;}
a{
    font-family: "Montserrat", sans-serif;
    transition: all 0.3s;
    text-decoration: none;
}
.mobile{display:none;}
/* width */
::-webkit-scrollbar {width: 10px;} 
/* Track */
::-webkit-scrollbar-track {background: #FFFFFF30;}  
/* Handle */
::-webkit-scrollbar-thumb {background: var(--secondary-color);} 
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {background: var(--primary-color);}

:root {
    --primary-color: #353342;
    --secondary-color: #D0BD57;
    --red-color: #91220C;
    --yellow-color: #E0B93F;
    --green-color: #4A7F1C;
    --black-color: #000000;
    --white-color: #FFFFFF;
}
.primaryTXT{color: var(--primary-color);}
.secondTXT{color: var(--secondary-color);}

p{
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-size:14px;
    font-style: normal;
    line-height: 1.6;
}
ul{padding-left: 24px;}
ul li{font-family: "Montserrat", sans-serif;}
textarea{font-family: "Montserrat", sans-serif;}
select{font-family: "Montserrat", sans-serif;}

.icon{
    width: 100%;
    max-width: 20px;
    height: auto;
}
.textcenter{text-align: center}
.textleft{text-align: left}
.textright{text-align: right}
.btnDark{
    color: var(--white-color);
    transition: all 0.3s;
    padding: 12px 16px;
    border: solid 1px;
    display: flex;
    align-items: center;
    column-gap: 8px;
    margin: auto;
    max-width: 180px;
    width: 100%;
    white-space: nowrap;
    justify-content: center;
}
.btnDark:hover{
    background: var(--secondary-color);
    border: solid 1px var(--yellow-color);
}
.btnLight{
    color: var(--primary-color);
    transition: all 0.3s;
    padding: 12px 16px;
    border: solid 1px;
    display: flex;
    align-items: center;
    column-gap: 8px;
    margin: auto;
    max-width: 180px;
    width: 100%;
    white-space: nowrap;
    justify-content: center;
}
.btnLight:hover{
    color: var(--primary-color);
    background: var(--secondary-color);
    border: solid 1px var(--yellow-color);
}
/*-- modal -----------------------------------------------------------------*/
#Contact{
    position: fixed;
    display: none;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    background: #353342db;
    z-index: 99;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    backdrop-filter: blur(20px);
    animation: slideIn 0.3s ease; /* Animation */
}
/* Slide-in animation */
@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
#Contact form{
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}
#Contact .close{
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    transition: all 0.3s;
}
#Contact .close:hover{opacity: 0.5;}
#Contact h1{
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 32px;
    margin-bottom: 8px;
}
#Contact .FormWrap{
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    max-width: 450px;
    margin: auto;
    padding: 24px;
}
#Contact .FormWrap input{
    padding: 8px;
    color: var(--primary-color);
    border: none;
    background: var(--white-color);
    border-radius: 2px;
}
#Contact .FormWrap select{
    width: 100%;
    background: var(--white-color);
    border: none;
    color: var(--primary-color);
    padding: 12px;
    border-radius: 2px;
}
#Contact .FormWrap textarea{
    padding: 8px;
    border: none;
    background: var(--white-color);
    resize: none;
    font-family: "Montserrat", sans-serif;
    color: var(--primary-color);
    border: none;
    border-radius: 2px;
}
#Contact .FormWrap button{
    padding: 12px;
    background: none;
    border: solid 1px var(--secondary-color);
    color: var(--secondary-color);
    transition: all 0.3s;
}
#Contact .FormWrap button:hover{
    background: var(--secondary-color);
    color: var(--primary-color);
}
#Contact .FormWrap select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 2px;
    /* Remove default arrow */
    background:var(--white-color);
    /* Add custom arrow */
}
/*-- menu -----------------------------------------------------------------*/
menu{
    display: grid;
    position: fixed;
    width: 100%;
    height: 60px;
    z-index: 2;
    color: var(--white-color);
    transition:all 0.3s;
    background: linear-gradient(178deg, #353342, transparent);
}
.scroll{
    background: var(--white-color);
    color: var(--black-color);
    box-shadow: 0 0 10px #35334221;
    border: #dddddd;
}
.scroll ul li a{color: var(--black-color)}
.scroll ul li a img{filter: brightness(0)
}
.scroll ul .separator{
    border-left: solid 1px #dddddd;
    border-right: solid 1px #dddddd;
}
menu ul{
    display: grid;
    list-style: none;
    grid-template-columns: 1Fr 170px 150px 170px;
    align-items: center;
}
menu ul .separator{
    border-left: solid 1px #555555;
    border-right: solid 1px #555555;
}
menu ul li{
    padding: 8px 16;
    text-transform: uppercase;
    font-weight: 400;
}
menu ul li a{
    color: var(--white-color);
    font-weight: 400;
    padding: 0 24px;
}
menu ul li .active{
    font-weight:bold;
    color: var(--secondary-color);
}
menu ul li a:hover{
    color:var(--secondary-color);
}
menu ul li a img{
    max-width: 80px;
    height: auto;
}
/*-- heroBanner -----------------------------------------------------------------*/
header{
    display: inline-block;
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
header video{
    width: 100%;
    min-height: 100vh;
    position: absolute;
}
header .content{
    width: 100%;
    position: absolute;
    display: flex;
    z-index: 1;
    height: 100%;
    background: linear-gradient(357deg, #353342, transparent);
    align-items: flex-end;
}
header .content .container {
    position: absolute;
    width: 100%;
    overflow: hidden; /* Hide the overflow */
    padding: 20px;
    color: var(--white-color);
    transition: all 0.3s;
}
header .content .container p{
    text-transform: uppercase;
}
header .content .container:hover {background-color:#ffffff0a}
.text-wrapper {
    display: flex;
    white-space: nowrap;
    position: relative;
}
.text {
    padding-right: 50px;
    will-change: transform;
    animation: scroll 9s linear infinite;
    white-space: nowrap;
    font-size: 64px;
    font-family: 'Menda Med';
    color: var(--white-color);
}
.MobileContent{
   display: none;     
}
@keyframes scroll {
    0% {
        transform: translateX(0); /* Start at normal position */
    }
    100% {
        transform: translateX(-100%); /* Move entire text block off the screen */
    }
}
/* Pauses the animation on hover */
.text-wrapper:hover .text {
    animation-play-state: paused;
}
.NormalBanner{
    max-height: 260px;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    background-size: cover;
}
.NormalBanner h1{
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
}
.SpecialPages{
    max-height: 130px;
    display: flex;
    align-items: flex-end;
    color: var(--primary-color);
    background: none !important;  
}
/*-- wrap grid ------------------------------------------------------------*/
.wrap4{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 24px;
    max-width: 1200px;
    margin: auto;
}
.wrap2{
    display: grid;
    grid-template-columns:1fr 1fr;
    column-gap: 24px;
    max-width: 1200px;
    margin: auto;
}
.wrap1-3{
    display: grid;
    grid-template-columns: 1fr 75%;
    column-gap: 24px;
    max-width: 1200px;
    margin: auto;
}
.faqs{
    display: grid;
    grid-template-columns: 100px 1fr;
    column-gap: 24px;
    max-width: 1200px;
    margin: auto;
    align-items: center;
}
/*-- homepage --------------------------------------------------------------*/
.Intro{
    background: var(--primary-color);
    margin-top: -5px;
    color: var(--white-color);
}
.Intro .Introwrap{
    max-width: 1200px;
    margin: auto;
    padding: 64px 32px;
}
.Intro .Introwrap .Paragraph{
    margin: 24px 0;
    line-height: 1.6;
}
.posterHalf{
    background-size: cover !important;
}
.IntroRegular .Introwrap .Paragraph .quote{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.IntroRegular .Introwrap .Paragraph .quote span{
    color: var(--secondary-color);
    font-family: Menda;
    font-size: 130px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
}
.IntroRegular .Introwrap .Paragraph .quote h1{
    background: linear-gradient(88deg, #8681A9 2.04%, #353343 99.59%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.4;
}

.IntroRegular{
    background: var(--white-color);
    margin-top: -5px;
    color: var(--primary-color);
}
.IntroRegular .Introwrap{
    max-width: 1200px;
    margin: auto;
    padding: 64px 32px;
}
.IntroRegular .Introwrap .headerTXT{
    font-size: 18px;
}
.IntroRegular .Introwrap .Paragraph{
    margin: 24px 0;
    line-height: 1.6;
}
.serviceIntro{
    background: var(--white-color);
    color: var(--primary-color);
    padding: 64px 0;
    display: flex;
    row-gap: 24px;
    flex-direction: column;
}
.service{
    display: flex;
    width: 100%;
    height: 230px;
    margin: 16px 0;
    background-position: center;
    background-size: 100% auto;
    background-repeat: no-repeat;
    transition: all 0.3s;
}
.serviceTab{
    background: var(--primary-color);
    color: var(--white-color);
    width: 100%;
    display: flex;
    height: 100%;
}
.serviceTab .service-info{
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    justify-content: center;
}
.serviceTab .serviceMain{
    width: 100%;
    background: linear-gradient(322deg, black, transparent);
    margin-bottom: -10px;
    padding: 64px 32px;
}
.serviceBanner{
    padding: 32px;
    max-width: 1200px;
    margin: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}
.serviceBanner p{
    font-size: 22px;
}
.serviceBanner img{
    width: 100%;
    height: auto;
}

.one{background-image:url('../image/line1.png'); transition: all 0.3s;}
.one:hover{background-image:url('../image/image1.png')}

.two{background-image:url('../image/line2.png'); transition: all 0.3s;}
.two:hover{background-image:url('../image/image2.png')}

.three{background-image:url('../image/line3.png'); transition: all 0.3s;}
.three:hover{background-image:url('../image/image3.png')}

.four{background-image:url('../image/line4.png'); transition: all 0.3s;}
.four:hover{background-image:url('../image/image4.png')}

.Pilars{
    background-image: url('../image/pilarbg.png');
    height: auto;
    display: flex;
    padding: 64px 32px;
}
.PilarsWrap{
    display: flex;
    flex-direction: column;
    color: var(--white-color);
    width: 100%;
    max-width: 1200px;
    margin: auto;
    align-items: center;
}
.PilarsContent{
    padding: 24px 0;
}
.PilarsContent ul{
    list-style: none;
    display: grid;
    grid-template-columns: 1Fr 1Fr 1Fr;
    column-gap: 24px;
}
.PilarsContent ul li{
    text-align: center;
    padding: 32px;
    border-radius: var(--Corner-Small, 8px);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0px 1px 2px 0px rgba(255, 255, 255, 0.05) inset;
    backdrop-filter: blur(20px);
}
.PilarsContent ul li h2{
    font-family: 'Menda Med';
    text-transform: uppercase;
    letter-spacing: 2px;
}
.serviceList{
    max-width: 1200px;
    margin: 32px auto;
    padding: 32px;
    display: grid;
    grid-template-columns: 1Fr auto;
    column-gap: 24px;
    align-items: center;
}
.serviceList .serviceBG{
    width: 300px;
    background-size: cover;
    height: 230px;
}
/*-- barHover -------------------------------------------------------------*/
#bar{
    display:inline-block;
    width: 100%;
    height: 10px;
    background: #D0BD57;
}
.color-bar {
    margin: 0px auto;
    width:100%;
    height: 10px;
    display: flex;
    transition: all 2s ease;
}
.color-bar .color-segment {
    flex: 1;
    height: 100%;
    transition: flex 0.3s ease;
}
.color-bar .red {
    background-color:var(--red-color);
}
.color-bar .yellow {
    background-color:var(--yellow-color);
}
.color-bar .green {
    background-color:var(--green-color);
}
.color-segment:hover {
    flex: 2;
}
/*-- Video ----------------------------------------------------------------*/
#contact{
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    max-height: 350px;
    margin-bottom: -10px;
}
#contact .content{
    width: 100%;
    position: absolute;
    z-index: 1;
    height: 100%;
    background: #353342d1;
}
#contact .content .wrap{
    width: 100%;
    max-width: 1200px;
    margin: 36px auto;
    display: grid;
    text-align: center;
    grid-template-columns: 1Fr 1Fr;
    column-gap: 24px;
    height: -webkit-fill-available;
}
#contact .content .wrap a{
    width: 100%;
    padding: 36px;
    margin: 32px auto;
    display: grid;
    text-align: center;
    max-width: 380px;
    color: var(--white-color);
    border-radius: var(--Corner-Small, 8px);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0px 1px 2px 0px rgba(255, 255, 255, 0.05) inset;
    backdrop-filter: blur(20px);
    justify-items: center;
    transition: all 0.3s;
    align-content: center;
}
#contact .content .wrap a p{
    opacity:0;
    font-size:0;
    transition: all 0.3s;
}
#contact .content .wrap a img{
    transition: all 1s;
    filter:invert(0%);
}
#contact .content .wrap a:hover p{
    opacity: 1;
    font-size: 14px;
    margin: 8px;
}
#contact .content .wrap a:hover{
    background-color: var(--yellow-color);
    color: var(--primary-color);
}
#contact .content .wrap a:hover img{
    transform:rotate(90deg);
    filter:invert(60%);
}
#contact .content .wrap a h1{font-weight: 400;}
#contact video{
    height: auto;
    width: 100%;
}
#contact video a{
    color: var(--white-color);
    display: flex;
    row-gap: 24px;
}
/*-- Footer ---------------------------------------------------------------*/
Footer{
    display: inline-block;
    width: 100%;
    height: auto;
    background-color: var(--black-color);
    color: var(--white-color);
    padding: 64px 0 32px 0;
}
Footer h5{
    font-family: "Montserrat", sans-serif;
    color: var(--secondary-color);
    font-optical-sizing: auto;
    font-size:14px;
    font-weight: 400;
    margin-bottom: 8px;
}
Footer ul{
    list-style: none;
    margin: 64px auto;
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: grid;
    align-items: center;
}
Footer ul .socials{
    display: grid;
    align-items: center;
}
Footer ul .socials .icons{
    display: flex;
    column-gap: 16px;
}
Footer ul .brand{
    display: flex;
    justify-content: center;
}
Footer ul .brand img{
    max-width: 80px;
    height: auto;
}
Footer ul .infoFooter{
    display: grid;
    grid-template-columns: 20px auto;
    column-gap: 8px;
    align-items: center;
}
Footer ul li .menu{
    display: flex;
    column-gap: 24px;
    text-transform: uppercase;
    margin: 8px auto;
}
Footer ul li .menu li a{
    color: var(--white-color);
    text-decoration: none;
}
Footer ul li .menu li a:hover{
    color: var(--secondary-color);
}
Footer ul li .copy{
    opacity:0.5;
}
/* Media Query-----------------------------------------------------------------*/
@media screen and (max-width: 1000px) {
    /*-- heroBanner -----------------------------------------------------------*/
    header {
        height: 50vh!important;
    }
    .MobileContent {
        display: flex;
        position: absolute;
        top: 0;
        height: 80%;
        flex-direction: column;
        justify-content: center;
        padding: 8px;
        color: var(--white-color);
        row-gap: 24px;
    }
    .MobileContent h1{
        font-size: 36px;
        line-height: 1.2;
    }
    .desk{display: none!important;}
    header video {
        height: 100%;
        position: absolute;
        width: auto;
    }
    #contact .content .wrap a {
        width: 100%;
        padding: 0;
        margin: 0;
        max-width: none;
        height: 100%;
        display: grid;
        align-content: center;
    }
    #contact .content .wrap {
        grid-template-columns: auto;
        height: 100%;
        margin: 0;
    }
    /*-- menu -----------------------------------------------------------------*/
    menu{
        background: #000000;
        width: 90%;
        margin: 0 3%;
        bottom: 24px;
        border-radius: 8px;
        border: solid 1px #2b2b2b;
    }
    menu ul .separator {
        border-left: solid 0px;
        border-right: solid 0px;
    }
    menu ul {
        grid-template-columns: 1Fr 1Fr 1Fr 1Fr;
        justify-items: center;
        padding: 0;
    }
    .scroll ul .separator {
        border-left: solid 0;
        border-right: solid 0;
    }
    menu ul li a {
        font-size: 10px;
        white-space: nowrap;
        padding: 0 8px;
    }
    /*-- footer ---------------------------------------------------------------*/
    Footer ul .infoFooter {
        align-items: start;
        grid-template-columns: auto;
        justify-items: center;
        text-align: center;
        row-gap: 8px;
    }
    Footer ul li .menu {
        display: flex;
        row-gap: 24px;
        flex-direction: column;
        padding: 0;
        margin-bottom: 64px;
    }
    /*-- wrap grid ------------------------------------------------------------*/
    .wrap4{
        display: grid;
        grid-template-columns: auto;
        row-gap: 24px;
        padding: 0;
    }
    .wrap2{
        display: grid;
        grid-template-columns: auto;
        row-gap: 24px;
        padding: 0;
    }
    .wrap1-3{
        display: grid;
        grid-template-columns: auto;
        row-gap: 24px;
        padding: 0;
    }
    .faqs{
        display: grid;
        grid-template-columns: auto;
        column-gap: 24px;
    }
    Footer ul {
        justify-items: center;
        row-gap: 24px;
    }
    Footer ul .socials {
        justify-items: center;
    }
    .PilarsContent ul{
        grid-template-columns: auto;
        row-gap: 32px;
        max-width: 600px;
        padding: 0;
    }
    .posterHalf {
        min-height: 500px;
        background-position: center !important;
    }
    .serviceList {
        row-gap: 24px;
        grid-template-columns:auto;
        justify-items: center;
    }
}
@media screen and (max-width: 450px) {

}