* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.navbar-custom {
    background: white;
    transition: all 0.4s ease-in-out;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.navbar-custom.scrolled {
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}


.navbar-brand .logo {
    width: 150px;
    height: 60%;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.2));
}

.navbar-brand .logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.25));
}

.navbar-nav .nav-link {
    color: #000 !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    margin: 0 12px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #000 !important;
}

.navbar-nav .nav-link::after {
    display: none;
}

.nav-btn a {
    text-decoration: none;
    color: #fff;
}

.nav-btn {
    background: linear-gradient(45deg, #1A73E8, #0D3B66);
    border: none;
    padding: 8px 18px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.nav-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 14px rgba(13, 59, 102, 0.4);
}


.navbar-toggler {
    border: none;
    background: transparent;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280,0,0,0.9%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


@media (max-width: 991px) {
    .navbar-custom {
        background: #ffffff;
    }

    .navbar-nav {
        background: #ffffff;
        border-radius: 12px;
        padding: 15px 0;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav .nav-link {
        margin: 10px 0;
        font-size: 17px;
        display: block;
        color: #000 !important;
    }

    .nav-btn {
        width: 85%;
        margin: 12px auto;
        display: block;
        text-align: center;
    }

    .navbar-brand .logo {
        width: 120px;
    }
}


/* header section */




.hero-section {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}


.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}




.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 20, 50, 0.55);
    z-index: 1;
}




.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeUp 1s ease forwards;
}

.hero-content h1 {
    margin-top: 240px;
    font-size: 52px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-content p {

    font-size: 16px;
    letter-spacing: 2px;
    color: #f1f1f1;
    margin-bottom: 30px;
    text-transform: uppercase;
}




.hero-btn {

    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(45deg, #205caa, #12395e);
    color: #ffffff;
    font-weight: 600;
    font-size: 17px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn:hover {

    text-decoration: none;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}




@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 80vh;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .hero-btn {
        padding: 12px 28px;
        font-size: 15px;
    }
}









/* .career-section {
    background: #f8f9fa;
    padding: 80px 0;
    overflow: hidden;
}

.career-subtitle {
    color: #1A73E8;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 15px;
    margin-bottom: 10px;
}

.career-title {
    font-size: 34px;
    font-weight: 700;
    color: #0D3B66;
    line-height: 1.3;
    margin-bottom: 20px;
}

.career-text {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

.career-members img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -12px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.career-members img:first-child {
    margin-left: 0;
}

.career-members span {
    font-weight: 600;
    color: #333;
}

.career-btn {
    background: linear-gradient(45deg, #1A73E8, #0D3B66);
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(13, 59, 102, 0.3);
}

.career-image-wrapper {
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    padding: 30px;
    text-align: center;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.career-image {
    border-radius: 15px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 991px) {
    .career-section {
        padding: 60px 20px;
    }

    .career-title {
        font-size: 28px;
    }

    .career-image-wrapper {
        aspect-ratio: unset;
        border-radius: 12px;
        padding: 20px;
    }
}

.career-image-wrapper {
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
}

.career-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.career-section {
    background:
        linear-gradient(rgba(217, 230, 247, 0.92), rgba(243, 245, 247, 0.92)),
        url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTBkp8nfZpLPm4-5unTPdJXJmGicqxKThJfbg&s");
   
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    overflow: hidden;
} */



/* about us section */



.about-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    overflow: hidden;
}

.about-subtitle {
    color: #1A73E8;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 15px;
    margin-bottom: 10px;
}

.about-title {
    font-size: 34px;
    font-weight: 700;
    color: #0D3B66;
    margin-bottom: 20px;
}

.about-text {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
}

.about-list i {
    color: #1A73E8;
    margin-right: 10px;
}

.about-btn {
    background: linear-gradient(45deg, #1A73E8, #0D3B66);
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 18px rgba(13, 59, 102, 0.3);
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .about-section {
        padding: 70px 20px;
    }

    .about-title {
        font-size: 28px;
    }

    .about-text {
        font-size: 15px;
    }

    .about-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about-image-wrapper {
        margin-bottom: 30px;
    }

    .about-image {
        width: 100%;
        border-radius: 15px;
    }
}


/* pleacement section */



.impact-graph-modern {
    background: linear-gradient(to bottom right, #f9fbff, #eaf1ff);
    padding: 57px 20px;
    overflow: hidden;
    position: relative;
}

.impact-header {
    text-align: center;
    margin-bottom: 60px;
}

.impact-header h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #0b1a33;
}

.impact-header span {
    color: #007bff;
}

.impact-header p {
    color: #555;
    font-size: 1.1rem;
    margin-top: 12px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}


.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 35px;
    margin-bottom: 70px;
}

.stat-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 123, 255, 0.25);
}

.stat-card i {
    font-size: 2.3rem;
    color: #007bff;
    margin-bottom: 10px;
}

.stat-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #0b1a33;
}

.stat-card p {
    font-size: 1rem;
    color: #555;
    margin-top: 5px;
}

.impact-graph {
    position: relative;
    height: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.growth-graph {
    width: 100%;
    max-width: 700px;
    stroke-width: 4;
}

.graph-line {
    fill: none;
    stroke: url(#grad);
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: draw 3s ease forwards;
    stroke-linecap: round;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

.growth-graph defs linearGradient stop:nth-child(1) {
    stop-color: #007bff;
}

.growth-graph defs linearGradient stop:nth-child(2) {
    stop-color: #00a8ff;
}

@media (max-width: 768px) {
    .impact-header h2 {
        font-size: 2rem;
    }

    .stat-card h3 {
        font-size: 1.6rem;
    }
}



/* make us diffrent section */




.difference-section {
    background: linear-gradient(180deg, #f8fbff, #eef4ff);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: #0d3b66;
    margin-bottom: 80px;
    position: relative;
}


.difference-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}


.difference-wrapper::before {
    content: "";
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 3px;
    background: repeating-linear-gradient(90deg,
            #c5d6ff,
            #c5d6ff 10px,
            transparent 10px,
            transparent 20px);
    z-index: 1;
}


.diff-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(13, 59, 102, 0.1);
    text-align: center;
    padding: 40px 25px 30px;
    width: 220px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.diff-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 10px 35px rgba(13, 59, 102, 0.2);
}


.icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -60px auto 20px;
    font-size: 32px;
    color: #fff;
    position: relative;
    z-index: 3;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    animation: pulseGlow 3s infinite ease-in-out;
}

.icon1 {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.icon2 {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.icon3 {
    background: linear-gradient(135deg, #14b8a6, #0f766e);
}

.icon4 {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
}

.icon5 {
    background: linear-gradient(135deg, #10b981, #047857);
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 0px rgba(0, 0, 0, 0.1);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
        transform: scale(1.05);
    }
}


.diff-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0d3b66;
    margin-bottom: 10px;
}

.diff-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}


@media (max-width: 992px) {
    .difference-wrapper {
        justify-content: center;
        gap: 40px;
    }

    .diff-card {
        width: 45%;
    }
}

@media (max-width: 600px) {
    .section-title {
        font-size: 30px;
    }

    .diff-card {
        width: 100%;
        margin-bottom: 50px;
    }

    .difference-wrapper::before {
        display: none;
    }
}


/* client section */




.testimonials-section {
    background: linear-gradient(135deg, #f8fbff, #e6efff);
    padding: 100px 20px;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-header h2 {
    font-size: 38px;
    color: #003366;
    font-weight: 700;
}

.testimonials-header p {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
}

.testimonials-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.testimonial-image {
    flex: 1 1 220px;
}

.testimonial-image img {
    width: 115%;
    border-radius: 20px;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.15);
    transition: 0.5s ease;
}

.testimonial-image img:hover {
    transform: scale(1.03);
}

.testimonial-cards {
    flex: 1 1 600px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0, 51, 102, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 51, 102, 0.15);
}

.testimonial-card p {
    font-size: 15px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-card h4 {
    color: #003366;
    font-weight: 600;
    font-size: 14px;
}

.quote-icon {
    font-size: 24px;
    color: #0066cc;
    position: absolute;
    top: 18px;
    left: 20px;
    opacity: 0.2;
}


@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card {
    animation: fadeUp 1s ease forwards;
}


@media (max-width: 991px) {
    .testimonials-content {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-cards {
        grid-template-columns: 1fr;
    }

    .testimonial-image {
        margin-bottom: 40px;
    }

    .testimonials-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        padding: 20px;
    }

    .testimonials-header p {
        font-size: 14px;
    }
}

/* Make Image Bigger */
.testimonial-image {
    flex: 1 1 350px;
    /* increased width */
}

.testimonial-image img {
    width: 105%;
    height: 100%;
    object-fit: cover;
}

/* Center the 3rd Card */
.testimonial-cards {
    grid-template-columns: repeat(2, 1fr);
}

.testimonial-card:nth-child(3) {
    grid-column: 1 / -1;
    /* full width */
    justify-self: center;
    max-width: 60%;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .testimonial-card:nth-child(3) {
        max-width: 100%;
    }
}




/* start work section */


.work-together-section {
    background: linear-gradient(135deg, #f7f9fc, #e6f0ff);
    position: relative;
    overflow: hidden;
    padding: 100px 20px;
    font-family: 'Poppins', sans-serif;
}

.work-together-section::before {
    content: "";
    position: absolute;
    right: -80px;
    top: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(135deg, #003366, #0066cc);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.work-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.work-text {
    flex: 1 1 350px;
    z-index: 3;
}

.work-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 20px;
    line-height: 1.2;
}

.work-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 25px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #003366;
    font-weight: 500;
}

.contact-item i {
    background: #0066cc;
    color: white;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    transition: transform 0.3s ease;
}

.contact-item:hover i {
    transform: rotate(10deg) scale(1.1);
}

.work-btn {
    background: #0066cc;
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.work-btn:hover {
    color: white;
    text-decoration: none;
    background: #004999;
    transform: translateY(-2px);
}

.work-image {
    flex: 1 1 250px;
    position: relative;
    z-index: 2;
}

.work-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.15);
    transform: rotate(-2deg);
    transition: transform 0.4s ease;
}

.work-image:hover img {
    transform: rotate(0deg) scale(1.03);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-text {
    animation: fadeInUp 1s ease-in-out forwards;
}

@media (max-width: 991px) {
    .work-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .work-image {
        margin-bottom: 40px;
    }

    .work-together-section::before {
        width: 100%;
        height: 40%;
        top: auto;
        bottom: 0;
        clip-path: polygon(0 40%, 100% 0, 100% 100%, 0% 100%);
    }

    .work-text h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .work-btn {
        width: 100%;
    }

    .contact-item {
        justify-content: center;
    }
}




/* futter section */



.footer {
    background: linear-gradient(135deg, #0d3b66, #144b8b);
    color: #fff;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}


.footer::before {
    content: "";
    position: absolute;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: -100%;
    left: -100%;
    animation: waveMove 20s infinite linear;
}

@keyframes waveMove {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.footer-col {
    flex: 1 1 220px;
    margin: 20px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.footer-logo span {
    color: white;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #dcdcdc;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-col h4::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #3b82f6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #e6e6e6;
    display: flex;
    align-items: center;
}

.footer-col ul li i {
    margin-right: 10px;
    color: #3b82f6;
}

.footer-col ul li a {
    text-decoration: none;
    color: #e6e6e6;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3b82f6;
}

.footer-social {
    margin-top: 20px;
}

a {
    text-decoration: none;
}

.footer-social a {
    text-decoration: none;
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    margin-right: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #3b82f6;
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 40px;
    font-size: 14px;
    color: #dcdcdc;
    z-index: 2;
    position: relative;
}


@media (max-width: 991px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-col {
        margin: 25px 0;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social a {
        margin: 8px;
    }
}




@media (max-width: 600px) {

    .footer {
        padding-top: 50px;
    }

    .footer-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 0 15px;
    }

    .footer-col {
        width: 100%;
        margin: 20px 0;
    }

    /* Center heading underline */
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* List center */
    .footer-col ul li {
        justify-content: center;
        font-size: 14px;
    }

    /* Logos center */
    .footer-logo {
        font-size: 28px;
    }

    /* Social icons center + spacing */
    .footer-social a {
        width: 34px;
        height: 34px;
        line-height: 34px;
        margin: 6px;
    }

    /* Footer bottom */
    .footer-bottom {
        font-size: 13px;
        padding: 15px 10px;
    }
}






/* fonts */


.font-link {
    font-family: "Momo Trust Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
}