@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Libre+Caslon+Text:ital,wght@0,400;0,700;1,400&family=Meow+Script&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


@font-face {
    font-family: 'Avenir LT Std';
    src: url('../fonts/AvenirLTStd-Black.eot');
    src: url('../fonts/AvenirLTStd-Black.eot?#iefix') format('embedded-opentype'),
        url('../fonts/AvenirLTStd-Black.woff2') format('woff2'),
        url('../fonts/AvenirLTStd-Black.woff') format('woff'),
        url('../fonts/AvenirLTStd-Black.ttf') format('truetype'),
        url('../fonts/AvenirLTStd-Black.svg#AvenirLTStd-Black') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir LT Std';
    src: url('../fonts/AvenirLTStd-Roman.eot');
    src: url('../fonts/AvenirLTStd-Roman.eot?#iefix') format('embedded-opentype'),
        url('../fonts/AvenirLTStd-Roman.woff2') format('woff2'),
        url('../fonts/AvenirLTStd-Roman.woff') format('woff'),
        url('../fonts/AvenirLTStd-Roman.ttf') format('truetype'),
        url('../fonts/AvenirLTStd-Roman.svg#AvenirLTStd-Roman') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir LT Std';
    src: url('../fonts/AvenirLTStd-Book.eot');
    src: url('../fonts/AvenirLTStd-Book.eot?#iefix') format('embedded-opentype'),
        url('../fonts/AvenirLTStd-Book.woff2') format('woff2'),
        url('../fonts/AvenirLTStd-Book.woff') format('woff'),
        url('../fonts/AvenirLTStd-Book.ttf') format('truetype'),
        url('../fonts/AvenirLTStd-Book.svg#AvenirLTStd-Book') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}




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

:root {
    --primary-color: #00C3F2;
    --secondary-color: #F4C92D;
    --text-color: #fff;
    --accent-color: #8a8a8a; 
}
body {
    font-family: "Montserrat", serif;
    overflow-x: hidden;
}
.overlay {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
a, button {
    transition: .3s all ease-in-out;
    text-decoration: none;
    color: #fff;
}
figure {
    margin: 0;
    position: relative;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}






/* header */
.mainBanner {
    background: black;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -75px;
}
.navigation .navbar-brand {
    flex: 0 0 25%;
}
.newSlideSect .themeBtn {
    margin: 2rem auto 0;
}
header {
    position: absolute;
    width: 100%;
    z-index: 111;
}
.navigation .navbar-nav .nav-link {
    color: white;
    font-size: 1.125rem;
    padding:  0 0 10px;
    position: relative;
    text-transform: uppercase;
    display: flex;
    gap: 10px;
}

.navigation .navbar-nav .nav-link:before {
    content: '';
    height: 2px;
    width: 0;
    position: absolute;
    background: url(../images/headBef.png);
    left: 0;
    bottom: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: .3s all ease-in-out;
}
.navigation .navbar-nav .nav-item {
    padding: 10px 20px 0;
}

.navigation .navbar-nav .nav-link.active:before {
    width: 100%;
    opacity: 1;
}

.navigation .navbar-nav .nav-link:hover:before {
    width: 100%;
    opacity: 1;
}
.getBtn {
    font-size: 1.125rem;
    height: 60px;
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--secondary-color);
    border-radius: 10px;
    margin: 0 0 0 30px;
    box-shadow: 0 0 .0px #fff, 0 0 0.1px #fff, 0 0 1px #f4c92d, 0 0 1px #f4c92d, 0 0 15px #f4c92d, inset 0 0 10px #f4c92d;
    color: white;
    text-transform: uppercase;
}
.navigation {
    padding: 1rem 0;
    border-bottom: 1px solid #fff;
}
.getBtn:hover {
    
    color: black;
}
.mainBanner video {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

/* header end */


/* Banner section */
.mainBanner .overlay {
    display: flex;
    align-items: end;
    min-height: 1000px;
    background: url(../images/sldBg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.banSlidr {
    position: relative;
}
.banArrow {
    position: absolute;
    top: 45%;
    left: 11%;
    transform: translateY(-50%);
}
.banSlidr .overlay:after {
    content: '';
    height: 10%;
    width: 100%;
    background: linear-gradient(0deg, #000000 -70%, #00000000 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.textslideSect.test-sld-one {
    background: var(--secondary-color);
    transform: rotate(-1deg);
    margin: -40px 0;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 11;
    width: 100%;
    overflow-x: hidden !important;
}
.overlay.newOvre {
    background: rgba(0,0,0,0.5);
    align-items: center;
}
.banContSldHeading h1 {
    font-size: 120px;
    color: white;
    text-align: center;
    font-weight: 600;
    line-height: 1;
}

.banContSldHeading p {
    font-size: 1.25rem;
    font-family: 'lato';
    color: white;
    text-align: center;
    margin: 1.25rem auto 0;
    width: 75%;
}
.banCont h1 {
    color: #fff;
    text-align: center;
    font-size: 9.938rem;
    text-transform: uppercase;
    font-weight: 300;
    line-height: 1;
}
.banCont h1 .hbTwo {
    font-weight: 500;
    color: var(--secondary-color);
}
section {
    position: relative;
}

.mainBanner:before {
    content: '';
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.5);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}
.hbThree {
    font-weight: 500;
}

.hbOne {
    margin-left: -13rem;
}
.hbFive {
    text-transform: uppercase;
    font-size: 9.938rem;
    font-weight: 300;
    color: #fff;
    line-height: 1;
}
.newText {
    display: flex;
    align-items: center;
    justify-content: center;
}

.newText h2 {
    flex: 0 0 65%;
    text-align: end;
}

.newText p {
    color: #fff;
    position: relative;
    font-size: 1.25rem;
    margin: 0 0 0 5rem;
    text-transform: uppercase;
}
.newText p:before {
    content: '';
    height: 100%;
    width: 5%;
    position: absolute;
    left: -35px;
    top: 0;
    background: url(../images/textBef.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.banCnt {
    display: flex;
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%) rotate(270deg);
    align-items: center;
    z-index: 11;
}

.banCnt .cntBtn {
    font-size: 1rem;
    text-transform: uppercase;
}
.banCnt .cntBtn:hover {
    color: var(--secondary-color);
}
.cntBef {
    transform: rotate(90deg) translateY(-70px);
}

.cntAft {
    transform: rotate(90deg) translateY(70px);
}
.banIcon {
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
    width: 100px;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: space-between;
    z-index: 11;
}

.banIcon ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}


.banIcon ul li a {
    color: #000000;
    font-size: 1rem;
    height: 35px;
    width: 35px;
    background: rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.banIcon ul li a:hover {
    opacity: 1;
    font-size: 1rem;
    transform: scale(1.25);
    background: #F4C92D;
}
.icnAft {
    position: relative;
    top: 20px;
}

.icnBef {
    position: relative;
    top: -20px;
}
.boldText {
    font-size: 16rem;
    position: absolute;
    bottom: 70px;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    opacity: 0.05;
    text-align: center;
}
.mainBanner .overlay:before {
    content: '';
    height: 1px;
    width: 70%;
    position: absolute;
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
}
.banContSldHeading span {
    color: var(--primary-color);
}
.banContSldHeading figure {
    margin-top: 3rem;
}
/* Banner section end */


/* About section */
.aboutSect {
    background: #000;
    padding: 8rem 0;
}
.topRad {
    position: absolute;
    top: -100px;
    left: 0;
}

.rightRad {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.centRad {
    position: absolute;
    top: 62%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.abCont {
    position: relative;
    z-index: 11;
}

.sectionHeading {
    color: #fff;
    font-size: 64px;
    font-weight: 900;
    font-family: "Lato", serif;
}
.sectionHeading span {
    color: var(--primary-color);
    font-weight: 600;
}
.abCont p {
    color: #fff;
    font-size: 1.375rem;
    margin-left: 10rem;
    position: relative;
    z-index: 1111;
}
.abCont img {
    margin-top: -5rem;
}
.aboutText {
    position: absolute;
    z-index: 11;
    font-size: 21rem;
    line-height: 0.1;
    text-transform: uppercase;
    font-weight: 700;
    -webkit-text-stroke: 3px var(--secondary-color);
    color: transparent;
    font-family: 'Avenir LT Std';
    opacity: 0.3;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}
.abCont figure {
    position: relative;
}

.abCont figure:before {
    content: '';
    height: 30%;
    width: 2px;
    background: var(--secondary-color);
    position: absolute;
    top: -75px;
    left: 0;
}
.slide-text {
  width: 100%;
  background-color: var(--secondary-color);
  padding: 1.2em 0;
  display: flex;
  flex-direction: row;
  white-space: nowrap; /* important */
  overflow-x: hidden;
}
.slideCont {
    display: flex !important;
    align-items: center;
    gap: 30px;
    margin: 0 15px;
}

.slideCont h3 {
    margin: 0 !important;
    text-transform: uppercase;
    font-size: 2.849rem;
    font-family: 'lato';
    font-weight: 900;
}
.slide-text .slick-slide:nth-child(even) .slideCont h3 {
    -webkit-text-stroke: 1px black;
    color: var(--secondary-color) !important;
    text-shadow: 3px 3px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000,
    -1px 1px 0 #000, 1px 1px 0 #000;
}
.textslideSect {
    background: var(--secondary-color);
    transform: rotate(-2deg);
    margin: -40px 0;
    box-shadow: 0px 4px 4px rgba(0,0,0,0.25);
    position: relative;
    z-index: 11;
    width: 100%;
    overflow-x: hidden !important;
}
/* About section end */


/* Tabs Section */
.tabSect {
    padding: 8rem 0 24rem;
    background: url(../images/tabBg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.tabSect .sectionHeading {
    color: #000;
}

.tabContent .nav-pills .nav-link {
    background: transparent;
    color: #8E8E8E;
    font-size: 1.5rem;
    font-family: 'lato';
    font-weight: 700;
    text-align: left;
    padding: 1rem 1rem 1rem 0;
    border-bottom: 2px solid #8E8E8E;
    border-radius: 0;
    position: relative;
    z-index: 11;
}

.tabContent .nav-pills .nav-link.active,
.tabContent .nav-pills .nav-link:hover {
    color: #0E0E72;
}

.tabContent .nav-pills .nav-link:after {
    content: '';
    height: 45%;
    width: 45%;
    background: url(../images/tabHov.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: -120px;
    opacity: 0;
    transition: .3s all ease-in-out;
}
.tabContent .nav-pills .nav-link.active:after,
.tabContent .nav-pills .nav-link:hover:after {
    opacity: 1;
}
.tabCont {
    display: flex;
    margin-left: 2rem;
    align-items: end;
}

.tabCont figure {
    flex: 0 0 50%;
}
.tbText {
    background: url(../images/tabCntbg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 3rem;
    margin: 0 0 -5rem -10rem;
    width: 55%;
    border-radius: 0;
    box-shadow: 0px 4px 4px rgba(0,0,0,0.25);
    position: relative;
}


.tbText figure {
    flex: unset;
    height: 65px;
    width: 65px;
    background: #DADAFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px dashed #0A0A4A;
    margin-bottom: 1rem;
}

.tbText figure img {
    width: 60%;
}

.tbText p {
    color: #000;
    font-size: 1.25rem;
    font-family: 'Lato';
    font-weight: 500;
    opacity: 0.6;
}
.tbText ul {
    margin: 0;
}

.tbText ul li {
    font-size: 1.125rem;
    font-family: 'Lato';
    color: #000;
    opacity: 1;
    font-weight: 500;
    padding: 10px 0;
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.tbText ul li span {
    opacity: 0.66;
}
.tabelmOne {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
}

.tabelmTwo {
    position: absolute;
    bottom: 30%;
    right: 22%;
    transform: translate(50%, 50%);
}

.tabelmThree {
    bottom: 15%;
    position: absolute;
    top: 18%;
    right: 8%;
    transform: translate(50%, -50%);
}
.tbText ul li i {
    color: #0A0A4A;
}
/* Tabs Section end */


/* logo section */
.logCont {
    background: url(../images/logBg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 4.25rem 0;
    position: relative;
    z-index: 0;
}
.logCont h3 {
    color: #fff;
    font-size: 2.75rem;
    font-weight: 700;
}
.logSect span {
    height: 55%;
    width: 82%;
    background: transparent;
    border: 2px solid black;
    position: absolute;
    top: 50px;
    left: 50px;
    z-index: 0;
}
.logContTwo {
    background-color: #EAEAEA;
    padding: 4rem 5rem;
    margin-top: -2.5rem;
    position: relative;
}
.logContTwo h4 {
    font-size: 28px;
    color: #494949;
    font-weight: 700;
    font-style: italic;
    opacity: 0.77;
    font-family: 'lato';
    margin: 0;
    line-height: 1.5;
}
.lgSlider figure {
    text-align: center !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.logSect {
    margin-top: -13.1rem;
    position: relative;
    z-index: 11;
}
/* logo section end */


/* Trust section */
.trustSect {
    background: url(../images/trustBg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 18rem 0 0;
    margin-top: -11rem;
}
.trstCont figure {
    position: relative;
}
.trstCont .overlay {
    display: flex;
    flex-direction: column;
    align-items: self-start;
    justify-content: end;
    color: white;
    padding: 2rem 2rem 3rem;
}

.trstCont .overlay h4 {
    margin: 0;
    font-size: 3.438rem;
    font-weight: 700;
}
.trstCont .overlay h5 {
    margin: 0;
    font-size: 2.774rem;
    font-weight: 700;
}

.trstCont .overlay h6 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
}
.trstCont .overlay h3 {
    margin: 0;
    font-size: 4.639rem;
    font-weight: 700;
}
.trstCont .sectionHeading {
    color: #000;
}
.trstCont p {
    font-size: 1.375rem;
    font-family: 'Lato';
    opacity: .6;
    margin: 2rem 0 2rem;
}

.trusMis {
    display: flex;
    align-items: self-start;
    gap: 20px;
    margin: 1rem 0;
}

.trusMis figure {
    flex: 0 0 15%;
}

.trusMis h3 {
    font-size: 1.625rem;
    color: #0E0E72;
    font-weight: 700;
    font-family: 'Lato';
    border-bottom: 2px dashed black;
    padding: 0rem 0 1rem;
}

.trusMis p {
    font-size: 1.125rem;
    margin: 22px 0;
}

.themeBtn {
    height: 62px;
    width: 240px;
    background: linear-gradient(45deg, #1EC4F0, #11718A);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    box-shadow: 0 7px 21px 0 rgba(21, 137, 168, 0.4);
    transition: .3s all ease-in-out;
}
.themeBtn:hover {
    background: linear-gradient(45deg, #11718A, #1EC4F0);
    color: #fff;
}
.tabContent .nav {
    margin-bottom: 3rem;
}
.Number p {
    font-size: 1.125rem;
    color: #000000;
    opacity: 0.6;
    font-family: 'lato';
    margin: 0 !important;
}

.Number h4 {
    color: #0E0E72;
    font-size: 1.75rem;
    font-family: 'lato';
    font-weight: 900;
    margin: 0;
}
.trstNumber {
    display: flex;
    align-items: center;
    gap: 20px;
}
.call-Icon i {
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a156f;
    border-radius: 50%;
    border: 5px solid white;
    outline: 5px solid rgba(10,10,74,0.22);
}
.trustBtn {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
}
.trstNumber:hover .call-Icon i {
    color: #fff;
}
.trustDiv {
    position: relative;
    padding: 0 1rem;
    margin-bottom: -12rem;
    z-index: 11;
}

.trustDiv:before {
    content: '';
    height: 40%;
    width: 100%;
    background: url(../images/trstBef.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}
.trstCont {
    position: relative;
    z-index: 11;
}
/* Trust section end */


/* portfolio section */
.newSlideSect .slide-text {
    background: #000617;
    transform: rotate(-2deg);
}
.newSlideSect .slide-text .slick-slide:nth-child(even) .slideCont h3 {
    -webkit-text-stroke: 1px var(--secondary-color);
    color: transparent !important;
}
.newSlideSect .slide-text .slideCont h3 {
    color: var(--secondary-color);
}
.newSlidetext {
    background: var(--secondary-color);
    padding: 0rem 0;
    position: relative;
}
.newSlideSect {
    position: relative;
    background: #000617;
    padding: 20rem 0 15rem;
    overflow-x: hidden;
}



.elmOne {
    position: absolute;
    right: 0;
    top: 15%;
    transform: translateY(-50%);
}

.elmTwo {
    position: absolute;
    left: 0;
    top: 17%;
}

.elmThree {
    position: absolute;
    bottom: 0;
    right: 2%;
}

.elmFour {
    position: absolute;
    top: 75%;
    left: 0;
    transform: translateY(-50%);
}

.ring {
    position: absolute;
    top: 18%;
    left: 2%;
}



.portCard figrue {
    position: relative;
}

.portCard figure {
    position: relative;
}

.portCard figure .overlay {
    height: 98%;
    width: 98%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: rgba(10, 10, 74, .57);
    transition: .3s all ease-in-out;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    opacity: 0;
}

.portCard figure .overlay i {
    height: 70px;
    width: 70px;
    background: #0A0A4A;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 2rem;
    outline: 10px solid #0a0a4a8f;
    transition: 0.3s all ease-in-out;
    transform: translateY(15px);
    opacity: 0;
}

.prtCont {
    position: absolute;
    bottom: 5%;
    transition: 0.3s all ease-in-out;
}


.prtCont h3 {
    font-size: 2.313rem;
    font-weight: 900;
    font-family: 'Lato';
    color: white;
    transform: translateY(15px);
    opacity: 0;
}

.prtCont p {
    font-size: 1rem;
    font-family: 'Lato';
    font-weight: 700;
    font-style: italic;
    color: white;
    transform: translateY(15px);
    transition: 0.3s all ease-in-out;
    opacity: 0;
}
.portCard a:hover .prtCont h3,
.portCard a:hover .prtCont p,
.portCard a:hover figure .overlay i {
    color: white;
    transform: translate(0);
    opacity: 1;
}
.portCard a:hover figure .overlay {
    opacity: 1;
}
.portCard {
    margin: 20px 10px;
}
.extMargin {
    margin-top: 5rem;
}
.porText {
    font-size: 400px;
    font-weight: 700;
    -webkit-text-stroke: 2px var(--secondary-color);
    color: transparent;
    opacity: 0.2;
    position: absolute;
    top: 55%;
    right: 0;
    transform: translateY(-50%) rotate(180deg);
    z-index: 11;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    line-height: 0.75;
    font-family: 'Avenir LT Std';
}
/* portfolio section end */




/* industries section */
.induSect {
    padding: 5rem 0;
    background-image: url(../images/indus.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow-x: hidden;
}

.induSect .sectionHeading {
    color: black;
}

.indusElm {
    position: absolute;
    right: 2%;
    top: 20%;
}
.indusCont ul {
    display: flex;
    align-items: center;
    gap: 20px;
}
.indusCont ul li {
    height: 470px;
    /* width: 275px; */
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s all ease-in-out;
}

.indusCont ul li figure {
    height: 100%;
    width: 100%;
}

.indusCont ul li figure img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.indusCont .overlay {
    background: linear-gradient(-90deg, #0E0E72 -40% , #0a0a4a61 100%);
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 1rem 2.5rem 3rem;
    transition: 0.3s all ease-in-out;
}
.indusCont .overlay h3 {
    color: #fff;
    font-size: 1.563rem;
    font-family: 'Lato';
    font-weight: 900;
    transition: 0.3s all ease-in-out;
    transform: rotate(180deg) translate(0%, -50%);
    height: 100%;
    position: absolute;
    right: 20px;
    bottom: 60%;
    writing-mode: vertical-lr;
    text-orientation: mixed;
}

.indusCont .overlay p {
    font-size: 1.125rem;
    color: #fff;
    font-family: 'Lato';
    transition: 0.3s all ease-in-out;
    opacity: 0;
}

.indusCont .overlay a {
    color: red;
    font-size: 14px;
    font-weight: 900;
    font-family: 'Lato';
    opacity: 0;
}
.indusCont ul li.active,
.indusCont ul li:hover {
    width: 550px;
}

.indusCont ul li.swiper-slide-active .overlay h3 {
    position: relative;
    right: unset;
    height: unset;
    width: unset;
    top: unset;
    writing-mode: unset;
    text-orientation: unset;
    transform: unset;
    bottom: unset;
}
.indusCont ul li.swiper-slide-active .overlay h3 {
    transform: unset;
    position: relative;
    right: unset;
    height: unset;
    width: unset;
    top: unset;
}
.indusCont ul li.swiper-slide-active .overlay p,
.indusCont ul li.swiper-slide-active .overlay a {
/* .indusCont ul li:hover .overlay p, */
/* .indusCont ul li:hover .overlay a  { */
    opacity: 1;
}
.indusCont ul li.swiper-slide-active  .overlay {
    background: linear-gradient(0deg, #0E0E72, #0a0a4a61);
}
.indusCont ul li.slick-slide {
    width: 250px;
    transition: .3s all ease-in-out;
}

.indusCont ul li.swiper-slide-active {
    width: 550px !important;
}
/* industries section end */


/* cta section */
.ctaSect {
    background-image: url(../images/ctaBg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 5rem 0;
    border-bottom: 5px solid white;
}
.ctaCont h2 {
    font-size: 4.688rem;
    font-weight: 900;
    font-family: 'lato';
    color: #0A0A4A;
}

.ctaCont p {
    color: #000;
    font-size: 1.25rem;
    font-family: 'lato';
    font-weight: 500;
}
.ctaBtn {
    color: white;
    background: #080d48;
    padding: 1rem 2rem;
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 5px;
    box-shadow: 0 7px 10px 0 rgba(0,0,0,0.25);
}
.ctaBtn:hover {
    color: #fff;
}
.ctaCont.text-end {
    padding: 2rem 0 0;
}
.ctaBg {
    position: absolute;
    bottom: 3rem;
    left: 56%;
    transform: translateX(-50%);
}
/* cta section end */



/* footer */

footer {
    background: url(../images/footBg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding: 5rem 0 0;
}

.footSideOne h2 {
    color: #fff;
    font-size: 3.125rem;
    font-weight: 700;
}

.footCont p {
    color: #fff;
    font-size: 1.25rem;
    font-family: 'lato';
    margin: 30px 0;
}

.cntList li a {
    display: flex;
    align-items: center;
    gap: 15px;
}
.quickLinks li a:hover {
    color: var(--secondary-color);
}
.cntList li a i {
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: black;
    border-radius: 50%;
    font-size: 1.125rem;
}
.footCont img {
    width: 50%;
}

.cntList li a p {
    margin: 0;
    font-size: 1.125rem;
    font-family: 'lato';
    font-weight: 500;
}
.footCont {
    margin-top: 5rem;
}
.cntList li {
    margin: 15px 0;
}

.quickLinks li a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.quickLinks li a span:first-child {
    flex: 0 0 7%;
}

.quickLinks li a img {
    filter: brightness(10) invert(0);
}

.quickLinks li a:hover img {
    filter: unset;
}

.quickLinks li a {
    color: white;
    font-size: 1.125rem;
    font-family: 'lato';
    font-weight: 500;
}

.quickLinks li {
    margin: 10px 0;
}

ul.quickLinks {
    margin-top: 3.5em !important;
}
.footCont h4 {
    color: #00C3F2;
    font-size: 1.75rem;
    font-family: 'Lato';
    font-weight: 900;
    margin-top: 6.5rem !important;
}
.footCont.fontContpad {
    padding: 0 0 0 8rem;
}
.footForm h3 {
    font-size: 2.25rem;
    font-family: 'lato';
    font-weight: 900;
    color: #000;
    background-color: var(--secondary-color);
    padding: 1.5rem 0;
    border-radius: 10px 10px 0 0;
    text-align: center;
    border: 5px solid white;
    border-bottom: none;
    margin: 0;
}
.footForm form {
    background: url(../images/formBg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 1rem 2rem 3rem;
    margin: 0;
    border-radius: 0 0 10px 10px;
    position: relative;
    min-height: auto;
    height: auto;
    z-index: 11;
}

.footForm form .input-group {
    height: 80px;
    margin: 5px 0px 10px;
    background: transparent;
}

.footForm form input {
    background: transparent;
    border: none;
    border-bottom: 2px solid white;
    border-radius: 0;
    font-size: 1.125rem;
    color: white !important;
}
.footForm form textarea {
    background: transparent;
    border: none;
    border-bottom: 2px solid white;
    border-radius: 0;
    font-size: 1.125rem;
    color: white !important;
    resize: none;
    padding: 1.5rem 13px 0;
}
.footForm form input:focus, 
.footForm form textarea:focus {
    background: transparent;
    outline: none;
    box-shadow: none;
    border-bottom-color: white;
}
.footForm form textarea::placeholder,
.footForm form input::placeholder {
    color: #fff;
}
.footForm form .input-group-text {
    background-color: transparent !important;
    border: none;
    border-bottom: 2px solid white;
    border-radius: 0;
    color: white;
    display: flex; 
    align-items: baseline;
    justify-content: center;
}
.footForm form .input-group-text figure {
    margin-top: 16px !important;
}
.footForm form .form-select {
    background: transparent !important;
    border: none;
    border-bottom: 2px solid white;
    border-radius: 0;
    font-size: 1.125rem;
    color: white;
    
}
.footLast .footLink li a {
    font-size: 1.125rem;
    font-family: 'Lato';
    font-weight: 500;
    position: relative;
    padding: 0 20px;
}

.footLast .footLink li + li a::before {
    content: '';
    height: 15px;
    width: 2px;
    background-color: white;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.footLast ul {
    display: flex;
    align-items: center;
}
.footLast .footLink li a:hover {
    color: var(--secondary-color);
}
.textClass {
    height: 200px !important;
}
.footLast p {
    font-size: 1.125rem;
    font-family: 'Lato';
    font-weight: 500;
    position: relative;
    color: #fff;
    text-align: end;
    margin: 0;
}
.listIcon li a {
    height: 42px;
    width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #5B5B5B;
    color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-size: 1.125rem;
}
.listIcon li a:hover {
    background-color: white;
    color: #181818;
}
.listIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.footMarg {
    padding: 2rem 0;
    border-top: 1px solid white;
    margin-top: 6rem;
}
.footForm .footBtn {
    height: 60px;
    width: 250px;
    background: white;
    font-size: 25px;
    font-family: 'Montserrat';
    font-weight: 600;
    margin-top: 20px;
}

.footForm .footBtn:hover {
    background: linear-gradient(45deg, #1EC4F0, #11718A);
    color: #fff;
}
.footForm .footBtn:focus {
    outline: none;
    box-shadow: none;
}
.footForm {
    margin-top: -11rem;
    position: relative;
}

.footForm::before {
    content: '';
    height: 85%;
    width: 100%;
    background: transparent;
    border: 4px solid var(--secondary-color);
    position: absolute;
    bottom: -20px;
    left: 20px;
    border-radius: 20px;
}

/* footer end */



/* about inner */

/* banner */
.innerBanner {
    background: url(../images/inBg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 5rem 0 0;
    height: 750px;
}
.ibnCont figure {
    background: white;
    padding: 1.5rem 0 1.5rem 1.5rem;
    border-radius: 30px 0 0 30px;
    margin: 7rem 0 0 0;
    position: relative;
    z-index: 11;
}

.ibnCont h1 {
    color: white;
    font-size: 3.75rem;
    font-weight: 700;
    font-family: 'Lato';
}

.ibnCont h1 span {
    color: var(--primary-color);
}

.ibnCont p {
    color: white;
    font-size: 1.375rem;
    font-family: 'Lato';
    font-weight: 500;
    margin-top: 1.5rem;
}

.ibnPading {
    padding: 0 6rem;
}
/* banner end */


/* about slide */
.abSlide .slide-text, .abSlide .newSlidetext {
    background: white;
}

.abSlide .slideCont h3 {
    font-family: 'Avenir LT Std';
    color: black;
    opacity: 0.5;
    font-size: 3.75rem;
    font-weight: 900;
}
.abSlide .abslide-text .slick-slide:nth-child(even) .slideCont h3 {
    color: white !important;
    text-shadow: none;
    -webkit-text-stroke: 2px black;
}
.abSlide .slideCont figure {
    opacity: 0.5;
    flex: 0 0 10%;
}
.abslide-text .slick-slide {
    margin: 0 14px;
}
.about-sld-sect {
    padding: 1rem 0 4rem;
}
/* about slide end */

/* info section */
.infoCont .tbText {
    background: unset;
    margin: unset;
    width: auto;
    box-shadow: none;
    position: unset;
    padding: 2rem 0 0;
}
.infoCont .sectionHeading {
    margin: 0;
    color: black;
}
.info-sect {
    background: url(../images/infoBg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 6rem 0;
}
.infoCont .tbText ul li i {
    color: #000000;
}

.infoCont .shap {
    height: 3px;
    width: 65%;
    background: #4D4D4D;
    display: block;
    border-radius: 100%;
    margin: 40px 0 20px;
    font-family: "Meow Script", serif;
}

.cefCont {
    display: flex;
    align-items: center;
}

.cefCont div:first-child {
    flex: 0 0 26%;
    border-right: 1px solid black;
}

.cefCont div h5 {
    font-size: 2.938rem;
    font-family: "Meow Script", serif;
    color: black;
    opacity: 0.7;
    font-weight: 400;
}

.cefCont h3 {
    font-size: 2rem;
    color: black;
    opacity: 0.7;
    font-family: 'Lato';
    font-weight: 700;
}

.cefCont p {
    font-style: italic;
    font-family: 'Lato';
    color: #0A0A4A;
    font-weight: 700;
    line-height: 1;
}

.cefCont div {
    position: relative;
}

.cefCont div:nth-child(2) {
    padding: 0 0 0 40px;
}
/* info section end */


/* counter section */
.count-sect {
    background: url(../images/countBg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 5rem 0 0;
    height: 960px;
    z-index: 1;
}
.countCard h4 {
    color: white;
    font-size: 4.608rem;
    font-family: 'Montserrat';
    font-weight: 700;
}
.countCard p {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    font-family: 'Montserrat';
    margin: 0;
}
.countCard {
    text-align: center;
}
.countCont {
    padding-left: 8rem;
    position: relative;
    z-index: 1;
}
.countCont p {
    font-size: 1.375rem;
    color: white;
    font-family: 'lato';
    margin: 20px 0;
}
.countImg {
    padding-left: 4rem;
    margin-top: 6rem;
    position: relative;
}

.countImg figure:before {
    content: '';
    height: 100%;
    width: 100%;
    background: transparent;
    border: 4px solid var(--secondary-color);
    position: absolute;
    top: -2rem;
    right: 2rem;
    border-radius: 27px;
}
.countImg img {
    position: relative;
}

.countCont .nav-tabs .nav-item .nav-link {
    border: none;
    color: white;
    font-size: 22px;
    font-weight: 600;
    font-family: 'Montserrat';
    position: relative;
    background: transparent;
    display: flex;
    align-items: center;
    padding-left: 2rem;
}

.countCont .nav-tabs .nav-item .nav-link:before {
    content: '';
    height: 25px;
    width: 25px;
    background-color: #D1D1D1;
    position: absolute;
    border-radius: 50%;
    left: 0;
    border: 6px solid white;
}
.countCont .nav-tabs .nav-item {
    padding: 0 30px 0 0;
}

.countCont .nav-tabs {
    border: none;
    margin-top: 3rem;
}
.tabcontRadio p {
    color: black;
    opacity: 0.7;
    font-size: 1.5rem;
    font-family: 'lato';
    font-weight: 500;
}

.tabcontRadio {
    position: relative;
    padding: 1rem 2rem;
    margin-top: 2rem;
}

.tabcontRadio:before {
    content: '';
    height: 100%;
    width: 1261px;
    background: linear-gradient(90deg, #F4C92D 40%, rgb(244 201 45 / 70%) 59%, rgb(244 201 45 / 0%) 100%);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 11px;
}
.countCont .nav-tabs .nav-item .nav-link.active:before {
    background: var(--primary-color);
}
/* counter section end */



/* service info section */
.serinfo-sect {
    padding: 15rem 0 5rem;
    background: url(../images/sinfoBg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.serinfo-sect .sectionHeading {
    color: black;
}

.sriCard {
    background: #0A0A4A;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0px 4px 50px 0px rgba(0,0,0,0.25);
    transition: .3s all ease-in-out;
    margin-top: 2rem;
}

.sriCard figure img {
    filter: brightness(0) invert(1);
    transition: .3s all ease-in-out;
}

.sriCard h3 {
    font-size: 21px;
    color: white;
    font-family: 'Montserrat';
    font-weight: 700;
    margin: 20px 0 12px;
    transition: .3s all ease-in-out;
}

.sriCard p {
    color: white;
    font-size: 1rem;
    font-family: 'lato';
    font-weight: 400;
    transition: .3s all ease-in-out;
}

.sriCard:hover h3,.sriCard:hover p {
    color: black;
}

.sriCard:hover figure img {
    filter: brightness(0) invert(0);
}

.sriCard:hover {
    background: #FFFFFF;
}
/* service info section end */


/* team section */
.team-sect {
    padding: 5rem 0;
}
.team-sect:before {
    content: '';
    height: 50%;
    width: 100%;
    background: url(../images/teamBg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
}
.teamCont {
    position: relative;
}
.teamCard {
    margin: 3rem 0 30px;
    height: 500px;
    padding: 0 0 2rem;
}
.tcBody {
    background: #FFFFFF;
    border: 1px solid #BFBFBF;
    border-radius: 15px;
    text-align: center;
    padding: 1rem;
    transition: .3s all ease-in-out;
    margin: -50px 2rem 0;
    position: relative;
}
.tcBody h3 {
    color: #0A0A0A;
    font-size: 1.75rem;
    font-family: 'lato';
    font-weight: 900;
    font-style: italic;
    margin: 5px 0;
    transition: .3s all ease-in-out;
}

.tcBody p {
    color: #0A0A0A;
    font-size: 1.125rem;
    font-family: 'lato';
    font-weight: 600;
    font-style: italic;
    text-transform: uppercase;
    transition: .3s all ease-in-out;
}
.tcBody ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: .3s all ease-in-out;
    height: 0;
}

.tcBody ul li a {
    color: white;
    font-size: 1.5rem;
}
.teamCard:hover .tcBody{
    background: linear-gradient(0deg, #0A0A4A, #1818B0);
}

.teamCard:hover ul {
    height: 100%;
}

.teamCard:hover h3,.teamCard:hover  p {
    color: white;
}
.teamCard:hover img {
    filter: unset;
}
.teamCard img {
    filter: grayscale(1);
}

.slick-slide.slick-current.slick-active .teamCard img {
    filter: unset;
}
/* team section end */

.slideCont figure {
    flex: 0 0 10%;
}

/* about inner end */



/* service main page */
.srpCont .sectionHeading {
    font-weight: 500;
    font-family: 'Lato';
    margin-bottom: 2rem;
}

.srpCont .sectionHeading span {
    font-weight: 800;
}
.srpCont p {
    font-size: 1.375rem;
    font-family: 'lato';
    font-weight: 500;
    opacity: 0.7;
}
.srp-sect {
    padding: 6rem 0 10rem;
}
.bg-white h2,
.bg-white h2 span,
.bg-white p {
    color: black;
}
.bg-white {
    background: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bg-white figure:before {
    content: '';
    height: 80%;
    width: 75%;
    background: #0A0A4A;
    position: absolute;
    bottom: -35px;
    left: -30px;
    border-radius: 45px;
}

.bg-white figure img,
.bg-black figure img {
    position: relative;
}

.bg-black {
    min-height: 100vh;
    background: url(../images/srpBg.jpg);
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.bg-black h2,
.bg-black h2 span,
.bg-black p {
    color: #fff;
}

.bg-black figure:before {
    content: '';
    height: 80%;
    width: 75%;
    background: var(--secondary-color);
    position: absolute;
    bottom: -35px;
    right: -30px;
    border-radius: 45px;
}
.bg-white figure img {
    border: 5px solid white;
    border-radius: 30px;
}
.bg-black figure img {
    border: 6px solid black;
    border-radius: 40px;
}
.bg-black .elmTwo {
    position: absolute;
    right: 0;
    left: unset;
    top: -7%;
}

.bg-black .elmOne {
    bottom: -100px;
    top: unset;
    transform: unset;
    right: -20px;
    left: unset;
}

.bg-black .elmThree {
    position: absolute;
    left: 2%;
    right: unset;
    top: 4%;
}

.stacking-slide {
  height: 100vh;
  width: 100%;
  position: sticky;
  top: 0;
}
.stacking-slide:nth-last-child(1) {
  height: 100vh;
}

/* .vertical-scroll-snap {
    overflow-y: scroll;
    -ms-scroll-snap-type: y mandatory;
        scroll-snap-type: y mandatory;
    max-height: 100vh;
  }
.stacking-slide {
    box-shadow: 0 0px 50px -12px rgba(0, 0, 0, 0.05);
    background-color: white;
    transition: all 0.1 0.5s ease-in-out;
  }
  .stacking-slide * {
    opacity: 0.2;
    transform: translateY(8rem) scale(0.7);
    transition: all 1.5s ease-in-out;
  } */
/* service main page end */





/* Huzaifa Css button hover animation */
@-webkit-keyframes pulse {
    0% {
      -webkit-box-shadow: 0 0 0px #fff, 0 0 0.1px #fff, 0 0 1px #f4c92d,
        0 0 1px #f4c92d, 0 0 15px #f4c92d, inset 0 0 10px #f4c92d;
    }
    70% {
      -webkit-box-shadow: 0 0 0px #dfdddd, 0 0 0.1px #cabebe, 0 0 1px #ceae3c,
        0 0 1px #ac890e, 0 0 15px #f7c308, inset 0 0 10px #756116;
    }
    100% {
      -webkit-box-shadow: 0 0 0 0 rgba(243, 194, 16, 0);
    }
  }
  @keyframes pulse {
    0% {
      -moz-box-shadow: 0 0 0 0 rgba(243, 193, 11, 0.603);
      box-shadow: 0 0 0 0 rgba(230, 186, 27, 0.87);
    }
    70% {
      -moz-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
      box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    }
    100% {
      -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
      box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
  }
  
  
  .btn-animate {
      transition: all 0.2s ease-in;
      position: relative;
      overflow: hidden;   
      cursor: pointer;
      z-index: 1;
      animation: pulse 2s infinite;
    }
    
    .btn-animate:before {
      content: "";
      position: absolute;
      left: 50%;
      transform: translateX(-50%) scaleY(1) scaleX(1.25);
      top: 100%;
      width: 140%;
      height: 180%;
      border-radius: 50%;
      display: block;
      transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
      z-index: -1;
    }
    
    .btn-animate:after {
      content: "";
      position: absolute;
      left: 55%;
      transform: translateX(-50%) scaleY(1) scaleX(1.45);
      top: 180%;
      width: 160%;
      height: 190%;
      background-color: #f4c92d;
      border-radius: 50%;
      display: block;
      transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
      z-index: -1;
    }
    
    .btn-animate:hover {
      color: #000;
      border: 1px solid #f4c92d;
    }
    
    .btn-animate:hover:before {
      top: -35%;
      background-color: #f4c92d;
      transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
    }
    
    .btn-animate:hover:after {
      top: -45%;
      background-color: #f4c92d;
      transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
    }
    
  
  /* Huzaifa Css button hover animation */



  .swiper {
    width: 100%;
    padding: 50px 0;
  }
  
  .swiper-slide {
    position: relative;
    width: 200px !important;
    border-radius: 12px;
    overflow: hidden;
    transition: 1s;
    user-select: none;
    margin: 0 !important;
  }
  
  
  
  .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
  }
  
 
  
  .swiper-slide-active {
    position: relative;
    width: 550px;
    transition: 1s;
  }
  
  .swiper-slide-active::after {
    background: rgba(123, 123, 123, 0.4);
  }
  
  .swiper-slide-active img {
    transform: scale(1.3);
    object-position: 50% 0%;
  }
  
  
  .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background-color: #000;
    border-radius: 50%;
    transition: all 0.6s ease-in-out;
  }
  
  .swiper-pagination-bullet-active {
    width: 32px;
    background-color: var(--primary-color);
    border-radius: 14px;
  }
  
  



/* services inner page */
  .serabout-sect {
    padding: 9rem 0;
}
.srbCont p {
    margin: 30px 0;
    font-size: 1.375rem;
    color: black;
    font-family: 'lato';
    opacity: 0.7;
}
.srbCont.srbExt {
    background: url(../images/uiux/abiBg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 4rem;
    margin-left: -5rem;
    margin-top: 9rem;
    position: relative;
    box-shadow: 0px 1px 43.9px -3px rgba(0,0,0,0.15);
}
.srbCont figure:before {
    content: '';
    height: 94%;
    width: 99%;
    background: var(--primary-color);
    position: absolute;
    left: 30px;
    top: 70px;
}
.srbCont figure img {
    position: relative;
}
.prompt {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 8.31rem;
    color: #00C3F2;
    font-family: 'Avenir LT Std';
    font-weight: 900;
    position: absolute;
    right: 6%;
    top: 55%;
    transform: translateY(-50%);
    height: 75%;
    line-height: 1;
    opacity: 0.11;
    -webkit-text-stroke: 6px #00C3F2;
    color: transparent;
}

.choose-sect {
    background: url(../images/uiux/wcBg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 4rem 0;
    z-index: 11;
    margin-bottom: -19rem;
}
.wchCont p {
    font-size: 1.375rem;
    color: white;
    font-weight: 400;
    font-family: 'Lato';
    margin-top: 2rem;
}
.wchCont ul li {
    color: white;
    font-size: 1.563rem;
    font-family: 'Lato';
    font-weight: 700;
    padding: 0px 0 20px;
    position: relative;
    display: flex;
    align-items: baseline;
    padding-left: 5rem;
}

.wchCont ul li:before {
    content: '';
    height: 5px;
    width: 50px;
    background: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 15px;
}
/* services inner page end */


/* portfolio page */
.portCont .sectionHeading {
    color: black;
}
.newSlideSect.port-inner-sect {
    padding: 5rem 0 10rem;
}

.port-tab-sect {
    padding: 5rem 0;
}
.portCont .nav-tabs {
    border: none;
    justify-content: center;
    margin-top: 4rem;
    position: relative;
    /* gap: 50px; */
}

.portCont .nav-tabs .nav-link.active {
    border: none;
    color: black;
    opacity: 1;
}

.portCont .nav-tabs .nav-link {
    font-size: 1.125rem;
    font-weight: 700;
    color: black;
    opacity: 0.3;
    position: relative;
    padding: 6px 1rem;
    border: none;
}
.portCont .nav-tabs:before {
    content: '';
    height: 0;
    width: 65%;
    background: black;
    position: absolute;
    bottom: 0;
    border-radius: 30px;
}
.portCont .nav-tabs .nav-link:before {
    content: '';
    height: 5px;
    width: 0;
    background: var(--primary-color);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.3s all ease-in-out;
    border-radius: 20px;
}
.portCont .nav-tabs .nav-link.active:before {
    width: 100%;
}
/* portfolio page end */



/* opportunity page */
.opport-sect .sectionHeading, .opport-sect .sectionHeading span {
    color: black;
    margin: 0 0 4rem;
}
.opportCard {
    background: #F3F3F3;
    padding: 4rem 3rem 2rem;
    margin-bottom: 2rem;
}

.opportCard h3 {
    font-size: 28px;
    font-weight: 600;
    font-family: 'Montserrat';
}

.opportCard p {
    font-size: 1.125rem;
    font-family: 'Lato';
    font-weight: 400;
}

.opportCard ul li a {
    font-size: 13px;
    color: black;
    font-weight: 600;
    font-family: 'lato';
    padding: 10px 20px;
    background: transparent;
    border: 1px solid black;
    border-radius: 100px;
}

.opportCard ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 30px 0;
}

.opportCard .themeBtn {
    margin-left: auto;
    background: #0A0A4A;
    box-shadow: 0px 5px 7px 0px rgba(0,0,0,0.25);
}
.opportCont h4 {
    font-family: 'lato';
    padding: 1.5rem 1rem 1.5rem 2.5rem;
    background: #EEEEEE;
    font-size: 1.25rem;
    color: black;
    font-weight: 600;
    text-transform: capitalize;
    border-left: 7px solid #0040D8;
}
.opportCont ul li a {
    color: #253A67;
    font-size: 1rem;
    font-weight: 500;
}

.opportCont ul li {
    padding: 1rem 0  1rem 2.5rem;
}

.opportCont ul {
    margin: 1rem 0 3rem;
}

.opportCont p {
    color: #53648B;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Lato';
    margin-bottom: 3rem;
}

.opportCont .socialBtn {
    color: #000;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Montserrat';
    padding: 1rem;
    border: 1px solid black;
    border-radius: 4px;
}
.opsMore {
    margin: 50px auto 0;
    color: #5E5E5E;
    font-size: 1.25rem;
    font-weight: 500;
    font-family: 'Montserrat';
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}
.opsMore span i {
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.25);
}
.opsMore:hover {
    color: #5E5E5E;
}
.opport-sect {
    padding: 5rem 0;
}
.opportCard.jbdCard {
    border-radius: 10px;
    padding: 2rem;
}

.opportCard.jbdCard img {
    border-radius: 10px;
    margin-bottom: 2.5rem;
}
.opportCard.jbdCard h3 {
    font-family: 'Lato';
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.opportCard.jbdCard h4 {
    font-size: 1.75rem;
    font-weight: 600;
    font-family: 'Lato';
    margin: 40px 0 20px;
}
.opportCard.jbdCard ul {
    display: block;
}

.opportCard.jbdCard ul li {
    padding: 8px 0;
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 1.125rem;
    font-weight: 500;
    font-family: 'Lato';
}

.opportBlack {
    background: #141515;
    padding: 2rem;
    border-radius: 10px;
}

.opportBlack h4 {
    color: white;
    text-align: center;
    font-weight: 700;
    font-size: 1.5rem;
    font-family: 'Lato';
}

.opportBlack ul li h5 {
    color: white;
    font-weight: 900;
    font-family: 'Lato';
    font-size: 1.35rem;
}

.opportBlack ul li p {
    color: white;
    font-size: 1.125rem;
    font-weight: 400;
    font-family: 'Lato';
    margin: 0;
}

.opportBlack ul li {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.3);
}

.opportBlack ul {
    margin: 2rem 0;
}
.opportBlack .themeBtn {
    background: white;
    color: black;
    box-shadow: none;
    margin: 0 auto;
}

.crForm {
    background: #F5F5F5;
    padding: 3rem;
}

.crForm input {
    height: 60px;
    margin: 10px 0;
    border: 1px solid #DDDDDD;
    border-radius: 5px;
    padding: 0 1.5rem;
}

.crForm textarea {
    height: 220px;
    margin: 10px 0;
    border: 1px solid #DDDDDD;
    border-radius: 5px;
    resize: none;
    padding: 1.5rem;
}
.crForm h3 {
    color: black;
    font-weight: 700;
    font-family: 'lato';
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}
.crForm textarea:focus, .crForm input:focus {
    outline: none;
    box-shadow: none;
}
.crForm .themeBtn {
    background: #0A0A4A;
    width: 80%;
    box-shadow: 0px 7px 10px 0px rgba(0,0,0,0.25);
    margin: 15px auto;
}
.crForm textarea::placeholder, .crForm input::placeholder {
    font-size: 1rem;
    font-family: 'lato';
    color: rgba(0, 0, 0, 0.25);
}

.crForm [type="file"]::-webkit-file-upload-button {
  background: #FFFFFF;
  border: 1px solid #767676;
  border-radius: 4px;
  color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  font-size: 16px;
  outline: none;
  padding: 10px 20px;
  text-transform: uppercase;
  transition: all 1s ease;
  font-family: 'lato';
  height: 100%;
}
.crForm [type="file"] {
    padding: 8px 16px;
    margin: 0;
    background: transparent;
    border: none;
}
.crForm [type="file"]::-webkit-file-upload-button:hover {
  background: #fff;
  border: 2px solid #767676;
  color: #000;
}




ul.dropMenu {
    position: absolute;
    display: none;
    opacity: 0;
    height: 0;
    background: white;
    width: auto;
    border-radius: 5px;
    overflow: hidden;
}

.navigation .navbar-nav .nav-item:hover ul.dropMenu {
    opacity: 1;
    display: block;
    height: auto;
}

.navigation ul.dropMenu .nav-item .nav-link {
    color: black;
    padding: 15px;
    font-size: 1rem;
    font-family: 'Lato';
    font-weight: 500;
}

.navigation .navbar-nav .nav-item ul.dropMenu .nav-item {
    padding: 0;
}

.navigation ul.dropMenu .nav-item .nav-link:hover {
    background: var(--primary-color);
}

.navigation ul.dropMenu .nav-item .nav-link:before {
    display: none;
}
.footForm form .form-select option {
    color: black;
}
.footForm form .form-select:focus {
    outline: none;
    box-shadow: none;
}
.abslide-text.ecomStories .slideCont h3 {
    font-size: 3rem;
}
.abslide-text.prodStories .slideCont h3 {
    font-size: 2.75rem;
}
.privCont h3 {
    color: black;
    font-size: 2rem;
    margin-top: 2rem;
    font-family: 'Lato';
    font-weight: 600;
}

.privCont p {
    color: black;
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 1.125rem;
}

.privCont ul {list-style: disc !important;padding-left: 40px;padding-bottom: 16px;font-size: 1.125rem;color: black;}

.privCont p a {
    color: var(--primary-color);
    font-weight: 600;
}
ul.cntLists {
    list-style: none !important;
    padding: 0;
}
ul.cntLists li {
    padding: 5px 0;
}
ul.cntLists li a i {
    height: 50px;
    width: 50px;
    background: #0a0a4a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

ul.cntLists li a {
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    gap: 10px;
    align-items: center;
}
.privacy-sect {
    padding: 0 0 5rem;
}
/* opportunity page end */


/* contact page */
.cnt-page-from {
    background: white;
    box-shadow: 3px 0px 24px 0 rgba(0,0,0,0.1);
    padding: 1.5rem;
    border-radius: 14px;
}

.cntsConttent {
    background: #0E0E72;
    padding: 4rem 2rem 2rem;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
}

.cntsConttent h3 {
    color: white;
    font-size: 3.125rem;
    font-family: 'lato';
    font-weight: 700;
    line-height: 1.2;
}

.cntsConttent p {
    color: white;
    font-family: 'Lato';
    font-size: 1.125rem;
    margin: 25px 0 40px;
}
ul.social-list {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 2rem 0;
}
.cntElm {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 75%;
    opacity: 0.8;
}
ul.social-list li a {
    height: 40px;
    width: 40px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #0e0e72;
    font-size: 1.125rem;
}
.cntsConttent:before {
    content: '';
    height: 14px;
    width: 95%;
    background: white;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 100px;
}
.cntsForm input.form-control {
    height: 60px;
    border: none;
    border-bottom: 2px solid #8D8D8D;
    border-radius: 0;
    padding: 0;
    margin: 15px 0;
    font-size: 1.125rem;
    font-family: 'lato';
    font-weight: 600;
}
.contacts-sect {
    padding: 5rem 0 0;
}
.cntsForm textarea.form-control {
    height: 120px;
    border: none;
    border-bottom: 2px solid #8D8D8D;
    border-radius: 0;
    margin: 15px 0;
    padding: 20px 0 0;
    font-size: 1.125rem;
    font-family: 'lato';
    font-weight: 600;
}
.questLabel {
    margin-top: 15px;
    font-size: 1.125rem;
    font-family: 'lato';
    font-weight: 700;
    color: #011C2A;
    margin-bottom: 15px;
}
.map-sect {
    margin-top: -7rem;
    z-index: -1;
}
.cntArrow {
    position: absolute;
    bottom: -80px;
    right: 20%;
    transform: translateX(50%);
}
.cntsForm .form-check-label {
    font-size: 1rem;
    font-family: 'Lato';
    font-weight: 500;
}
.cntsForm input.form-control:focus, 
.cntsForm textarea.form-control:focus {
    outline: none;
    box-shadow: none;
    border: none;
    border-bottom: 2px solid #8D8D8D;
} 
.cntsForm .themeBtn {
    margin-top: 1rem;
    background: #0A0A4A;
    box-shadow: none;
}
.cntsForm .form-check-inline {
    margin: 10px 20px 0 0;
}
.cntsForm {
    padding: 0 2rem 0 3rem;
}
/* contact page end */



/* Hamburger Button */
    .hamburger {
      position: absolute;
      top: 25px;
      right: 20%;
      width: 32px;
      height: 24px;
      cursor: pointer;
      z-index: 1002;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .hamburger span {
      display: block;
      height: 4px;
      background: white;
      border-radius: 2px;
      transition: 0.4s;
    }

    /* Animation when active */
    .hamburger.active span:nth-child(1) {
      transform: translateY(10px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
      transform: translateY(-10px) rotate(-45deg);
    }

    /* Sidebar Menu */
    .side-menu {
      position: fixed;
      top: 0;
      right: -380px;
      width: 350px;
      height: 101vh;
      background: #090f1f;
      box-shadow: -2px 0 20px rgba(0, 0, 0, 0.15);
      padding: 80px 70px 80px 40px;
      transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
      z-index: 111;
      overflow: hidden;
    }

    .side-menu.active {
      right: 0;
    }

    .side-menu ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .side-menu ul li {
      opacity: 0;
      transform: translateX(30px);
      margin: 20px 0;
      transition: 0.5s ease;
    }

    .side-menu.active ul li {
      opacity: 1;
      transform: translateX(0);
    }

    .side-menu.active ul li:nth-child(1) { transition-delay: 0.2s; }
    .side-menu.active ul li:nth-child(2) { transition-delay: 0.35s; }
    .side-menu.active ul li:nth-child(3) { transition-delay: 0.5s; }
    .side-menu.active ul li:nth-child(4) { transition-delay: 0.65s; }

    .side-menu ul li a {
      color: white;
      font-size: 1.125rem;
      font-weight: 500;
      text-decoration: none;
      position: relative;
      padding-bottom: 3px;
    }

    .side-menu ul li a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0%;
      height: 2px;
      background: #111;
      transition: width 0.3s ease;
    }

    .side-menu ul li a:hover::after {
      width: 100%;
    }

    /* Overlay */
    .mobileHam .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.45);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.4s ease;
      z-index: 1000;
      display: none;
    }

    .mobileHam .overlay.active {
      opacity: 1;
      visibility: visible;
      display: none;
    }
    .mobileHam {
        display: none;
    }
   /* Submenu */
    .submenumobile {
      list-style: none;
      padding-left: 15px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }

    .submenumobile li {
      margin: 10px 0;
      opacity: 0;
      transform: translateX(20px);
      transition: 0.3s ease;
    }

    .submenumobile.active {
      max-height: 500px; /* enough space for items */
    }

    .submenumobile.active li {
      opacity: 1;
      transform: translateX(0);
    }

    .submenumobile li a {
      color: #333;
      text-decoration: none;
      font-size: 16px;
    }

    .submenumobile li a:hover {
      color: #007bff;
    }
    .arrow {
      cursor: pointer;
      transition: transform 0.3s ease;
      color: white;
    }

    .arrow.rotate {
      transform: rotate(90deg);
    }
    .menu-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
    }

    .menu-header .main-link {
      color: white;
      font-size: 1.125rem;
      font-weight: 500;
      text-decoration: none;
    }

    .newSlideSect.port-inner-sect {
        overflow: unset;
    }




/* new custom code */
.scroll-slide-inner {
    position: relative;
    overflow: hidden;
}
.scroll-slide-inner .swiper-container {
  height: 100vh;
}
.scroll-slide-inner .swiper-slide {
    width: 100% !important; 
}
.scroll-slide-inner .swiper-slide {
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
}

.scroll-slide-inner .swiper-slide-1 {
    background: linear-gradient(to right, #9796f0, #fbc7d4);
}

.scroll-slide-inner .swiper-slide-2 {
    background: linear-gradient(to right, #ec008c, #fc6767);
}

.scroll-slide-inner .swiper-slide-3 {
  background: linear-gradient(to right, #2193b0, #6dd5ed);
}

.scroll-slide-inner .swiper-slide-4 {
  background: linear-gradient(to right, #ffe259, #ffa751);
}

.scroll-slide-inner .swiper-slide-5 {
  background: linear-gradient(to right, #0052d4, #4364f7, #6fb1fc);
}

/* new custom code end */

.swiper {
  width: 100%;
  height: auto;
}


.scl-page {
    display: flex;
    align-items: center;
    padding-left: 15rem;
}

.scl-pg-right, .scl-pg-leftght {
    flex: 0 0 50%;
}
.sclcontent {
    padding: 5rem 0;
    width: 60%;
}

.scl-img img {
    height: 450px;
    object-fit: cover;
}


.srpCont {
    position: relative;
}