/*scroll*/


@import url('https://fonts.googleapis.com/css2?family=Krona+One&display=swap');


::selection {
    background: #895ffc;
    color: #000;
    text-shadow: none;
}

::-webkit-scrollbar {
    width: 10px;
    background-color: #f5f5f5;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
    display: none;
}

::-webkit-scrollbar-track-piece {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #dedede;
}

::-webkit-scrollbar-thumb:vertical {
    border-radius: 0px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-image: linear-gradient(#c49c4f, #c49c4f);
}

/*body*/
body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.btn {
    font-family: "Montserrat";
}

*:hover,
*:focus,
* {
    outline: none !important;
}

.overflw {
    overflow: hidden;
}

[class^="box-"] {
    display: none;
}

[class^="box-"].showfirst {
    display: block;
}

img {
    max-width: 100%;
    height: auto;
}

a:hover,
button:hover {
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
}

/*padding*/
.pad {
    padding: 0;
}

.padL {
    padding-left: 0;
}

.padR {
    padding-right: 0;
}

.pad-top-80 {
    padding-top: 80px !important;
}

.pad-top {
    padding-top: 60px;
}

.pad-btm-30 {
    padding-bottom: 30px;
}

.pad-btm {
    padding-bottom: 50px;
}

.pad-btm-70 {
    padding-bottom: 70px;
}

.pad-tb {
    padding: 80px 0;
}

.pad-tbm {
    padding: 50px 0;
}

.padRt-60 {
    padding-right: 60px;
}

.pad-LR30 {
    padding: 0 30px;
}

.pad-80-240 {
    padding: 80px 0 240px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-35 {
    margin-top: 35px;
}

/*botton*/
.btn-a {
    background-color: #6c757d;
    border: 0px solid #6c757d;
    border-radius: 0;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    display: inline-block;
    text-transform: uppercase;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

/* 
.btn-a:hover {
    background: transparent;
    color: #ffffff;
} */

.btn-submit {
    border-radius: 5px !important;
    text-transform: uppercase !important;
    font-size: 24px !important;
    letter-spacing: 0.2px;
}

.btn-submit:hover {
    background: transparent;
    color: #000;
}

/*heading*/
.m1-h h5 {
    font-size: 60px;
    text-transform: uppercase;
    color: #000;
    font-weight: 600;
    position: relative;
}

.m1-h h5 span {
    font-weight: 400;
    font-size: 44px;
}

.m2-h h5 {
    font-size: 36px;
    text-transform: capitalize;
    color: #c49c4f;
    font-weight: 600;
    position: relative;
    font-family: "Poppins";
    text-transform: uppercase;
    padding-bottom: 20px;
}

.m2-h h5 span {
    border-bottom: 3px solid #c49c4f;
    text-transform: capitalize;
}

.m3-h h5 {
    margin-bottom: 35px;
    padding-bottom: 19px;
    color: #c49c4f;
    font-weight: 600;
    font-family: "Poppins";
    text-transform: uppercase;
    font-size: 18px;
}

.m4-h h5 {
    color: #c49c4f;
    font-family: "Poppins";
    text-transform: capitalize;
    font-size: 18px;
    margin: 25px 0 30px;
    font-weight: 600;
}

.m5-h h5 {
    font-weight: 600;
    color: #000;
    font-size: 48px;
    text-transform: uppercase;
    font-family: "Poppins";
}

.m5-h h5 span {
    border-bottom: 3px solid #fff;
}

.m6-h h5 {}

/*paragrape*/
.p1 p {
    font-size: 16px;
    color: #000;
    line-height: 26px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.p2 p {
    font-size: 36px;
    color: #000;
    line-height: 40px;
    font-weight: 500;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.p3 p {
    color: #000;
    line-height: 32px;
    font-weight: 600;
    font-size: 18px;
    font-family: "Poppins";
}

.p4 p {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    font-family: "Poppins";
    line-height: 22px;
}

.p5 p {}

/* Font size */
.font-16 {
    font-size: 16px !important;
}

/* Hamburger Menu */
.menu-Bar {
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0px;
    margin: auto;
    z-index: 999999;
    display: none;
}

.menu-Bar span {
    display: block;
    height: 4px;
    width: 100%;
    background: #c49c4f;
    position: absolute;
    transition: 0.6s all;
    border-radius: 100px;
}

.menu-Bar span:nth-child(1) {
    top: 0;
}

.menu-Bar span:nth-child(2) {
    top: 8px;
    transform-origin: left;
}

.menu-Bar span:nth-child(3) {
    top: 16px;
}

.menu-Bar.open span {
    background: #000;
}

.menu-Bar.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 12px;
    transform-origin: right-center;
}

.menu-Bar.open span:nth-child(2) {
    width: 0;
    opacity: 0;
}

.menu-Bar.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 12px;
    transform-origin: right-center;
}

/*top-header*/
/*header*/
header {
    padding: 10px 30px;
    background: #000;
    position: relative;
    z-index: 99;
}

ul.menu {
    display: block;
    display: flex;
    justify-content: end;
}

ul.menu>li {
    display: inline-block;
    margin-right: 20px;
}

ul.menu>li:last-child {
    margin-right: 0;
    margin: 0 0 0 30px;
}

ul.menu>li>a {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    text-transform: capitalize;
    letter-spacing: 0;
    border-bottom: 0px solid transparent;
    border-radius: 10px !important;
    font-weight: 600;
    font-family: 'Satoshi';
}

ul.menu>li.active a {
    border-bottom: 2px solid #fff;
}



/*main-banner*/
.mainBanner {
    background-size: cover;
    background-position: center;
    height: 100vh;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 999;
}

video#myVideo {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 99;
}

.z-9 {
    z-index: 999;
    position: relative;
}

.mainBanner:after {
    content: "";
    width: 100%;
    height: 100%;
    background: #00000059;
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    margin: 0 auto;
}

/*main-banner End*/
/* Social Icons */
.socialIcon li {
    display: inline-block;
}

.socialIcon li span {
    padding: 12px 10px;
    background-color: #fff;
    border: 1px solid #fff;
    color: #000;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    text-align: center;
    margin: 0 5px 0 0;
}

.socialIcon li span:hover {
    border: 1px solid #fff;
    background: transparent;
    color: #000;
}

/*footer start*/
footer {
    background-color: #0f0f0f;
    padding: 30px 0;
}

.flogo {
    text-align: right;
}

.copyright.text-center {
    font-size: 14px;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #ffffff;
    background: #000;
    font-family: 'Satoshi';
}

.copyright.text-center p {
    text-transform: capitalize;
}

.footerLinks a {
    color: #000;
    text-transform: capitalize;
    font-size: 16px;
}

.contactDetail li {
    color: #000;
    text-transform: capitalize;
    font-size: 16px;
}

/*footer end*/
/*media-quries*/
@media (max-width: 1440px) {}

@media (max-width: 1200px) {
    .menu-Bar {
        display: block;
        top: 0px;
    }

    .menuWrap.open {
        display: flex;
        left: 0px;
    }

    .menuWrap {
        position: fixed;
        left: -210%;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        background: #c49c4f;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-flow: column;
        transition: all 0.4s ease;
        z-index: 9999;
        width: 100vw;
    }

    .menuWrap .menu li {
        display: block;
    }

    .menuWrap .menu li a {
        margin-bottom: 10px;
        padding: 0;
        display: block;
        margin-bottom: 30px;
        padding-right: 0px;
        margin-right: 0px;
        color: #000;
        font-size: 25px;
    }

    .container {
        position: relative;
    }

    header .header-top {
        display: none;
    }

    header .main-header ul.menu>li {
        display: block;
        padding: 0px;
    }

    header .main-header ul.menu>li a {
        color: #000;
        padding: 0px;
        text-align: center;
    }

    header .main-header ul.menu>li a:before {
        display: none;
    }
}

@media (max-width: 980px) {
    .btn-a {
        margin-bottom: 20px;
    }

    footer {
        padding-bottom: 60px;
    }
}

@media (max-width: 824px) {}

@media (max-width: 767px) {
    header {
        padding: 0;
    }

    footer {
        text-align: center;
    }

    .m1-h h5 span {
        font-size: 26px;
    }

    .at-h {
        padding-bottom: 0;
    }

    .padRt-60 {
        padding-right: 0 !important;
    }

    .btn {
        border: 1px solid #000;
    }

    ul.menu>li:last-child {
        margin: 0;
    }

    a.logo img {
        width: 50%;
    }

    .m1-h h5 {
        font-size: 20px;
    }

    .mainBanner {
        height: 35vh;
    }

    .m2-h h5 {
        font-size: 20px;
    }

    .pad-tb {
        padding: 40px 0;
    }

    .p1 p {
        font-size: 18px;
        line-height: 20px;
    }

    .flogo img {
        width: 50%;
    }

    .flogo {
        text-align: left;
        margin-bottom: 20px;
    }

    .copyright.text-center {
        font-size: 16px;
    }

    footer {
        padding: 15px 0;
    }

    ul.menu>li.active a {
        border-bottom: 0;
    }

    ul.menu>li {
        margin-right: 0;
    }

    .menuWrap .menu li a {
        margin-bottom: 15px;
        font-size: 15px;
    }

    ul.menu>li>a {
        border-bottom: none;
    }

    ul.menu>li.active a {
        border-bottom: none;
    }

    ul.menu>li>a:hover {
        border-bottom: none;
    }

    .inner-ban .ban_hdn h5::after {
        width: 90px;
    }

    .inner-ban {
        height: 20vh;
    }

    .Tec-ctn h5::after {
        width: 270px;
    }
}

@media (min-width: 320px) and (max-width: 340px) {}

@media (min-width: 341px) and (max-width: 365px) {}

@media (min-width: 366px) and (max-width: 380px) {}

@media (min-width: 381px) and (max-width: 415px) {}

/* UL style */
.listStyle {
    list-style: disc;
    display: inline-block;
    list-style-position: inside;
}

.listStyle li {
    margin: 30px 0;
    font-family: "Poppins";
    font-weight: 500;
    text-transform: uppercase;
    font-size: 18px;
    color: #000;
    /* position: relative;
   */
}

.whitemode {
    background-color: #fff;
}

.blackmode {
    background-color: #000;
}

.loginform {
    height: 100%;
    width: 100%;
}

/* .form-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
} */

.loginform .right-side {
    margin: 0 auto;
}

.intform .right-side .switchMode,
.loginform .right-side .switchMode {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
    margin-top: 20px;
    gap: 10px;
}

input[type="checkbox"] {
    position: relative;
    appearance: none;
    width: 50px;
    height: 26px;
    background: #ccc;
    border-radius: 50px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: 0.4s;
}

input:checked[type="checkbox"] {
    background: #7da6ff;
}

input[type="checkbox"]::after {
    position: absolute;
    content: "";
    width: 21px;
    height: 21px;
    top: 3px;
    left: 3px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
    transition: 0.4s;
}

input:checked[type="checkbox"]::after {
    left: 50%;
}

.loginform-sub-heading {
    margin-top: 20px;
}

.inputWrape {
    margin-top: 125px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 30px;
}

.passWrapper {
    position: relative;
    display: inline-block;
}

.password-container {
    position: relative;
}

.password-container .eye {
    position: absolute;
    left: 55%;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.error_border {
    border-color: red;
}

.text-danger {
    color: red;
}


.inputWrape .nameWrapper,
.passWrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.loginform .inputWrape .nameWrapper input,
.loginform .passWrapper input {
    height: 50px;
    width: 60%;
    background-color: transparent;
    border-radius: 10px;
    border: 2px solid #d9d9d9;
    padding: 0 10px;
}

.loginform .left-side,
.whitemode .left-side {
    width: 100%;
    height: 100%;
}

.loginform .left-side .image-container,
.whitemode .left-side .image-container {
    width: 100%;
    height: 100%;
}

.loginform .left-side .image-container img {
    width: 100%;
    height: 100%;
}

.loginform .formWrapper .loginbtn {
    margin-top: 40px;
}

.loginform .formWrapper .loginbtn button {
    border-radius: 8px;
    background: #cc1822;
    padding: 15px 33px;
    color: #000;
    font-family: 'Krona One', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2.56px;
    border: none;
}

.loginform .formheading .heading {
    color: #cc1822;
    font-family: 'Krona One', sans-serif;
    font-size: 35px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    word-spacing: -0.9px;
}

.loginform-sub-heading .sub-heading {
    color: #000;
    font-family: 'Krona One', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.blackmode .loginform-sub-heading .sub-heading {
    color: #000;
}

.sub-heading a {
    color: #000;
    font-family: 'Krona One', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
}

.blackmode .sub-heading a {
    color: #000;
}

.inputWrape label {
    color: #000;
    font-family: "Montserrat";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.blackmode .inputWrape label {
    color: #ffffff;
    font-family: "Montserrat";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.loginform .loginbtn a {
    border-radius: 8px;
    background: #cc1822;
    padding: 15px 33px;
    color: #000;
    font-family: 'Krona One', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2.56px;
    border: none;
}

.loginform .loginbtn button:hover {
    background: #fff;
    color: #cc1822;
    border: 1px solid #cc1822;
}

.loginform .forget-text {
    margin-top: 20px;
}

.forget-text p {
    color: #000;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.24px;
}

.blackmode .forget-text p {
    color: #000;
}

.col-md-12.all_divs_int {
    padding: 90px;
}

.position-relative2 {
    position: relative !important;
}

@media only screen and (max-width: 1000px) {
    .position-relative {
        position: relative !important;
    }

    .position-absolute {
        position: absolute !important;
        z-index: 9999;
    }

    .blackmode .inputWrape label {
        color: #000;
    }

    .blackmode .forget-text p {
        color: #000;
    }

    .blackmode .sub-heading a {
        color: #000;
    }

    .col-md-12.all_divs_int {
        background: #ffffffbf;
        padding: 30px;
        border-radius: 30px;
        box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
        position: relative;
    }

    .loginform .inputWrape .nameWrapper input,
    .loginform .passWrapper input {
        width: 100%;
    }

    .height-100vh {
        height: 100vh;
    }

    .intform .col-md-12.all_divs_int {
        padding: 30px;
        margin-top: 20px;
    }

    .loginform .left-side,
    .whitemode .left-side {
        width: 100%;
        height: 100vh;
    }

    .all_divs_wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-bottom: 30px;
    }

    .loginform-sub-heading .sub-heading {
        color: #000 !important;
    }

    .loginform .formheading .heading {
        font-size: 24px;
        word-spacing: -0.9px;
    }

    .inputWrape {
        margin-top: 15px;
    }

    .loginform .left-side .image-container,
    .whitemode .left-side .image-container {
        width: 100%;
        height: 120vh;
    }
}