@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Epilogue:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --theme: #202444;
    --secondary:#1E4076;
    --primary:#3777DC;
    --black: #000;
    --gray: #707A83;
    --gray-secondary:#555C63;
    --light-gray:#F6F7FB;
    --white: #ffffff;   
    --rounded-6: 0.375rem;
    --rounded-10: 0.625rem;   
    --rounded-16: 1rem;
    --rounded-20: 1.25rem;
}


/*--------------------------------------*/

/*Element Base
/*--------------------------------------*/
body {
    font-size: 1.0rem !important;
    font-family: "DM Sans", sans-serif;
    font-style: 400;
    background: #fff;
    color: var(--black);

}

/*--------------------------------------*/

/*Typography
/*--------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Epilogue", sans-serif;
    font-weight: 700;
}



h2 {
    font-size: 2.625rem;
    color: var(--black);

}

h3 {
    font-size: 2.25rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.25rem;
    line-height: 1.5;
}



.font-size-14 {
    font-size: 1rem;
    line-height: 1.25;
}

a {
    color: var(--black);
    text-decoration: none;
}

a:hover {
    color: var(--theme);
}

.sub-title {
    color: var(--theme);
    font-size: 1.25rem;
    font-weight: 600;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-100 {
    padding-top: 100px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-50 {
    margin-top: 50px;
}
.mt-55 {
    margin-top: 55px;
}

.w-16 {
    width: 16px !important;
}

.h-16 {
    height: 16px !important;
}
.top--50{
    top:-50px;
}
p {
    font-family: "DM Sans", sans-serif;
    font-size: 1.0rem;

}

ul {
    padding: 0;
    list-style: none;
    margin-bottom: 0 !important;
}

ul li a {
    text-decoration: none;
}


#scrollTop {
    z-index: 99;
    cursor: pointer;
    border: none;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    color: #FFFFFF;
    background: var(--theme);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
    display: none;
    transition: 0.6s all ease-in-out;
    -moz-transition: 0.6s all ease-in-out;
    -ms-transition: 0.6s all ease-in-out;
    -webkit-transition: 0.6s all ease-in-out;
    border-radius: 50%;
}

#scrollTop i {
    display: flex;
    align-items: center;
    justify-content: center;
}

#scrollTop:hover {
    background-color: var(--black);
}


.rating{
    color: #F8F016;
}
.rating i{
    margin-right: .5rem;
}
/*--------------------------------------*/

/*Buttton
/*--------------------------------------*/
.btn {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    padding: .75rem 1.5rem;
    border-radius: 3rem;
    border: none;
    display: inline-flex;
    align-items: center;
    transition: all .5s;
    font-size: 1rem;
    line-height: 1.5;
    
}
.btn i{
    margin-left: .75rem;
    transition: all .4s;
}

.btn.btn-primary {
    background: var(--theme);
    color: var(--white);

}

.btn.btn-primary:hover {
    background: var(--secondary);
}

.btn.btn-white {
    background: var(--white);
    color: var(--theme);
}

.btn.btn-white:hover {
    background: var(--black);
    color: var(--white);
}

.btn.btn-sm {
    font-weight: 300;
    padding: .5rem 1.25rem;
    font-size: .9rem;
}

.btn-close {
    position: absolute;
    z-index: 1;
    opacity: 1;
    color: #fff;
    right: 1rem;
    top: 1rem;
    padding: .75rem;
    background: url(../images/close-icon.svg) no-repeat center;
    background-color: var(--primary);
    top: 1rem;
    right: 1rem;
}

.btn img {
    transition: all .4s;
}

.btn.btn-outline-primary {
    border: 1px solid var(--theme);
    color: var(--theme) !important;
}

.btn.btn-outline-primary:hover {
    background-color: var(--theme);
    color: var(--white) !important;
}

.btn-close:hover {
    opacity: .8;
}
.form-control{
 padding: .75rem 2rem;
 border-radius: 4rem;   
}
.sepraion {
    padding-top: 90px;
}
.sepraion-y {
    padding: 90px 0;
}

.z-index-9 {
    z-index: 9;
}

.text-justify {
    text-align: justify;
}

.img-fluid{
    object-fit: cover;
}

date {
    font-size: .875rem;
    color: var(--gray-secondary);
}
date .icon{
    font-size: 1.25rem;
}
.modal-content {
    border-radius: var(--rounded-20);
    box-shadow: 0px 0px 20px 1px rgba(255, 255, 255, .3);
    overflow: hidden;
    border:4px solid var(--white);
}


.rounded-6 {
    border-radius: var(--rounded-6);
}
.rounded-10 {
    border-radius: var(--rounded-10);
}
.rounded-16 {
    border-radius: var(--rounded-16);
}
.rounded-20 {
    border-radius: var(--rounded-20);
}
.w-h-10{
    height: 10rem;
    width: 10rem;
    object-fit: contain;
}
.social-widget{
    display: flex;
    align-items: center;
}

.social-widget li {
    display: inline-block;
    margin-right: .5rem;
}

.social-widget li a {
    display: flex;   
    align-items: center;
    justify-content: center;
    transition: all .4s;
    color: var(--theme);
    background-color: #fff;
    font-size: 1.25rem;
}

.social-widget li a:hover {
    background-color: var(--primary);
    color: var(--white);
}

.bg-theme {
    background: var(--theme);
}
.text-red{
    color: var(--primary);
}
.text-blue{
    color: var(--theme);
}
.bg-light-gray {
    background: var(--light-gray);
}

.frame-widget{
    border-radius:var(--rounded-20);
    border: 5px solid var(--primary);
    max-width: 100%;
    position: relative;
    overflow: hidden;
    position: relative;
    height: 300px;
    display: block;
}
.frame-widget img{
    width: 100%;
    height: 300px;
}
.frame-widget .cover-wrap{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,.7) 0%, rgba(113,121,189,0) 100%);
    display: flex;
    align-items: end;
    z-index: 1;
}
.frame-widget .cover-wrap p{
    display: none;
    margin-bottom: 0;
}
.frame-widget:hover p{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (min-width: 1400px) {
    .container {
        max-width: 1340px;
    }
}
.max-width-900 {
    max-width: 900px;
}
.sidebar ul{
    padding-left: 1.25rem;
}
.sidebar li{
    list-style: square;
    position: relative;
    line-height: 1.8;
}
.sidebar li a:hover{
    color: #1D4076;
}
.sidebar li a.active{
    color: #1D4076;
    font-weight: 700;
    text-decoration: underline;
}
.sidebar .collapse li a{

    font-size: 1.05rem;
}
.side-content ul{
    margin-bottom: 2rem!important;
}
.side-content li{
    list-style:disc;
    margin-left: 20px;
}
/*--------------------------------------*/

/*Header
/*--------------------------------------*/


.navbar-brand img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: all .4s linear;
}

.header-top {
    background: var(--primary);
    padding: .5rem 0;

}

.header-bottom {
    transition: all .5s;
}


.header-top,
.header-bottom {
    transition: all .4s linear;
}


.sticky {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 105;
}

.header-top ul {
    display: flex;
    padding: 0;
    list-style: none;
    margin-bottom: 0 !important;
    grid-gap: 8px;
    align-items: center;
}

.header-top li {
    color: var(--white);
    font-size: .85rem;
    font-weight: 400;
    line-height: 0;
}

.header-top li a {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 300;
    display: inline-flex;
    align-items: center;
    grid-gap: 10px;
    transition: all .3s;
    font-weight: 500;

}

.header-top li a:hover {
    text-decoration: underline;
}

.header-top svg {
    height: 18px;
    width: 18px;
    transition: all .3s;
}

.navbar-brand {
    height: 80px;
    width: auto;
}

.navbar {
    padding: 0rem 0;
    background: var(--theme);
    justify-content: center;
}

.navbar-nav.primary-menu {
    flex-direction: row;
}

.navbar-nav.primary-menu .nav-link {
    padding: .5rem .9rem !important;
}

.navbar.navbar-expand-lg.bg-light {
    background-color: #F2EFED !important;
    padding: 20px 0;
}

.navbar .nav-link {
    font-family: "DM Sans", sans-serif;
    color: var(--white);
    font-size: 1rem;
    opacity: 1;
    font-weight: 400;
    padding: .75rem .65rem !important;
    transition: all .5s;
    margin: 0 .65rem;
}

.navbar .nav-link:hover {
    color: var(--black);
}

.navbar .nav-link.active {
    font-weight: 600;
    color: var(--black);
}

.navbar-nav .nav-link.show {
    color: var(--white);
}

.fixed-top.sticky .header-top {
    opacity: 0;
}

.fixed-top.sticky .header-bottom {
    position: fixed;
    width: 100%;
    box-shadow: 5px 0px 10px 1px rgba(0, 0, 0, .1);
}

.fixed-top.sticky .navbar-brand img {
    height: 50px;
}

.offcanvas {
    background: var(--theme);
}


.offcanvas .nav-link:hover {
    background: var(--secondary);
    color: var(--white);
}

.dropdown-toggle::after {
    background: url(../images/arrow-down.svg) no-repeat;
    width: 10px;
    height: 8px;
    background-position: center;
    background-size: 14px;
    position: relative;
    top: 3px;
    border: 0;
    left: 2px;
}

.dropdown-menu {
    border: 0;
    padding: 0;
    border-radius: var(--rounded-16);
    font-family: "DM Sans", sans-serif;
    border-radius: var(--rounded-6);
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    box-shadow: 0 0 1.25rem rgba(0, 0, 0, .1);
    animation: growDown 300ms ease-in-out forwards;
    transform-origin: top center;
    margin: 0;
    min-width: 15rem;
}


.dropend .dropdown-toggle::after{
    background: none;
    top: -1px;
}
.dropdown-item {
    padding: .5rem 1.5rem;
    font-size: .875rem;
    text-transform: uppercase;

}
.dropdown-menu li:hover:first-child a{
    border-top-right-radius: var(--rounded-6);
    border-top-left-radius: var(--rounded-6);
}

.dropdown-menu li:hover:last-child a{
    border-bottom-right-radius: var(--rounded-6);
    border-bottom-left-radius: var(--rounded-6);
}

.dropdown-item:hover,
.dropdown-item.active,
.dropdown-item:active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: var(--theme);
}

.navbar-toggler {
    border: 0;
    padding: 0;
    margin-left: 1rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    padding: 0;
}

.navbar-toggler-icon {
    background: url(../images/toggler-icon.svg) no-repeat center;
}

header .social-widget li a:hover{
    background: transparent;
    opacity: .5;
}



/*--------------------------------------*/

/*Hero Banner Section
/*--------------------------------------*/
main {
    margin-top: 142px;
}


.hero-slider img {
    height: 700px;
    object-fit: cover;
    object-position: center;
}

.hero-slider .owl-dots {
    position: absolute;
    z-index: 99;
    width: 100%;
    bottom: 20px;
    text-align: center;
}

.hero-slider .owl-dots .owl-dot{
    width: .85rem;
    height: .85rem;
    background-color: #3777DC;
    border-radius: 10rem;
    margin: .25rem;
}
.hero-slider .owl-dots .owl-dot.active{
    background-color: #fff;
}
.hero-slider .caption {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 99;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
}

.hero-slider .caption .caption-widget {
    border-radius: var(--rounded-24);
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    max-width: 720px;
    color: var(--gray);
}

.hero-slider .btn.btn-primary:hover img {
    transform: rotate(40deg);
}

.hero-slider .owl-nav {
    position: absolute;
    top: 50%;
    right: 0;
    width: 84%;
    margin: 0 8%;
    display: flex;
    justify-content: space-between;
}

.hero-slider .owl-nav button.owl-prev span,
.hero-slider .owl-nav button.owl-next span {
    display: none;
}

.hero-slider .owl-nav button.owl-prev,
.hero-slider .owl-nav button.owl-next {
    border: 1px solid var(--theme);
    background-color: var(--theme);
    display: inline-block;
    width: 2.25rem;
    height: 2.25rem;
    line-height: 1;
    border-radius: 3rem;
    margin-left: .75rem;
    font-size: 2rem;
}

.hero-slider .owl-nav button.owl-prev {
    background-image: url(../images/prev.svg);
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slider .owl-nav button.owl-next {
    background-image: url(../images/next.svg);
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slider .owl-nav button.owl-prev:hover,
.hero-slider .owl-nav button.owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.hero-slider .owl-nav button.owl-prev:hover {
    background-image: url(../images/prev.svg);
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slider .owl-nav button.owl-next:hover {
    background-image: url(../images/next.svg);
    background-position: center;
    background-repeat: no-repeat;
}

/*--------------------------------------*/

/*Announcement Section
/*--------------------------------------*/

.announcement{   
    padding: 1.25rem 0;
    background-color: var(--theme);
}
.announcement .announcement-widget{
    line-height: 1.4;
    font-size: 1.125rem;
    color: var(--white);
}
.announcement .announcement-title{
    background: var(--theme);
    color: var(--white);
    padding: 0rem 1.25rem;
    min-width: fit-content;
    font-size: 1.125rem;
    border-right:1px solid rgb(255,255,255, .5)
}

/*--------------------------------------*/

/*About Section
/*--------------------------------------*/
.about-section {
    padding: 5rem 0 6rem;

}

.about-section .img-frame {
    max-width: 100%;
    margin: auto;
}
.about-section .img-frame::before,
.about-section .img-frame::after{
    content: '';
    position: absolute;
    border-radius: var(--rounded-20);
    width: 100%;
    height: 100%;
    display: block;
    left: 0;
    bottom: 0;
}
.about-section .img-frame::after{
    background: var(--secondary);
    z-index: -2;
    bottom: 4rem;
    width: calc(100% - 8rem);
    left: 4rem;
}
.about-section .img-frame::before{
    background: var(--theme);
    z-index: -1;
    bottom: 2rem;
    width: calc(100% - 4rem);
    left: 2rem;
}
.about-section .img-frame img {  
    object-fit: cover;
    width: 100%;
}
.year-widget{
    width: 7.75rem;
    height: 7.75rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, .2);
    right: 30px;
    bottom: -2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

}
.year-widget .title{
    font-size: 2.625rem;
    font-weight: 600;
    line-height: 1;
}
.year-widget small{
    font-size: 0.625rem;
    line-height: 1;
    display: block;
}
.year-widget div{
    position: relative;
    z-index: 1;
}
.year-widget::before{
    content: '';
    display: block;
    margin: 1rem;
    width: calc(100% - 1rem);
    height: calc(100% - 1rem);
    background: white;
    box-shadow: 0 0 1rem rgba(0, 0, 0, .1);
    position: absolute;
    border-radius: 50%;
}

/*--------------------------------------*/

/*Director Section
/*--------------------------------------*/
.director-section{
    background: rgb(13,17,46);
    background: linear-gradient(140deg, rgba(13,17,46,1) 17%, rgba(17,29,125,1) 100%);
    overflow: hidden;

}
.director-section .director-img{
    left: 0;
    width: 50%;
    height: 480px;
    border-top-right-radius: 260px;
    object-fit: cover;
    bottom: -1rem;
    position: absolute;
}
.director-section p{
    color: var(--white);
}

/*--------------------------------------*/

/*Principal Section
/*--------------------------------------*/
.principal-section{
    background: rgb(32,36,68);
    background: linear-gradient(140deg, rgba(32,36,68,1) 17%, rgba(85,115,163,1) 100%);
}
.principal-section .principal-img{
    width: 190px;
    height: 190px;
    border-radius: 50%;
}
.principal-section .title{
    font-size: 1.25rem;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
}
.principal-section name{
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
}

/*--------------------------------------*/

/*Principal Section
/*--------------------------------------*/
.teachers-section{
    position: relative;
    z-index: 1;
}
.teachers-section .teacher-widget{
    background: rgb(55,119,220);
    background: linear-gradient(210deg, rgba(55,119,220,1) 17%, rgba(113,121,189,1) 100%);
    -webkit-background: linear-gradient(210deg, rgba(55,119,220,1) 17%, rgba(113,121,189,1) 100%);
    -moz-background: linear-gradient(210deg, rgba(55,119,220,1) 17%, rgba(113,121,189,1) 100%);
    -ms-background: linear-gradient(210deg, rgba(55,119,220,1) 17%, rgba(113,121,189,1) 100%);
}
.teachers-section .teacher-widget .teacher-img{
    width: 190px;
    height: 190px;
    border-radius: 50%;
    border: 2px solid rgba(32, 36, 68, 0.7);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}
.teachers-section .teacher-widget .teacher-info .title{
    font-size: 1.125rem;
}
.teachers-section .teacher-widget .teacher-info .title,
.teachers-section .teacher-widget .teacher-info name{
    color: var(--white);
}
.teachers-section .teacher-widget .teacher-info name{
    font-size: 1.5rem;
    font-weight: 500;
}
.teachers-section .teacher-widget .teacher-info p{
    color: var(--white);
    font-size: 1rem;
}

/*--------------------------------------*/

/*School Achivement Section
/*--------------------------------------*/
.school-achivement{
    position: relative;
}
.school-achivement::before{
    content: '';
    background:url(../images/achivement-bg.png) no-repeat;
    background-size: 100% 100%;
    background-position: center;
    position: absolute;
    width: 100%;
    height: 1200px;
    top: -200px;
    left: 0;
    display: block;
    z-index: -1;

}
.school-achivement .school-widget{
    max-width: 460px;
    margin: auto;
}
.school-achivement .achivement-img{
    height: 410px;
    width: 100%;

}
.school-achivement  p{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;

}
/*--------------------------------------*/

/*Facilities Section
/*--------------------------------------*/
.facilities-section{
    position: relative;
    padding: 8rem 0 10rem;
}
.facilities-section::before{
    content: '';
    background:url(../images/facality-bg.png) no-repeat;
    background-size: 100% 100%;
    background-position: bottom;
    position: absolute;
    width: 100%;
    height: 1150px;
    top: -200px;
    left: 0;
    display: block;
    z-index: -2;

}

.facilities-grid{
    display: grid;
    grid-template-columns: auto auto;
    gap: 20px;

}

.facilities-grid .frame{
    border-radius:var(--rounded-20);
    border: 5px solid var(--primary);
    max-width: 100%;
    position: relative;
    overflow: hidden;
    position: relative;
    height: 320px;
}
.facilities-grid .frame img{
    width: 100%;
    height: 100%;
}
.facilities-grid .frame .cover-wrap{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,.9) 0%, rgba(113,121,189,0) 100%);
    display: flex;
    align-items: end;
}
.facilities-grid .frame .cover-wrap p{
    display: none;
    margin-bottom: 0;
}
.facilities-grid .frame:hover p{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*--------------------------------------*/

/*News & Event Section
/*--------------------------------------*/

.news-widget .card{
    border-radius: var(--rounded-20);
    box-shadow: 0 0 8px rgb(0,0,0, .3);
    border:0;
}

.news-widget .card .card-title{
    display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 80px;
  margin-bottom: 0;
}
.news-widget .card .card-text{
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 130px;
    margin-bottom: 0;
    font-size: 1rem;
}
.news-widget.news-detail-widget .card .card-title,
.news-widget.news-detail-widget .card .card-text{
    display: block;
    height: auto;
    overflow: inherit;
    margin-bottom: 1rem;
}
.news-widget .card .card-text a{
    color: var(--primary);
}
.news-widget .card .card-text a:hover{
    color: var(--secondary);
}
.news-widget .card .card-img-top{
    object-fit: cover;
}
.news-widget .card.card-f .card-img-top{
    border-top-left-radius: var(--rounded-20);
    border-top-right-radius: var(--rounded-20);
    height: 240px;
    object-fit: cover;
}
.news-widget .card .card-body{
    padding:.5rem 1.25rem 1.25rem;
}
.news-widget .card.card-s{
    flex-direction: row;
    height: 290px;
    overflow: hidden;
}
.news-widget .card.card-s .card-img-top{
    max-width:200px;
    height: 290px;
    border-radius: 0;
    border-top-left-radius: var(--rounded-20);
    border-bottom-left-radius: var(--rounded-20);
}
.news-widget .card.card-s .card-body{
    padding: 1.75rem;
} 
.news-widget .card .card-body a i{
    color: var(--theme);
}


.frame-widget.news-full,
.frame-widget.news-full .full-img{
    height: 504px;
    border: 0;
}


.testimonials-section{
    background: url(../images/banner2.jpg) no-repeat center;
    background-size: cover;
    padding: 5rem 0;
    position: relative;
}
.testimonials-section::before{
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(32, 36, 68, .7);
}

.testimonials-section .testimonials-widget{
    padding: 2rem 3rem;
    z-index: 1;
    position: relative;
}

.testimonials-section .testimonials-slider::after{
    bottom: 0;
    right: 50px;
    transform: rotate3d(0, 10, 0, -180deg);
}
.testimonials-section .testimonials-widget .testimonial-wrap{
    padding:5rem 0  3rem;
    max-width: 850px;
    margin: auto;
}
.testimonials-section .testimonials-widget .testimonial-wrap .avatar{
    border-radius: 50%;
    width: 50px;
    min-width: 50px;
    height: 50px;
    margin-right: 4rem;
    position: relative; 
 
}
.testimonials-section .testimonials-widget .testimonial-wrap .avatar .img-fluid{
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.owl-item{
    
    overflow: hidden;
}
/* .testimonials-section .testimonials-widget .testimonial-wrap .avatar::before{
    content: '';
    width: 200px;
    height: 200px;
    position: absolute;
    display: block;
    left: -20px;
    top:-20px;
    background: var(--theme);
    z-index: -1;
    border-radius: 50%;
} */
.testimonials-section .testimonials-widget .testimonial-wrap name{
    font-weight: 600;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--theme);
}


.testimonials-section .testimonials-slider::after,
.testimonials-section .testimonials-slider::before{
    content: '';
    width: 100px;
    height: 100px;
    position: absolute;
    display: block;
    background: url(../images/icons/comma.svg) no-repeat;
    z-index: 1;
    background-size: contain;

}
.testimonials-section .testimonials-slider::before{
    left: 50px;
    top:0px;
}

.testimonials-slider .owl-nav {
    position: absolute;
    top: 50%;
    right: 0;
    width: 100%;
    margin: 0 0%;
    display: flex;
    justify-content: space-between;
}

.testimonials-slider .owl-nav button.owl-prev span,
.testimonials-slider .owl-nav button.owl-next span {
    display: none;
}

.testimonials-slider .owl-nav button.owl-prev,
.testimonials-slider .owl-nav button.owl-next {
    border: 1px solid var(--theme);
    background-color: var(--theme);
    display: inline-block;
    width: 2.25rem;
    height: 2.25rem;
    line-height: 1;
    border-radius: 3rem;
    margin-left: .75rem;
    font-size: 2rem;
}

.testimonials-slider .owl-nav button.owl-prev {
    background-image: url(../images/prev.svg);
    background-position: center;
    background-repeat: no-repeat;
    margin-left: -50px;
    margin-top: -50px;
}

.testimonials-slider .owl-nav button.owl-next {
    background-image: url(../images/next.svg);
    background-position: center;
    background-repeat: no-repeat;
    margin-top: -50px;
    margin-right: -50px;
}
.testimonials-slider{max-width: 95% !important; margin: 0 auto;}
.testimonials-slider .owl-nav button.owl-prev:hover,
.testimonials-slider .owl-nav button.owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.testimonials-slider .owl-nav button.owl-prev:hover {
    background-image: url(../images/prev.svg);
    background-position: center;
    background-repeat: no-repeat;
}

.testimonials-slider .owl-nav button.owl-next:hover {
    background-image: url(../images/next.svg);
    background-position: center;
    background-repeat: no-repeat;
}

/*--------------------------------------*/

/*Footer
/*--------------------------------------*/


footer {
    background: rgb(32,36,68);
    background: linear-gradient(131deg, rgba(32,36,68,1) 42%, rgba(36,50,161,1) 100%);
    font-size:1rem;
    color: var(--white);
}
footer p{
    font-size: 1rem;
    line-height: 1.4;
}
footer ul{
    margin-top: 1rem;
}
footer li{
    line-height: 3;

}
footer a{
    color: var(--white);
}
footer a:hover{
    color: var(--primary);
}
footer .footer-last{
    padding: 3rem 0 1rem;
    color: rgb(255,255,255, .5);
}

.icons{
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1D4076;
}
.link{
    color: var(--primary);
    text-decoration: underline;
}
.link:hover{
    text-decoration: none;
}
/*--------------------------------------*/

/*Responsive
/*--------------------------------------*/

@media all and (max-width: 1320px) {
    .navbar .nav-link {
        font-size: .875rem;
        padding: .75rem .875rem !important;
        margin: 0 .10rem;
    }

}

@media all and (max-width: 1199px) {
    .navbar-brand img {
        height: 50px;
    }

    .navbar .nav-link {
        font-size: 1.15rem;
        padding: .50rem 1rem
    }

    .fixed-top.sticky .navbar-brand img {
        height: 45px;
    }

    .navbar-toggler {
        top: 50%;
    }

    .hero-slider img {
        height: 550px;
    }

    main {
        margin-top: 80px;
    }

    h2 {
        font-size: 2.5rem;
        line-height: 3rem;
    }

    h3 {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    h4 {
        font-size: 1.2rem;
        line-height: 1.7rem;
    }
    
    .header-top li {
        font-size: 1rem;
    }
    
    .testimonials-section .testimonials-widget .testimonial-wrap {
        padding: 5rem 0 3rem;
        max-width: 650px;
        margin: auto;
    }
}

@media all and (max-width: 991px) {

    .offcanvas{
        background: rgb(32,36,68);
        background: linear-gradient(131deg, rgba(32,36,68,1) 42%, rgba(36,50,161,1) 100%);
        border-top-left-radius: var(--rounded-20);
        border-bottom-left-radius: var(--rounded-20);
        padding-left: 1rem;
        box-shadow: -10px 0 20px rgb(255,255,255, .3);
    }
    .sepraion {
        padding-top: 60px;
    }
   
    .news-widget .card.card-s {
        flex-direction: column;
        height: auto;
        overflow: inherit;
    }
    .news-widget .card.card-s .card-img-top {
        max-width: 100%;
        height: 300px;
        border-top-left-radius: var(--rounded-20);
        border-top-right-radius: var(--rounded-20);
        border-bottom-left-radius: 0;
    }
    .header-top {
        padding:1rem;
    }
    .header-top li {
        line-height: 1.1;
    }
    .navbar-nav .dropdown-menu{
        border-radius: 0;
    }

    .navbar-nav .dropdown-menu{
        border-radius: 0;
    }
   
    .director-section .director-img{
        position: relative;
        width: 100%;
        margin-bottom: 2rem;
        height: auto;
        border-radius: var(--rounded-20)
    }
    .facilities-section::before,
    .school-achivement::before{
        height: calc(100% - -200px);
        background-size: cover;
       
    }
    .testimonials-section .testimonials-widget .testimonial-wrap {
        
        max-width: 650px;
        margin: auto;
        text-align: center;
    }
    .testimonials-section .testimonials-widget .testimonial-wrap .avatar{
        margin: auto;
        margin-bottom: 2rem;
    }
    .facilities-grid{
        margin-top: 3rem;
    }
    .top--50{
        top:0
    }
  
}

@media all and (max-width: 767px) {


    .header-top ul {
        display: block;
        list-style: none;
        margin-bottom: 0 !important;
        grid-gap: 20px;
        align-items: center;
    }

    .header-top ul li {
        padding-bottom: 10px;
    }

    .header-top ul li:last-child {
        padding-bottom: 0;
    }

 
    main {
        margin-top:140px;
    }
    .testimonials-section .testimonials-widget{
        padding: 2rem 1rem;
    }
    .testimonials-section .testimonials-slider::after,
    .testimonials-section .testimonials-slider::before{
        content: '';
        width: 50px;
        height: 50px;
    }

}

@media (max-width: 567px) {
    .hero-slider img {
        height: 200px;
    }
    .header-top{
        padding: 0;
    }
    h2 {
        font-size: 1.8rem;
        line-height: 2.3rem;
    }

    h3 {
        font-size: 1.5rem;
        line-height: 1.8rem;
    }

    h4 {
        font-size: 1.1rem;
        line-height: 1.4rem;
    }

    .facilities-grid .frame {
        height: 200px;
    }
    .testimonials-slider .owl-nav button.owl-prev{
        margin-left: -25px;
    }
    .testimonials-slider .owl-nav button.owl-next{
        margin-right: -25px;
    }
   
   
}