@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;

}

html,
body {
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    background: #fff;
}

a {
    text-decoration: none;
    color: #7a7a7a;
    cursor: pointer;
}

ul {
    text-decoration: none;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-btn {
    background: #1428a0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    color: #fff;
    font-size: 14px;
    border-radius: 6px;
}

.nav-btn:hover {
    color: #fff;
    background: #1a37d7;
}
.under_construnction{
    padding: 20px 0;
}
.under_construnction .img{
    width: 300px;
}

.under_construnction .text_area {
    margin-top: 15px;
    color: #7a7a7a;
    text-transform: capitalize;
    
}

.under_construnction .text_area h1 {
    font-size: 1.5rem;
    font-weight: 600;
}

.under_construnction .text_area p {
    font-size: 1rem;
    font-weight: 500;
}

footer {
    padding: 30px 0 20px 0;
    border-top: 1px solid #f2f2f2;
}

footer .contact-info h4 {
    position: relative;
}

footer .contact-info h4::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #1428a0;
    margin-left: 5px;

}

footer .contact-info ul {
    padding-top: 15px !important;
}

footer .logo p {
    color: #7a7a7a;
    font-size: 16px;
}

footer .contact-info ul li {
    padding-bottom: 15px;
}

footer .contact-info ul li a {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    transition: 0.3s linear;
}

footer .contact-info ul li a:hover {
    color: #1428a0;
}

footer .contact-info ul li a .bi-chevron-right {
    font-size: 12px;
}

.copy {
    border-top: 1px solid #f2f2f2;
    padding: 20px 0;
    background: #f1f1f1;
}

.copy p {
    color: #7a7a7a;
    margin: 0;
}
.side-socal-links{
    position: absolute;
    top: 20%;
    left: 0;
    width: 50px;
    text-align: center;
    background: #1428a0;
    padding: 20px 0;
    border-radius: 0 6px 6px 0 ;
    transition: 0.3s linear;
    border: 1px solid #1428a0;

}
.side-socal-links ul li{
    padding: 10px 0;
    transition: all 0.3s linear;

}
.side-socal-links ul li:hover{
    background: #FFF;
}

.side-socal-links ul li a .bi{
    color: #FFF;
    transition: all 0.3s linear;
}
.side-socal-links ul li:hover a .bi{
    color: #1428a0;
}

@media(max-width: 776px) {
    .nav-btn {
        display: flex;
        /* stack text and icon */
        justify-content: center;
        align-items: center;
        width: auto;
        /* full width on mobile */
        gap: 6px;
        text-align: center;
    }

    p {
        font-size: 15px;
    }

    .under_construnction {
        padding: 50px 0 20px 0;
    }

    .under_construnction .text_area h1 {
        font-size: 2rem;
    }

    .under_construnction .text_area p {
        font-size: 1rem;
    }
    footer .logo img{
        width: 200px !important;
        display: block;
    }
   
}