@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Medium.woff') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.woff') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.woff') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-SemiBold.woff') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

* {
    font-family: "Montserrat";
}

.whole-body {
    background-image: url('../images/triton-background.png');
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow-x: hidden;
    height: 100vh;
    background-position: center;
}



.header {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 30px 20px 20px;
}

.about p {
    font-size: 26px;
    color: #0b2540;
    font-weight: 600;
    text-align: center;
}

.content-section {
    position: absolute;
    width: 100%;
    top: 40%;
}

.footer-section {
    background: #f0f0f34d;
    padding: 21px;
    position: fixed;
    width: 100%;
    bottom: 0;
    backdrop-filter: blur(10px);
   -webkit-backdrop-filter: blur(10px);
}

.footer-logo {
    text-align: start;
}

.footer-logo img {
    width: 200px;
}

.termsandcon {
    text-align: end;
}

.termsandcon p {
    font-size: 14px;
    color: #0b2540;
    margin: 0;
}

.info-container {
    display: flex;
    gap: 20px;
    justify-content: end;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 7px 17px;
    border-radius: 50px;
    border: 1px solid #fff;
    backdrop-filter: blur(10px);
    color: #0b2540;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* .info-box:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
} */

.icon {
    font-size: 20px;
}

.icon img {
    width: 35px;
}

.text {
    line-height: 1.2;
}

.label {
    font-weight: 600;
    font-size: 14px;
    margin: 0;
}

.value {
    font-size: 13px;
    margin: 0;
    opacity: 0.8;
}

.mobile {
    display: none;
}

.info-container a {
    color: inherit;
    text-decoration: none;
}

.info-container a:hover {
    text-decoration: underline;
}