@import url("https://site-assets.fontawesome.com/releases/v6.0.0/css/all.css");
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700&display=swap");

@font-face {
    font-family: ethnocentric-rg;
    src: url("../fonts/ethnocentric-rg.otf");
}

body {
    position: relative;
    overflow-x: hidden;
}


/* General Styling */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none !important;
    list-style-type: none;
}

:root {
    --color-primary: #ed3338;
    --color-secondary: #312a3d;
    --bg-color: #1d152a;
    --white: #ffffff;
    --ethnocentric: ethnocentric-rg;
    --jost: "Jost", sans-serif;
}

::selection {
    background-color: var(--color-primary);
    color: #fff;
}

html {
    font-size: 16px;
    scroll-behavior: initial !important;
    overscroll-behavior: none !important;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    height: 3px;
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--color-primary);
    border-radius: 8px;
}

::-webkit-scrollbar-track {
    background-color: var(--color-secondary);
}


/* Preloader */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    inset: 0;
}

.preLoader.black {
    background-color: var(--white);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: #000;
}

.preLoader img {
    width: 15%;
}

a {
    display: inline-block;
    color: inherit;
    transition: all 300ms ease-in-out;
}

ul,
ol,
dl,
address,
label {
    margin-bottom: 0;
}

.imgFluid {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
    transition: all 300ms ease-in-out;
}

h1,
h2,
h3 {
    font-family: var(--ethnocentric);
}

h4,
h5,
h6,
p,
a {
    font-family: var(--jost);
}

.padd-y {
    padding: 5rem 0;
}

.object-fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-color {
    background-color: var(--bg-color);
}

.banner-bg {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* / sraachbar start / */

#search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    transition: all 0.5s ease-in-out;
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    z-index: 10000;
}

#search.open {
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
}

#search input[type="search"] {
    position: absolute;
    top: 50%;
    width: 100%;
    color: var(--white) !important;
    background: rgba(0, 0, 0, 0);
    font-size: 2.5rem;
    font-weight: 500;
    text-align: center;
    border: 0px;
    margin: 0px auto;
    margin-top: -1.5rem;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
}

#search .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 61px;
    margin-left: -45px;
    background-color: limegreen;
    border: var(--color-black);
}

#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    color: var(--white);
    opacity: 1;
    padding: 10px 17px;
    font-size: 2rem;
}

.srch-btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.srch-btn .themeBtn {
    padding: 0.5rem 5rem;
}


/* / sraachbar end / */


/* ThemeBtn */

.themeBtn {
    width: fit-content;
    display: block;
    color: var(--white) !important;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.75rem 2.25rem;
    position: relative;
    z-index: 1;
}

.themeBtn::before {
    content: "";
    width: 100%;
    height: 100%;
    transform: skewX(calc(-16 * 1deg)) scale(1) translate3d(0, 0, 0);
    background-color: var(--color-primary);
    border: 2px solid var(--color-primary);
    position: absolute;
    inset: 0;
    z-index: -1;
    transition: all 300ms ease-in-out;
}

.themeBtn:hover::before {
    background-color: transparent;
    border-color: var(--white);
}

.themeBtn--center {
    margin: 0.5rem auto;
}

.themeBtn--gap {
    gap: 1rem;
}

.themeBtn--full {
    width: 100%;
}

.themeBtn--secondary::before {
    background-color: transparent;
}


/* Section Heading */

section {
    position: relative;
}

.section-content {
    color: var(--white);
}

.section-content .subHeading {
    font-size: 2.5rem;
    text-transform: uppercase;
}

.section-content .heading {
    font-size: 3.75rem;
    line-height: 1;
    text-transform: uppercase;
    margin: 0 0 1rem;
    overflow: hidden;
}

.section-content p {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.85;
}


/* Header */

.header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 1rem 12.5rem;
}

.header .navbar {
    gap: 1rem;
}

.header-main {
    justify-content: space-between;
}

.header-main__logo {
    width: 150px;
}

.header-main__logo>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-main__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    gap: 1rem;
}

.header-main__nav li a {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.35rem 0rem !important;
    margin: 0 0.5rem;
    text-transform: uppercase;
    position: relative;
}

.header-main__nav li a::after {
    content: "";
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    position: absolute;
    right: 0;
    bottom: 0;
    transition: all 300ms ease-in-out;
}

.header-main__nav li a:hover::after {
    width: 100%;
    right: auto;
    left: 0;
}

.header-main__nav li a.active::after {
    width: 100%;
}

.headerBtn {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 2rem;
}

.headerBtn li:first-child a>i {
    font-size: 1.25rem;
    color: var(--white);
}


/* Banner */

.bannerSlider {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.banner {
    width: 100%;
    height: 100vh;
    position: relative;
}

.banner::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #00000060;
}

.banner>video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner__content {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 12%;
    color: var(--white);
    transform: translateY(-50%);
}

.banner__content h1 {
    font-size: 10.25rem;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.5rem;
}

.banner__content h1 span {
    font-size: 5rem;
    font-weight: 400;
    letter-spacing: 0;
}

.banner__content p {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.75;
}

.bannerSocial-icon {
    position: absolute;
    left: 5%;
    top: 50%;
    display: flex;
    flex-direction: column;
    transform: translateY(-50%);
    gap: 0.75rem;
    z-index: 1;
}

.bannerSocial-icon a,
.footerSocial-icon a {
    width: 45px;
    height: 45px;
    border: 1px solid var(--color-primary);
    color: var(--white);
    font-size: 1.15rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bannerSocial-icon a:hover {
    background-color: var(--color-primary);
}


/* ourCurrent */

.ourCurrent {
    min-height: 100vh;
    background-image: url("../images/ourCurrent-bg.jpg");
}

.currentCard-flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.currentCard {
    background-color: var(--color-secondary);
    color: var(--white);
    width: 100%;
    height: 288px;
    display: grid;
    place-items: center;
    padding: 2rem 2rem 1.5rem;
    transition: all 300ms ease-in-out;
}

.currentCard:hover {
    transform: translateY(-10px);
}

.currentCard:hover .currentCard-img img {
    transform: scale(1.05);
}

.currentCard-img img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    transition: all 300ms ease-in-out;
    overflow: hidden;
}

.currentCard-content h5 {
    margin: 1.5rem 0 0;
    white-space: nowrap;
}

.ourCurrent-content p {
    width: 80%;
    line-height: 2;
    margin-bottom: 1.85rem;
}

.satellite-img {
    position: absolute;
    bottom: 0;
    left: 0;
}


/* services */

.services {
    background-image: url("../images/services-bg.jpg");
    background-color: #120c1f;
    position: relative;
}

.services .row {
    margin: 4.5rem 0 0;
    position: relative;
}

.services .row::before {
    content: "";
    width: 1px;
    height: 540px;
    background: radial-gradient(#c9c9c9 100%, #585858 100%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.serviceCard-content {
    gap: 1.25rem;
}

.serviceCard-content .subHeading {
    font-size: 1.5rem;
    text-align: center;
    width: 50%;
    white-space: nowrap;
}

.serviceCard-img {
    margin: 2rem 0 0;
}

.serviceCard-img img {
    width: 100%;
    height: 370px;
    object-fit: cover;
}

.servicesBtn {
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: underline !important;
    color: var(--color-primary);
    position: relative;
}

.serviceSilder .slick-slide {
    margin-right: 0;
}

:is(.serviceSilder .slick-prev,
    .serviceSilder .slick-next) {
    background-color: transparent;
    width: unset;
    height: unset;
    top: 50%;
}

.serviceSilder .slick-next {
    right: -4rem;
}

.serviceSilder .slick-prev {
    left: -4rem;
    right: auto;
}

.serviceSilder .slick-next::before {
    content: "\f061";
}

.serviceSilder .slick-prev::before {
    content: "\f060";
}

.serviceSilder .slick-prev::before,
.serviceSilder .slick-next::before {
    font-size: 2.5rem;
    font-family: "Font Awesome 6 Pro";
    opacity: 1;
}


/* ourMarkets */

.ourMarkets .map {
    margin: 10rem 0 0;
}

.ourMarkets-list {
    padding: 2rem;
    background-color: var(--color-secondary);
}

.ourMarkets-list h5 {
    font-size: 1.375rem;
    margin: 1rem 0;
}

.ourMarkets-list p {
    margin: 0 0 0.25rem;
}

.ourMarkets-list ul {
    padding-left: 1.45rem;
}

.ourMarkets-list li {
    list-style: disc;
}

.ourMarkets-list li::marker {
    color: var(--color-primary);
}


/* ourCore */

.ourCore {
    background-image: url("../images/ourCore-bg.jpg");
    z-index: 1;
}

.ourCore::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #130c1e;
    opacity: 80%;
    position: absolute;
    inset: 0;
    z-index: -1;
}

.icon {
    width: 100px;
    height: 100px;
    background-color: #3f374d;
    padding: 1.75rem;
    border-radius: 0.5rem;
    display: block;
    margin: 0 auto 0.25rem;
}

.nav-tabs .nav-item.nav-link:hover .icon,
.nav-tabs .nav-item.show .nav-link .icon,
.nav-tabs .nav-link.active .icon {
    background-color: var(--color-primary);
    color: var(--white);
}

.tab-pane.active {
    display: block;
}

.tab-pane {
    display: none;
}

.coreCard-icon {
    width: 150px;
    height: 150px;
    background-color: var(--color-primary);
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 0.75rem;
}

.coreCard-icon img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.coreCard-content li p {
    font-size: 1.125rem;
    margin: 0 0 0.5rem;
}

.coreCard-btn {
    font-size: 1.375rem;
    text-transform: uppercase;
    color: var(--color-primary);
    margin: 0.75rem 0 0;
}

.coreCard {
    position: relative;
    background-color: #3b324ab0;
    padding: 0 3rem 3rem;
    border-radius: 0 2.5rem 2.5rem;
    margin: 4rem 0 0;
}

.coreCard::before {
    content: "";
    width: 300px;
    height: 50px;
    background-image: url("../images/shape.png");
    background-position: left;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: -50px;
    left: 0;
}

.coreCard-img {
    padding: 3rem 0 0;
}


/* ourValues */

.ourValues::before {
    content: none;
    width: 100%;
    height: 100%;
    background-image: url("../images/ourValues-bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    inset: 0;
}

.valuesCard {
    margin: 0 0 2rem;
    position: relative;
    z-index: 1;
}

.valuesCard-content h4 {
    font-size: 2rem;
    font-weight: 500;
}

.valuesCard-content p {
    width: 80%;
}

.valuesCard-img {
    width: 150px;
    height: 150px;
    border: 4px solid #312a3d;
    border-radius: 0.5rem;
    display: grid;
    place-items: center;
    margin: 0 0 1rem;
}

.valuesCard-img img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    filter: brightness(0) saturate(100%) invert(32%) sepia(96%) saturate(4288%) hue-rotate(342deg) brightness(97%) contrast(91%);
}

.webcam-img img {
    width: 390px;
    height: 280px;
    margin: 2rem 0 0;
    position: relative;
    z-index: 1;
}


/* waveSec */

.waveSec {
    margin-top: -10rem;
}


/* ctaSec */

.ctaSec {
    background-image: url("../images/ctaSec-bg.png");
    padding: 10rem 0;
}

.ctaSec .themeBtn::before {
    border-color: var(--white);
}


/* contactUs */

.contactUs {
    height: 600px;
    position: relative;
}

.contactUs>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contactUs-details {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 5rem 0;
}

.netWire-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 650px;
    height: 549px;
}

.contactUs-img video {
    width: 100%;
}

.contactUs-content {
    padding: 0 0 2rem;
}

.contactUs-content .subHeading {
    font-size: 2rem;
    text-transform: capitalize;
    margin: 0 0 2rem;
}

.contactUs-content li a {
    font-size: 1.25rem;
    padding: 0 0 1rem;
    margin: 0 0 1.5rem;
    border-bottom: 1px solid #c9c9c9;
}

.contactUs-content li a span {
    color: var(--color-primary);
    margin-right: 0.5rem;
}


/* footer*/

.footer {
    padding: 2rem 0;
    background-color: #232230;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footerSocial-icon a,
.topBtn a {
    background-color: #302e3d;
    border-color: #302e3d;
}

.topBtn a {
    color: var(--white);
    padding: 0.55rem 2.25rem;
    text-transform: uppercase;
    scroll-behavior: smooth;
}

.topBtn a i {
    margin-right: 0.45rem;
}

.footerSocial-icon a:hover,
.topBtn a:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}


/* inner-pages */

.innerBanner {
    position: relative;
}

.innerBanner>img {
    height: 580px;
    object-fit: cover;
}

.innerBanner .overlay {
    position: absolute;
    text-align: center;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marketInner {
    padding-bottom: 1rem;
}

.coreInner {
    background: linear-gradient(45deg, #1d152a, #1d152a);
    padding: 5rem 0;
}

.coreInner .row+.row {
    padding-top: 3rem;
    position: relative;
    background: url(../images/coreLine.png) no-repeat;
    margin-top: 1rem;
}

.coreInner figure img {
    width: 600px;
    height: 337px;
    object-fit: cover;
}

.coreInner .coreCard-icon {
    background: #3f374d;
}

.coreInner .coreCard-btn {
    margin-top: 0;
}

.coreInner .coreCard-icon img {
    all: unset;
}

.coreInner .coreCard-icon {
    width: 166px;
    height: 166px;
}

.subBg {
    background: url("../images/subBg.jpg") center/cover, no-repeat !important;
    background-attachment: fixed !important;
    position: relative;
}

.subBg:before {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #1d152a, #1d152a);
    position: absolute;
    inset: 0;
    opacity: 0.5;
}

.serviceInner .section-content p {
    font-size: 1.0625rem;
    width: 78%;
}

.serviceInner .section-content .heading {
    margin-bottom: 0;
}

.serviceInner .section-content h6 {
    font-size: 1.5625rem;
    text-transform: uppercase;
    color: var(--color-primary);
}

.serviceInner .row+.row {
    background: url(../images/srvsLine.png) no-repeat;
    padding-top: 3.5rem;
    margin-top: 2rem;
}

.contactInner {
    background: linear-gradient(45deg, #1d152a, #1d152a);
    padding-top: 4rem;
    overflow: hidden;
}

.contactInner:before {
    content: "";
    position: absolute;
    background: url(../images/contactBg.png) top no-repeat;
    height: 100%;
    width: 100%;
    top: 0;
    mix-blend-mode: luminosity;
}

.contactInner h4 {
    text-transform: inherit !important;
}

.contactForms .form-group .form-control {
    border: unset;
    border-radius: unset;
    background: #312a3d;
    box-shadow: 0 3px 58px rgb(0 0 0 / 16%);
    font-size: 1.25rem;
    padding-left: 1.5rem;
    color: var(--white);
}

.contactForms .form-group textarea {
    padding-top: 1.2rem;
}

.contactForms .form-group input {
    height: 70px;
}

.contactForms .form-group .form-control::placeholder {
    color: var(--white);
}

.contactForms .form-group {
    margin-bottom: 1.4rem;
}

.robot .themeBtn {
    border: unset;
    background: unset;
    padding: 10px 3em;
    margin: 1rem auto 2rem;
}

.contactInner iframe {
    border-radius: 20px;
}

.wireOne {
    position: absolute;
    right: -4rem;
    top: 45%;
}


/* inner-pages */

.whatcntnt h2 {
    font-size: 3.125rem;
    color: #fff;
    font-family: "ethnocentric-rg";
}

.whatcntnt p {
    font-size: 1.125rem;
    color: #fff;
    font-family: "Jost";
}

.whatcntnt ul li {
    font-size: 1.125rem;
    color: #fff;
    font-family: "Jost";
    list-style: disc;
}

.whatcntnt ul {
    display: flex;
    flex-flow: column wrap;
    margin: 0;
    max-height: 176px;
    gap: 10px 1rem;
    padding-left: 1.5rem;
}

.whatcntnt li::marker {
    color: var(--color-primary);
}

.whatcntnt a {
    font-size: 1.375rem;
    color: #ed3338;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 1rem;
}

.contactInner.whatwedo:before {
    background: url(../images/contactBg.png) bottom no-repeat;
}

.saftyntnt h3 {
    font-size: 2.25rem;
    color: #fff;
    margin-top: 2rem;
}

.saftyntnt ul li {
    font-size: 1.125rem;
    color: #fff;
    list-style: disc;
    line-height: 2.5;
}

.saftyntnt p {
    font-size: 1.125rem;
    color: #fff;
}

.saftyntnt li::marker {
    color: var(--color-primary);
}

section.fibersection {
    background: #1d152a;
    padding: 5rem 0;
}

.fibrcnt h3 {
    font-size: 2.25rem;
    font-weight: 500;
    color: #fff;
    font-family: "Jost";
}

.fibrcnt p {
    font-size: 1.125rem;
    font-weight: 400;
    color: #fff;
}

section.fibersection h5 {
    font-size: 1.875rem;
    font-weight: 400;
    color: #fff;
    text-align: center;
}

.networkSection {
    background: #1d152a url(../images/bluecbl1.png) top right no-repeat;
    padding: 5rem 0;
}

.netwrkcnt h2 {
    font-size: 3.125rem;
    color: #fff;
    font-weight: 400;
}

.netwrkcnt h3 {
    font-size: 1.875rem;
    color: #fff;
    font-weight: 400;
    font-family: "Jost";
}

.netwrkcnt p {
    color: #fff;
    font-size: 1.125rem;
}

.pinkline h4 {
    font-size: 2.25rem;
    font-weight: 500;
    color: #fff;
    font-family: "Jost";
}

.pinkline p {
    color: #fff;
    font-size: 1.125rem;
    width: 71%;
}

.netwrkcnt {
    margin-bottom: 5rem;
}

.pinkline {
    border-bottom: 1px solid #ff6467;
    padding-bottom: 1rem;
    margin-bottom: 3rem;
}

h4.nethead {
    color: #fff;
    font-size: 1.875rem;
    margin-top: 3rem;
}

img.img-fluid.bluewire {
    position: absolute;
    right: -4rem;
    top: -19rem;
}

section.networkSection.ispsec {
    background: #1d152a;
}

.pinkline ul li {
    color: #fff;
    font-size: 1.125rem;
    list-style: disc;
    line-height: 2;
}

.networkSection.ispsec .pinkline {
    border-bottom: 1px solid #9783b8;
    padding-bottom: 5rem;
}

.pinkline ul li::marker {
    color: red;
}

.ospcntnt h2 {
    font-size: 3.75rem;
    color: #fff;
}

.ospcntnt h3 {
    font-size: 2.25rem;
    color: #fff;
    font-weight: 500;
    font-family: "Jost";
}

.ospcntnt ul li {
    font-size: 1.125rem;
    color: #fff;
    line-height: 2;
    list-style: disc;
    width: 62%;
}

.ospcntnt ul li::marker {
    color: red;
}

h3.osphead {
    font-size: 1.875rem;
    font-weight: 400;
    font-family: "Jost";
    color: #fff;
    text-align: center;
    margin: 3rem 0;
}


/* Dropdown */

.navbar-nav .nav-item.dropdown ul li a:hover {
    color: var(--color-primary);
}

.navbar-nav .nav-item.dropdown ul li a {
    font-size: 1rem;
    color: #000000;
    font-weight: 500;
    display: block;
    padding: 4px 20px;
}

.navbar-nav .nav-item.dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    padding: 15px 0;
    border-top: 2px solid var(--color-primary);
}

.navbar-nav .nav-item.dropdown:hover ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar-nav .nav-item.dropdown ul li {
    min-width: 220px;
    position: relative;
    list-style: none;
}

.navbar-nav .nav-item.dropdown ul li a:hover {
    color: var(--color-primary);
}

.fibrcnt.finrcnt2 h2 {
    font-size: 3.125rem;
    color: #fff;
    font-family: "Jost";
}

.col-md-4.pdnglft {
    padding-left: 5rem;
}


/* Contact Map */

.nearSearchesWrapper {
    margin: 5rem 0;
}

.nearSearches {
    overflow: auto;
    height: 640px;
}

.nearSearches .nav-tabs {
    flex-direction: column;
    border-bottom: none;
}

.nearSearches .nav-tabs .nav-link {
    border: none;
    background: transparent;
    border-top-right-radius: 0.25rem;
    outline: none;
}

.locationBox {
    border: 1px solid #fff;
    border-radius: 1rem;
    padding: 20px 25px;
    transition: all 400ms ease;
    margin-bottom: 0.7rem;
}

.locationBox:hover,
.active .locationBox {
    border-color: var(--color-primary);
}

.locationBox .iconLoc {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.locationBox .iconLoc span {
    position: relative;
}

.locationBox .iconLoc span i {
    color: #bbbfc3;
    position: relative;
}

.locationBox .iconLoc span i:before {
    font-size: 2rem;
}

.active .locationBox .iconLoc span i {
    color: var(--color-primary);
}

.active .locationBox .iconLoc .cotent {
    color: var(--color-primary);
}

.locationBox .iconLoc span i div {
    font-size: 15px;
    color: #fff;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.locationBox .iconLoc .cotent {
    font-size: 1.5rem;
    font-weight: 700;
}


/* Particles Js */

canvas {
    display: block;
    vertical-align: bottom;
}

#particles-js {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #120c1f;
    background-image: url("");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}

.count-particles {
    background: #000022;
    position: absolute;
    top: 48px;
    left: 0;
    width: 80px;
    color: #13e8e9;
    font-size: 0.8em;
    text-align: left;
    text-indent: 4px;
    line-height: 14px;
    padding-bottom: 2px;
    font-weight: bold;
}

.js-count-particles {
    font-size: 1.1em;
}

#stats,
.count-particles {
    -webkit-user-select: none;
    margin-top: 5px;
    margin-left: 5px;
}

#stats {
    border-radius: 3px 3px 0 0;
    overflow: hidden;
}

.count-particles {
    border-radius: 0 0 3px 3px;
}

.ospcntnt ul {
    padding-left: 1.5rem;
}

.privacy-content .subHeading {
    font-size: 2rem;
    margin: 1.5rem 0;
}

.privacy-content p {
    font-size: 1.125rem;
    margin: 0 0 1.125rem;
}

.privacy-content p a {
    text-transform: capitalize;
    color: var(--color-primary);
}

.privacy-content .privacy-content__list {
    padding-left: 1.5rem;
}

.privacy-content .privacy-content__list li {
    list-style: disc;
}

.privacy-content .privacy-content__list li::marker {
    color: var(--color-primary);
}

.copyRight {
    gap: 0.5rem;
}

.copyRight p a:hover {
    color: var(--color-primary);
}

.key-services-content .subHeading {
    font-size: 2.25rem;
    font-family: var(--jost);
    margin: 2rem 0 1.5rem;
}

.key-services-content ul {
    max-height: unset;
    display: block;
}

.key-services-content ul li {
    margin: 0 0 1.125rem;
}

.contactMap img {
    width: 100%;
    height: 640px;
}

.serviceInner .serviceCard-content .subHeading {
    text-align: start;
    width: unset;
}

.leadership__content :is(.heading, p) {
    color: #000;
}

.leadership__content .themeBtn:hover::before {
    background-color: var(--color-secondary);
}

:is(.ourMarkets--inner, .contact--inner) {
    padding: 10rem 0 5rem 0;
}