@import url(https://fonts.googleapis.com/css?family=Montserrat:400,500,80);

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}

:root{
    --bg-color: #ffffff;
    --second-bg-color: #555353;
    --text-color: #181818;
    --main-color: #C32528;
    --footer-color: #1B1362;
}

section{
    min-height: 100vh;
    padding: 8rem 9% 2rem;
    /* padding: 10rem 9% 2rem; */

}
.heading{
    font-size: 32px;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-color);
}
/* span{
    color: var(--main-color);
} */
.aboutus {
    min-height: auto;
    padding-bottom: 1rem;
}

.content ul {
    padding: 0;
    list-style-type: square;
    font-size: 1rem;
    font-size: 16px;
    line-height: 1.5rem;
    padding-left: 2rem;
}

.thecard {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    transform-style: preserve-3d;
    transition: transform 0.5s;
    animation: flip 10s linear infinite;
}

.thecard:hover {
    transform: rotateY(180deg);
}

.thefront {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.theback {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transform: rotateY(180deg);
}

.thecard img {
    max-width: 100%;
    height: 360px;
    display: block;
}

@keyframes flip {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

.vision{
    min-height: auto;
}
.vision p{
    /* text-align: justify; */
    /* text-justify: inter-word; */
    font-size: 16px;
    line-height: 1.5rem;
}
.service {
    min-height: auto;
    padding-bottom: 1rem;
    background: #ffffff;
}
.service img{
    /* width: 100%;
    height: 250px; */
    width: 360px;
    height: 200px;
    border: 1px solid #2266a5;
}
.partner{
    min-height: auto;
}
.partner img{
    width: 100%;
    height: 60px;
    border: 1px solid #DCDCDC;
}
/* .partner img:hover{
    filter: brightness(1);
    transform: translateY(-10px);
    opacity: 1;
    transition: 1s;
    cursor: pointer;
} */
.contact{
    min-height: auto;
    padding-bottom: 1rem;
    background: #ffffff;
}
.contact .contact-info div a{
 text-decoration: none;
}

.contact .contact-info div i{
    margin-right: 1rem;
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: transparent;
    border: .1rem solid var(--footer-color);
    border-radius: 50%;
    font-size: 16px;
    color: var(--footer-color);
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}
.contact .contact-info div i:hover{
    border: .1rem solid var(--main-color);
    color: var(--main-color);
}
.contact .map{
    height: 300px;
}
.footer{
    min-height: auto;
    background: var(--footer-color)
}
.footer ul li{
    list-style-type: none;
    padding: 4px;
}
.footer a{
    text-decoration: none;
}

.footer div,
.footer a{
    color: #ffffff;
}
.footer-info i{
    margin-right: 1rem;
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    background: transparent;
    border: .1rem solid var(--main-color);
    border-radius: 50%;
    font-size: 16px;
    color: var(--main-color);
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}

.border-right{
    border-right: 1px solid #DCDCDC;
}

.isActive {
    color: rgb(156, 40, 40);
    /* text-decoration: underline; */
}

