:root {
    --body-bgcolor: #040404;
    --white: #fff;
    --lightgreen: #DCFF60;
    --lightblue: #3BB3E7;
    --lightorange: #FFBE3D;
    --bordercolor: #686868;
    --bordercolortwo: #545454;
    --bordercolorthree: #6463634D;
    --borderwhite: #fff;
    --black: #0A0A0A;
    --blacktwo: #101010;
    --dark-orange: #F2771E;
    --tabgrey: #4E4E4E;
    --grey: #827D7D;
    --body-alt-bgcolor: #040404;
    --lightgreentwo: #DCFF60E0;
}


body {
    font-family: "Aero Matics", sans-serif;
    color: var(--white);
    background-color: var(--body-bgcolor);
    font-size: 2.5vh;
    font-weight: 400;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}

.inter-fnt {
    font-family: "Inter", sans-serif !important;
}

.logo {
    width: 12vw;
}

img {
    height: auto;
}

a {
    color: #025ade;
}

.paracontent, p {
    font-size: 1.2vw;
    line-height: 2vw;
    /* font-size: 2.4vh; */
    font-weight: 400;
    /* line-height: 4vh; */
    margin: 0;
    text-align: justify;
}

.paracontent {
    font-family: "Inter", sans-serif !important;
}

.bannersection {
    padding-top: 20vh;
    padding-bottom: 0;
    position: relative;
    height: 100vh;
    background-image: url("/assets/images/home/bannerbg.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.bannerrow {
    display: flex;
    margin: 0 -12px;
}
.bannerrow > div {
    padding: 0 12px;
}

.bannerrow > div:first-child {
    width: 60%;
}
.bannerrow > div:last-child {
    width: 40%;
}

section {
    padding: 10vh 0;
}

.tophead {
    color: var(--lightgreen);
    font-size: 2vw;
    line-height: normal;
    font-weight: 500;
    margin-bottom: 1vh;
}

.btn {
    outline: 0;
    background-color: transparent;
}

.btn:is(:hover, :focus, :focus-visible, :active)  {
    box-shadow: none;
    outline: 0;
}

.sitebtn {
    background-color: var(--white);
    color: var(--black);
    font-size: 1.2vw;
    line-height: 1vw;
    /* padding: 1.2vh 1.2vw; */
    /* padding: 1vh 2vh; */
    padding: 1vh 2vh 1vh 2.5vh;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 1.5vh;
    width: fit-content;
    border-radius: 10vh;
}

.sitebtn span {
    background-color: var(--black);
    color: var(--white);
    font-size: 3vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 4.5vh;
    height: 4.5vh; */
    width: 4vh;
    height: 4vh;
    border-radius: 50%;
}

.bannerhead {
    font-size: 4.7vw;
    /* font-size: 10vh; */
    line-height: 5.5vw;
    /* line-height: 12vh; */
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 0;
}

.section-subtitle {
    /* font-size: 3.5vh; */
    font-size: 1.7vw;
    line-height: 2.4vw;
    /* line-height: 5.5vh; */
    font-weight: 400;    
}

.bannersection .section-subtitle {
    margin: 2vh 0 3.5vh;
}

.flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topheadbox {
    position: relative;
}

.topheadbox .topheadimg {
    width: 11vh;
    position: absolute;
    top: 4vh;
    right: 3vh;
}

.dot {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 1vh;
    margin-left: -1vh;
    width: 2.6vh;
    height: 2.6vh;
    border-radius: 10vh;
}

.bgblue {
    background-color: var(--lightblue);
}

.starimg {
    width: 4.6vw;
}

.topheadsub {
    font-size: 3vw;
    /* font-size: 6.5vh; */
    line-height: 3vw;
    font-weight: 700;
    margin: 1.5vh 0;
}

.bannerboxcontents p {
    text-align: end;
}

.bannerrightbox {
    width: 20vw;
    margin-left: auto;
}

.centermanbox {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: fit-content;
    margin: auto;
    /* margin-top: -33.7vh; */
}

.centermanbox_btn {
    border: 0.1vw solid;
    padding: 1vh 1vh;
    border-radius: 5vw;
    display: flex;
    align-items: center;
    gap: 0.5vw;
}

.centermanbox_btn.active {
    opacity: 0.6;
}

.centermanbox_arrow {    
    width: 6vh;
    height: 6vh;
    font-size: 4vh;
    border-radius: 50%;
    font-weight: 700;
    transform: rotate(90deg);
}

.centermanbox_text {
    padding: 3vh 1vh;
    border-radius: 3vh;
    width: 25.5vh;
    height: 2.7vh;
    color: var(--white);
    font-size: 1vw;
    font-weight: 400;
}

.bannerbgbtntopgreen {
    border-color: var(--lightgreen);
}
.bannerbgbtngreen {
    background: linear-gradient(to right, var(--lightgreen), #5A7205);
}
.bannerbgtextgreen {
    background: linear-gradient(to right, var(--lightgreen), #5A7205);
}

.bannerbgbtntoporange {
    border-color: var(--lightorange);
}
.bannerbgbtnorange {
    background: linear-gradient(to right, var(--lightorange), #7D5A14);
}
.bannerbgtextorange {
    background: linear-gradient(to right, var(--lightorange), #A16D06);
}

.bannerbgbtntopblue {
    border-color: var(--lightblue);
}
.bannerbgbtnblue {
    background: linear-gradient(to right, #38AEDF, #0B5C7E);
}
.bannerbgtextblue {
    background: linear-gradient(to right, var(--lightblue), #075475);
}


.bannerbgbtntopdarkorange {
    border-color: var(--dark-orange);
}
.bannerbgbtndarkorange {
    background: linear-gradient(to right, #FB7B1F, #6F2F02);
}
.bannerbgtextdarkorange {
    background: linear-gradient(to right, #FB7B1F, #6F2F02);
}

.centermanbox .flex {
    flex-direction: column;
    gap: 1vw;
}

.centermanbox_first {
    transform: rotate(-90deg) translateY(2vw);
}
.centermanbox_last {
    transform: rotate(-90deg) translateY(-1.9vw);
}

.centermanbox_text_short {
    width: 20vh;
}

.centermanimg {
    width: 18vw;
}

.section-title {
    font-size: 4vw;
    line-height: 4.5vw;
    /* font-size: 8.5vh;
    line-height: 10vh; */
    margin-bottom: 1.5vh;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
}

.section-title-big {
    font-size: 6vw;
    line-height: 6.5vw;
    /* font-size: 13vh;
    line-height: 14vh; */
}
.section-title-big-two {
    font-size: 8.5vw;
    line-height: 9vw;
    /* font-size: 18vh;
    line-height: 20vh; */
}
.section-title-big-three {
    font-size: 7vw;
    line-height: 7.5vw;
    /* font-size: 15vh;
    line-height: 16vh; */
}


.barlines {
    width: 20vw;
    /* width: 42vh; */
}

.sectiontwo .barlines {
    margin-bottom: 4vh;
}

.sectiontwo .rightbox {
    text-align: end;
}



.greenbg {
    background-color: var(--lightgreen) !important;
}

.bluebg {
    background-color: var(--lightblue) !important;
}

.orangebg {
    background-color: var(--lightorange) !important;
}

.green-text {
    color: var(--lightgreen) !important;
}

.blue-text {
    color: var(--lightblue) !important;
}

.orange-text {
    color: var(--lightorange) !important;
}

.fw-300 {
    font-weight: 300;
}

.section-title-inner {
    font-size: 1vw;
    line-height: 1.5vw;
    font-weight: 400;
}

.section-title-inndiv {
    /* position: absolute; */
    display: flex;
    align-items: center;
    gap: 1vh;
    /* bottom: 0;
    left: 39vh; */
}

.gap2 {
    gap: 2vh;
}

.gap3 {
    gap: 3vh;
}

.gap4 {
    gap: 4vh;
}
.gap5 {
    gap: 5vh;
}

.topbot {
    margin-top: 2vh;
    margin-bottom: 3.5vh;
}

::-webkit-scrollbar {
    width: 0px;
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    width: 0px;
    background-color: var(--bordercolor);
}

.section-title-content {
    font-size: 1.4vw;
    line-height: 2.2vw;
}

.mb2 {
    margin-bottom: 2.5vh;
}

.horizontal-line {
    display: inline-block;
    width: 12vh;
    height: 1vh;
}




@media (1400px <= width <= 1800px) {
    .centermanimg {
        width: 35vh;
    }
}

/* @media (min-width: 1400px) {
    .topheadbox .topheadimg {
        right: -10vh;
    }
} */

@media (min-width: 576px) {
    .custom_container {
        width: 100%;
        max-width: 90%;
    }
}

