body {
    margin: 0;
    font-family: 'Nunito Sans', sans-serif;
}

/* --------------------------------------------------header&Nav-------------------------------------------------------------- */

header {
    background: linear-gradient(to right, black, gray);
    color: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 100;
    width: -webkit-fill-available;
}

.logo {
    width: 255px;
}

.logo img {
    width: 100%;
    height: 100%;
    display: block;
}

nav {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 15px;
    height: 40px;
    border-radius: 15px;
    /* background-color: darkgoldenrod; */
    background-image: url('goldimg.png');
    background-size: 100%;
    background-repeat: no-repeat;
}

nav a#navlinkseach {
    color: black;
    text-decoration: none;
    margin-right: 20px;
    margin: 0px 20px;
    font-size: 25px;
    font-weight: bold;
}

.SearchContainer {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
}

.SearchContainerPart1 {
    position: absolute;
    right: 55px;
    transform: scale(0) translateX(135%);
    transition: transform 0.5s;
}

.SearchContainerPart1Context {
    position: absolute;
    width: -webkit-fill-available;
    top: 35px;
}

div#searchResults {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 20px;
    height: 250px;
    overflow-y: visible;
    overflow-x: hidden;
}

div#searchResults::-webkit-scrollbar {
    width: 5px;
}

div#searchResults::-webkit-scrollbar-thumb {
    background-color: rgb(222, 193, 87);
    border-radius: 5px;
}
  
div#searchResults::-webkit-scrollbar-track {
    background-color: transparent;
}

div#searchResults span {
    padding-left: 10px;
    color: white;
    font-size: 20px;
    font-family: 'Nunito Sans', sans-serif;
}

div#searchResults a {
    background-color: black;
    text-decoration: none;
    color: rgb(222, 193, 87);
    font-size: 20px;
    padding: 5px 10px;
    border: 1px solid;
    font-family: 'Nunito Sans', sans-serif;
}

.SearchContainerPart1 input {
    height: 38px;
    width: 220px;
    border-radius: 15px;
    border: none;
}

.SearchContainerPart1 input:focus{
    border: none;
}

input#searchInput[type="text"] {
    color: rgb(222, 193, 87);
    background-color: black;
    font-size: 20px;
    padding-left: 10px;
}

.search-icon,.close-icon {
    font-size: 20px;
    background-image: url('goldimg.png');
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 15px;
}

.search-icon .fa-solid,.close-icon .fa-solid{
    color: black;
}

.close-icon{
    display: none;
    font-size: 25px;
}

/* --------------------------------------------------header&Nav-------------------------------------------------------------- */

main{
    padding-top: 106px;
}

/* --------------------------------------------------IndexSection1-------------------------------------------------------------- */

.Indexsection1 {
    position: relative;
}

.MainVideo{
    width: 100%;
    position: relative;
}

#MainVideoSrc{
    height: 85.3vh;
    width: 100%;
    object-fit: cover;
    display: block;
}

.Indexsection1Container{
    position: absolute;
    bottom: 50px;
    left: 70px;
    width: auto;
    opacity: 0;
    animation: fadeIn 3.5s ease forwards;
}

#moveit1{
    animation: 1.5s textmove linear;
    width: fit-content;
}
#moveit2{
    animation: 1.5s textmove linear;
    width: fit-content;
}
#moveit3{
    animation: 1.5s textmove linear;
    width: fit-content;
}

.Indexsection1Context {
    background: linear-gradient(to right, black, gray);
    color: rgb(222, 193, 87);
    padding: 50px;
    font-size: 59px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: min-content;
}

.Indexsection1P p{
    margin: 0px;
    font-weight: 700;
}

.Indexsection1Span{
    font-size: 36px;
}

.Indexsection1Button button {
    height: 45px;
    font-size: 21px;
    border: none;
    padding: 0px 40px;
    border-radius: 15px;
    background-image: url('goldimg.png');
    cursor: pointer;
    font-weight: 700;
    /* animation: 1s textmove linear; */
}


@keyframes move {
    from{
        transform: translateX(-100%);
    }
    to{
        transform: translateX(0%);
    }
}

@keyframes textmove {
    from{
        transform: translateX(-100%);
    }
    to{
        transform: translateX(0%);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}


@media (width<1280px){
    #MainVideoSrc{
        height: 100%;
    }
    /* .Indexsection4Part2Context {
        grid-template-columns: repeat(2, 1fr);
    } */
}


@media (width<=1024px) {
    .Indexsection2Part2Context {
        height: 345px;
    }
    .Indexsection1Context {
        font-size: 30px;
    }
    .Indexsection1Span {
        font-size: 28px;
    }
    .Indexsection1P p {
        font-size: 30px;
    }
    .Indexsection1Container {
        width: 400px;
    }
    .Indexsection1Context {
        width: -webkit-fill-available;
    }
    #moveit1 {
        width: min-content;
    }
    .Indexsection1Button button {
        height: 30px;
        font-size: 18px;
        padding: 0px 20px;
    }
}


@media (width<=769px) {
    .Indexsection1Context {
        font-size: 30px;
    }
    .Indexsection1Span {
        font-size: 20px;
    }
}
/* --------------------------------------------------IndexSection1-------------------------------------------------------------- */

/* --------------------------------------------------IndexSection2-------------------------------------------------------------- */

.Indexsection2{
    padding: 60px;
    background: linear-gradient(to right, black, gray);
    overflow: hidden;
}

.Indexsection2Container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.Indexsection2Part1Container,.Indexsection2Part2Container{
    width: 50%;
}


.Indexsection2Part1Context {
    margin-right: 60px;
    color: rgb(222, 193, 87);
}

.IS2P1CH1 h1{
    font-size: 56px;
    margin: 0px;
    font-weight: 700;
}

.IS2P1CSpan{
    padding: 10px 0px;
    padding-bottom: 20px;
}

.IS2P1CSpan span{
    font-size: 28px;
    font-style: italic;
    font-weight: 700;
}

.IS2P1CPara{
    text-align: justify;
}

.IS2P1CPara p{
    font-size: 20px;
    margin: 0px;
    font-weight: 400;
}

.Indexsection5Part2Context {
    height: 600px;
}

.Indexsection2Part2Context img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.plspopup.active .Indexsection2Container {
    animation: 1.5s clouds linear;
    opacity: 1;
}

@media (width<=1024px) {
    .Indexsection3Part1Context {
        height: 345px;
    }
}


/* --------------------------------------------------IndexSection2-------------------------------------------------------------- */

/* --------------------------------------------------IndexSection3-------------------------------------------------------------- */

.Indexsection3{
    padding: 60px;
    background: linear-gradient(to right, black, gray);
    overflow: hidden;
}

.Indexsection3Container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.Indexsection3Part1Container,.Indexsection3Part2Container{
    width: 50%;
}

.Indexsection3Part1Context img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.Indexsection3Part1Context {
    padding-right: 60px;
}

.Indexsection3Part2Context{
    color: rgb(222, 193, 87);
}

.IS3P2CH1 h1{
    font-size: 56px;
    margin: 0px;
    font-weight: 700;
}

.IS3P2CSpan{
    padding: 10px 0px;
    padding-bottom: 20px;
}

.IS3P2CSpan span{
    font-size: 28px;
    font-style: italic;
    font-weight: 700;
}

.IS3P2CPara{
    text-align: justify;
}

.IS3P2CPara p{
    font-size: 20px;
    margin: 0px;
    font-weight: 400;
}

.plspopup.active .Indexsection3Container {
    animation: 1.5s clouds linear;
    opacity: 1;
}

/* --------------------------------------------------IndexSection3-------------------------------------------------------------- */

/* --------------------------------------------------IndexSection4-------------------------------------------------------------- */

.Indexsection4{
    padding: 60px;
    background: linear-gradient(to right, black, gray);
}

.Indexsection4Container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.Indexsection4Part1Container,.Indexsection4Part2Container{
    width: 100%;
}

.IS4P1H1{
    padding: 60px 0px;
    padding-top: 0px;
    display: flex;
    justify-content: center;
}

.IS4P1H1 H1{
    margin: 0px;
    color: rgb(222, 193, 87);
    font-size: 56px;
    font-weight: 700;
}

.Indexsection4Part2Container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.Indexsection4Part2Context{
    /* display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; */
    display: grid;
    grid-auto-flow: row;
    align-items: center;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 20px;
}

.Indexsection4Part2ContextEach {
    padding: 30px;
    border-radius: 15px;
    width: 100%;
    height: -webkit-fill-available;
    max-width: 320px;
    background-image: url('goldimg.png');
    background-repeat: no-repeat;
    background-size: cover;
    /* display: grid;
    grid-template-rows: 90px; */
}

.Indexsection4Part2ContextEach:hover{
    transform: scale(1.05);
    transition: transform 1.5s;
    cursor: pointer;
}


.IS4P2CEH2{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 95px;
}

.IS4P2CEH2 h2{
    width: 100%;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.IS4P2CEPara{
    height: 250px;
}

.IS4P2CEPara p{
    word-spacing: 5px;
    font-size: 18.6667px;
    font-weight: 400;
}

.IS4P2CEButton{
    padding-top: 30px;
}

.IS4P2CEButton button{
    width: 100%;
    height: 50px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(to right, black, gray);
    color: white;
    font-weight: 700;
    font-size: 18.6667px;
    cursor: pointer;
}

@media (width<=1280px) {
    .Indexsection4Part2Context{
        grid-template-columns: repeat(2, 1fr);
    }
    .Indexsection4Part2ContextEach {
    height: 445px;
    }
}


@media (width<=769px) {
    .Indexsection4{
        padding: 60px 10px;
    }
}


}
}

/* --------------------------------------------------IndexSection4-------------------------------------------------------------- */

/* --------------------------------------------------IndexSection5-------------------------------------------------------------- */




section#section5pop {
    padding: 60px;
    background: linear-gradient(to right, black, gray);
}

section.Indexsection5.plspopup.active {
    padding: 60px;
    background: linear-gradient(to right, black, gray);
    overflow: hidden;
}

.Indexsection5Container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.Indexsection5Part1Container,.Indexsection5Part2Container{
    width: 50%;
}

.Indexsection5Part1Context{
    margin-right: 60px;
    color: rgb(222, 193, 87);
}

.IS5P1CH1 h1{
    margin: 0px;
    font-size: 56px;
    font-weight: 700;
}

.IS5P1CPara{
    padding: 15px 0px;
}

.IS5P1CPara p{
    margin: 0px;
    font-size: 18.6667px;
    font-weight: 400;
    text-align: justify;
}

.Indexsection5Part2Context {
    height: 600px;
}

.Indexsection5Part2Context img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.plspopup.active .Indexsection5Container{
    animation: 1.5s clouds linear;
    opacity: 1;
}

/* --------------------------------------------------IndexSection5-------------------------------------------------------------- */

#hrTag {
    background-color: white;
    height: 1px;
    display: flex;
    width: 100%;
}

/* --------------------------------------------------IndexSection6-------------------------------------------------------------- */

.Indexsection6{
    padding: 60px;
    background: linear-gradient(to right, black, gray);
}

.Indexsection6Container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.Indexsection6Part1Container,.Indexsection6Part2Container{
    width: 100%;
}

.Indexsection6Part2Container {
    overflow: hidden;
}

.Indexsection6Part2Context {
    display: flex;
}

.Indexsection6Part2ContextMain{
    animation: 20s clients infinite linear;

}

.IS6P1CH1{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0px;
    padding-top: 0px;
}

.IS6P1CH1 h1{
    font-size: 59px;
    margin: 0px;
    font-weight: 700;
    color: rgb(222, 193, 87);
}

.Indexsection6Part2ContextMain{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    margin-right: 20px;
}

.Indexsection6Part2ContextEach{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    height: 300px;
    width: 450px;
    max-width: 450px;
    border-radius: 15px;
    background-image: url('goldimg.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.IS6P2CEImg {
    width: 12.905%;
}

.IS6P2CEImg img{
    width: 100%;
    height: 100%;
    color: rgb(222, 193, 87);
}

.IS6P2CEPara {
    height: 220px;
}

.IS6P2CEPara p{
    text-align: justify;
    height: 145px;
}

.IS6P2CESpan span{
    font-size: 24px;
}



@keyframes clients {
    from{
        transform: translateX(0%);
    }
    to{
        transform: translateX(-110%);
    }
}

.Indexsection6Part2Context:hover .Indexsection6Part2ContextMain {
    animation-play-state: paused;
    cursor: pointer;
}


/* --------------------------------------------------IndexSection6-------------------------------------------------------------- */

/* --------------------------------------------------footer-------------------------------------------------------------- */

footer{
    padding-top: 60px;
    background: linear-gradient(to right, black, gray);
}

.footerSectionConatiner{
    display: flex;
    flex-direction: row;
    /* flex-wrap: wrap; */
}

.footerSectionContainer1{
    width: 40%;
}

.footerSectionContainer2{
    width: 70%;
}

.footerSectionContainer2Main {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.footerSectionContainer1{
    background-color: black;
    color: white;
}

.footerSectionContainer1Main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footerSectionContainer1MainPart1 {
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footerSectionContainer1MainPart1 img {
    height: 105px;
}

.footerSectionContainer1MainPart2{
    padding: 20px 25px;
    padding-top: 0px;
    font-family: 'Nunito', sans-serif;
    font-size: 24px;
}

.FSC1MP2Address{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 25px 0px;
}

.FSC1MP2AddressH2 h2{
    margin: 0px;
}

.FSC1MP2AddressTitleIcon{
    padding: 0px 15px;
}

.FSC1MP2AddressTitleText a{
    text-decoration: none;
    color: white;
    font-family: 'Nunito Sans', sans-serif;
}

.FSC1MP2AddressTitle{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.FSC1MP2Phone{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 25px 0px;
    gap: 20px;
}

.FSC1MP2PhoneTitle{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.FSC1MP2PhoneIcon{
    padding: 0px 15px;
}

.FSC1MP2PhoneNumber a{
    text-decoration: none;
    color: white;
}

.FSC1MP2PhoneH2 h2{
    margin: 0px;
}

.FSC1MP2Email{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 25px 0px;
}

.FSC1MP2EmailIcon{
    padding: 0px 15px;
}

.FSC1MP2EmailId a{
    text-decoration: underline;
    color: white;
}

.FSC1MP2Metatags{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 35px 0px;
}

.FSC1MP2MT a{
    text-decoration: none;
    color: white;
    margin: 0px 25px;
    font-size: 34px;
}

.footerSectionContainer2MainPart1 img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.footerSectionContainer2MainPart2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* height: 320px; */
    height: 100%;
}

.footerSectionContainer2MainPart2Container{
    display: flex;
    flex-direction: row;
    /* padding: 115px 0px; */
}

.footerSectionContainer2MainPart2Container1,.footerSectionContainer2MainPart2Container2{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.FSC2MP2C1ULLinks,.FSC2MP2C1NLLinks {
    align-items: center;
    display: flex;
    flex-direction: column;
    padding: 25px;
    font-family: 'Nunito', sans-serif;
}

.FSC2MP2C1UL,.FSC2MP2C1NL{
    color: white;
    font-size: 34px;
}

#FSC2MP2C1ULLinks a,#FSC2MP2C1NLLinks a{
    text-decoration: none;
    color: white;
    font-size: 20px;
    width: 100%;
    display: flex;
    text-align: center;
}

.footercopyrights {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.footercopyrights span a{
    text-decoration: underline;
    color: white;
}

/* --------------------------------------------------footer-------------------------------------------------------------- */
@keyframes clouds {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}