* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
}

.header {
    width: 100%;
    min-height: 100vh;
    background-image: linear-gradient(rgba(4, 9, 30, 0.4), rgba(4, 9, 30, 0.4)), url(uni-img/uni-hall.jpeg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    position: relative;
    width: 100%;
    z-index: 999;
}

nav img {
    width: 100px;
    min-height: 100px;
    border-radius: 50%;
    transition: 0.8s;

}

nav img:hover {
    transform: rotate(360deg);

}

.nav-link {
    flex: 1;
    text-align: right;
}

.nav-link ul li {
    display: inline-block;
    padding: 10px 15px;
    list-style: none;
    position: relative;
    margin-bottom: 15px;
}

.nav-link ul li a {
    text-decoration: none;
    font-size: 15px;
    color: white;
}

.nav-link ul li::after {
    content: "";
    width: 0%;
    height: 2px;
    margin: auto;
    display: block;
    background: rgba(0, 106, 255, 1);
    transition: 0.7s;

}

.nav-link ul li:hover::after {
    width: 100%;

}

.text {
    position: absolute;
    width: 90%;
    text-align: center;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    color: white;
}

.text h1 {
    font-size: 50px;
    font-weight: 600;

}

.text p {
    font-size: 25px;
    margin: 40px 0;

}

.btn {
    color: white;
    font-size: 16px;
    border-radius: 10px;
    padding: 10px 16px;
    text-decoration: none;
    border-bottom: 1px solid white;
}

.btn:hover {
    background: rgba(0, 106, 255, 1);
    border: rgba(0, 106, 255, 1);
    transition: 0.7s;
}

nav .fa-solid {
    display: none;

}

@media(max-width:700px) {
    .text h1 {
        font-size: 25px;
    }

    .nav-link {
        width: 200px;
        height: 100vh;
        display: block;
        position: absolute;
        background: rgb(34, 36, 39);
        top: 0;
        right: 0;
        z-index: 2;
        text-align: left;
        transition: 1s;
    }

    .nav-link ul li {
        display: block;
        align-items: center;
        top: 10px;
        left: 10px;
        margin: auto;
    }

    nav .fa-solid {
        display: block;
        font-size: 30px;
        color: white;
        margin: 10px;

    }
}

.courses {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 100px 0;
    text-align: center;

}

.courses h1 {
    font-size: 40px;
    font-weight: 200;

}

.courses p {
    font-size: 16px;
    color: #777;
    margin-top: 15px;

}

.row {
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    position: relative;
    top: 75px;
    margin-bottom: 50px;
}

.column {
    flex-basis: 31%;
    background: rgba(83, 188, 241, 0.4);
    border-radius: 20px;
    padding: 30px 15px;
    transition: 0.7s;
    margin-top: 20px;
}

.column:hover {
    box-shadow: 0 0 20px 3px rgba(0, 106, 255, 1);

}

@media(max-width:700px) {
    .row {
        flex-direction: column;
    }
}

.compus {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 100px 0;

}

.compus h1 {
    font-size: 40px;
    font-weight: 200;

}

.compus p {
    font-size: 16px;
    color: #777;
    margin-top: 15px;

}

.column2 {
    flex-basis: 31%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    bottom: 30px;
}

img {
    width: 100%;
}

.heading {
    width: 100%;
    height: 100%;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.7s;
}

.heading h3 {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 30%;
    font-size: 25px;
    font-weight: 500;
    color: white;
    opacity: 0;
    transition: 0.7s;
}

.heading:hover {
    background: rgba(83, 188, 241, 0.4);

}

.heading:hover h3 {
    bottom: 45%;
    opacity: 1;

}

.features {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 100px;
    flex-direction: column;

}

.features h1 {
    font-size: 40px;
    font-weight: 200;

}

.features p {
    font-size: 16px;
    color: #777;

}

.featuresdiv {
    flex-basis: 32%;
    position: relative;
    bottom: 50px;
    text-align: center;
    border-radius: 20px;
    overflow: hidden;

}

.featuresdiv img {
    width: 100%;
    min-height: 50vh;
    margin-bottom: 20px;
    border-radius: 20px;

}

.student {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    margin-top: 100px;
}

.student h1 {
    font-size: 40px;
    font-weight: 200;
}

.student p {
    font-size: 16px;
    color: #777;
}

.review {
    flex-basis: 44%;
    display: flex;
    padding: 25px;
    position: relative;
    text-align: left;
    width: 90%;
    background: rgba(141, 190, 239, 0.4);
    border-radius: 20px;
    margin: 15px;

}

.review img {
    height: 40px;
    width: 30px;
    margin: 0 30px 0 10px;
    border-radius: 50%;
}

.review .fa {
    color: #f44;
}

.enroll {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 165px 0;
    flex-direction: column;
    width: 80%;
    margin: 100px auto;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(uni-img/enroll.jpg);
    background-position: center;
    background-size: cover;

}

.enroll h1 {
    color: white;
    font-size: 50px;
    margin: 20px;

}

@media(max-width:700px) {
    .enroll h1 {
        font-size: 20px;
    }
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 80%;
    margin: 50px auto 25px;
    padding: 10px 30px;
    text-align: center;

}

.footer h4 {
    font-size: 20px;
    font-weight: 300;
    padding: 50px 0 25px;
}

.footer p {
    color: #777;
    line-height: 30px;
}

.social {
    margin: 50px 0 20px;
}

.social .fa {
    margin: 0 20px;
}

.social .fa-facebook {
    color: rgb(73, 97, 243);
}

.social .fa-linkedin {
    color: blue;
}

.social .fa-twitter {
    color: rgb(73, 166, 248);

}

.social .fa-youtube {
    color: red;

}

.header-about {
    width: 100%;
    min-height: 50vh;
    background-image: linear-gradient(rgba(4, 9, 30, 0.4), rgba(4, 9, 30, 0.4)), url(uni-img/graduate.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}

.header-about .text {
    font-size: 30px;

}

.info {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
    padding: 15px 20px;
}

.info-heading {
    width: 100%;
    flex-basis: 48%;
    margin: 50px;
    text-align: left;
}

.btn1 {
    color: black;
    text-decoration: none;
    position: relative;
    top: 50px;
    padding: 20px;
    border-radius: 20px;
    transition: 0.7s;
    border: 1px solid rgb(73, 166, 248);
}

.btn1:hover {
    background: rgb(0, 106, 255);

}

.info-heading h1 {
    font-size: 35px;
    position: relative;
    bottom: 40px;
}

.info-heading p {
    color: #777;
    position: relative;
    bottom: 30px;


}

.Blogs {
    display: flex;
    padding: 50px 0;
    margin: auto;
    justify-content: space-around;
}

.blog-left {
    flex-basis: 65%;
    text-align: left;

}

.blog-left img {
    width: 100%;

}

.blog-left h2 {
    margin-top: 30px;

}

.blog-left p {
    color: #777;
    margin-top: 20px;
}

.Blogs .row {
    align-items: flex-start;
}

.blog-right {
    flex-basis: 32%;
}

.blog-right h3 {
    background: rgb(0, 145, 255);
    color: white;
    padding: 7px 0;
    margin-bottom: 15px;
}

.blog-right div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 10px;

}

.comment-blog {
    border: 1px solid #777;
    margin: 100px 0;
    padding: 20px;
}

form input,
textarea {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    width: 100%;
    padding: 10px;
    background: #f0f0f0;
    border: none;
}

form .btn {
    border: none;
    background: rgb(0, 145, 255);
    cursor: pointer;
    margin-top: 20px;

}
.contact{
    width: 80%;
    padding: 30px 0;
    margin: auto;
    margin-top: 50px;

}
.contact iframe{
    width: 100%;

}
.contact-us{
    width: 80%;
    display: flex;
    margin: auto;
    text-align: center;

}
.contact-us .information{
    flex-basis: 60%;
    text-align: center;

}
.information i{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    padding: 30px 0;
    color: #f44336;
    font-size: 20px;

}
.information span{
    position: relative;
    left: 30px;
    bottom: 60px;
}
.information span p{
    color: #777;
}
.contact-us .comment-blog{
    flex-basis: 65%;
    border: none;


    
}
@media(max-width:700px){
    .contact-us{
        display: flex;
        flex-direction: column;
    }
}