*{
    margin: 0;
    padding: 0;
}
.header{
    min-height: 60vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.5)),url('../images/2.jpg');
    background-position: center;
    background-size: cover;
    position: relative;
}
@font-face
{
font-family: tamil;
src: url(fonts/tamil.ttf);
}
@font-face
{
font-family: tam;
src: url(fonts/TAU-Marutham-new.ttf);
}
a
{
text-decoration: none !important;
font-weight:bold;
color:#103fab !important;
}
nav{
    display: flex;
    padding: 2% 8%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 90px;
}
nav .nav-link{
    flex: 1;
    text-align: right;
}
nav .nav-link ul li{
    list-style-type: none;
    display: inline-block;
    padding-left:  12px;
    position: relative;
}
nav .nav-link ul li a{
    color: #fff !important;
    text-decoration: none;
    font-family: Segoe Ui !important;
    font-size: 16px;
    font-weight: bold;
	line-height:1.7;
}
nav .nav-link ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background:  #c8474f;
    display: block;
    margin: auto;
    transition: 0.3s;
}
nav .nav-link ul li:hover::after{
    width: 100%;
}
.text-box{
    width: 90%;
    color: #ddd;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text-box h1{
    font-size: 60px;
}
.text-box p{
    margin: 15px 0px 40px 0px;
    font-size: 15px;
}
.btn-hero{
    display: inline-block;
    text-decoration: none;
    color: #ddd;
    border: 1px solid #ddd;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.btn-hero:hover{
    border: solid 1px #f44336;
    background: #f44336;
    transition: 1s;
}
nav .fa{
    display: none;
}
@media(max-width:700px) {
    .text-box h1{
        font-size: 20px;
    }
    nav .nav-link ul li{
        display: block;
    }
    nav .nav-link{
        position: absolute;
        background: #f44336;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
        
    }
    nav .fa{
        display: block;
        color: #ddd;
        margin: 10px;
        font-size: 25px;
        cursor: pointer;
    }
}
    /* Course part */
    .course{
        width: 90%;
        margin: auto;
        
    
    }
    h1{
        font-size: 30px;
        font-weight: 700px;
        font-family: Segoe Ui;
    }
    p{
        color: #777;
        font-size: 17px;
        font-weight: 400px;
        line-height: 30px;
        padding: 10px;
    }
    .row{
        margin-top: 5%;
        display: flex;
        justify-content: space-between;
        text-align: center;
    }
    .course-col{
        box-shadow: 5px 5px 20px 5px rgba(200, 100, 200, 0.4);
        flex-basis: 30%;
        background:none;
        border-radius: 10px;
        margin-bottom: 7%;
        padding: 20px 12px;
        box-sizing: border-box;
        transition: 0.5s;
    }
    .course-col1{
        box-shadow: 5px 5px 20px 5px rgba(200, 100, 200, 0.4);
        flex-basis: 100%;
        background:none;
        border-radius: 10px;
        margin-bottom: 7%;
        padding: 20px 12px;
        box-sizing: border-box;
        transition: 0.5s;
    }
    .course-col2{
        box-shadow: 5px 5px 20px 5px rgba(200, 100, 200, 0.4);
        flex-basis: 50%;
        background:none;
        border-radius: 10px;
        margin-bottom: 7%;
        padding: 20px 12px;
        box-sizing: border-box;
        transition: 0.5s;
    }
    h3{
        text-align: center;
        font-weight: 600;
        margin: 10px 0;
    }
    .course-col:hover{
        box-shadow: 5px 5px 20px 5px rgba(200, 100, 200, 0.4);
    }
    @media(max-width:1000px){
        .row{
            flex-direction: column;
            
        }
    }
    /* Campus */
    .campus{
        text-align: center;
        margin: auto;
        width: 80%;
        padding-top: 50px;
    }
    
    .campus-col{
        flex-basis: 30%;
        border-radius: 10px;
        margin-bottom: 30px;
        position: relative;
        overflow: hidden;
    }
    .campus-col img{
        width: 100%;
        display: block;
    }
    .layer{
        background: transparent;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        
        transition: 1s;
    }
    .layer:hover{
        background: rgba(226, 0, 0,0.7);
    }
    .layer h3{
        width: 100%;
        font-weight: 500px;
        color: #fff;
        font-size: 26px;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        position: absolute;
        opacity: 0;
        transition: 1s;
    }
    .layer:hover h3{
        bottom: 50%;
        opacity: 1;
    }
    /* Facilities */
    .facilities{
        text-align: center;
        width: 80%;
        padding-top: 100px;
        margin: auto;
    }
    .facilities-col{
        flex-basis: 32%;
        border-radius: 10px;
        text-align: left;
        margin-bottom: 5%;
    }
    .facilities-col img{
        width: 100%;
        height: 300px;
        border-radius: 10px;
    }
    .facilities-col p{
        padding: 0;
    }
    .facilities-col h3{
        margin-top: 10px;
        margin-bottom: 10px;
        text-align: left;
    }
    /* Testimonial */
    .testimonial{
        text-align: center;
        width: 80%;
        margin: auto;
        padding-top: 100px;
    }
    .testimonila-col{
        flex-basis: 42%;
        text-align: left;
        border-radius: 10px;
        margin-bottom: 5%;
        background: #fff3ff;
        padding: 25px;
        cursor: pointer;
        display: flex;
    }
    .testimonila-col img{
        height: 50px;
        margin-left: 5px;
        margin-right: 30px;
        margin-top: 20px;
        border-radius: 50%;
    }
    .testimonila-col p{
        padding: 0;
    }
    .testimonila-col h3{
        margin-top: 10px;
        text-align: left;
    }
    .testimonial .fa{
        color: yellow;
    }
    @media(max-width:700px){
        .testimonila-col img{
            margin-left: 0px;
            margin-right: 15px;
        }
    }
    /* Action */
    .cta{
        margin: 100px auto;
        width: 80%;
        background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url('../images/banner2.jpg');
        background-position: center;
        background-size: cover;
        border-radius: 10px;
        text-align: center;
        padding: 100px 0;
    }
    .cta h1{
        color:#ddd;
        margin-bottom: 40px;
        padding: 0;
    }
    @media(max-width:700px){
        .cta h1{
            font-size: 24px;
        } 
    }
    /* Footer */
    footer {
    padding: 20px 0 12px 0;
    background: #c8474f;
}
footer p {
    font: bold 13px/18px 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #fcf6f6;
    text-transform: uppercase;
    margin: 0;
    float: left;
}
footer p a {
    color: #fcf6f6;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}
footer p a:hover {
    color: #555a78;
}
footer p.foo_address {
    background: url(../img/marker.png) left 7px no-repeat;
    float: right;
    padding-left: 33px;
    margin-top: -8px;
    display: inline-block;
}
footer em {
    font-style: normal;
}
footer span {
    padding: 0 2px;
}

    .fa-heart-o{
        color: #f44336;   
    }
    /* ABOUT PAGE */
    .sub-header{
        height: 40vh;
        width: 100%;
        background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url('../images/background.jpg');
        background-position: center;
        background-size: cover;
        text-align: center;
        color: #fff;
    }
    .sub-title{
        text-align: center;
        margin-top: 10px;
    }
    .about-us{
        width: 80%;
        margin: auto;
        padding-top: 80px;
        padding-bottom: 50px;
    }
    .about-col{
        flex-basis: 49%;
        padding: 20px 2px;
        text-align: left;
    }
    .about-col img{
        width: 100%;
        border-radius: 10px;
    }
    .about-col p{
        padding: 20px 10px 0;
        text-align: left;
    }
    #btn-hero{
        border: 1px solid #f44336;
        color: darkred;
    }
    /* blog part */
    .blog{
        width: 80%;
        padding: 60px 0;
        margin: auto;
    }
    .left-content{
        flex-basis: 65%;
    }
    .left-content img{
        width: 100%;
    }
    .left-content h2{
        color: #222;
        font-weight: 600;
        font-size: 30px;
        margin: 30px 0;
    }
    .left-content p{
        text-align: left;
    }
    .right-content{
        flex-basis: 32%;
    }
    .right-content h3{
        background: #f44336;
        padding: 7px 0;
        font-size: 20px;
        margin-bottom: 20px;
        color: #fff;
    }
    .right-content div{
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: #555;
        padding: 8px;
        box-sizing: border-box;
    }
    #red-btn{
        border: 1px solid #f44336;
        color: #555;
       
    }
    .commit-box{
        border: 1px solid #ccc;
        margin: 50px 0;
        padding: 10px 20px;
    }
    .commit-box h3{
        text-align: left;
    }
    .commit-box input, .commit-box textarea{
        width: 100%;
        padding-top: 15px;
        margin:10px 0;
        box-sizing: border-box;
        border: none;
        outline: none;
        background: #ccc;
    }
    @media(max-width:700px){
        .sub-title h1{
            font-size: 28px;
            font-weight: 100;
            
        }
    }
    /* location */
    .location{
        width: 80%;
        margin: auto;
        padding: 40px 0;
    }
    .location iframe{
        width: 100%;
    }
    .contact-us{
        width: 80%;
        margin: auto;
        display: flex;
    }
    .contact-us .contact-col{
        width: 100%;
        flex-basis: 50%;
    }
    .contact-us .contact-col div{
        display: flex;
    }
    .contact-us .contact-col h5{
        font-weight: 700px;
        font-size: 20px;
        padding: 0 40px;
    }
    .contact-us .contact-col .fa{
        color: #f44336;
    }
    .contact-us .contact-col p{
        margin-left: 40px;
        text-align: left;
        margin-bottom: 20px;
    }
    .contact-col input, .contact-col textarea{
        width: 100%;
        margin: 15px 0;
        padding: 7px 0;
    }
    .btn-red{
        border: solid #f44336 1px;
        background: #fff3ff;
        color: #222;
        height: 40px;
        font-weight: bold;
        width: 30px;
    }
    .para
    {
        font-family: 'Roboto';
    line-height: 24px;
    color: #FFF;
    font-size: 16px;
    margin-bottom: 16px;
 
    }

.bbutton
{
padding: 5px; 
background-color: #0645AD; 
color: #FFF; 
border:1px solid #0645AD;
width:100px;
}
.rbutton
{
padding: 5px; 
background-color: #ffc107; 
color: #FFF; 
border:1px solid #ffc107;
width:100px;
}
.gbutton
{
padding: 5px; 
background-color: #20acb8; 
color: #FFF; 
border:1px solid #20acb8;
width:100px;
}
.para
{
font-family: Segoe Ui;
font-size:17px !important;
line-height: 1.7;
text-align: justify;
color:#777 !important;
}
.para1
{
font-family: Segoe Ui;
font-size:17px !important;
line-height: 1.7;
text-align: justify;
color:#FFF !important;
}
.para2
{
font-family: Segoe Ui;
font-size:17px !important;
line-height: 1.7;
text-align: center;
color:#FFF !important;
}
.counterline
{
font-size: 2.5rem;
margin-top: 2rem;
border-bottom: 5px solid #ffc107;
display: inline-block;
padding-bottom: 3px;
}
.counterline1
{
font-size: 2.5rem;
margin-top: 2rem;
border-bottom: 5px solid #d63384;
display: inline-block;
padding-bottom: 3px;
}

.counterlinesm1
{
margin-top: 1rem;
border-bottom: 5px solid #ffc107;
display: inline-block;
padding-bottom: 7px;
}
.counterline1
{
font-size: 2.5rem;
margin-top: 2rem;
border-bottom: 5px solid #d63384;
display: inline-block;
padding-bottom: 3px;
}

.firstcol 
{
padding: 30px 75px;
background: #20acb8;
text-align: center;
color: #fff;
}

.secondcol
{
padding: 30px 75px;
background:  #c8474f;
text-align: center;
color: #fff;
}
.thirdcol
{
padding: 30px 75px;
background:  #0a58ca;
text-align: center;
color: #fff;
}
.card
{
background-color: #fff;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(6, 6, 238, 0.9);
margin-bottom: 20px;
overflow: hidden;
}
.card-heading
{
background-color: #f5f5f5;
border-bottom: 1px solid #ddd;
padding: 10px 15px;
border-top-left-radius: 3px;
border-top-right-radius: 3px;
}
.heading1
{
font-size: 24px;
margin: 0;
text-align: center;
}
.card-body
{
padding: 15px;
color: #00509e;
}
      
