* {
padding: 0;
margin: 0;
box-sizing: border-box;
}

/* 247624 */
/* #298afa */
/* 1e75ba */
/* #ff3700 */
:root {
--primary-color: #1e75b9;
--secondary-color: #0056a0;
/* --secondary-color:#272660; */
--white-color: #ffffff;
--black-color: #000000;
--grey-color: #ededed;
}

.text-primary {
color: var(--primary-color)
}

.text-secondary {
color: var(--secondary-color)
}

.text-white {
color: var(--white-color)
}

.text-black {
color: var(--black-color)
}

.bg-primary {
background-color: var(--primary-color)
}

.bg-secondary {
background-color: var(--secondary-color)
}

.bg-white {
background-color: var(--white-color)
}

.bg-black {
background-color: var(--black-color)
}

.bg-grey {
background-color: var(--grey-color)
}


body {
font-size: 16px;
line-height: 1.5;
letter-spacing: 1px;
font-weight: 400;
font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
margin-bottom: 15px;
font-family: "Poppins", sans-serif;
font-weight: 600;
line-height: 1.2;
}

h1 {
font-size: 64px;
font-weight: 800;
}

h2 {
font-size: 40px;
font-weight: 700;
}

h3 {
font-size: 32px;
font-weight: 700;
}

h4 {
font-size: 28px;
font-weight: 600;
}

h5 {
font-size: 20px;
font-weight: 600;
}

h6 {
font-size: 18px;
font-weight: 600;
}

.font18 {
font-size: 18px;
}

p,
ul,
ol {
margin-bottom: 1.5rem;
}

p:last-child,
ol:last-child,
ul:last-child {
margin-bottom: 0;
}

code {
font: inherit;
position: relative;
overflow: hidden;
color: var(--primary-color)
}


ul.styled-list li:not(:last-child) {
margin-bottom: 18px;
}

ul.styled-list {
margin: 0;
padding: 0;
list-style-type: none;
}

ul.styled-list li {
padding-left: 30px;
position: relative;
}

ul.styled-list li:before {
content: "\f0a9";
font-family: "Font Awesome 6 Free";
position: absolute;
left: 0;
font-size: 18px;
font-weight: 900;
color: var(--primary-color);
}


@keyframes shine {
from {
left: -100%;
opacity: 0;
}

to {
left: 200%;
opacity: 0.6;
}
}


h6.sub-title {
color: var(--white-color);
font-weight: 500;
font-size: 16px;
text-transform: uppercase;
padding:5px 10px;
background-color:var(--primary-color);
display: inline-block;
}

@media screen and (max-width:991px) {

h1 {
font-size: 48px;
}

}

@media screen and (max-width:767px) {

body {
font-size: 14px;
}

.font18 {
font-size: 16px;
}

h1 {
font-size: 44px;
}

h2 {
font-size: 32px;
}

h3 {
font-size: 26px;
}

h4 {
font-size: 22px
}

h5 {
font-size: 18px;
}

h6 {
font-size: 16px;
}

h6.sub-title {
font-size: 14px;
}

p br {
display: none;
}

ul.styled-list li:before {
font-size: 16px;
}

}


h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child {
margin-bottom: 0;
}


a {
text-decoration: none;
transition: all .3s ease;
color: var(--primary-color);
}

a:hover,
a:focus {
text-decoration: none;
color: var(--secondary-color);
}

img {
max-width: 100%;
vertical-align: middle;
height: auto;
}

form {
z-index: 10;
overflow: hidden;
position: relative;
}


.content-wrapper {
max-width: 1270px;
padding: 0 15px;
margin: 0 auto;
}

.hs-row {
display: flex;
flex-wrap: wrap;
margin: 0 -15px;
}

.row-reverse {
flex-direction: row-reverse;
}


form {
font-family: inherit;
}

input[type="submit"] {
cursor: pointer;
font-family: inherit;
}


.btn {
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 16px;
text-transform: uppercase;
text-decoration: none;
background-color: var(--primary-color);
padding: 12px 20px;
min-height: 48px;
min-width: 130px;
width: auto;
border: none;
color: var(--white-color);
position: relative;
overflow: hidden;
transition: all 0.3s ease-in-out;
}

.btn::after {
background: var(--white-color);
content: "";
height: 200px;
opacity: 0;
position: absolute;
top: -50px;
transform: rotate(35deg);
transition: all 3000ms cubic-bezier(0.19, 1, 0.22, 1);
width: 80px;
}

.btn::after {
left: -100%;
}

.btn:hover,
.btn:focus,
.btn:active {
transform: translateY(-3px);
color: var(--white-color);
background-color: var(--secondary-color);
box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.3);
}

.btn:hover::after {
left: 200%;
opacity: 0.6;
}

.btn span {
z-index: 20;
}

.btn-outline-primary {
background-color: transparent;
color: var(--primary-color);
border: 1px solid var(--primary-color);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
background-color: var(--primary-color);
color: var(--white-color);
}

.white-btn {
color: var(--primary-color);
background-color: var(--white-color);
}

.white-btn:hover,
.white-btn:focus {
color: var(--white-color);
}

.white-btn::before {
background: var(--primary-color);
}

.white-btn::after {
background: var(--primary-color);
}

.tab-btn {
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 16px;
text-transform: uppercase;
text-decoration: none;
padding: 12px 20px;
min-height: 48px;
min-width: 130px;
width: auto;
position: relative;
overflow: hidden;
transition: all 0.3s ease-in-out;
border: 1px solid var(--primary-color);
background-color: transparent;
color: var(--primary-color);
cursor: pointer;
}

.active .tab-btn,
.tab-btn:hover,
.tab-btn.active {
background-color: var(--primary-color);
color: var(--white-color);
}

@media screen and (max-width:767px) {

.btn {
font-size: 14px;
padding: 12px 20px;
min-height: auto;
}

.tab-btn {
font-size: 14px;
padding: 12px 20px;
}

}


/* ........................... Header CSS Start ............................................ */


.site-header {
position: relative;
width: 100%;
z-index: 999;
background: #fff;
}

.site-header .header-row {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
}

.site-header .logo-wrap {
margin-right: 20px;
}

.site-header .logo-wrap img {
max-width: 115px;
}

.site-header ul {
padding: 0;
margin: 0;
list-style-type: none;

}

.site-header .main-menu {
display: flex;
align-items: center;
}

.site-header .menu-link {
color: #000;
text-decoration: none;
padding: 33px 0;
font-size: 16px;
position: relative;
text-transform: uppercase;
display: inline-block;
}

.site-header .menu-link:hover,
site-header .menu-link:focus {
color: var(--primary-color);
}

/* .site-header .menu-link:after {
content: '';
height: 2px;
display: inline-block;
background: var(--primary-color);
width: 0;
position: absolute;
bottom: 0;
left: 0;
transition: all .3s ease;
}

.site-header .menu-link:hover:after {
width: 100%;
} */

.site-header .main-menu>li:not(:last-child) {
margin-right: 40px;
}

.site-header .has-submenu {
position: relative;
}

.site-header .submenu {
position: absolute;
top: 120%;
background: var(--primary-color);
display: block;
padding:5px 0;
opacity: 0;
visibility: hidden;
pointer-events: none;
min-width: 200px;
transition: all 0.3s ease-in-out;
}

.site-header .has-submenu:hover .submenu {
opacity: 1;
visibility: visible;
pointer-events: all;
top: 100%
}

.site-header .submenu a {
color: #fff;
display: block;
padding: 10px;
position: relative;
}

.site-header .submenu a:hover {
color: var(--secondary-color)
}

.site-header .submenu li {
width: 100%;
margin: 0;
}

.site-header .child-trigger {
display: none;
}

.hamburger {
position: relative;
display: none;
width: 36px;
height: 36px;
cursor: pointer;
background-color: var(--primary-color);
}

.hamburger span {
position: relative;
width: 22px;
top: 10.5px;
left: 0;
border-radius: 5px;
height: 2px;
opacity: 1;
display: block;
background-color: #ffff;
margin: 3.5px auto;
transition: all ease .3s;
-webkit-transition: all ease .3s;
-moz-transition: all ease .3s;
}

.hamburger.active span:first-child {
transform: rotate(135deg);
-webkit-transform: rotate(135deg);
top: 17px;
position: relative
}


.hamburger.active span:nth-child(2) {
position: relative;
left: -46px;
opacity: 0;
}

.hamburger.active span:last-child {
transform: rotate(-135deg);
-webkit-transform: rotate(-135deg);
top: 6px;
position: relative;
}

@media screen and (min-width:992px) {

.site-header .submenu a:hover {
background-color: var(--white-color);
}

}

@media screen and (max-width:991px) {

.site-header {
padding: 15px 0;
}

.site-header .child-trigger {
display: block;
color: var(--primary-color);
font-size: 25px;
position: absolute;
right: 20px;
top: 12px;
width: 30px;
height: 30px;
display: inline-flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.3s ease-in-out;
}


.site-header .child-trigger.child-open {
transform: rotate(180deg);
}

.site-header .hamburger {
display: block;
}

.site-header .custom-menu {
position: absolute;
left: 0;
top: 100%;
background: #fff;
z-index: 99;
width: 100%;
height: 100vh;
opacity: 0;
visibility: hidden;
pointer-events: none;
transition: all .3s ease;
padding-top: 15px;
}

.site-header .custom-menu.active {
opacity: 1;
visibility: visible;
pointer-events: all;
}

.site-header .main-menu {
display: flex;
flex-direction: column;
align-items: flex-start;
}

.site-header .main-menu>li {
width: 100%;
padding: 0 15px;
}

.site-header .menu-link {
padding: 15px 0;
}

.site-header .main-menu>li:not(:last-child) {
margin-right: 0;
}

.site-header .custom-menu .btn {
margin-top: 15px;
}

.site-header .menu-link:after {
content: none;
}

.site-header .submenu {
position: static;
opacity: 1;
display: none;
visibility: visible;
pointer-events: all;
transition: none;
}

}

@media screen and (max-width:767px) {

.site-header .logo-wrap img {
max-width: 90px;
}

}

/* ........................... Header CSS Ends ............................................ */


.banner__slider {
position: relative;
}

.banner__slider h1 {
color: var(--white-color);
text-shadow: 1px 1px 1px #000;
}

.banner__slider h1 span {
animation: blink 1.5s linear infinite;
color: var(--primary-color);
}

.banner__slider .logo-wrap img {
width: 100px;
display: inline-block;
}


/* @keyframes blink {
from{
color:intial;
}

to{
color:var(--primary-color)
}
} */

.banner__slider h4,
.banner__slider h5,
.banner__slider p {
color: var(--white-color);
text-shadow: 1px 1px 1px #000;
}


.banner__slider .slick-track {
display: flex;
}

.banner__slider .slick-slide {
height: auto;
float: none;
}

.slick-slide>div {
height: 100%;
}

.banner__slider .slide {
position: relative;
height: 100%;
display: flex !important;
align-items: center;
justify-content: center;
min-height: 500px;
}

.slide:after {
content: '';
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: #000;
opacity: .7;
}

.slide .slide__img {
width: 100%;
height: 100%;
overflow: hidden;
position: absolute;
top: 50%;
left: 0;
transform: translateY(-50%);
}


@media (min-width: 992px) {

.banner__slider .slider,
.banner__slider .slide {
height: 600px;
}

}


@media (min-width:1025px) {

.slide .slide__content--headings {
max-width: 670px;
}

}

.banner__slider .slider [data-animation-in] {
opacity: 0;
-webkit-animation-duration: 1s;
animation-duration: 1s;
transition: opacity 0.5s ease 0.3s;
}

.banner__slider .slide .slide__img img {
max-width: 100%;
height: 100%;
object-fit: cover;
width: 100%;
opacity: 1 !important;
-webkit-animation-duration: 3s;
animation-duration: 3s;
transition: all 1s ease;
}

.slide .slide__content {
z-index: 2;
width: 100%;
padding: 75px 20px;
}

.slide .slide__content--headings {
text-align: center;
color: #FFF;
margin: 0 auto;
}

.slide .slide__content--headings .animated {
transition: all 0.5s ease;
}

.slick-dotted .slick-slider {
margin-bottom: 30px;
}


.slick-dots {
position: absolute;
bottom: 25px;
list-style: none;
display: block;
text-align: center;
padding: 0;
margin: 0;
width: 100%;
}

.slick-dots li {
position: relative;
display: inline-block;
margin: 0 5px;
padding: 0;
cursor: pointer;
}

.slick-dots li button {
border: 0;
display: block;
outline: none;
line-height: 0px;
font-size: 0px;
color: transparent;
padding: 5px;
cursor: pointer;
transition: all 0.3s ease;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
outline: none;
}

.simple-dots .slick-dots li {
width: 20px;
height: 20px;
}

.simple-dots .slick-dots li button {
border-radius: 50%;
background-color: white;
opacity: 0.25;
width: 20px;
height: 20px;
}

.simple-dots .slick-dots li button:hover,
.simple-dots .slick-dots li button:focus {
opacity: 1;
}

.simple-dots .slick-dots li.slick-active button {
color: white;
opacity: 0.75;
}

.stick-dots .slick-dots li {
height: 3px;
width: 50px;
}

.stick-dots .slick-dots li button {
position: relative;
background-color: white;
opacity: 0.25;
width: 50px;
height: 3px;
padding: 0;
}

.stick-dots .slick-dots li button:hover,
.stick-dots .slick-dots li button:focus {
opacity: 1;
}

.stick-dots .slick-dots li.slick-active button {
color: white;
opacity: 1;
background-color: #298afa;
}

.stick-dots .slick-dots li.slick-active button:hover,
.stick-dots .slick-dots li.slick-active button:focus {
opacity: 1;
}

@media (max-width:767px) {

.slick-dots {
bottom: 20px;
}

.stick-dots .slick-dots li {
width: 30px;
}

.stick-dots .slick-dots li button {
width: 30px;
height: 4px;
}

}


@media (max-width:575px) {
    
.banner__slider .slick-nav{
        bottom: 3%;
        top:auto;
    
}

}


/* /////////// IMAGE ZOOM /////////// */
@-webkit-keyframes zoomInImage {
from {
transform: scale3d(1, 1, 1);
}

to {
transform: scale3d(1.1, 1.1, 1.1);
}
}

@keyframes zoomInImage {
from {
transform: scale3d(1, 1, 1);
}

to {
transform: scale3d(1.1, 1.1, 1.1);
}
}

.zoomInImage {
-webkit-animation-name: zoomInImage;
animation-name: zoomInImage;
}

@-webkit-keyframes zoomOutImage {
from {
transform: scale3d(1.1, 1.1, 1.1);
}

to {
transform: scale3d(1, 1, 1);
}
}

@keyframes zoomOutImage {
from {
transform: scale3d(1.1, 1.1, 1.1);
}

to {
transform: scale3d(1, 1, 1);
}
}

.zoomOutImage {
-webkit-animation-name: zoomOutImage;
animation-name: zoomOutImage;
}

.slick-nav {
--active: #fff;
--border: rgba(255, 255, 255, 0.12);
width: 44px;
height: 44px;
position: absolute;
cursor: pointer;
top: calc(50% - 44px);
}

.slick-nav.prev-arrow {
left: 3%;
transform: scaleX(-1);
z-index: 99;
}

.slick-nav.next-arrow {
left: auto;
right: 3%;
}

.slick-nav i {
display: block;
position: absolute;
margin: -10px 0 0 -10px;
width: 20px;
height: 20px;
left: 50%;
top: 50%;
}

.slick-nav i:before,
.slick-nav i:after {
content: "";
width: 10px;
height: 2px;
border-radius: 1px;
position: absolute;
left: 50%;
top: 50%;
background: var(--active);
margin: -1px 0 0 -5px;
display: block;
transform-origin: 9px 50%;
}

.slick-nav i:before {
transform: rotate(-40deg);
}

.slick-nav i:after {
transform: rotate(40deg);
}

.slick-nav:before,
.slick-nav:after {
content: "";
display: block;
position: absolute;
left: 1px;
right: 1px;
top: 1px;
bottom: 1px;
border-radius: 50%;
border: 2px solid var(--border);
}

.slick-nav svg {
width: 44px;
height: 44px;
display: block;
position: relative;
z-index: 1;
color: var(--active);
stroke-width: 2px;
stroke-dashoffset: 126;
stroke-dasharray: 126 126 0;
transform: rotate(0deg);
}

.slick-nav.animate svg {
-webkit-animation: stroke 1s ease forwards 0.3s;
animation: stroke 1s ease forwards 0.3s;
}

.slick-nav.animate i {
-webkit-animation: arrow 1.6s ease forwards;
animation: arrow 1.6s ease forwards;
}

.slick-nav.animate i:before {
-webkit-animation: arrowUp 1.6s ease forwards;
animation: arrowUp 1.6s ease forwards;
}

.slick-nav.animate i:after {
-webkit-animation: arrowDown 1.6s ease forwards;
animation: arrowDown 1.6s ease forwards;
}

@-webkit-keyframes stroke {
52% {
transform: rotate(-180deg);
stroke-dashoffset: 0;
}

52.1% {
transform: rotate(-360deg);
stroke-dashoffset: 0;
}

100% {
transform: rotate(-180deg);
stroke-dashoffset: 126;
}
}

@keyframes stroke {
52% {
transform: rotate(-180deg);
stroke-dashoffset: 0;
}

52.1% {
transform: rotate(-360deg);
stroke-dashoffset: 0;
}

100% {
transform: rotate(-180deg);
stroke-dashoffset: 126;
}
}

@-webkit-keyframes arrow {

0%,
100% {
transform: translateX(0);
opacity: 1;
}

23% {
transform: translateX(17px);
opacity: 1;
}

24%,
80% {
transform: translateX(-22px);
opacity: 0;
}

81% {
opacity: 1;
transform: translateX(-22px);
}
}

@keyframes arrow {

0%,
100% {
transform: translateX(0);
opacity: 1;
}

23% {
transform: translateX(17px);
opacity: 1;
}

24%,
80% {
transform: translateX(-22px);
opacity: 0;
}

81% {
opacity: 1;
transform: translateX(-22px);
}
}

@-webkit-keyframes arrowUp {

0%,
100% {
transform: rotate(-40deg) scaleX(1);
}

20%,
80% {
transform: rotate(0deg) scaleX(0.1);
}
}

@keyframes arrowUp {

0%,
100% {
transform: rotate(-40deg) scaleX(1);
}

20%,
80% {
transform: rotate(0deg) scaleX(0.1);
}
}

@-webkit-keyframes arrowDown {

0%,
100% {
transform: rotate(40deg) scaleX(1);
}

20%,
80% {
transform: rotate(0deg) scaleX(0.1);
}
}

@keyframes arrowDown {

0%,
100% {
transform: rotate(40deg) scaleX(1);
}

20%,
80% {
transform: rotate(0deg) scaleX(0.1);
}
}


.content-with-img-wrapper .img-wrap {
text-align: center;
}

.content-with-img-wrapper .img-wrap img {
max-height: 210px;
width: auto;
min-width:250px;
}

@media screen and (max-width:575px) {

.content-with-img-wrapper .img-wrap img {
min-width:auto;
max-height: 160px;
}


}


.hover-cards-section {
background: #ededed;
}

.hover-cards-section .card {
height: 360px;
padding: 20px;
overflow: hidden;
position: relative;
display: flex;
align-items: center;
justify-content: center;
}

.hover-cards-section .card img {
position: absolute;
top: 0;
width: 100%;
height: 100%;
object-fit: cover;
left: 0;
transition: all .5s ease-in-out;
}

.hover-cards-section .card:hover img {
transform: scale(1.05);
}

.hover-cards-section .text-wrap {
position: relative;
z-index: 2;
}

.hover-cards-section .card:after {
content: '';
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: rgb(0 0 0 / 60%);
transition: all .5s ease-in-out;
}

.hover-cards-section .card:hover:after {
background: rgb(0 0 0 / 80%);
}

@media (max-width:767px) {

.hover-cards-section .card {
height: 320px;
}

}


.item-slick.slick-slide.slick-current.slick-active {
outline: none !important
}

.slider-container {
max-width: 900px;
margin: 0 auto;
}

.slider-for {
margin-bottom: 15px;
}

.slider-for img {
width: 100%;
min-height: 100%;
height: 450px;
object-fit: cover;
object-position: center;
}

.slider-nav {
margin: auto;
}

.slider-nav .item-slick {
max-width: 156px;
margin-right: 0;
outline: none;
cursor: pointer;
filter: grayscale(1);
margin: 0 5px;
object-fit: cover;
object-position: center;
height: 105px;
}

.slider-nav .slick-current .item-slick {
filter: none;
}

@media screen and (max-width:767px) {


.slider-for img {
height: 300px;
}


.slider-nav .item-slick {
height: 80px;
max-width: 120px;
}

}

.bottom-pane {
background-color: #ededed;
position: relative;
background-image: url(../images/bottom-pane-bg.jpg);
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}


.bottom-pane .bottom-pane-content {
position: relative;
z-index: 2;
}


.bg-overlay {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: rgb(0 0 0 / 70%);
transition: all .5s ease-in-out;
z-index: 2;
}

.bg-video {
position: absolute;
width: 100%;
height: 100%;
object-fit: cover;
top: 0;
left: 0;
}

.z-index {
z-index: 2;
position: relative;
}

.page-banner {
position: relative;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

.page-banner-content {
min-height: 500px;
padding: 20px 0;
display: flex;
align-items: center;
justify-content: center;
position: relative;
z-index: 4;
}

.page-banner .banner-video {
width: 100%;
position: absolute;
top: 0;
left: 0;
z-index: 1;
height: 100%;
object-fit: cover;
}

@media screen and (max-width:767px) {

.page-banner-content {
min-height: 500px;
}

}

@media screen and (max-width:379px) {

.about-page-banner{
        background-position: 54% center;
        background-size: 500% 100%;


}

}

.cj-section {
background-color: #ededed;
display:none;
}

.cj-box {
max-width: 970px;
margin: 0 auto;
}

.cj-box-inner {
border: 20px solid #fff;
display: inline-block;
margin-bottom: 30px;
box-shadow: 0px 0px 4px 0px rgb(0 0 0 / 60%);
}

.cj-box-inner img {
width: 400px;
height: 400px;
object-fit: cover;
}

.two-col-img-section {
overflow: hidden;
padding-left:0;
padding-right:0;
}

.two-col-img-section .img-wrap img,
.two-col-img-section .img-wrap video {
width: 100%;
min-height: 350px;
max-height: 350px;
box-shadow: -15px -15px 0px 0px #1e75bae6;
display: inline-block;
object-fit: cover;
}

.two-col-img-section.leadership .img-wrap{
text-align: center;
}
.two-col-img-section.leadership .img-wrap img{
width: 350px;
object-position: top;
}


.two-col-img-section .content-wrap {
margin-top: -10px;
}

.two-col-img-section .content-wrap strong {
font-weight: 600;
}

.two-col-img-section .content-wrap p code {
font-weight: 600;
}

@media screen and (max-width:1300px) {

.two-col-img-section .img-wrap {
padding-left: 15px;
}

}

@media screen and (min-width:1200px) {

.two-col-img-section .col {
padding: 0 30px;
}

.two-col-img-section .row {
margin: 0 -30px;
}

}

@media screen and (max-width:991px) {

.two-col-img-section .img-wrap {
text-align: center;
}

.two-col-img-section .img-wrap img {
width: 100%;
max-height: 450px;
}

.two-col-img-section .content-wrap {
width: 100%;
margin: 0 auto;
}

}

@media screen and (max-width:767px) {

.cj-box-inner {
border: 10px solid #fff;
}

.cj-box-inner img {
width: 350px;
height: 250px;
}

.two-col-img-section .img-wrap {
padding-left: 5px;
}

.two-col-img-section .img-wrap img,
.two-col-img-section .img-wrap video {
box-shadow: -5px -5px 0px 0px #1e75bae6;
min-height: 250px;
width: 100%;
display: block;
max-height: 300px;
object-position: center;
}

.two-col-img-section.leadership .img-wrap img{
width: 280px;
display:inline-block;
max-height:300px;
}


}

@media screen and (max-width:575px) {

.two-col-img-section .img-wrap {
text-align: left;
}

.two-col-img-section .content-wrap {
width: auto;
text-align: left;
}

.two-col-img-section .img-wrap img,
.two-col-img-section .img-wrap video {
max-height: 270px;
}


}


.timeline-section {
overflow: hidden;
}

.timeline-wrapper {
max-width: 1170px;
margin: 0 auto;
position: relative;
padding: 60px 15px;

}

.timeline-card {
box-shadow: -10px -10px 0px 0px rgb(30 117 186 / 90%);
background: #fff;
max-width: 400px;
padding: 20px;
border: 3px solid rgb(30 117 186 / 90%);
margin-bottom: 30px;
position: relative;
font-size: 14px;
}

.timeline-card:after {
content: '';
position: absolute;
background: var(--primary-color);
display: inline-block;
}


.timeline-card img {
margin-bottom: 15px;
height: 260px;
width: 100%;
object-fit: cover;

}

.timeline-wrapper .row {
margin: 0 -40px;
}

.timeline-wrapper .col-lg-6 {
padding: 0 40px;
}

.timeline-card h5 {
font-weight: 700;
font-size: 18px;
}

.timeline-wrapper .col-lg-6:nth-child(even) .timeline-card {
margin-left: auto;
}

.timeline-center-line {
width: 4px;
height: 100%;
left: 50%;
top: 0;
transform: translate(-50%, 0);
background: var(--primary-color);
display: inline-block;
position: absolute;
}


.timeline-center-line:before {
content: '';
position: absolute;
left: -8px;
top: -10px;
width: 20px;
height: 20px;
display: inline-block;
background-color: var(--primary-color);
border-radius: 20px;
}

.timeline-center-line:after {
content: "\f078";
font-weight: 900;
font-family: "Font Awesome 6 Free";
color: var(--primary-color);
;
font-size: 24px;
position: absolute;
bottom: -14px;
height: auto;
vertical-align: middle;
left: -9.6px;
}


@media screen and (min-width:992px) {

.timeline-card.tc-right {
box-shadow: 10px -10px 0px 0px rgb(30 117 186 / 90%);
}

.timeline-card:after {
top: 50%;
transform: translateY(-50%);
width: 40px;
height: 3px;
right: -40px;
}


.timeline-card.tc-right:after {
left: -40px;
right: auto;
}


}


@media screen and (min-width:1024px) {

.timeline-card:after {
width: 80px;
right: -80px;
}

.timeline-card.tc-right:after {
left: -80px;
}

}


@media screen and (min-width:1200px) {


.timeline-card:after {
width: 130px;
right: -130px;
}

.timeline-card.tc-right:after {
left: -130px;
}

}

@media screen and (max-width:991px) {

.timeline-wrapper {
padding: 0;
}


.timeline-center-line {
display: none;
}

.timeline-wrapper .row {
margin: 0 -15px;
}

.timeline-wrapper .col-lg-6 {
padding: 0 20px;
}

.timeline-wrapper .col-lg-6:last-child .timeline-card{
margin-bottom:0;
}

.timeline-card {
max-width: 100%;
margin-bottom: 60px;
width: 450px;
margin-left: auto;
margin-right: auto;
box-shadow: -5px -5px 0px 0px rgb(30 117 186 / 90%);
}

.timeline-card:after {
left: 50%;
top: -65px;
height: 58px;
width: 3px;
}

.timeline-wrapper .col-lg-6:first-child .timeline-card:after {
content: none;
}

}

@media screen and (max-width:767px) {

.timeline-card {
padding: 15px;
}

.timeline-card{
width:400px;
}

}


.janta-group-section .headings-wrapper {
max-width: 1100px;
margin: 0 auto;
}


.foundation-card {
padding: 30px;
text-align: center;
min-height: 330px;
display: flex;
flex-direction: column;
align-items: center;
background-color: var(--primary-color);
color:var(--white-color);
height:100%;
}

.foundation-card .icon-wrap {
margin-bottom: 20px;
background-color: var(--white-color);
border-radius: 100%;
padding: 10px;
width: 90px;
height: 90px;
display: inline-flex;
align-items: center;
justify-content: center;
}

.foundation-card .icon-wrap img {
width: 55px;
}

@media screen and (max-width:991px) {

.foundation-card .icon-wrap {
width: 80px;
height: 80px;
}

.foundation-card .icon-wrap img {
width: 50px;
}

}

@media screen and (max-width:767px) {

.foundation-section .col:last-child {
padding-bottom: 0;
}

.foundation-card {
min-height: auto;
}

}

@media screen and (max-width:575px) {

.foundation-card .icon-wrap {
width: 65px;
height: 65px;
}

.foundation-card .icon-wrap img {
width: 40px;
}

}

.award-card {
padding: 20px;
margin-bottom: 8px;
background: rgb(255 255 255 / 50%);
text-align: center;
}

.awards-section .row {
margin: 0 -4px;
}

.awards-section .col {
padding: 0 4px;
}

.awards-section .award-desc {
margin-top: 10px;
}

.award-card img {
width: 200px;
}

@media screen and (max-width:767px) {

.award-card {
margin-bottom: 20px;
}

}

.team-card-wrap {
width: 25%;
padding: 0 15px 30px;
}

.team-card {
transition: all 0.3s ease-in-out;
display: block;
margin: 0 auto;
width: 100%;
background-color: #fff;
max-width: 350px;
height:100%;
box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
}

.team-card:hover {
transform: translateY(-3px);
box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.3);
}


.team-img img {
border-radius: 0;
width: 100%;
object-fit: cover;
height: 275px;
object-position: top;
}


.team-card .team-content {
padding: 15px;
background: #fff;
background: var(--primary-color);
color: #fff;
position: relative;
overflow: hidden;
height: calc(100% - 275px);
display: flex;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.team-card .team-content p{
margin-bottom:5px;
}

.team-card .team-content h5 {
font-size: 20px;
margin-bottom:7px;
}

.team-card .team-content h5:last-child{
    margin-bottom:0;
}

.team-card .team-content:after {
background: var(--white-color);
content: "";
height: 300px;
opacity: 0;
position: absolute;
top: -50px;
transform: rotate(35deg);
transition: all 3000ms cubic-bezier(0.19, 1, 0.22, 1);
width: 80px;
left: -100%;
}

.team-card:hover .team-content:after {
left: 200%;
opacity: .6;
}

.team-card .team-desc {
max-width: 946px;
margin: 0 auto;
}

.team-card .team-contact-info {
padding: 5px 0;
display: flex;
align-items: center;
font-size: 14px;
}

.team-card .team-contact-info i {
margin-right: 8px;
margin-top: 3px;
}

.team-card .team-contact-info a,
.team-card .team-contact-info a:hover,
.team-card .team-contact-info a:focus {
color: var(--white-color);
}


.workforce-img {
max-height: 600px;
width: 100%;
object-fit: cover;
object-position: top;
}

.team-card-wrap.contact-tcw {
width: 25%;
}



.team-img {
    /*background-color: #b7b7b7;*/
    background-color:#000;
}

@media screen and (max-width:1200px) {

.team-card-wrap {
width: 25%;
}

.team-card-wrap.contact-tcw {
width: 33.33%;
}

}

@media screen and (max-width:991px) {

.team-card-wrap {
width: 33.33%;
}

.team-card-wrap.contact-tcw {
width:40%;
}

}


@media screen and (max-width:767px) {

.team-card .team-content h5 {
font-size: 18px;
}

.team-img img {
height: 250px;
object-fit: cover;
object-position: top;
}

.team-card .team-content{
    height: calc(100% - 250px);

}


.team-card:hover {
transform: translateY(0);
box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
}

.team-card-wrap{
width:50%;
}


}

@media screen and (max-width:575px) {



.team-section .content-wrapper{
padding: 0 20px;
}

.sales-team .content-wrapper{
padding: 0 20px;
}

.team-heading {
text-align: center;
}
.team-card-wrap {
width: 100%;
margin: 0 auto;
padding: 0 5px;
padding-bottom: 15px;
}

.team-card{
max-width:250px;
}

.team-img img{
object-fit: cover;
height: 220px;
}


.team-card .team-content{
    height: calc(100% - 220px);

}


.team-card .team-content {
padding: 15px 10px;
}

.team-card .team-content h5 {
font-size: 14px;
}

.team-content p {
font-size: 12px;
}

.team-card-wrap.contact-tcw {
width: 100%;
}

.team-card-wrap:last-child{
padding-bottom: 0;
}


}




.table-head {
display: flex;
border-bottom: 1px solid #000000;
}

.table-head-col {
width: 50%;
background: var(--primary-color);
color: #fff;
text-align: center;
padding: 15px;
display: flex;
align-items: center;
justify-content: center;
}

.table-body-col {
padding: 15px;
text-align: center;
width: 50%;
display: flex;
align-items: center;
justify-content: center;
}

.table-body-row {
border-bottom: 1px solid #000;
display: flex;
}

.table-body-col:first-child {
border-right: 1px solid #000;
}

.table-head-col:first-child {
border-right: 1px solid #000000;
/* border-bottom: 1px solid #fff; */
}

.table-wrapper {
border: 1px solid #000;
}

.table-body-row:last-child {
border-bottom: 0;
}

.table-wrapper p {
font-weight: bold;
font-weight: bold;
}

.table-head-col .icon img {
width: 30px;
min-width:30px;
}

.table-head-col .icon {
margin-right: 15px;
}


@media screen and (max-width:575px) {


.table-head-col .icon {
margin-right: 10px;
}

.table-head-col .icon img {
width: 20px;
min-width: 20px;
}  

.table-head-col h5 {
font-size: 12px;
}

.table-wrapper p{
font-size:10px;
}


}





.highlight-section .col {
margin-bottom: 30px;
}

.highlight-card {
padding: 28px 20px;
background-color: var(--grey-color);
height: 100%;
}

.highlight-card .icon-wrap {
background-color: var(--primary-color);
display: inline-flex;
align-items: center;
justify-content: center;
padding: 15px;
width: 90px;
height: 90px;
border-radius: 90px;
margin-bottom: 15px;
}

.highlight-card .icon-wrap img {
width: 55px;
}

@media screen and (max-width:991px) {

.highlight-card .icon-wrap {
width: 80px;
height: 80px;
border-radius: 80px;
}

.highlight-card .icon-wrap img {
width: 50px;
}


.highlight-card {
padding: 25px 15px;

}

}

@media screen and (max-width:575px) {

.highlight-section .row .col:last-child {
padding-bottom: 0;
}


.highlight-card .icon-wrap {
width: 65px;
height: 65px;
border-radius: 65px;
}

.highlight-card .icon-wrap img {
width: 40px;
}

}

.site-footer {
position: relative;
overflow: hidden;
}

.chicken-wrapper {
position: absolute;
width: 5rem;
height: 5rem;
left: 4%;
top: auto;
transform: translate(-50%, -50%);
bottom: -30px;
cursor: pointer;
animation: walk 50s infinite;
transition: animation 0.1s ease-out;
/* Add a transition to smoothly switch animations */
}

.chicken-wrapper:before {
content: '';
position: absolute;
left: 64%;
top: -5px;
width: 20px;
height: 20px;
border-radius: 50%;
background: #ff0808;
}

.chicken-wrapper:after {
content: '';
position: absolute;
left: 45%;
top: 99%;
width: 1rem;
height: 1rem;
transform: skewX(10deg);
background: linear-gradient(to left, #ffeb8c 15%, transparent 20%, transparent 80%, #ffeb8c 85%);
}

.chicken {
width: 100%;
height: 100%;
border-radius: 50%;
overflow: hidden;
background: transparent;
transform: rotate(-45deg);
}

.chicken:before {
content: '';
position: absolute;
width: 37%;
height: 37%;
background: linear-gradient(to left, #ff0808 26%, #fff 26%, #fff 35%, #ebe1d8 35%, #ff0808 61%, #fff 61%, #fff 70%, #ff0808 70%);
left: 0;
top: 0;
}

.chicken .chicken-body {
position: relative;
width: 100%;
height: 100%;
top: 37%;
background: #fff;
}

.chicken .chicken-body:after {
content: '';
position: absolute;
width: 30%;
height: 30%;
background: #fff;
border-bottom: 0.25rem solid #ebe1d8;
border-left: 0.25rem solid #ebe1d8;
border-radius: 0 0 0 100%;
left: 23%;
top: 0;
transform-origin: 100% 0;
}

.chicken .chicken-body:before {
content: '';
position: absolute;
width: 6px;
height: 6px;
background: #ff0808;
left: 96%;
transform: rotate(15deg);
z-index: 1;
top: 1px;
}

.chicken .chicken-body .face {
position: absolute;
border: 0.25rem solid;
border-color: #ff0808;
left: 70%;
top: 20%;
}

.chicken .chicken-body .face:before,
.chicken .chicken-body .face:after {
content: '';
width: 0;
height: 0;
position: absolute;
border: 0.18rem solid #5f5458;
border-radius: 50%;
}

.chicken .chicken-body .face:before {
top: -14px;
}

.chicken .chicken-body .face:after {
left: 9px;
top: -5px;
}

@keyframes wing {
from {
transform: rotate(0deg);
}

to {
transform: rotate(90deg);
}
}

@keyframes jump {
from {
bottom: -30px;
}

to {
bottom: 0;
}
}

@keyframes walk {
from {
left: 0;
}

to {
left: 105%;
}
}

.chicken-wrapper:hover {
animation: jump 0.1s ease-out infinite alternate, walk 50s infinite;
/* Combine jump and walk animations on hover */
}


.chicken-wrapper:hover .chicken .chicken-body:after {
animation: wing 0.07s linear infinite alternate;
}

.chicken-wrapper:hover .chicken .chicken-body .face:before,
.chicken-wrapper:hover .chicken .chicken-body .face:after {
width: 4px;
height: 4px;
border-width: 0.13rem;
}

.chicken-wrapper:hover .chicken .chicken-body .face:before {
top: -1.1rem;
left: -0.1rem;
/* width: 4px; */
/* height: 4px; */
}

.chicken-wrapper:hover .chicken .chicken-body .face:after {
left: 0.54rem;
top: -0.46rem;
}


.footer-main {
background-color: #1f1f1f;
/* background-color: var(--primary-color); */
position: relative;
}

.footer-logo {
font-size: 14px;
}

.footer-logo img {
width: 115px;
margin-bottom: 30px;
background: #fff;
padding: 10px;
}

.footer-menu ul {
padding: 0;
margin: 0;
list-style-type: none;
}

.footer-menu ul li:not(:last-child) {
margin-bottom: 15px;
}

.footer-menu a {
color: var(--white-color);
position: relative;
text-transform: uppercase;
}

.footer-menu a:hover,
.footer-menu a:focus {
color: var(--secondary-color);
}

.footer-menu a:after {
content: '';
height: 1.9px;
display: inline-block;
width: 0;
position: absolute;
bottom: -2px;
left: 0;
transition: all .3s ease;
}

.footer-menu a:hover:after {
width: 100%;
background: var(--secondary-color);
}

.footer-menu .footer-submenu {
font-size: 14px;
}

.footer-menu .submenu li:not(:last-child) {
margin-bottom: 10px;
}

.footer-menu .submenu {
font-size: 14px;
margin-top: 10px;
padding-left: 5px;
display: none;
}

.footer-info ul {
display: flex;
flex-direction: column;
gap: 20px;
}

.footer-info a {
color: var(--white-color);
}

.footer-info a:hover {
color: var(--secondary-color);
}

.footer-info ul li i {
color: var(--white-color);
vertical-align: middle;
font-size: 20px;
display: inline-block;
}

.footer-info ul li i {
margin-right: 10px;
margin-top: 3px;
}

.footer-info ul li {
display: flex;
align-items: flex-start;
}

.footer-info .info-wrapper {
width: 55%;
padding: 0 20px
}

.footer-info .map-wrapper {
width: 45%;
padding: 0 20px
}

.footer-info {
display: flex;
justify-content: space-between;
margin: 0 -20px;
flex-wrap: wrap;
}

.footer-info .map-wrapper iframe {
width: 100%;
max-height: 200px;
}

.footer-main h5 {
margin-bottom: 30px;
}


.copyright-wrapper {
font-size: 14px;
background: #000000;
position: relative;
}

.developer {
position: absolute;
font-size: 10px;
top: 25px;
right: 20px;
}

.developer span {
font-weight: 500;
}

@media screen and (max-width:991px) {

.developer {
position: relative;
top: auto;
right: auto;
margin-top: 10px;
}

.chicken-wrapper {
display: none;
}

.footer-info .info-wrapper {
width: 50%;
}

.footer-info .map-wrapper {
width: 50%;
}

}

@media screen and (max-width:767px) {

.footer-info {
gap: 0;
}

.footer-info .map-wrapper {
width: 100%;
margin-bottom: 30px;
}

.footer-info .info-wrapper {
width: 100%;
}

.footer-main h5 {
margin-bottom: 20px;
}

}


@media screen and (max-width:575px) {

.footer-info ul li i{
font-size:16px;
}

}


/* .......... Branches Section Css Start .................. */

.branches-section .img-wrap img {
max-height: 570px;
}

/* .......... Branches Section Css Ends .................. */


/* .......... Contact Form Section Css Start .................. */
.form-container {
max-width: 960px;
margin: 0 auto;
}


.contact-chicken-vector {
text-align: center;
}

.contact-chicken-vector img {
max-height: 350px;
}


.contact-box {
min-height: 250px;
height: 100%;
}

.contact-box {
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}

.contact-info a {
color: inherit;
}

.contact-info a:hover {
color: var(--secondary-color);
}

.contact-info .info ul {
display: flex;
flex-direction: column;
gap: 20px;
}

.contact-info ul li i {
color: var(--primary-color);
vertical-align: middle;
font-size: 20px;
display: inline-block;
}

.contact-info .info ul li i {
margin-right: 10px;
margin-top: 3px;
}

.contact-info .info ul li {
display: flex;
align-items: flex-start;
}

.contact-info .social-media ul {
display: flex;
flex-wrap: wrap;
gap: 15px 20px;
padding: 0;
margin: 0;
list-style-type: none;
}


@media screen and (min-width:768px) {

.contact-box-col {
padding-left: 0;
}

.contact-info {
padding-right: 15px;
}

.contact-box {
min-height: 300px;
}

}


.form-field {
position: relative;
margin: 20px 0;
}

.input {
width: 100%;
outline: none;
border: 2px solid var(--white-color);
background: none;
padding: 12px 15px;
color: var(--white-color);
font-size: 1rem;
letter-spacing: 0.5px;
border-radius: 8px;
transition: 0.3s;
min-height: 48px;
}

.form-field label {
position: absolute;
top: 24px;
left: 15px;
transform: translateY(-50%);
padding: 0 0.4rem;
color: var(--white-color);
font-weight: 400;
pointer-events: none;
z-index: 1000;
transition: 0.5s;
}

.form-field span {
position: absolute;
top: 0;
left: 25px;
transform: translateY(-50%);
font-size: 0.8rem;
padding: 0 0.4rem;
color: transparent;
pointer-events: none;
z-index: 500;
}


.form-field.focus label {
top: 0;
transform: translateY(-50%);
left: 25px;
font-size: 0.8rem;
background-color: var(--primary-color);
}

.form-field.focus span:before,
.form-field.focus span:after {
width: 50%;
opacity: 1;
}

.contact-form-wrap {
/* background-image: url(https://media.istockphoto.com/id/1177074459/photo/close-up-of-small-cute-newborn-chicks-in-farm-house.jpg?s=2048x2048&w=is&k=20&c=b-af9dVjApWtrjGFSu7VT1Hh9JPB7fjep1gG7uHoJsw=); */
background-image: url(../images/form-bg.jpg);
background-position: center;
background-size: cover;
background-repeat: no-repeat;
position: relative;
padding: 30px 15px;
min-height: 450px;
display: flex;
flex-direction: column;
justify-content: center;
}


.contact-form-wrap:after {
content: '';
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
background: #000;
z-index: 0;
opacity: .6;
}

.contact-form-wrap>* {
position: relative;
z-index: 2;
}

.contact-form-wrap .form-title {
margin-bottom: 0;
}

.contact-form-wrap input[type="submit"] {
width: 100%;
}

.contact-info .social-media ul li a {
width: 40px;
height: 40px;
display: inline-flex;
justify-content: center;
align-items: center;
background: var(--primary-color);
border-radius: 8px;
}

.contact-info .social-media ul li i {
color: var(--white-color);
}

/* .......... Contact Form Section Css Ends .................. */


ul.gt-list {
margin: 0;
list-style-type: none;
display: flex;
align-items: flex-start;
justify-content: flex-start;
gap: 20px;
overflow: auto;
flex-wrap: wrap;
padding-bottom: 10px;
}


.gallery-item {
overflow: hidden;
/* opacity: .85; */
cursor: pointer;
height: 100%;
position: relative;
height: 260px;
margin-bottom: 30px;
}


.gallery-item img {
width: 100%;
height: 260px;
object-fit: cover;
position: absolute;
left: 0;
top: 0;
height: 100%;
transition: all .5s ease-in-out;
}

.gallery-item .item-detail {
position: absolute;
color: #fff;
opacity: 0;
pointer-events: none;
z-index: 3;
transition: all .5s ease-in-out;
display: flex;
align-items: center;
justify-content: center;
height: 100%;
width: 100%;
flex-direction: column;
top: 0;
font-size: 16px;
}

.gallery-item .item-detail i {
font-size: 30px;
margin-bottom: 10px;
}

.gallery-item:hover img {
transform: scale(1.05);
}

.gallery-item:after {
content: '';
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: rgb(0 0 0 / 80%);
transition: all .5s ease-in-out;
opacity: 0;
}

.gallery-item:hover:after {
opacity: 1;
}

.gallery-item:hover .item-detail {
opacity: 1;
pointer-events: all;
}

.gt-content {
display: none;
}

.gt-content.active {
display: block;
}

.lightbox {
position: fixed;
display: none;
background-color: rgba(0, 0, 0, 0.8);
width: 100%;
height: 100%;
overflow: hidden;
top: 0;
left: 0;
z-index: 9999;
}

.lightbox-content {
position: relative;
width: 80%;
height: 90%;
margin: 2.5% auto;
}

.lightbox-content img,
.lightbox-content video {
border-radius: 7px;
box-shadow: 0 0 3px 0 rgba(225, 225, 225, .25);
width: 100%;
height: 100%;
object-fit: contain;
background: #fff;
padding: 20px;
}

.lightbox-prev,
.lightbox-next {
position: absolute;
background-color: rgba(0, 0, 0, 0.8);
color: #fff;
padding: 7px;
top: 45%;
cursor: pointer;
}

.lightbox-prev {
left: 0;
}

.lightbox-next {
right: 0;
}

.lightbox-prev:hover,
.lightbox-next:hover {
opacity: .8;
}

.lightbox-caption {
position: absolute;
bottom: 10px;
left: 50%;
transform: translateX(-50%);
color: #fff;
background-color: rgba(0, 0, 0, 0.6);
padding: 10px;
border-radius: 5px;
max-width: 80%;
text-align: center;
}

@media (max-width:1200px) {

.gallery-item {
height: 220px;
}

}


@media (max-width:1024px) {

.lightbox-content {
width: 90%;
}

}

@media (max-width: 767px) {

.lightbox-content {
width: 90%;
height: 400px;
top: 40%;
transform: translateY(-40%);
}

.lightbox-content img,
.lightbox-content video{
padding:15px;
}

.gallery-item {
height: 250px;
}

ul.gt-list {
gap: 15px;
}

.gallery-item:after {
content: none;
}

.gallery-item .item-detail i {
font-size: 18px;
margin-bottom: 5px;
}

.gallery-item .item-detail {
font-size: 14px;
opacity: 1;
visibility: visible;
pointer-events: all;
bottom: 0;
height: auto;
display: inline-flex;
top: auto;
padding: 10px;
background: rgb(0 0 0 / 80%);
}

}