/* Website: Dignity College

Author: Weberge by ipsr 

Style.css*/



/********** CSS **********/

:root {

    --primary: #0E6DAD;

    --secondary: #04724D;

    --dark: #222222;

    --light:#4B4C4C;

    --light1: #808080;

    --bg-light: #F4F5F9;

}



/* @keyframes bounce {

    0%, 20%, 50%, 80%, 100% {

        transform: translateY(0); 

    }

    40% {

        transform: translateY(-20px); 

    }

    60% {

        transform: translateY(-10px); 

    }

} */



html {

    scroll-behavior: smooth;

}



body {

    font-family: "Poppins", sans-serif;

}



::-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: "Poppins", sans-serif;

}





h1 {

    font-size: 48px;

    font-weight: 700;

}



h2 {

    /* font-size: 40px;

    color: var(--secondary);

    margin-bottom: 25px;

    z-index: 99; */



}



h3 {

    font-size: 24px;

    font-weight: 500;

    margin-bottom: 10px;

}



h4 {

    font-size: 22px;

}



h5 {

    font-size: 20px;

}



h6 {

    font-size: 18px;

}



p {

    font-size: 16px;

    font-weight: 400;

    color: var(--light);

    line-height: 24px;

}



a {

    /* font-size: 17px; */

    color: var(--dark);

    font-weight: 400;

    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: 500;

}



.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: 700;

    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: 36px;

    font-weight: 600;

    color: var(--dark);

    margin-bottom: 15px;

    /* text-transform: capitalize; */

    /* line-height: normal; */

}

.section-sub-title {

  display: block;

  font-size: 17px;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: var(--light1);

  margin-bottom: 12px;

  font-weight: 400;

  padding-left: 40px;

  position: relative;

}

.section-sub-title::before {

  content: "";

  width: 35px;

  height: 3px;

  background-color: var(--primary);

  position: absolute;

  top: 50%;

  left: 0;

}

.learn-more {

    background-color: var(--primary);

    padding: 10px 20px;

    border-radius: 15px;

    font-weight: 600 !important;

    color: white;

    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;

}



.learn-more:hover {

    color: var(--secondary);

}

.learn-more-white{

    background-color: white;

    color: var(--primary);

}

.read-more i{

    padding-left: 7px;

}

.read-more {

    font-weight: 600 !important;

    color: var(--secondary);

    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(--primary);

}

/************************ Header************************/

header {

    z-index: 999;

    position: relative;

    /* padding: 10px 50px; */

    top: 0;

    left: 0;

    right: 0;

    color: white;

    /* background: white; */

}

.main-menu-sec, .top-bar {

    padding: 5px 50px;
}

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

/* .top-bar ul li:nth-child(3), .top-bar ul li:nth-child(4){

  display: none;

 } */
.top-bar ul{

    gap: 20px;

    align-items: center;

    margin-bottom: 0;
    justify-content: end;

}
 .top-bar a {

    color: white;

    font-weight: 400;

    font-size: 15px;

}
.top-bar a:hover {

    /* color: var(--secondary) !important; */
    opacity: 0.8;

}

.top-bar i {

    padding-right: 10px;

    font-size: 18px;

    color: white;

}



.top-bar a:hover i {

    /* color: var(--secondary) !important; */
    opacity: 0.8;

}
.contact-top {

    display: flex;

    justify-content: end;

    align-items: center;

    /* padding: 3px 50px; */

}



.contact-top ul{

    gap: 20px;

    align-items: center;

    margin-bottom: 0;

}



.contact-top a {

    color: white;

    font-weight: 400;

    font-size: 15px;

    padding: 10px 10px;
    border-radius: 5px;

}

.contact-top li a{
    background-color: var(--secondary);
}

/* .contact-top li:first-child a{
    background-color: var(--secondary);
}

.contact-top li:nth-child(2) a{
    background-color: var(--primary);
} */

.contact-top i{
        color: white;
        padding-right: 10px;

    font-size: 18px;

}
.contact-top a:hover {

    /* color: var(--primary) !important; */
    opacity: 0.8;

}


/* .contact-top a:hover i {

    color: var(--primary) !important;

} */





/* .contact-top  i.fa-user{

    background-color: white;


    padding: 7px;

    border-radius: 50%;

    margin-right: 6px;

    font-size: 15px;

} */

/* .contact-top  i.fa-user:hover{

    color: #ffffffc4  !important;

} */
/* 
.contact-top li:nth-child(3) a:hover i, .contact-top li:nth-child(4) a:hover i{

    color: #ffffffc4  !important;

} */

/* .contact-top a i.fa-user:hover i {

    color: white !important;

} */

/* ---------------------------- */

.logo {

    padding: 0;

}



.logo img {

    /* height: auto; */
    height: 90px;

    width: auto;

    margin-bottom: 0;

    border-radius: 0px;

}



/* ---------------------------- */



header ul li {

    list-style: none;

}





nav ul li {

    list-style: none;

}



nav ul {

    margin-bottom: 0;

    padding: 0px;

}







nav ul li.active a {

    /* color: var(--primary); */

}



.custom-nav ul li a:hover {

    /* color: var(--secondary) !important; */

    opacity: 0.6;

}









/* custom nav */

/* ======================================================================= */

.custom-nav a {

    font-size: 16px;

    color: white;

    /* text-transform: capitalize; */

    display: flex;

    align-items: center;

    gap: 5px;

    line-height: normal;

    font-weight: 400;

}



.custom-nav .submenu {

    position: absolute;

    display: block;

    background: #fff;

    z-index: 9;

    box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);

    top: 60px;

    border-radius: 5px;

    opacity: 0;

    pointer-events: none;

    /* top: 35px; */

    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 .navbar {

    gap: 25px;

}



.custom-nav .navbar li {

    position: relative;

}



.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 .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 a {

    display: flex;

    align-items: center;

    gap: 5px;

    line-height: normal;

} */



.custom-nav .navbar .submenu a {

    padding: 8px 20px;

    width: 100%;

    display: flex;

    align-items: center;

    gap: 5px;

    white-space: nowrap;

}





nav.custom-nav {

    display: flex;

    justify-content: center;

    /* 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;

}



.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;

}





/************************ Banner ************************/

.banner {

    padding: 0px;

    position: relative;

    /* height: calc(100vh - 120px); */

    height: 90vh;

    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: 500;

}



/************************ Announcement ************************/



.announcements{

    position: fixed;

    top: 50%;

    right: -80px;

    /* justify-content: center;

    align-items: center; */

    background: var(--secondary);

    color: white;

    padding: 5px 10px;

    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;



    z-index: 999;

}





.btn-announcement{

    background: none;

    border: none;

    font-size: 17px;

    font-weight: 400;

    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;

}



.announcements:hover{

    color: white;

    background-color: var(--primary);

}

.btn-announcement i{

    padding: 0px 10px;

}



/************************ Scroll News ************************/

.scroll-news{

    padding: 0;

}

.news-scroll{

    padding-left: 0;



}

.news-updates-title{

    padding: 10px 10px;

    min-width: 175px;

}

.scroll-news h6{

    font-size: 18px;

    /* font-weight: 600; */

    margin-bottom: 0;

}



.news-updates-content{

    display: flex;

    padding: 5px 10px;

    width: 100%;

    overflow: hidden;

    white-space: nowrap;

    box-sizing: border-box;

    align-items: center;

}

.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: 14px;

    border-right: 3px solid var(--secondary);

}





/************************ Welcome ************************/



  /* ----------- */

  .btn-read-more {

   position: relative;

    display: inline-block;

    overflow: hidden;

    z-index: 1;

    color: #fff;

    background-color: var(--primary);

    border: none;

    font-weight: 400;

    /* width: 100%; */

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 20px;

    border-radius: 5px;

    padding: 8px 20px;

    min-width: 150px;

 }

 .btn-read-more:before {

   content: "";

   position: absolute;

   top: 0;

   left: 0;

   right: 0;

   bottom: 0;

   background-color: var(--secondary);

   transform: scaleX(0);

   transform-origin: 0 50%;

   transition-property: transform;

   transition-duration: 2s;

   transition-timing-function: ease-out;

   z-index: -1;

 }

 .btn-read-more:hover {

   color: #fff;

 }

 .btn-read-more:hover:before {

   transform: scaleX(1);

   transition-timing-function: cubic-bezier(0.45, 1.64, 0.47, 0.66);

 }





   .btn-read-more-white {

    color: var(--secondary);

    background-color: white;

 }

 .btn-read-more:before {

   background-color: var(--secondary);

 }

 .btn-read-more:hover {

   color: white;

 }



/* ---------------------------------------------------------------------------- */

 .welcome{

    position: relative;

 }

 .welcome1{

    position: relative;

    padding-top: 40px;

    padding-bottom: 30px;

 }

.welcome1::before{

    position: absolute;

    height: 400px;

    width: 500px;

    border: 10px solid var(--primary); 

    left: 0;

    top: 0px;

    content: '';

    box-sizing: border-box;

    border-radius: 5px;

}

.welcome1 img{

    height: 320px;

    max-width: 520px;

    object-fit: cover;

    object-position: center;

    z-index: 9;

    position: relative;

    left: 40px;

    margin: 0;

}

.welcome p{

    display: -webkit-box;

    -webkit-box-orient: vertical;

    -webkit-line-clamp: 5;

    overflow: hidden;

}

.vision{

        position: relative;

        padding: 30px;

        margin-bottom: 20px;

        border: 10px solid var(--primary);

        padding: 20px;

        min-height: 190px;

    }

    .vision1{

        /* border: 1px solid #A2A2A2;

        padding: 20px;

        min-height: 170px; */



    }

    .vision img{

        height: 95px;

        margin: 0;

    }

    .vision p{

        display: -webkit-box;

    -webkit-box-orient: vertical;

    -webkit-line-clamp: 3;

    overflow: hidden;

    }

/************************ Academics ************************/

.academics{

    background-image: url(../img/programmes-bg.jpg);

    background-position: center;

    background-size: cover;

}

.section-title-view-all{

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 20px;

}

.section-title-view-all .section-title{

    margin: 0;

}





/* .academics{

    position: relative;

} */



.academics .item {

    border-radius: 5px;

    background-color: white;

    padding: 20px;

}



.academics img {

    height: 230px;

    object-fit: cover;

    background-position: center;

    object-fit: cover;

    object-position: top;

    border-radius: 5px;

    position: relative;

}

.academics-info {

    padding: 5px 5px;

}



.academics h5{

    font-weight: 500;

    display: -webkit-box;

    -webkit-box-orient: vertical;

    -webkit-line-clamp: 2;

    overflow: hidden;

}



.academics .section-sub-title{

    color: white;

}



.academics .section-sub-title::before{

    background-color: white;

}



/************************ Principal Message, Achievements ************************/



.principal1{

    padding: 25px 15px;

    min-height: 440px;

    margin-bottom: 20px;

}

.principal h3{

    font-size: 24px;

}

.principal img {

    margin-bottom: 10px;

    height: 150px;

    width: 135px;

    object-fit: cover;

    background-position: top;

}

.principal h5 {

   font-size: 18px;

}

.principal h6{

    color: var(--light);

    font-family: "Montserrat", sans-serif;

    font-size: 18px;

}

.principal button{

    margin: 0 auto;

}

.achievement-single img{

    height: 210px;

    width: auto;

    object-fit: cover;

    object-position: top;

}



.achievements-item{

    /* padding: 40px 20px; */

}

.achievements img{

    height: 210px;

    width: auto !important;

    margin: 0 auto;

    display: block;

    object-fit: cover;

    object-position: top;

}

/************************ News & Events ************************/



.news-main{

    position: relative;

}



.news-main .item {

    border-radius: 5px;

    /* background-color: #EAF7FD;

    padding: 20px; */

}



.news-main img {

    height: 230px;

    object-fit: cover;

    background-position: center;

    object-fit: cover;

    object-position: top;

    border-radius: 5px;

    position: relative;

}

.news-info {

    padding: 15px 5px;

}

.news-info h6{

    font-size: 16px;

    color: var(--secondary);

    font-weight: 600;

}

.news-info h5{

    font-weight: 500;

    display: -webkit-box;

    -webkit-box-orient: vertical;

    -webkit-line-clamp: 2;

    overflow: hidden;

    margin: 15px 0;

}



.news-info p {

    display: -webkit-box;

    -webkit-box-orient: vertical;

    -webkit-line-clamp: 3;

    overflow: hidden;

}

.news-info a{

    /* font-size: 15px; */

}

.news-info a:hover{

    color: var(--primary) !important;

    letter-spacing: 1px;

}

 .news-info i{

    padding-left: 5px;

 }



/* -------------------Button Hover Effect-------------------- */



 /* * {

    box-sizing: border-box;

    margin: 0; padding: 0;

  }



  :active, :hover, :focus {

    outline: 0!important;

    outline-offset: 0;

  } */

  /* ::before,

  ::after {

    position: absolute;

    content: "";

  } */

  .btn-holy {

    position: relative;

    display: inline-block;

    width: auto; height: auto;

    background-color: transparent;

    border: none;

    cursor: pointer;

    /* margin: 0px 25px 15px; */

    /* min-width: 150px; */

  }

    .btn-holy span {         

        position: relative;

        display: inline-block;

        /* font-size: 14px; */

        font-weight: bold;

        letter-spacing: 2px;

        top: 0;

        left: 0;

        width: 100%;

        padding: 10px 15px;

        transition: 0.3s;

        min-width: 150px;

        text-transform: capitalize;

        border-radius: 30px;

    }

  

  /*--- btn-3 ---*/

  .btn-3 {

    padding: 5px;

  }

  .btn-3 span {

    color: rgb(255, 255, 255);

    background-color:var(--primary);

  }

  .btn-3::before,

  .btn-3::after {

    background: transparent;

    z-index: 2;

  }

  

  /* 13. hover-border-3 */

  .btn-holy.hover-border-3::before,

  .btn-holy.hover-border-3::after {

    width: 0%; height: 0%;

    opacity: 0;

    transition: width 0.2s 0.15s linear, height 0.15s linear, opacity 0s 0.35s;

  }

  .btn-holy.hover-border-3::before {

    position: absolute;

    content: "";

    top: 0; right: 0;

    border-top: 1px solid var(--primary);

    border-left: 1px solid var(--primary);

    border-radius: 30px;

  }

  .btn-holy.hover-border-3::after {

    position: absolute;

    content: "";

    bottom: 0; left: 0;

    border-bottom: 1px solid var(--primary);

    border-right: 1px solid var(--primary);

    border-radius: 30px;

  }

  .btn-holy.hover-border-3:hover::before,

  .btn-holy.hover-border-3:hover::after {

    width: 100%; height: 99%;

    opacity: 1;

    transition: width 0.2s linear, height 0.15s 0.2s linear, opacity 0s;   

  }

 





/* -------------------image Hover Effect-------------------- */



  

.column {

	/* display: inline-block; */

	text-align: center;

}



figure {

	overflow: hidden;

    border-radius: 20px;

}

.column img {

	display: block;

	width: 100%;

	height: 230px;

}



/*Zoom In*/

.column#zoomIn img {

	-webkit-transform: scale(1);

	transform: scale(1);

	-webkit-transition: .3s ease-in-out;

	transition: .3s ease-in-out;

}

.column#zoomIn:hover img {

	-webkit-transform: scale(1.3);

	transform: scale(1.3);

}







/************************ Owl Carousel - carousel controls - All ************************/



.news-carousel .owl-dots, .achievements-carousel .owl-dots{

    display: flex !important;

    gap: 7px;

    justify-content: center;

    margin-top: 20px;

}

.news-carousel .owl-dot span, .achievements-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, .achievements-carousel .owl-dot.active span{

    background-color: var(--primary);

    opacity: 1;

}



/************************ Facilities ************************/

/* .facilities{

    position: relative;

} */

.facilities{

    background-image: url(../img/programmes-bg.jpg);

    background-position: center;

    background-size: cover;

}

.facilities figure{

    margin: 0;

}





.facilities .item {

    border-radius: 5px;

    background-color: white;

    padding: 20px;

}



.facilities img {

    height: 230px;

    object-fit: cover;

    background-position: center;

    object-fit: cover;

    object-position: top;

    border-radius: 5px;

    position: relative;

}

.facilities-info {

    padding: 5px 5px;

}



.facilities h5{

    font-weight: 500;

    display: -webkit-box;

    -webkit-box-orient: vertical;

    -webkit-line-clamp: 2;

    overflow: hidden;

}



.facilities .section-sub-title{

    color: white;

}



.facilities .section-sub-title::before{

    background-color: white;

}

/************************ Activities ************************/



.activities-carousel{

    /* margin-top: 25px; */

}

.activities-item{

    border: 10px solid var(--primary);

    padding: 20px;

}

.activities-content{

    background-image: url(../img/visionaries-bg.jpg);

    background-position: center;

    background-size: cover;

    padding: 30px;

    /* height: 70%; */

}

.activities img{

    height: 100%;

    object-fit: cover;

    background-position: center;

    height: 280px;

    margin: 0;

}

.activities p {

    display: -webkit-box;

    -webkit-box-orient: vertical;

    -webkit-line-clamp: 4;

    overflow: hidden;

}

.activities .read-more:hover{

    color: var(--primary) !important;

}

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

.gallery-grid-container {

    display: grid;

    gap: 15px;

    /* grid-template-areas: 

        'photo1 photo2 photo3' 

        'photo1 photo4 photo3'; */



        grid-template-areas:

        'photo1 photo2 photo3 photo3'

        'photo1 photo4 photo3 photo3';

    grid-template-columns: 33% 33% 31%;

}

.photos{

    position: relative;

    border-radius: 5px;

    position: relative;

  }

  .photos img{

    min-height: 220px;

    max-height: 240px;

    width: 100%;

    background-size: cover;

    background-position: center;

    object-fit: cover;

    object-position: top;

    margin: 0;

    border-radius: 20px;

  }



 .photos:first-child{

    grid-area: photo1;

  }

  .photos:nth-child(2){

    grid-area: photo2;

  }

  .photos:nth-child(3){

    grid-area: photo3;

  }

  .photos:last-child{

    grid-area: photo4;

  } 

  

  .photos:first-child img, .photos:nth-child(3) img{

    height: 100%;

    width: auto;

    min-height: 490px;

    max-height: fit-content;

  }

  

/* ------------Image Hover Effects------------- */



.wg-box-content {

    position: relative;

    width: 99%;

    /* max-width: 400px; */

    /* margin: auto; */

    overflow: hidden;

  }

  

  .wg-box-content .wg-box-content-overlay {

    background: rgba(45, 170, 226, 0.7);

    position: absolute;

    height: 100%;

    width: 100%;

    left: 0;

    top: 0;

    bottom: 0;

    right: 0;

    border-radius: 20px;

    opacity: 0;

    -webkit-transition: all 0.4s ease-in-out 0s;

    -moz-transition: all 0.4s ease-in-out 0s;

    transition: all 0.4s ease-in-out 0s;

  }

  

  .wg-box-content:hover .wg-box-content-overlay{

    opacity: 1;

  }

  

  .wg-box-content-image{

    width: 100%;

  }

  

  .wg-box-content-details {

    position: absolute;

    text-align: center;

    padding-left: 1em;

    padding-right: 1em;

    width: 100%;

    top: 50%;

    left: 50%;

    opacity: 0;

    -webkit-transform: translate(-50%, -50%);

    -moz-transform: translate(-50%, -50%);

    transform: translate(-50%, -50%);

    -webkit-transition: all 0.3s ease-in-out 0s;

    -moz-transition: all 0.3s ease-in-out 0s;

    transition: all 0.3s ease-in-out 0s;

  }

  

  .wg-box-content:hover .wg-box-content-details{

    top: 50%;

    left: 50%;

    opacity: 1;

  }

  

  .wg-box-content-details h3{

    color: #fff;

    font-weight: 600;

  }

  

  .wg-box-content-details p{

    color: #fff;

    font-size: 0.8em;

  }

  

  .wg-box-fadeIn-bottom{

    top: 80%;

  }



/************************ Footer ************************/

footer {

    background-color:#052B43;

    /* color: white; */

    padding: 45px 0px 20px;

    position: relative;

    z-index: 99;

    background-position: center;

    background-repeat: no-repeat;

    background-size: cover;

}



footer h5{

    font-size: 18px;

    font-weight: 600;

    color: white;

    margin-bottom: 20px;

    text-transform: capitalize;

}

.address h5{

    margin-bottom: 8px;

}

/* footer h6{

    color: white;

    font-weight: 700;

    margin-bottom: 0;

} */

footer p{

    margin-bottom: 0;

}



footer p,

footer a,

footer ul li {

    color: #ffffffc2;

    font-size: 15px;

    font-weight: 400;



}

footer .footer-links ul{

    column-count: 1;

}

footer .imp-links ul{

    column-count: 1;

}



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: var(--primary);

    /* 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 i {

    font-size: 17px;

    color: var(--primary);

}



footer a:hover i{

    color: var(--secondary);

}





.address {

    margin-bottom: 20px;

    align-items: baseline;

}



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;

}

.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;

}

/************************ VDO Banner ************************/
.video-banner-section{
    position: relative;
    height: 75vh;
    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;
}
/* @media (max-width:1600px) {
     .video-banner-section{
    height: 65vh;
    }
} */
@media (max-width:1400px) {
     .video-banner-section{
    height: 75vh;
    }
}
@media (max-width:1200px) {
     .video-banner-section{
    height: 75vh;
    }
}
@media (max-width:992px) {
    .video-banner-section{
    height: 60vh;
    }
}
@media (max-width:768px) {
    .video-banner-section{
    height: 50vh;
    }
}
@media (max-width:576px) {
    .video-banner-section{
    height: 30vh;
    }
}
@media (max-width:400px) {
    .video-banner-section{
    height: 26vh;
    }
}
/* 
@media (max-width:450px) {
    .video-banner-section{
    height: 20vh;
    }
} */






