* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul,
p {
    padding: 0;
    margin: 0;
    list-style: none;
}

a {
    text-decoration: none;
}

section {
    padding-bottom: 80px;
}

:root {
    --primary: #4950ba;
    --secondary: #f65318;
    --light: #f5f5f5;
    --white: #fff;
    --dark: #093f6e;
    /* --dark: #36454f; */
}

header {
    background-color: #fff;
}

.head-bar {
    display: flex;
    justify-content: space-between;
}

.logo img {
    width: 7rem;
}

.num-mail-ul {
    display: flex;
}

.num-mail-ul li {
    padding: 5px;
}

.num-mail-ul li a {
    color: #000;
}

.num-mail-ul li a:hover {
    font-weight: 500;
    color: var(--primary);
}

.head-social-icon li {
    padding: 0 10px;
}

.head-social-icon li a {
    font-size: 25px;
}

.head-social-icon li a i {
    /* color: var(--primary); */
    color: #fff;
}

nav {
    background-color: var(--primary);
}

.nav-add-class {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2;
}

.menu-ul li {
    padding: 10px 20px;
}

.menu-ul li a {
    color: var(--white);
    font-weight: 500;
}

.dropdown {
    position: relative;
}

.dropdown a i::before {
    transition: all 0.5s;
}

.sub-menu {
    position: absolute;
    top: 70px;
    background-color: var(--primary);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    visibility: hidden;
    z-index: 2;
}

.dropdown:hover a i::before {
    transform: rotate(180deg);
}

.dropdown:hover .sub-menu {
    visibility: visible;
    transition: all 0.5s;
    top: 44px;
    width: 15rem;
}

.sub-menu li {
    padding: 10px 30px;
}

.sub-menu li a {
    position: relative;
}

.sub-menu li a::before {
    position: absolute;
    content: "";
    top: 50%;
    left: -20px;
    width: 15px;
    height: 2px;
    background-color: var(--secondary);
    display: none;
}

.sub-menu li:hover a::before {
    display: block;
}

.sub-menu li:hover a {
    color: var(--secondary);
}


/* ==== mobile navbar ==== */

.mobile-navbar {
    display: none;
}

.mobile-nav {
    display: flex;
    justify-content: space-between;
    padding: 2px 10px;
}

.logo-mob img {
    width: 5rem;
}

.menu-icon i {
    font-size: 3rem;
}

.mob-menu-sec {
    display: none;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    background-color: var(--dark);
    width: 80%;
    height: 100vh;
    padding: 20px;
}

.cros-icon {
    width: 20%;
    background-color: rgba(0, 0, 0, 0.8);
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2;
    text-align: center;
}

.cros-icon i {
    color: #fff;
    font-size: 50px;
}

.mob-icon img {
    width: 100px;
}

.menu-mob-ul li {
    padding: 10px;
}

.menu-mob-ul li a {
    color: #fff;
    font-weight: 500;
}

.mob-num-email {
    border-top: 1px solid #ddd;
    padding-top: 20px;
    margin-top: 30px;
}

.sub-menu-mob {
    display: none;
}

.rotate-90 {
    transform: rotate(90deg);
}


/* === owl slider === */

.slider img {
    /* height: 30pc !important; */
    height: 40pc !important;
}

.owl-hero {
    position: relative;
}

.owl-hero .owl-next span {
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--white);
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(0, -50%);
    font-size: 50px;
    padding: 7px;
}

.owl-hero .owl-prev span {
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--white);
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translate(0, -50%);
    font-size: 50px;
    padding: 7px;
}


/* === about-us === */

.about-us h6 {
    color: var(--secondary);
    position: relative;
    padding-bottom: 10px;
}

.about-us h6::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 10%;
    height: 2px;
    background-color: var(--secondary);
}

.about-us h3 {
    color: var(--primary);
}

.about-us p {
    text-align: justify;
    padding-bottom: 15px;
}

.btn-read-more {
    margin: 15px 0;
}

.btn-read-more a {
    color: var(--secondary);
    border: 1px solid var(--secondary);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 500;
}

.btn-read-more a:hover {
    color: var(--white);
    background-color: var(--primary);
    border: 1px solid var(--primary);
}

.about-img {
    position: relative;
}

.about-img::before {
    position: absolute;
    content: "";
    bottom: -20px;
    left: 4px;
    width: 90%;
    height: 100%;
    background-color: var(--primary);
    z-index: -1;
}

.about-img img {
    width: 90%;
    height: 30pc;
    border: 5px solid var(--secondary);
    background-color: #fff;
    padding: 20px;
}


/* ==== what we offer ==== */

.what-we-sec {
    background-image: url(../image/what-we-bg.jpg);
    background-size: cover;
    padding: 50px;
    position: relative;
}

.what-we-sec::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.what-we {
    position: relative;
}

.what-we h2 {
    color: var(--white);
}

.what-we h3 {
    color: var(--secondary);
}

.what-we p {
    color: var(--white);
}

.owl-what-we {
    padding-top: 70px;
    position: relative;
}

.owl-what-we .owl-next span {
    background-color: var(--primary);
    color: var(--white);
    position: absolute;
    top: 50%;
    right: -75px;
    transform: translate(0, -50%);
    font-size: 50px;
    padding: 7px;
}

.owl-what-we .owl-prev span {
    background-color: var(--primary);
    color: var(--white);
    position: absolute;
    top: 50%;
    left: -75px;
    transform: translate(0, -50%);
    font-size: 50px;
    padding: 7px;
}

.what-we-slider div {
    overflow: hidden;
    border: 3px solid var(--secondary);
    border-radius: 20px;
    background-color: #000;
}

.what-we-slider div img {
    transition: all 1s;
}

.what-we-slider h6 {
    padding: 10px 0;
    color: var(--white);
}

.what-we-slider:hover img {
    transform: scale(1.1);
    opacity: 0.7;
}

.what-we-slider:hover h6 {
    color: var(--secondary);
}


/* ===== abroad-univer-section ==== */

.abroad-univer-sec {
    background-color: #f7f7ff;
    padding: 50px 0;
    margin-bottom: 60px;
}

.abroad-univer-card {
    background-color: var(--white);
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    padding: 20px 10px;
    border-radius: 20px;
    cursor: pointer;
    height: 15pc;
    margin: 1rem 0;
}

.abroad-univer-card img {
    width: 100%;
}

.abroad-univer-card:hover {
    transform: rotateY(360deg);
    transition: all 1s;
}


/* ==== popular-artical & popular-blog ==== */

.popular-art {
    color: var(--primary);
    padding: 20px 0;
}

.popular-art span a {
    color: var(--secondary);
    font-size: 15px;
    font-weight: bold;
    border-left: 2px solid var(--secondary);
    padding-left: 15px;
    margin-left: 15px;
}

.article-card-img {
    overflow: hidden;
    position: relative;
}

.article-card-img span {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 30px;
    width: 40px;
    padding: 40px;
    transition: all 1s;
    background-image: url(../image/arrow-r.png);
    background-color: var(--primary);
    background-position: center center;
    background-repeat: no-repeat;
}

.article-card-img img {
    width: 100%;
    transition: all 1s;
}

.article-card {
    cursor: pointer;
    margin-bottom: 3rem;
}

.article-card h6 {
    color: var(--primary);
    padding: 10px 0;
}

.article-card:hover img {
    transform: scale(1.1);
}

.article-card:hover span {
    width: 100%;
    height: 100%;
    background-color: rgb(9 63 110 / 60%);
}


/* ==== testomonails ==== */

.testimonail-sec {
    background-color: #f7f7f7;
    margin-bottom: 70px;
}

.owl-silider {
    position: relative;
}

.testimonial-card {
    height: 35rem;
}

.slider-testimonail {
    background-color: rgb(9 63 110 / 10%);
    padding: 25px;
    height: 30rem;
}

.slider-testimonail:hover {
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.slider-testimonail h6 {
    padding-top: 50px;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
}

.slider-testimonail p {
    font-size: 18px;
}

.slider-img {
    display: flex;
    justify-content: center;
}

.slider-img img {
    width: 100px !important;
    border-radius: 50%;
    margin-bottom: -50px;
    border: 8px solid var(--primary);
}

.slider-img img:hover {
    border: 8px solid var(--secondary);
}

.slider-img img:hover .slider-testimonail {
    background-color: #fff;
}

.student-say {
    padding: 50px 0;
}

.student-say h4 {
    color: var(--primary);
}


/* === contact === */

.cont-input input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.cont-select select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: #737373;
}

.btn-submit a {
    width: 100%;
    text-align: center;
    background-color: var(--primary);
    color: var(--white);
    display: inline-block;
    padding: 10px;
    border-radius: 5px;
    font-weight: 500;
}


/* ==== footer ==== */

footer {
    background-color: var(--primary);
    padding: 50px 0;
}

.foot-1 img {
    width: 75%;
}

.foot-social-icon li {
    padding: 10px;
}

.foot-social-icon li a i {
    color: var(--white);
    font-size: 25px;
}

.foot-2 h5 {
    color: #fff;
}

.foot-links li {
    padding: 5px 0;
}

.foot-links li a {
    color: var(--white);
}

.foot-links li:hover a {
    color: var(--secondary);
    font-weight: 500;
}

.foot-4 {
    color: #fff;
}

.foot-4 h5 {
    color: #fff;
}

.signup-news input {
    width: 75%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
}

.signup-news button {
    width: 25%;
    padding: 10px;
    background-color: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 0 5px 5px 0;
    font-weight: 500;
}

.foot-num-email {
    padding-top: 20px;
}

.foot-num-email li a {
    color: #fff;
    font-size: 1.0rem;
}

.foot-num-email li a i {
    padding-right: 10px;
    color: var(--secondary);
}

.foot-num-email li:hover a {
    font-weight: 500;
    color: var(--secondary);
}

.copyright {
    border-top: 1px solid #fff;
    padding-top: 15px;
    margin-top: 20px;
    color: #fff;
}


/* === banner-section === */

.banner-sec {
    background-image: url(../image/banner.jpg);
    padding: 70px;
    margin-bottom: 50px;
}

.bannner h2 {
    color: var(--white);
    border-left: 5px solid var(--secondary);
    padding-left: 15px;
}

.bannner-ul li:first-child a {
    color: var(--white);
    padding-right: 10px;
    font-weight: 500;
}

.bannner-ul li:last-child a {
    color: var(--secondary);
    font-weight: 500;
}

.contact-sec {
    background-color: #f7f7f7;
}

.contact-form {
    padding: 100px 0;
}

.office-card {
    background-color: #f7f7f7;
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    cursor: pointer;
}

.office-card p {
    padding: 10px 0;
}

.office-card p i {
    padding-right: 10px;
}

.office-card:hover {
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}


/* ==== fmge ==== */

.fmge-tab {
    display: flex;
    justify-content: center;
}

.fmge-tab li {
    background-color: var(--primary);
    color: var(--white);
    font-weight: 500;
    padding: 10px 25px;
    margin: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.fmge-tab li:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.fmmg-result-img img {
    width: 100%;
}

.fmge-card {
    display: none;
}

.active {
    display: block;
}

.univer-slider {
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    background-color: #000;
}

.univer-slider img {
    height: 16pc;
    transition: all 1s;
}

.univer-slider:hover img {
    transform: scale(1.1);
    opacity: 0.5;
}

.owl-university {
    position: relative;
}

.owl-university .owl-prev {
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translate(0, -50%);
}

.owl-university .owl-prev i {
    background-color: var(--primary);
    color: #fff;
    padding: 9px;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    display: inline-block;
    font-size: 20px;
}

.owl-university .owl-next i {
    background-color: var(--primary);
    color: #fff;
    padding: 9px;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    display: inline-block;
    font-size: 20px;
}

.owl-university .owl-next {
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translate(0, -50%);
}

.owl-university .owl-next,
.owl-university .owl-prev:hover {
    background-color: transparent !important;
}

.univer-name {
    padding: 10px 0;
}

.student-gallery-body {
    background-color: #f7f7f7;
}

.univer-div {
    background-color: #fff;
    padding: 20px 45px;
    border-radius: 10px;
}

.what-youtube-ul li {
    padding: 10px 25px;
    margin: 0 10px;
    border-radius: 5px;
}

.what-youtube-ul li a {
    color: #fff;
    font-weight: 500;
}

.tel-color {
    background-color: #f65318;
}

.youtube-color {
    background-color: #ff0101;
}

.whatsapp-color {
    background-color: #25D366;
}

.mbbs-div {
    margin-top: 50px;
    padding: 50px;
    background-color: #f8fbff;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.mbbs-text h4 {
    padding: 10px 0;
}

.mbbs-text p {
    color: #777;
    padding-bottom: 10px;
}

.mbbs-text p i {
    color: var(--primary);
}

.college-table {
    width: 100%;
}

.college-table thead {
    background-color: var(--primary);
}

.college-table thead tr th {
    padding: 10px;
    color: #fff;
    border-right: 1px solid #fff;
}

.college-table tbody tr td {
    padding: 10px;
}

.college-table tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

.btn-read {
    text-align: center;
}

.btn-read a {
    background-color: var(--primary);
    padding: 7px;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.btn-read a:hover {
    background-color: var(--secondary);
}

.mbbs-countri {
    background-color: #fff;
    padding: 20px;
    margin: 1rem 0;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    cursor: pointer;
}

.mbbs-countri div img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.countr-mbbs {
    padding-left: 25px;
}

.countr-mbbs a {
    color: #666;
}

.mbbs-countri:hover h6 {
    color: var(--secondary);
}

.kazan-img img {
    width: 100%;
}

.univer-logo img {
    width: 100px;
}

.univer-card div {
    padding: 20px;
}

.what-you-ul li {
    padding: 5px 10px;
    margin: 0 5px;
    border-radius: 5px;
}

.what-you-ul li a {
    color: #fff;
}

.univ-sec {
    position: relative;
}

.university-card {
    position: absolute;
    background-color: #fff;
    bottom: -80px;
    width: 83%;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.univ-about {
    padding: 20px;
}

.univ-about div img {
    width: 50px;
}

.univ-about-text {
    padding-left: 25px;
}

.univ-about-text h6 {
    font-size: 12px;
    color: #666;
}

.flag-slider {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 1.1rem;
    cursor: pointer;
}

.flag-slider:hover {
    background-color: #f7f7f7;
}

.flag-slider:hover img {
    transform: scale(1.1);
}

.flag-slider div {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 8rem;
}

.flag-slider div img {
    height: 7rem;
    width: 7rem !important;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.flag-slider h6 {
    color: var(--primary);
}