/* Website: St.Antony’s College Peruvanthanam
Author: Weberge by ipsr 
Style.css*/
/********** CSS **********/
:root {
    --primary: #015DB4;
    --secondary: #0F1640;
    --dark: #0F1640;
    --light:#373737;
    --bg-light: #EEF6FC;
    --linear: linear-gradient(90deg, #013E7F, #9B0302) !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Jost", sans-serif;
    /* overflow-x: hidden; */
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    /* box-shadow: inset 0 0 5px grey;  */
    border-radius: 7px;
}


::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}


/************************ Common ************************/

section {
    padding: 60px 0px;
}

.text-primary {
    color: var(--primary) !important;
}
.text-secondary {
    color: var(--secondary) !important;
}
.text-dark {
    color: var(--dark) !important;
}
.text-light {
    color: var(--light) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.bg-light {
    background-color: var(--bg-light) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Outfit", sans-serif;
}


h1 {
    font-size: 48px;
    font-weight: 600;
}

h2 {
    /* font-size: 40px;
    color: var(--secondary);
    margin-bottom: 25px;
    z-index: 99; */

}

h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

p {
    font-size: 17px;
    font-weight: 400;
    color: var(--light);
    line-height: 24px;
    margin-bottom: 20px;
}

a, i {
    /* font-size: 17px; */
    color: var(--dark);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;

}

a:hover {
    color: var(--secondary);
}

img {
    width: auto;
    max-width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
}
.border10{
    border-radius: 10px;
}
.border25{
    border-radius: 25px;
}

/* Content Styles */
.content {
    /* display: none; */
    /* Hide content initially */
}

/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 400;
}

.btn-primary {
    background-color: var(--primary);
    color: white !important;
    border-radius: 7px;
    border: none;
    text-transform: capitalize;
    /* display: inline-block; */
    padding: 5px 25px;
    min-height: 45px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
    background-color: var(--secondary);
}

.btn-primary,
.btn-outline-primary:hover {
    border-color: var(--primary) !important;
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
    color: #fff !important;
    background-color: var(--primary);
    border: none !important;
    /* border-color: #000; */
    box-shadow: none;
    border-color: var(--primary) !important;

}

.btn-check:active+.btn-primary,
.btn-check:checked+.btn-primary,
.btn-primary.active,
.btn-primary:active,
.show>.btn-primary.dropdown-toggle {
    color: #fff !important;
    background-color: var(--primary);
    /* border-color: #000; */
    border: none !important;
    border-color: var(--primary) !important;
}

.btn-white {
    background-color: white;
    color: var(--primary) !important;
    z-index: 99;
}

.btn-white:hover {
    color: white !important;
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
    position: relative;
    padding-left: 45px;
    max-width: 90vw;
}
.section-title::before {
     content: "";
    width: 31px;
    height: 31px;
    background-image: url(../img/title-bg.svg);
    position: absolute;
    top: 5px;
    left: 0px;
    bottom: 0;
}

.read-more {
    font-weight: 500 !important;
    color: var(--primary);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.read-more:hover{
    color: var(--secondary);
}

.read-more i{
    position: absolute;
    font-size: 17px;
    padding-left: 7px;
    top: 7px;
    color: var(--primary);
}


.read-more-link {
  text-decoration: none;
  position: relative;
  /* display: inline-block; */
  font-size: 18px;
  color: var(--primary);
  overflow: hidden; 
  transition: background-position 370ms ease;
  font-weight: 500 !important;
  text-transform: capitalize;
} 

.read-more-link::before {
  position: absolute;
  content: attr(data-content);
  color: var(--secondary);
  text-decoration: underline;
  clip-path: polygon(0 0, 0 0, 0% 100%, 0 100%);
  transition: clip-path 370ms ease;
}

.read-more-link:hover::before {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);  
}

.read-more-link i{
    position: absolute;
    font-size: 16px;
    padding-left: 7px;
    top: 7px;
    color: var(--primary);
}
.read-more-link:hover i {
  transform: translateX(4px); 
  color: var(--secondary);
}
/************************ Header************************/
header {
    z-index: 999;
    /* position: absolute; */
    /* padding: 10px 50px; */
    top: 0;
    left: 0;
    right: 0;
    color: white;
    /* background: white; */
}
.main-menu-sec {
    padding: 5px 50px;

}
/* ------- Top-Sec ------ */

  
.contact-top {
    /* display: flex;
    justify-content: end; */
    align-items: center;
    padding: 5px 50px;
}

.contact-top ul {
    gap: 20px;
    align-items: center;
    margin-bottom: 0;
}
.contact-top li{
    list-style: none;
}
.contact-top i {
    padding-right: 10px;
    margin-right: 5px;
    color: white;
}

.contact-top a {
    color: white;
    font-weight: 500;
    font-size: 14px;
}

.contact-top a:hover {
    color: var(--primary) !important;
}

.contact-top a:hover i {
    color: var(--primary);
}

/* ---------------------------- */
.logo {
    padding: 0;
}

.logo img {
    max-height: 90px;
    width: auto;
    margin-bottom: 0;
    border-radius: 0px;
}


/* ------------- custom nav --------------- */

.custom-nav a {
    font-size: 16px;
    color: var(--dark);
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: normal;
    font-weight: 500;
}
.main-menu-sec .custom-nav a {
	gap: 3px;
    line-height: normal;
    font-weight: 600;
    text-transform: uppercase;
}
.custom-nav .submenu {
    position: absolute;
    display: block;
    background: #fff;
    z-index: 9999;
    box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
    top: 20px;
    border-radius: 5px;
    opacity: 0;
    pointer-events: none;
    padding: 10px 0;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
}

.custom-nav .submenu.open {
    opacity: 1;
    /* top: 35px; */
    pointer-events: all;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
}

.custom-nav .navbar {
    gap: 15px;
}
nav ul {
    margin-bottom: 0;
    padding: 0px;
}
nav ul li {
    list-style: none;
    position: relative;

}
nav ul li.active a {
    color: var(--primary);
}

.custom-nav ul li a:hover {
    color: var(--primary) !important;
}

.custom-nav .submenu .submenu {
    left: 100%;
    top: 0;
}

.custom-nav .navbar .has-child>a::after {
    display: inline-block;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.custom-nav .navbar .has-child:hover::after {
    color: var(--primary) !important;
}


.custom-nav .navbar .submenu a {
    padding: 7px 20px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}
.top-nav a{
    color: white !important;
}
.top-nav .navbar{
    padding: 0;
}

nav.custom-nav {
    display: flex;
    justify-content: end;
    /* background-color: var(--primary); */
    padding: 5px 0px !important;
    color: white;
}

nav.custom-nav .navbar>li:nth-last-child(-n+2) .submenu {
    left: auto;
    right: 0;
}
.nav-btn1{
    gap: 10px;
}
.topNav-btn,
.mainNav-btn{
    display: none;
}
.topNav-btn{
    background: transparent;
    border: 1px solid var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    color: var(--primary); 
    outline: none;
    padding:0 !important;
} 
.topNav-btn svg circle{
    stroke: var(--primary);
}

/* .mainNav-btn {
    display: none;
} */


.mainNav-btn {
    background: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    border: none;
    margin-right: 10px;
    color: #fff;
    outline: none;
    padding: 0 !important;
}


.menu-overlay {
    display: none;
}

.menu-overlay {
    display: block;
    width: 0%;
    height: 100vh;
    position: absolute;
    right: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    opacity: 0;
}

.menu-open .menu-overlay {
    width: 100%;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    opacity: 1;
}


.submenu a {
    color: var(--dark) !important;
    font-size: 15px;
    font-weight: 500 !important;
}


/************************ Banner ************************/
.banner {
    padding: 0px;
    position: relative;
    /* height: calc(100vh - 120px); */
    height: auto !important;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.banner1 {
    position: relative;
    /*height: 100vh;*/
    background-size: cover;
    object-fit: cover;
    background-position: center;
}


.banner1 .overlay {
    background: linear-gradient(#000000e0, #00000000);
    content: '';
    display: block;
    position: absolute;
    /* opacity: 0.2; */
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

/* .banner-content {
    position: absolute;
    z-index: 999;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
    align-items: center;
    justify-content: center;
    display: flex;
} */

.banner h1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 999;
    font-weight: 700;
    font-size: 44px;
    display: none;
}
/************************ Announcement ************************/

.apply{
    position: fixed;
    top: 250px;
    right: -50px;
    /* justify-content: center;
    align-items: center; */
    background: linear-gradient(to top left, #013E7F, #9B0302);
    color: white;
    padding: 10px 20px;
    border-radius: 0px 0px 5px 5px;
    transform: rotate(90deg);
    z-index: 99;
    text-align: center;

    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}


.btn-apply{
    background: none;
    border: none;
    font-size: 17px;
    font-weight: 500;
    color: white;

    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.apply:hover{
    color: white;
    background: var(--primary);
}
.btn-apply i{
    padding: 0px 10px;
}
/************************ Social Media - Fixed ************************/
.social-media-top {
    position: fixed;
    top: 350px; 
    /*top: 55%;*/
    right: 0;
    /* justify-content: center;
    align-items: center; */
    /* background: var(--primary); */
    background: linear-gradient(to bottom, #013E7F, #9B0302);
    color: white;
    padding: 5px 10px;
    border-radius: 5px 0 0 5px;
    z-index: 99;
    text-align: center;
    box-shadow: 0px 10px 30px 0px rgb(0 0 0 / 35%);
}
.social-media-top ul{
    padding: 0;
    margin: 0;
}
.social-media-top ul li{
    list-style: none;
    padding: 8px 0;
}
.social-media-top i{
    color: white;
    font-size: 18px;
}
.social-media-top i:hover{
    color: var(--primary);
}
/************************ Whatsapp - Fixed ************************/

.whatsapp-icon{
    position: fixed;
    top: auto;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}
.whatsapp-icon img{
    height: 40px;
}
/************************ Scroll News ************************/
.scroll-news{
    padding: 0;
    background: var(--linear);
}
.news-scroll{
    padding-left: 0;

}
.news-updates-title{
    /* background-color: var(--secondary); */
    padding: 10px 10px;
    /* min-width: 150px; */
}


.scroll-news h6 {
  margin: 0;
  color: white;
}

.news-updates-content{
    display: flex;
    padding: 5px 10px;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    align-items: center;
    border-bottom: 1px solid var(--secondary);
}
.marquee {
    display: inline-block;
    animation: marquee 10s linear infinite;
    /* white-space: nowrap; */
}
@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
.news-updates-content p, .news-updates-content a {
    color: white;
    display: inline-block;
    padding: 0px 20px;
    margin-bottom: 0px;
    font-size: 16px;
    /* border-right: 3px solid var(--secondary); */
    position: relative;
}
.news-updates-content p::after, .news-updates-content a::after {
    content: "";
    width: 15px;
    height: 14px;
    background-image: url(../img/news-divider.svg);
    position: absolute;
    right: -9px;
    top: 5px;
}
/************************ Welcome ************************/
.welcome img{
    height: 380px;
    object-fit: cover;
    object-position: center;
}
.abt-content{
    display: flex;
    align-items: center;
}

.welcome p, .welcome .read-more-link{
    padding-left: 45px;
}

  /************************ Principal Message, Chairman Message ************************/
.principal-message{
    background: var(--linear);
}
.message{
    padding: 30px 30px;
    border-radius: 20px;
}

.message img {
    margin-bottom: 20px;
    height: 280px;
    /* width: 150px; */
    object-fit: cover;
    background-position: top;
}
.message h3 {
   font-size: 26px;
   font-weight: 500;
}
.message h6{
    color: var(--dark);
    font-size: 19px;
	margin-bottom: 0;
}
.message span {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 400;
}
.message p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

/************************ News-Tab ************************/
.news-main{

}

.news-main .item {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06); 
    background-color: #f7f7f7;
    padding: 20px;
    position: relative;
    border-radius: 20px;
	min-height: 440px;
	margin-bottom: 30px;
}

.news-main img {
    height: 230px;
    object-fit: cover;
    background-position: center;
    object-fit: cover;
    object-position: top;
    position: relative;
}
.news-info {
    padding: 15px 5px;
    min-height: 85px;
}
.news-main h6{
    font-size: 15px;
    background-color: var(--primary);
    color: white;
    font-weight: 500;
    position: absolute;
    z-index: 99;
    left: 30px;
    top: 30px;
    padding: 8px 15px;
    border-radius: 5px;
}
.news-info h4{
    font-size: 20px;
    color: var(--dark);
    font-weight: 600;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.news-info p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.news-main-tab .tab-content img{
    height: 240px;
}


.tab-wrapper {
    /* background-color: #fff;
    margin-bottom: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    padding: 0;
    /* margin-bottom: 40px; */
  }
  .tab-header {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    /* border-bottom: 1px solid #e5e5e5; */
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .tab-header .tab-btn {
    padding: 10px 15px;
    border-radius: 20px;
    background-color: white !important;
    color: var(--dark);
    border: none;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    z-index: 1;
    /* border: 1px solid #6a00fb; */
    background-color: transparent;
    transition: all 0.3s ease;
  }
  .tab-header .tab-btn:focus {
    outline: none;
  }
  .tab-header .tab-btn i {
    margin-right: 5px;
    color: var(--dark);
  }
    .tab-header .tab-btn.active i {
    color: white;
  }
  .tab-header .tab-btn:hover {
    color: var(--primary);
  }
  
  .tab-header .tab-btn.active {
    color: white !important;
    background: var(--linear) !important;
  }

   .tab-header .tab-btn:hover i, .tab-header .tab-btn.active:hover, .tab-header .tab-btn.active:hover i {
    color: var(--primary) !important;
  }
  
  .tab-header .underline {
    position: absolute;
    bottom: -1px;
    left: 0;
    height: 2px;
    width: 0;
    transform-origin: left;
    background-color: transparent;
    transition: all 0.3s ease;
  }

  .tab-header[full-width] .tab-btn {
    flex: 1;
    text-align: center;
  }
  .tab-header[background] {
    background-color: var(--secondary);
  }
  .tab-header[background] .tab-btn {
    color: #fff;
  }
  .tab-header[background] .tab-btn.active {
      background-color: var(--secondary);
    color: white;
  }
  
  .tab-body {
    display: flex;
    overflow: hidden;
  }
  .tab-body .tab-content {
    min-width: 100%;
    padding: 30px 0 10px;
  }
  .tab-wrapper[rounded] {
    border-radius: 10px;
  }
  
  
/* .section-title-view-all{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.section-title-view-all .section-title{
    margin: 0;
} */
/************************ Owl Carousel - carousel controls - All ************************/

.about-carousel .owl-nav, .testimonial-carousel .owl-nav, .dignitaries-carousel .owl-nav {
    display: flex !important;
    justify-content: center;
    gap: 10px;
    top: 42%;
    position: absolute;
    right: 0;
    left: 0;
  }
  .testimonial-carousel .owl-nav, .dignitaries-carousel .owl-nav{
    top: auto;
    bottom: -60px;
  }
  .about-carousel .owl-nav .owl-prev, .about-carousel .owl-nav .owl-next,
  .testimonial-carousel .owl-nav .owl-prev, .testimonial-carousel .owl-nav .owl-next,
  .dignitaries-carousel .owl-nav .owl-prev, .dignitaries-carousel .owl-nav .owl-next{
      background: var(--linear);
      width: 45px;
      height: 45px;
      border-radius: 50%;
      text-align: center;
      align-items: center;
      justify-content: center;
      display: flex;
      transition: all 0.3s ease-in-out;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
  }
  .dignitaries-carousel .owl-nav .owl-prev, .dignitaries-carousel .owl-nav .owl-next{
    background: white;
  }
  .about-carousel .owl-nav i, .testimonial-carousel .owl-nav i {
    color: white;
    line-height: 0;
  }
  .dignitaries-carousel .owl-nav i{
    color: var(--linear);
  }
  .about-carousel .owl-nav .owl-prev:hover, .about-carousel .owl-nav .owl-next:hover,
  .testimonial-carousel .owl-nav .owl-prev:hover, .testimonial-carousel .owl-nav .owl-next:hover,
  .dignitaries-carousel .owl-nav .owl-prev:hover, .dignitaries-carousel .owl-nav .owl-next:hover{
      background: var(--primary);
  }
  .about-carousel .owl-nav .owl-prev:hover i, .about-carousel .owl-nav .owl-next:hover i,
  .testimonial-carousel .owl-nav .owl-prev:hover i, .testimonial-carousel .owl-nav .owl-next:hover i,
  .dignitaries-carousel .owl-nav .owl-prev:hover i, .dignitaries-carousel .owl-nav .owl-next:hover i{
      color: white !important;
  }
  .about-carousel .owl-nav .owl-prev {
    position: absolute;
    left: 15px;
  }
  .about-carousel .owl-nav .owl-next {
    position: absolute;
    right: 15px;
  }


.news-carousel .owl-dots{
    display: flex !important;
    gap: 7px;
    justify-content: center;
    margin-top: 20px;
}
.news-carousel .owl-dot span{
    background-color: var(--primary);
    opacity: 0.3;
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 10px;
}
.news-carousel .owl-dot.active span{
    background-color: var(--primary);
    opacity: 1;
}

.facilities-carousel .owl-dots{
    display: flex !important;
    gap: 7px;
    justify-content: center;
    margin-top: 20px;
}
.facilities-carousel .owl-dot span{
    background-color: white;
    opacity: 0.3;
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 10px;
}
.facilities-carousel .owl-dot.active span{
    background-color: white;
    opacity: 0.5;
}
  /************************ Facilities ************************/
.facilities{
    background: var(--linear);
    /* position: relative; */
}
.facilities .section-title{
    color: white;
}
.facilities .section-title{
    padding: 0;
    width: 360px;
    margin: 0 auto 25px;
}
.facilities .section-title::before {
    background-image: url(../img/title-bg-white.svg);
    left: 20px;
}
.facilities .section-title::after {
    content: "";
    width: 31px;
    height: 31px;
    background-image: url(../img/title-bg-white.svg);
    position: absolute;
    top: 2px;
    bottom: 0;
    right: 20px;
}

.facilities .item{
    background: #ffffff2b;
    padding: 15px;
    text-align: center;
    border-radius: 20px;
}
.facilities img{
    height: 210px;
    width: auto;
    object-fit: cover;
    object-position: center;
}
.facilities-info{
    padding: 10px;
    border: 1px solid;
    border-radius: 5px;
}

.facilities p{
    color: white;
}


.facilities .read-more-link {
  color: white;
} 

.facilities .read-more-link::before {
  color: white;
}


.facilities .read-more-link i{
    color: white;
}
.facilities .read-more-link:hover .facilities .read-more-link:hover i {
  color: var(--secondary) !important;
}



.facilities .owl-item > div {
    cursor: pointer;
    margin: 7% 1%;
    transition: margin 0.4s ease;
  }
  .facilities .owl-item.center > div {
    cursor: auto;
    margin: 0;
  }
  .facilities .owl-item.center > div::before{
    top: 20px !important;
  }
/************************ Relish the SAP ************************/
.specialities{
    position: relative;
    display: flex;
    padding-bottom: 10px;
}
/* .specialities::after {
    content: "";
    width: 100%;
    height: 145px;
    background-image: url(../img/facility-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 145px;
    position: absolute;
    bottom: auto;
    right: 0;
    z-index: -1;
    top: auto;
    bottom: 0;
} */
.specialities .section-title, .departments .section-title, .achievements .section-title, .news-main .section-title {
    padding: 0;
    width: 480px;
    margin: 0 auto 25px;
}
.specialities .section-title::before, .departments .section-title::before, .achievements .section-title::before, .news-main .section-title::before {
    /* background-image: url(../img/title-bg.svg); */
    left: 20px;
}
.specialities .section-title::after, .departments .section-title::after, .achievements .section-title::after, .news-main .section-title::after {
    content: "";
    width: 31px;
    height: 31px;
    background-image: url(../img/title-bg.svg);
    position: absolute;
    top: 2px;
    bottom: 0;
    right: 20px;
}

.specialities .item{
    background-color: white;
    padding: 20px;
    border-radius: 20px;
	padding-bottom: 40px;
}
section.specialities .item a.read-more-link{
	position: absolute;
	bottom: 10px;
	left: 20px;
}
.specialities h4 {
    font-size: 20px;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 15px;
}
.specialities p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.specialities-icon{
    margin-bottom: 20px;
}
.specialities-icon img{
    height: 70px;
    width: auto !important;
    display: block;
     z-index: 1;
  position: relative;
    margin: 0;
    border-radius: 0;
}

/************************ Achievements ************************/
.achievements{
    background: var(--linear);
    position: relative;
    padding-top: 200px;
}
.achievements::before {
       content: "";
    width: 100%;
    height: 145px;
    background-image: url(../img/facility-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 145px;
    position: absolute;
    bottom: auto;
    right: auto;
    left: auto;
    top: -1px;
    bottom: auto;
}
.achievements1{
    border-radius: 20px;
    padding: 40px 80px;
}
.achievements .section-title{
    width: 750px;
}
.achievements .item{
    position: relative;
}
.achievements .item a{
    display: flex;
    justify-content: center;
}
.achievements img{
    height: 500px;
    object-fit: cover;
    object-position: top;
    margin: 0;
	width: auto !important;
}
.achievement-info {
    position: absolute;
    background-color: var(--primary);
    color: white;
    /* min-height: 100px; */
    width: 85%;
    top: auto;
    bottom: 20px;
    padding: 20px 15px;
    border-radius: 5px;
}
.achievements h4{
    font-size: 19px;
     display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
/************************ Departments ************************/
.departments{
    /* position: relative; */
}

.departments h4 {
    font-size: 20px;
    color: var(--dark);
    font-weight: 600;
    margin: 15px 0;
	min-height: 70px;
}
.departments .item{
    padding: 20px 20px 15px;
}
.departments img{
    height: 250px;
    object-fit: cover;
    object-position: center;
}


/************************ Testimonials ************************/
.testimonials .section-title {
    padding: 0;
    width: 470px;
    margin: 0 auto 25px;
    position: relative;
}
.testimonials .section-title::before {
    background-image: url(../img/title-bg.svg);
}
.testimonials .section-title::before {
    left: 20px;
}
.testimonials .section-title::after {
    content: "";
    width: 31px;
    height: 31px;
    background-image: url(../img/title-bg.svg);
    position: absolute;
    top: 2px;
    bottom: 0;
    right: 20px;
}

.testimonials{
    padding-bottom: 85px;
}

.testimonial-carousel{
    margin-bottom: 30px;
}
.testimonials .item{
    padding: 20px 20px;
    border: 2px dashed var(--primary);
    border-radius: 20px;
}
.testimonials img{
    height: 100px;
    width: 100px !important;
    margin: 0 auto 20px;
    border-radius: 50%;
}
.testimonial-info{
    padding: 10px 0px;
    gap: 15px;
}
.testimonials h3{
    font-size: 20px;
    margin-bottom: 3px;
    font-weight: 600;
}
.testimonials h6{
    font-size: 17px;
    /* margin: 0; */
    font-weight: 500;
    color: var(--primary);
}
.testimonials p{
    margin-bottom: 20px;
     display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}
/************************ Dignitaries ************************/
.dignitaries{
    padding-bottom: 85px;
    background: var(--linear);

    position: relative;
    background-image: url(../img/banner2.jpg);
    /* background-attachment: fixed; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
}
.dignitaries::before{
    background: linear-gradient(to bottom right, #013E7F, #9B0302) !important;
    opacity: 0.7;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
}
.dignitaries .section-title {
    padding: 0;
    width: 470px;
    margin: 0 auto 25px;
    position: relative;
    color: white;
}
.dignitaries .section-title::before {
    background-image: url(../img/title-bg-white.svg);
}
.dignitaries .section-title::before {
    left: 20px;
}
.dignitaries .section-title::after {
    content: "";
    width: 31px;
    height: 31px;
    background-image: url(../img/title-bg-white.svg);
    position: absolute;
    top: 2px;
    bottom: 0;
    right: 20px;
}
/* .dignitaries-content{
    background: white;
} */
.dignitaries-carousel{
    margin-bottom: 30px;
}
.dignitaries .item{
    padding: 20px 20px;
    border-radius: 20px;
    background: rgb(255 255 255 / 60%);
}
.dignitaries img{
    height: 240px;
    width: auto !important;
    margin: 0 auto 20px;
    border-radius: 50%;
}
.dignitaries-info{
    padding: 10px 0px;
    gap: 15px;
}
.dignitaries h3{
    font-size: 20px;
    margin-bottom: 3px;
    font-weight: 600;
}
.dignitaries h6{
    font-size: 17px;
    /* margin: 0; */
    font-weight: 500;
}
.dignitaries p{
    margin-bottom: 20px;
     display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

/************************ Gallery ************************/

.gallery .section-title {
    padding: 0;
    width: 470px;
    margin: 0 auto 25px;
    position: relative;
}
.gallery .section-title::before {
    background-image: url(../img/title-bg.svg);
}
.gallery .section-title::before {
    left: 20px;
}
.gallery .section-title::after {
    content: "";
    width: 31px;
    height: 31px;
    background-image: url(../img/title-bg.svg);
    position: absolute;
    top: 2px;
    bottom: 0;
    right: 20px;
}

.gallery-grid-container {
    display: grid;
    gap: 20px;
        grid-template-areas:
        'photo1 photo2 photo3'
        'photo1 photo4 photo4';
    /* grid-template-columns: 33% 33% 31%; */
}
.photos{
    position: relative;
    border-radius: 5px;
    position: relative;
  }
  .photos img{
    height: 250px;
    width: 100%;
    background-size: cover;
    background-position: center;
    object-fit: cover;
    object-position: top;
    margin: 0;
  }

 .photos:first-child{
    grid-area: photo1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .photos:nth-child(2){
    grid-area: photo2;
  }
  .photos:nth-child(3){
    grid-area: photo3;
  }
  .photos:last-child{
    grid-area: photo4;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  } 
  .photos:first-child img{
    height: 100%;
    width: auto;
    height: 520px;
    /* top: -14px; */
    position: relative;
  }
  .photos:first-child::after{
    opacity: 0.5;
    background:black;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    border-radius: 5px;
}
.photos:first-child a{
    position: absolute !important;
    z-index: 9999;
}

.photos:first-child a img{
    height:75px !important;
    width: 75px !important;
}
.photos:first-child a img:hover{
    opacity: 0.8;
}
 .photos:last-child a{
    position: absolute;
    z-index: 9999;
    background: var(--primary);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
 } 
 .photos:last-child a i{
    color: white;
 }
  .photos:last-child a:hover{
    background: var(--secondary);
  }
.gallery .fancybox{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery .fancybox button{
    background: none;
    border: none;
}
.gallery a.fancybox:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 27%);
    border-radius: 5px;
}


/************************ Collaborations, Recruiters ************************/
.recruiters .section-title {
    padding: 0;
    width: 370px;
    margin: 0 auto 25px;
    position: relative;
}
.recruiters .section-title::before {
    background-image: url(../img/title-bg.svg);
}
.recruiters .section-title::before {
    left: 20px;
}
.recruiters .section-title::after {
    content: "";
    width: 31px;
    height: 31px;
    background-image: url(../img/title-bg.svg);
    position: absolute;
    top: 2px;
    bottom: 0;
    right: 20px;
}

.recruiters .item{
    padding: 30px;
    margin-left: 20px;
    /* box-shadow: 5px 5px 10px rgba(0,0,0,0.3); */
    border-radius: 20px;
	height: 200px;
}
.recruiters img{
    margin: 0 auto;
    /*height: 40px;*/
    border-radius: 0;
}
.collaborations .item{
    /*padding: 10px 0;
    border-radius: 0;
    display: inline-block !important;*/
	border: 1px solid #e2eaf1 !important;
}
.collaborations .collab{
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 3px 0 rgba(0, 0, 0, 0.2), 0 6px 12px 0 rgba(0, 0, 0, 0.19);
}
/************************ Footer ************************/
footer{
    position: relative;
    padding: 60px 0px 20px;
    background-image: url(../img/banner1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    color: white;
    /* z-index: 99; */
}
footer::before{
    background: linear-gradient(to bottom right, #013E7F, #9B0302) !important;
    opacity: 0.9;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
}
footer .container{
    z-index: 9;
}
footer .footer-logo img{
    height: auto;
    width: auto;
    border-radius: 0;
}
footer h5{
    font-size: 21px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    text-transform: capitalize;
}
footer h6{
    color: white;
    font-weight: 500;
    margin-bottom: 0;
}
footer p{
    margin-bottom: 0;
}

footer p,
footer a,
footer ul li {
    color: #ffffffc2;
    font-size: 16px;
    font-weight: 400;
}

footer .social{
    /* position: relative; */
    /* justify-content: end; */
}
footer .social ul{
    margin: 0;
    gap: 10px;
}
footer .social ul li a{
    /* background: white; */
    border-radius: 5px;
    color: white;
    border: 1px solid;
    /* display: inline-block; */
    width: 35px;
    height: 35px;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    font-size: 15px;
    font-weight: 400;

}
footer .social ul li a:hover{
    border-color: var(--primary);
}
footer .social ul li i {
    font-size: 17px;
    color: white;
}
footer .social ul li a:hover i{
    color: var(--primary);

}


footer a:hover {
    color: var(--secondary);
}


.address {
    margin-bottom: 20px;
    align-items: baseline;
    gap: 15px;
}

footer .address i{
    /* background: var(--primary); */
    /* border-radius: 5px; */
    color: white;
    /* display: inline-block; */
    width: 35px;
    height: 35px;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    font-size: 15px;
}

.address p,
.address a {
    /* padding-left: 15px; */
    margin-bottom: 0px;
    /* font-weight: 300; */
    line-height: 28px;
    color: #ffffffc2;
	overflow-wrap: anywhere;
}
footer a:hover, footer li:hover{
    color: white;
}
.address ul{
    align-items: center;
    display: flex;
}
.address li{
    font-size: 20px;
    margin: 0 !important;
}

footer ul {
    padding: 0px;
    margin: 0;
}

footer ul li {
    list-style: none;
    margin-bottom: 10px;
}

.copyright {
    border-top: 1px solid #C2C8CD;
}

.copyright p {
    font-size: 15px;
    padding: 0px;
}

.ipsr img {
    height: 25px;
    margin: 0;
    border-radius: 0;
}

.ipsr img:hover {
    opacity: 0.5;
}

.ipsr p,
.ipsr a {
    padding: 0px;
    margin: 0;
}

.ipsr p,
.ipsr a {
    font-size: 8px !important;
}
/************************  ************************/

.top-bar ul.sub-menu {
    display: none;
}

.video-banner-section {
    position: relative;
    /*height: 80vh;*/
	height: auto !important;
    overflow: hidden;
    display: flex;
    /* align-items: center; */
    padding: 0;
    z-index: -1;
}
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.sub-page-content-area table tr:first-child, table tr th {
    /*background-color: #0f1640;*/
    font-size: 18px;
    font-weight: 400;
    padding: 10px;
}
.sub-page-content-area table tr:first-child td, table tr th {
    padding: 15px 10px;
    font-size: 16px;
/*     color: #FFF; */
}
.sub-page-content-area table tr th, td strong {
    padding: 15px 10px;
    font-size: 16px;
/*     color: #FFF !important; */
}
.news-main .news-info .read-more-link {
    position: absolute;
    bottom: 20px;
    left: 30px;
}
.main-banner-slider img {
    margin-bottom: 0;
    border-radius: 0;
}
.main-menu-sec .custom-nav a i {
    font-size: 16px !important;
    border-radius: 50%;
    text-align: center;
    position: relative;
    color: #0f1646;
}
.main-menu-sec .custom-nav a i:hover {
    color: var(--primary) !important;
}
.sub-page-content-area table p {
    margin-bottom: 0;
}