/********** CSS **********/
:root {
    --primary: #002B59;
    --secondary: #BA9C56;
    --dark: #333333;
    --light: #5C5C5C;
    --bg-light: #F8F8F8;
}

/* @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;
}
/************************ Cursor, Page Transition ************************/
:root {
    /* --primary: #9C27B0;
    --primary-light: #CE93D8;
    --primary-dark: #6A1B9A;
    --secondary: #2196F3;
    --secondary-light: #90CAF9;
    --secondary-dark: #0D47A1;
    --text-dark: #212121;
    --text-light: #F5F5F5;
    --background: #FAFAFA;
    --surface: #FFFFFF; */
    /* --border-radius: 12px; */
    --transition-speed: 0.4s;
    --transition-func: cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}


*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


@keyframes pageTransitionIn {
    0% { transform: scaleX(1); transform-origin: right; }
    100% { transform: scaleX(0); transform-origin: right; }
}

@keyframes pageTransitionOut {
    0% { transform: scaleX(0); transform-origin: left; }
    100% { transform: scaleX(1); transform-origin: left; }
}



body {
    /* min-height: 100vh; */
    overflow-x: hidden;
    transition: background-color var(--transition-speed) var(--transition-func);
    opacity: 0;
    animation: fadeIn 1s var(--transition-func) forwards 0.5s;
    /*cursor: none;*/
}
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
}

.cursor-follower {
    position: fixed;
    width: 25px;
    height: 25px;
    border: 1px solid var(--secondary);
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 9998;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease-out;
}

.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(45deg, var(--primary), var(--secondary)); */
    background: linear-gradient(45deg, #002955, #c5e1ff40);
    z-index: 10000;
    transform: scaleX(0);
    transform-origin: left;
}

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

section {
    padding: 40px 0px;
}

.text-primary {
    color: var(--primary) !important;
}
.text-secondary {
    color: var(--secondary) !important;
}
.text-secondary:hover {
    color: var(--primary) !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: 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: 28px;
}

a {
    /* font-size: 17px; */
    color: var(--dark);
    font-weight: 600;
    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(--primary);
}

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

/* .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
} */


/* 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: 40px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 25px;
    /* text-transform: capitalize; */
    line-height: normal;
}

.section-sub-title {
    font-size: 21px;
    font-weight: 500;
    color: var(--secondary);
    /* margin-bottom: 10px; */
    text-transform: uppercase;
}

.learn-more {
    background-color: var(--primary);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 400 !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::after {
    content: "→";
    margin-left: 8px;
    font-weight: bold;
  } */
.learn-more:hover {
    color: var(--secondary);
    letter-spacing: 2px;
}
.read-more {
    font-weight: 500 !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);
    letter-spacing: 2px;
}
.learn-more-white{
    background-color: white;
    color: var(--primary);
}
.read-more i{
    padding-left: 7px;
}
/************************ Header************************/
header {
    z-index: 999;
    position: absolute;
    padding: 20px 50px;
    top: 0;
    left: 0;
    right: 0;
    color: white;
    /* background: white; */

    align-items: center;
    display: flex;
    justify-content: space-between;
    /* min-height: 70px; */

}

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

.contact-top {
    display: flex;
    justify-content: end;
    align-items: center;
}

.contact-top ul {
    gap: 20px;
    align-items: center;
    margin-bottom: 5px;
}

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

.contact-top a {
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
}

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

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

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

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

.logo img {
    height: 60px;
    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;
}

.main-menu {
    padding: 10px 0px 5px;
}

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

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




/* 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: 500;
}

.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: 10px 30px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}


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

.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 {
    position: relative;
    height: 95vh;
    width: 100vw;
    overflow: hidden;
    display: flex;
    align-items: center;
}
section.banner::before {
    content: "";
    width: 100%;
    height: 22%;
    background-color: rgb(137 132 132 / 0%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    background-image: linear-gradient(to bottom, #fff8f8, #b5b5b500);
}
.banner video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

.banner video::-webkit-media-controls {
    display: none !important;
}

/* section.banner img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
} 
.banner .overlay {
    background: linear-gradient(to top, rgb(0 0 0 / 67%), rgb(0 0 0 / 0%));
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}*/

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


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

.banner_caption {
    position: absolute;
    /* bottom: 30%;
    width: 60%;
    text-align: left;
    padding: 25px 100px !important;
    background-color: #1a13030d; */
  
    left: 100px;
    max-width: 800px;
    z-index: 9999;
    bottom: 120px;
  }
  .banner .banner_caption h1 {
      position: relative;
      display: block;
      /* align-items: center; */
      color: #fff;
      /* z-index: 999; */
      font-weight: 400;
      /* text-shadow: 2px 2px 2px #a7aaae; */
      font-size: 65px;
      line-height: 65px;
      letter-spacing: 0;
      margin-bottom: 25px;
  }
  .banner .banner_caption h1 span {
		display: inline-block;
		color: #bf8d18;
		font-weight: 600;
		margin-top: 10px;
	}
  .banner .banner_caption h3 {
    color: #fff;
    font-size: 45px;
    /* text-shadow: 2px 2px 2px #a7aaae; */
    font-weight: 400;
    margin-bottom: 20px;
  }
  .banner .banner_caption a {
    /* border: 1px solid #be9f56;  */
    padding: 0px 5px;
    /* margin-top: 20px; */
    /* box-shadow: 2px 2px 3px #888282; */
    border-radius: 5px;
    /* background-color: #be9f56; */
    font-size: 25px;
    font-weight: 300;
    color: var(--secondary);
    /* border-bottom: 1px solid var(--secondary); */
    display: flex;
    align-items: center;
  }
  .banner .banner_caption a i{
    padding-left: 12px;
  }
/************************ Scroll News ************************/
.scroll-news{
    padding: 0;
}
.news-scroll{
    padding-left: 0;

}
.news-updates-title{
    padding: 10px 10px;
    min-width: 160px;
}
.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 {
    color: white;
    display: inline-block;
    padding: 0px 20px;
    margin-bottom: 0px !important;
    font-size: 14px;
    border-right: 3px solid var(--secondary);
}
.news-updates-content p:last-child {
    border-right: 0;
}


/************************ Welcome ************************/
.welcome img{
    /*height: 370px;*/
	width: 100%;
}

/************************ News & Events ************************/
.section-title-view-all{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.projects-carousel .slick-slide {
    margin: 0 10px; 
  }
section.projects .slick-track {
    display: flex;
}
section.projects .slick-slide {
    height: inherit;
}
.projects .item {
    border-radius: 3px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06); */
    padding: 25px 25px;
}
.projects .item h3 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
	min-height: 80px;
}
.projects .item h5 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
	color: #cb9612 !important;
}

.projects-info {
    padding: 0 8px 0;
}
.projects h4{
    font-family: "Roboto Flex", sans-serif;
    position: absolute;
    top: 0px;
    color: var(--dark);
    opacity: 0.07;
    font-size: 140px;
}
.projects-info h5{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-weight: 400;
	min-height:50px;
}

.projects-info p {
   /* display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;*/
	margin-bottom: 0;
}
.projects-info a{
    font-size: 15px;
}
/* .projects-info a:hover{
    color: var(--secondary) !important;
} */
.projects img {
    /*height: 230px;*/
    object-fit: cover;
    background-position: center;
    object-fit: cover;
    object-position: top;
    position: relative;
}
 .projects-info i{
    padding-left: 5px;
 }
 .projects h6{
    font-size: 16px;
    position: absolute;
    bottom: 30px;
    background-color: var(--secondary);
    color: white;
    padding: 10px 15px;
    border-radius: 3px;
    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;
}
.projects h6 a{
    color: white;
}
.projects h6:hover{
    background-color: var(--primary);
    letter-spacing: 1px;
}
/************************ Vision & Mission ************************/
.vision-mission{
        position: relative;
        background-image: url(../img/vision-mission-bg.jpg);
        /* height: 400px; */
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
	/*.vision-mission::before {
		content: "";
		position: absolute;
		width: 100%;
		height: 100%;
		background-color: #00000080;
		top: 0;
	}*/
    /* .vision-mission::before{
        background:rgba(179, 0, 0, 0.8);
        content: '';
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        position: absolute;
    } */
    .vision{
        position: relative;
        padding: 20px;
        /*margin-bottom: 20px;*/
		box-shadow: 0px 0px 2px #d1a745;
		min-height: 205px;
		border-radius: 15px;
		background-color: #362f18b3;
		text-shadow: 5px 5px 20px #684300;
		font-weight: 600 !important;
		height: 100%;
		margin-bottom: 0px;
		border: 5px solid #dfcdaf;
		background-image: linear-gradient(to bottom, #c9961deb, #c5b4b491);
    }
    .vision1{
        

    }
    .vision img{
		    height: 150px;
			border-radius: 50%;
			box-shadow: 0px 0px 8px #706e67;
			background-color: #2612129c;
			margin-right: 20px;
			background-image: url(../img/vmImgBkg.jpg);
			background-size: cover;
			background-position: bottom;
    }
	.vision h3 {
		font-size: 35px;
		font-weight: 600;
		text-shadow: 2px 2px 8px #000 !important;
		color: #ffffff;
	}
    .vision p{
        color: #ffffff;
		font-size: 18px;
		text-shadow: 2px 2px 8px #000 !important;
		text-align: left !important;
    }
	.rotateTag{
		transition: all 3.5s;
		transform: rotate3d(1, 1, 1, 63deg);
	}
	.rotateTag.animateRotate{
		transform: rotate3d(1, 1, 1, 363deg);
	}



/************************ Our Team ************************/
.slick-slide {
    margin: 0px 7px; /* Adjust spacing as needed */
}
.team{

}
.team .item{
    display: flex !important;
    justify-content: center;
    background-color: white !important;
    min-height: 400px;
    padding: 20px;
}
.team img{
    position: relative;
    height: 280px;
    background-size: cover;
    object-fit: cover;
    object-position: top;
    /* background-position: center; */
    /* min-width: 295px; */
}
.team-info{
    position: absolute;
    bottom: 0px;
    padding: 7px 5px;
    /* width: 85%; */
    border-radius: 5px;
    width: 270px;
    min-height: 100px;
}
.team-info a:hover{
    color: var(--secondary) !important;
}
.team h5{
    text-transform: capitalize;
}
.slick-prev, .slick-next{
    background: transparent !important;
    top: 40%;
}
.slick-prev:before, .slick-next:before{
    color: var(--primary);
}
.slick-prev:before, .slick-next:before{ 
    position: absolute;
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    /* vertical-align: middle; */
    font-weight: 900;
    background: var(--secondary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slick-prev:before{  
    content: "\f053";
}
.slick-next:before{   
    content: "\f054";
}
.slick-prev {
    /* left: -50px; */
    z-index: 9;
}
/************************ Gallery ************************/
.gallery-grid-container {
    display: grid;
    gap: 20px;
    grid-template-areas: 
        'photo1 photo2 photo3' 
        'photo1 photo4 photo5';
}
.photos{
    position: relative;
    border-radius: 5px;
    position: relative;
  }
  .photos img{
    height: 300px;
    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:nth-child(4){
    grid-area: photo4;
    
  }
  .photos:last-child{
    grid-area: photo5;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  } 
  .photos:last-child .learn-more{
    position: absolute;
  }
  .photos:first-child img{
    height: 100%;
    width: auto;
  }
  /* .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, .photos:first-child a h3{
    color: white;
    font-size: 35px;
    margin: 8px 0;
}
.photos:first-child a:hover, .photos:first-child a:hover h3{
    color: var(--secondary);
}
.photos:first-child a i{
    font-size: 45px;
}
.photos:first-child a img{
    height:50px !important;
    width: 50px !important;
}
.photos:first-child a img:hover{
    opacity: 0.5;
} */
/************************ Videos ************************/
/* .videos .owl-item > div {
    cursor: pointer;
    margin: 7% 1%;
    transition: margin 0.4s ease;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  } */
  /* .videos .owl-item.center > div {
    cursor: auto;
    margin: 0;
  } */
  .videos img{
    height: 270px;
    object-fit: cover;
    object-position: top;
    position: relative;
  }
  .play-button{
    position: absolute;
    justify-content: center;
    display: flex;
    align-items: center;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
    border: none;
  }
  .play-button img{
    height: 55px;
    width: 55px !important;
    opacity: 0.8;
    margin: 0;
  }
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.animate-on-scroll.fadeIn {
    opacity: 1;
    transform: translateY(0);
}
.videos .owl-nav{
    display: flex !important;
}


.vdo-carousel .owl-nav {
    display: flex !important;
        bottom: -30px;
        /*position: absolute;*/
        right: auto;
        left: auto;
        justify-content: center; 
        align-items: center; 
        text-align: center;
        gap: 5px;
  }
  .vdo-carousel .owl-nav .owl-prev, .vdo-carousel .owl-nav .owl-next{
      background: var(--secondary);
      width: 35px;
      height: 35px;
      border-radius: 100%;
      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;
  }
  .vdo-carousel .owl-nav i {
    color: white;
  }
  .vdo-carousel .owl-nav .owl-prev:hover, .vdo-carousel .owl-nav .owl-next:hover{
      background-color: var(--primary);
  }
  .vdo-carousel .owl-nav .owl-prev:hover i, .vdo-carousel .owl-nav .owl-next:hover i{
      color: white !important;
  }
  .vdo .owl-nav .owl-prev {
    position: absolute;
    left: -40px;
  }
/************************ Advisory ************************/
.advisory{

}
.advisory{
    position: relative;
    background-image: url(../img/banner1.jpg);
    /* height: 400px; */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.advisory::before{
    /* opacity: 0.9; */
    background:rgba(0, 43, 89, 0.75);
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
}
/************************ FAQ, Admission ************************/

.accordion h4{
    font-size: 19px;
    font-weight: 600;
    margin: 0;
}
.accordion-button:not(.collapsed) {
    background: none;
    box-shadow: none !important;
    color: var(--primary) !important;
    padding: 10px 20px;
}
.accordion-button:focus{
    box-shadow: none !important;
}
.accordion-item{
    margin-bottom: 20px;
    /* border-radius: 5px; */
    border: 1px solid #DADADA !important;
    border-top: 1px solid #DADADA !important;
}
.accordion-body{
    padding: 0px 20px;
}

.admission{
    background-image: url(../img/admission-bg.jpg);
    background-position: center;
    background-size: cover;
    height: 100%;
    border-radius: 5px;
	padding-bottom: 30px;
}
.admission h3{
    font-size: 30px;
    margin-bottom: 30px;
    line-height: 40px;
    padding: 20px 30px;
}
.admission .learn-more-white{
    display: inline-block;
    font-size: 18px;
    background-color: #b99b55;
    color: white;
    padding: 10px 15px;
    border-radius: 3px;
    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;
    font-weight: 600 !important;
}
.admission .learn-more-white:hover{
    background-color: #e7a713;
    letter-spacing: 1px;
}
.faq li {
    color: var(--light);
    font-size: 16px;
}
.faq .accordion {
    text-transform: none;
}
/************************ Recruiters ************************/
.recruiters .item{
    padding: 10px;
    margin-left: 20px;
}
.recruiters .item a{
	width: 100%;
}
.recruiters img{
    margin: 0 auto;
    border-radius: 0;
}
/************************ Footer ************************/
footer {
    background-color: #242424;
    color: white;
    padding: 60px 0px 20px;
    position: relative;
    z-index: 99;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
/* footer::before{
    opacity: 0.95;
    background: #242424;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
} */
.footer-logo-sec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 25px;
}
footer .footer-logo img {
    height: 50px;
    position: relative;
    z-index: 9999;
}
footer .social{
    position: relative;
    justify-content: end;
}
footer h5{
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    text-transform: capitalize;
}

footer p,
footer a,
footer ul li {
    color: white;
}

footer .social ul{
    margin: 0;
    gap: 10px;
}

footer .social ul li a{
    background: var(--secondary);
    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;
    font-weight: 400;

}
footer p, footer a{
    font-size: 15px;
    font-weight: 400;
}

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

footer .social ul li i {
    font-size: 17px;
}
.address {
    margin-bottom: 10px;
}

/* .address i {
    color: white;
    background-color: var(--primary);
    text-align: center;
    line-height: 27px;
} */
footer .address i{
    background: var(--primary);
    border-radius: 5px;
    color: var(--secondary);
    /* 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: 15px;
}

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

/************************ ************************/
.cntct-hdr{
    justify-content: end !important;
}
header .contact-btn .learn-more{
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}
header .contact-btn .learn-more:hover{
    color: var(--secondary);
}


.news-updates-content p a {
  color: white;
  font-size: 14px;
  font-weight: normal;
}
.owl-item.active .play-button:hover {
  /* background-color: #7D5B0C91; */
  /* top: 30px; */
}
section.videos .owl-item.active.center .play-button:hover {
  top: 0;
}
section.videos .play-button{
	width: 100%;
}
.faq {
    /* padding-left: 30px; */
}
.faq .accordion {
    background-color: inherit;
	padding: 0;
}
.faq .accordion:hover{
	background-color: inherit;
}
section.ctabox {
    position: relative;
    background-image: url(../img/admission-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0;
	overflow-x: hidden;
}
.cta_info {
    padding: 8% 6% 10% 15%;
    width: 100%;
}
.ctabox h3 {
    font-size: 4em;
	margin-bottom: 30px;
}
.ctabox h4 {
    font-weight: 700;
    font-size: 30px;
}
.ctabox ul {
    margin-left: 20px;
}
.ctabox li {
    line-height: 39px;
}
.ctabox p {
    color: #fff;
    font-size: 19px;
    line-height: 30px;
    margin-bottom: 20px;
}
.ctabox a {
    display: inline-block;
    margin-top: 30px;
	font-size: 16px;
    background-color: #b99b55;
    color: white;
    padding: 10px 15px;
    border-radius: 3px;
    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;
}
.ctabox a:hover {
    background-color: #e7a713;
    letter-spacing: 1px;
}
.cta_info {
    padding: 8% 10%;
    width: 100%;
}
.ctaimg {
    position: relative;
    display: inline-block;
    background-color: var(--lotech-white, #ffffff);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 28% 100%);
    width: 100%;
	height: 100%;
	transition: all 2.0s;
	transform: translate(100%, 0%);
}
.scrollFromRight{
	transform: translate(0%, 0%); 
}
.ctaimg img{
	width: 100%;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 25% 100%);
    margin-bottom: 0;
    min-height: 450px;
    border-radius: 0;
	height: 100%;
}

/*slick style*/

.slick-dots li button:before{
    color: #122b50 !important;
    font-size: 10px !important;
}
.slick-dots {
        bottom: -35px !important;
}

/* Photo Gallery Custom Style - START */
.fg-header {
    margin-bottom: 30px;
    border-bottom: 0 !important;
    border-top: 0 !important;
	display: none;
}
.fg-has-active .fg-header {
	display: flex;
}
.fg-header h2 {
    display: none;
}
.fg-header-active{
	text-align: center !important;
    border-top: 1px solid #012955;
    border-bottom: 1px solid #012955;
    padding: 5px 0;
    color: #be9f56;
    font-weight: 700;
}
span.fg-header-back {
    background-color: #012955;
    color: #fff;
	font-size: 20px;
	margin-right: 60px;
}
span.fg-header-back:hover {
    box-shadow: 0px 0px 5px #000;
    color: #be9f56;
}
/* Photo Gallery Custom Style - END */
/*Admin bar Custom CSS*/
div#wpadminbar {
    cursor: pointer;
    z-index: 999999;
}
.fadeUpTag {
  opacity: 0;
  transition: all 1.5s;
  transform: rotateY(180deg);
  transition: all 2.5s;
}

.fadeUpTag.visible {
  opacity: 1;
  transform: rotateY(0deg);
}
.zoomInTag {
  opacity: 0;
  transition: all 1.5s;
  transform: scale(0.0);
  transition: all 2.5s;
}

.zoomInTag.visible {
  opacity: 1;
  transform: scale(1.0);
}
.anim_head > div {
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(to left, rgba(var(--lotech-black-rgb, 14, 15, 17), 0.1) 50%, #002B59 50%);
  transition: all 1.0s;
  
}
.anim_subhead > div {
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(to left, rgba(var(--lotech-black-rgb, 14, 15, 17), 0.1) 50%, #BA9C56 50%);
  transition: all 1.0s;
  
}

@keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

.waves-block {
    z-index: 9999;
    position: absolute;
}
.waves {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border-radius: 100%;
  right: -50px;
  bottom: -50px;
  z-index: -1;
   -webkit-animation: waves 3s ease-in-out infinite;
  animation: waves 3s ease-in-out infinite;
}
button.play-button i {
    position: absolute;
    z-index: 999999;
    bottom: 53%;
    left: 42%;
    color: #e7c416;
    font-size: 30px;
}     
.wave-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.wave-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.wave-3 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
div.projects_bottom {
    color: #835d07;
    border-top: 1px dotted;
    padding-top: 5px;
    margin-top: 10px;
}
.fbx-modal {
    cursor: pointer;
}
.gallery span.fg-pile-cover-count {
    display: none;
}
.gallery .fg-pile-cover-content {
    width: 99%;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
}
.gallery span.fg-pile-cover-title {
    font-size: 24px;
    color: #87703d;
}
/* 
========================
      BUTTON ONE
========================
*/
.box-1 {
    text-align: left;
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
}
.box-1 span{
	display: inline-block;
    padding: 0;
    margin: 0 5px;
    visibility: visible;
    opacity: 1;
    min-width: 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
    color: #fff;
    background: #061c4e;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition-property: opacity,visibility;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
}
.box-1 span:hover{
	box-shadow: 0px 0px 8px #000;
}

.btn-one {
    color: #0a0909;
    transition: all 0.3s;
    position: relative;
    width: 200px;
    box-shadow: 2px 2px 8px #a7a39c;
    border: 0;
}
.btn.btn-one:hover {
    box-shadow: none;
}
.btn-one span {
  transition: all 0.3s;
}
.btn-one::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: all 0.3s;
    border-top-width: 1px;
    border-bottom-width: 1px;
    border-top-style: solid;
    border-bottom-style: solid;
    border-top-color: rgb(190 159 86);
    border-bottom-color: rgb(190 159 86);
    transform: scale(0.1, 1);
    background-color: rgb(52 14 14 / 10%);
}
.btn-one:hover span {
  letter-spacing: 1.3px;
}
.btn-one span{
	display: inline-block;
    padding: 0;
    margin: 0 5px;
    visibility: visible;
    opacity: 1;
    min-width: 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
    color: #fff;
    background: #061c4e;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition-property: opacity,visibility;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
}
.btn.btn-one:hover span {
    box-shadow: 0px 0px 8px #000;
}
.btn-one:hover::before {
    opacity: 1;
    transform: scale(1, 1);
}
.btn-one::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all 0.3s;
    background-color: rgb(52 14 14 / 10%);
}
.btn-one:hover::after {
  opacity: 0; 
  transform: scale(0.1, 1);
}