@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600&display=swap");

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

.col {
    object-fit: cover;
}

.description {
    display: grid;
    grid-template-columns: repeat(3, 10fr);
    grid-gap: 50px;
    /* flex-direction:column; */
    flex-wrap: wrap;
}

.img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.img img {
    object-fit: cover;
    width: 75%;
}

.row {
    size: 12rem;
    margin-bottom: 12px;
    padding: 10px 12px;
}

.menu {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
}

.menu .links {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
}

.menu .heading {
    padding: 10px 12px;
    margin-bottom: 20px;
    /* max-width: 20rem; */
    border-bottom: 1px solid black;
}

.r1 {
    padding: 10px 12px;
    grid-column: span 2;
    order: 1;
    /* grid-column: 1/-1; */
}

.r2 {
    padding: 10px 12px;
    order: 3;
    grid-column: 1/-1;
}

.r3 {
    padding: 10px 12px;
    /* grid-column: span 2; */
    order: 2;
}

@media (max-width:769px) {
    .r1 {
        grid-column: 1/-1;
        order: 1;
    }

    .r3 {
        grid-column: 1/-1;
        order: 3;
    }

    .r2 {
        grid-column: 1/-1;
    }

    .img img {
        width: 100%;
    }
}

.links a {
    padding: 5px;
    font-size: 1.5em;
}

.content {
    margin: 15px;
}

.content li,
.subcontent {
    padding: 0px 12px;
    margin: 4px;
    ;
}

.r2 h2 {
    color: rgb(55, 78, 120);
}

.menu .links a {
    color: rgb(55, 78, 120);
    font-weight: 500;
    text-decoration: none;
}

.content h5,
h3 {
    font-size: 2.564em;
    text-align: center;
    padding: 10px 12px;
    color: rgb(17, 110, 186)
}

h3 {
    color: rgb(77, 75, 75);
}

h1 {
    display: inline;
    border-bottom: 1px solid black;
}

.description {
    margin-bottom: 100px;
}

@import url('https://fonts.googleapis.com/css2?family=PT+Serif&display=swap');

#form {
    position: fixed;
    top: 15%;
    left: 35%;
    background-color: #fff;
    z-index: 5;
    width: 30%;
    height: 35em;
    margin: auto auto;
    padding: 10px 12px;
    display: none;
    visibility: hidden;
    opacity: 0;
    font-family: 'PT Serif', serif !important;
    box-shadow: 0px 10px 30px rgb(0 33 71 / 25%);
    transition: all 0.5s ease-in-out;
}

.compImg {
    width: 40%;
    margin: 15px auto;
    height: max-content;
}

.compImg img {
    width: 100%;
    height: auto;
}

#form h5 {
    width: 80%;
    font-size: 1.1em;
    letter-spacing: 2px;

    font-weight: 600;
    margin: 5px auto;
    padding: 5px 6px;
    text-align: center;
}

form {
    width: 70%;
    margin: auto auto;
    display: flex;
    height: 18em;
    flex-direction: column;
    justify-content: space-evenly;
}

input {
    font-size: 1.1em;
    padding: 6px;
    font-weight: 500;
    letter-spacing: 2px;
    border-radius: 10px;
}

input[type="submit"] {
    background-color: #393186;
    border: none;
    color: #fff;
}

#cancel {
    width: 70%;
    height: 2em;
    background-color: #393186;
    border: none;
    color: #fff;
    border-radius: 10px;
    font-size: 1.1em;
}

.bluractive {
    filter: blur(20px);
    pointer-events: none;
    user-select: none;
}

.formactive {
    top: 50%;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}


.accuLtd {
    font-family: 'PT Serif', serif !important;
}
.mobile{
    display: none;
}

.services h3,.why_us h3{
   color: #116eba; 
}
.services,.why_us{
    margin: 30px 0px;
}

.services_container{
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
}

.service{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.service_icon{
    align-items: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    background: #116eba80;
}
.service_icon img{
    width: 70%;
    height: auto;
}
.service_text{
    margin-top:10px;
}

.service_text span{
    align-items: center;
}

.why_img{
    width: 60%;
    margin: auto;  
}
.why_img img{
    width: 100%;
    height: auto;
}
@media (max-width:769px) {
    #form {
        width: 90%;
        top: 9em;
        left: 1.5em;
    }

    .pc {
        display: none;
    }

    .mobile {
        display: block;
    }
}