/* Fonts */
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Roboto", sans-serif;
  --font-secondary: "Work Sans", sans-serif;
}

/* Colors */
:root {
  --color-default: #364d59;
  --color-primary: #feb900;
  --color-secondary: #52565e;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

.invalid {
  border-color: red !important;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
  overflow-x: hidden;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #ffc732;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

.form-control:focus{
  box-shadow: none;
}

/* Global Button */
.main-btn{
	display:inline-block;
	padding: 0.425rem 1.175rem;
	margin: .1975rem .1rem;
	line-height: 1.4625rem;
	background-color: #f58d17;
	border: 0.1475rem solid #f58d17;
	border-radius: 0;
	color: #fff;
	font-size: 0.8375rem;
	font-weight: 600;
	text-transform: capitalize;
	box-shadow: 0px 2px 10px -1px rgb(0 0 0 / 19%);
	-webkit-transition: all .4s ease-out 0s;
	-o-transition: all .4s ease-out 0s;
	-moz-transition: all .4s ease-out 0s;
	transition: all .4s ease-out 0s;
}

.main-btn:hover{
	background-color: transparent;
	color: #f58d17;
}

.white-btn{
	padding: 0.425rem 1.875rem;
	line-height: 25px;
	background-color: var(--white-color);
	border: 0.1475rem solid var(--white-color);
	color: var(--text-color);
	font-size: 0.9375rem;
	font-weight: 600;
	text-transform: capitalize;
	box-shadow: 0px 2px 10px -1px rgb(0 0 0 / 19%);
	-webkit-transition: all .4s ease-out 0s;
	-o-transition: all .4s ease-out 0s;
	-moz-transition: all .4s ease-out 0s;
	transition: all .4s ease-out 0s;
}

.white-btn:hover{
	background-color: transparent;
	color: var(--primary-color);
	border-color: var(--primary-color);
}

.shadow-on-hover{
	transition: all 0.2s;
}

.shadow-on-hover:hover{
	box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.divider{
  width: 80px;
  height: 4px;
  display: block;
  background-color: var(--color-primary);
  margin-bottom: 20px;
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f5f6f7;
}

.section-header {
  text-align: center;
  padding-bottom: 40px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  color: #2e3135;
}

.section-header h2:before,
.section-header h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--color-primary);
  display: inline-block;
}

.section-header h2:before {
  margin: 0 15px 10px 0;
}

.section-header h2:after {
  margin: 0 0 10px 15px;
}

.section-header p {
  margin: 0 auto 0 auto;
}

@media (min-width: 1199px) {
  .section-header p {
    max-width: 60%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 140px 0 60px 0;
  min-height: 30vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumbs:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
}

.breadcrumbs h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
}

.breadcrumbs ol a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

.breadcrumbs ol a:hover {
  text-decoration: underline;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--color-secondary);
  line-height: 0;
}

.scroll-top:hover {
  background: #ffc732;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}


/************************************/
.service_page .sr_item{
	padding:30px;
	border:2px solid #CCCCCC;
	background:#fff;
}
.service_page .sr_item .img_holder{
	width:100%;
}
.service_page .sr_item .img_holder img{
	width:100%;
	height:200px;
}
.service_page .sr_item .sr_cont{
	padding-top:15px;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: var(--color-primary) transparent var(--color-primary) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #feb900;
  color: #fff;
  height: 38px;
  font-size: 14px;
  font-weight: 600;
  z-index: 996;
  transition: all 0.5s;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar i {
  padding-right: 6px;
  line-height: 0;
}

@media (max-width: "992px"){

}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  z-index: 997;
  padding: 8px 0;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;

}

.header .logo img {
  max-height: 80px;
  margin-right: 6px;
  margin-left: 45px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #000000;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--color-default);
    font-weight: 400;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.8);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.7);
    white-space: nowrap;
    text-transform: uppercase;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #000000;
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #222428;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    position: relative;
    color: #000000;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    padding-right: 10px;
  }

  .mobile-nav-hide {
    color: #050505;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9996;
  }
}

@media (max-width: 1279px) {
  .logo img{
    display: none;
    padding: 0;
    margin: 0;
  }
}

.mobile-logo img{
  width: 70px;
}

@media (min-width: 1279px) {
  .mobile-logo img{
    display: none;
  }
}


/*--------------------------------------------------------------
# Get Started Section
--------------------------------------------------------------*/
/* .get-started .content {
  padding: 30px 0;
}

.get-started .content p {
  font-weight: 500;
}

.get-started .content ul{
  list-style: none;
  padding-left: 0rem;
  line-height: 2;
}

.get-started .content ul li{
  font-weight: 600;
}

.get-started .content ul li i{
  color: var(--color-primary);
} */



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.slide-1{
	background: linear-gradient(#00000054, #00000054), url(../img/hero-carousel/hero-slider-1.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.slide-2{
	background: linear-gradient(#00000054, #00000054), url(../img/hero-carousel/hero-slider-2.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.carousel-control-prev,
.carousel-control-next{
	background-color: #000000a4;
	width: 40px;
	height: 70px;
	margin: auto;
}

#heroSlider h6::after,
#heroSlider h6::before{
	content:'';
	width: 40px;
	height: 4px;
	background-color: #fff;
	display: inline-block;
	margin: 10px;
	vertical-align: middle;
}

.display-1 span{
  font-size: 69px;
}

@media (max-width:992px){
  .display-1{
    font-size: 49px;
  }
  .display-1 span{
    font-size: 44px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 36px;
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 9px;
  position: relative;
}

.about .content h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.about .content p {
  font-size: 14px;
}

.img-about img{
  height: 550px;
  width: 100%;
  object-fit: cover;
}

.about h2 {
  font-size: 48px;
  font-weight: 700;
  font-family: var(--font-secondary);
  margin: 30px 0;
}

@media (min-width: 991px) {
  .about h2 {
    max-width: 65%;
    margin: 0 0 80px 0;
  }
}

.about .our-story {
  padding: 40px;
  background-color: #f5f6f7;
}

@media (min-width: 991px) {
  .about .our-story {
    padding-right: 35%;
  }
}

.about .our-story h4 {
  text-transform: uppercase;
  font-size: 18px;
  color: #838893;
}

.about .our-story h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-secondary);
}

.about .our-story p:last-child {
  margin-bottom: 0;
}

.about ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.about ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  margin-right: 4px;
  color: var(--color-primary);
}

.about .watch-video i {
  font-size: 32px;
  transition: 0.3s;
  color: var(--color-primary);
}

.about .watch-video a {
  font-weight: 600;
  color: var(--color-secondary);
  margin-left: 8px;
  transition: 0.3s;
}

.about .watch-video:hover a {
  color: var(--color-primary);
}

.about .about-img {
  min-height: 600px;
  background-size: cover;
  background-position: center;
}

@media (min-width: 992px) {
  .about .about-img {
    position: absolute;
    top: 0;
    right: 0;
  }
}

/*--------------------------------------------------------------
# Alt About-Page Section
--------------------------------------------------------------*/
.alt-about .img-bg {
  background-size: cover;
  background-position: center center;
  min-height: 400px;
}

.alt-about h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.alt-about h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.alt-about .icon-box {
  margin-top: 50px;
}

.alt-about .icon-box i {
  background-color: var(--surface-color);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  width: 48px;
  height: 48px;
  font-size: 22px;
  flex-shrink: 0;
  border-radius: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.alt-about .icon-box:hover i {
  background-color: var(--color-primary);
  color: #fff;
}

.alt-about .icon-box h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.alt-about .icon-box h4 a {
  color: #000;
  transition: 0.3s;
}

.alt-about .icon-box h4 a:hover {
  color: var(--color-primary);
}

.alt-about .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
 .service-box {
  color: var(--heading-color);
  border: 0;
  padding: 30px;
  transition: 0.3s;
  border-radius: 10px;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  cursor: pointer;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgb(0 0 0 / 47%);
  
}

 .service-box i {
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  width: 48px;
  height: 48px;
  font-size: 22px;
  flex-shrink: 0;
  border-radius: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-box .service-content h4 {
  font-size: 22px;
  font-weight: 600;
  color: #29303e;
}

 .service-box .service-content p {
  font-size: 15px;
  margin: 0;
}

/*--------------------------------------------------------------
#Alt-Service
--------------------------------------------------------------*/
.service-page-box {
  color: var(--heading-color);
  padding: 10px 15px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: start;
  cursor: pointer;
  border-bottom: 1.5px dotted #fff; 
}

.service-page-box .service-content h4 {
  font-size: 20px;
  font-weight: 400;
  margin: 0;
  transition: 0.3s;
  width: 100%;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden !important;
  text-overflow: ellipsis;
  color: #000;
}


.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  background-color: transparent;
  color: #000000;
  border-radius: 0;
}


.tab-content{
  border-right: 1px solid #dadada;
  height: 100%;
  border-radius: 0;
}

.nav-link{
  border-radius: 0;
}

/*--------------------------------------------------------------
#JOb
--------------------------------------------------------------*/
.job-box{
  background: #fff9f577;
  padding: 30px 20px;
  border-radius: 10px;
  border: 1px solid #cccccc83;
  text-align: left;
}

.job-box p{
  font-weight: 600;
}

.job-item{
  display: flex;
  justify-content: space-between;

}

.job-item img{
  height: 50px;
  width: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.job-opening {
  overflow: hidden;
}

.job-apply-btn{
  padding: 8px 28px;
  background: #209fd9;
  border: 1px solid #209fd9;
  border-radius: 5px;
  color: #fff;
  margin: 0;
  font-size: 12px;
  font-weight: 600;
}

.job-detail-btn{
  padding: 8px 28px;
  /* background: #209fd9; */
  border: 1px solid #209fd9;
  border-radius: 5px;
  color: #000;
  margin: 0;
  font-size: 12px;
  font-weight: 600;
}

/* .job-opening .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.job-opening .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #3fbbc0;
}

.job-opening .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #3fbbc0;
}

.job-opening .swiper-slide-active {
  text-align: center;
} */

.swiper-slide{
  position:relative;
}

.job-content{
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  
}

.job-content p,i{
  padding: 5px 10px;
  margin: 0;
}


@media (min-width: 992px) {
  .job-opening .swiper-wrapper {
    padding: 40px 0;
  }

  /* .gallery .swiper-slide-active {
    border: 6px solid #3fbbc0;
    padding: 4px;
    background: #fff;
    z-index: 1;
    transform: scale(1.2);
    margin-top: 10px;
  } */
}


/*--------------------------------------------------------------
#Alt JOb
--------------------------------------------------------------*/
.box{
  background-color: #fff;
  border: 1px solid #ccc;
  min-height: 280px;
  padding: 20px 15px;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
}

.box h4{
  font-weight: 600;
}

.box p{
  font-weight: 600;
}


.box .aply-btn{
  position: absolute;
  bottom: 10px;
  left: 20px;
  font-weight: 600;
}

.box .btn-category{
  padding: 4px 10px;
  border-radius: 2px;
  margin: 5px 0px;
  font-size: 14px;
  font-weight: 600;
}

.apply_form_page .form-label{
  font-weight: 600;
}

.apply{
  /* background: linear-gradient(#00000070, #00000070), url(../img/hero-carousel/hero-slider-1.jpg);
  background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
  background-attachment: fixed; */
  background: var(--color-primary);
}

.apply h1{
  font-weight: 700;
}

.apply .main-btn{
  background: #fff;
  border: 2px solid #fff;
  color: var(--color-primary);
  text-align: right;
}

.indx-aply-btn{
  text-align: right;
}

.apply .main-btn:hover{
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

@media (max-width:992px){
  .apply h1{
    text-align: center;
    margin-bottom: 15px;
    font-size: 40px;
    font-weight: 700;
  }

  .indx-aply-btn{
    text-align: center;
    margin-top: 20px;
  }
  
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.products{
	margin-top:0px;
}

.cardtwo{
	text-align: center;
  border-radius: 10px;
	transition:.5s ease;
  background-color: #e0e0e03d;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-img{
  width: 100px;
  height: 100px;
  background-color: var(--color-primary);
  border-radius: 50%;
}

.testimonial-img img{
  width: 100px;
  border-radius: 50%;
  position: relative;
  top: 4px;
  left: 7px;
}

.testimonial-content .item i{
  font-size: 22px;
  font-weight: 600;
  color: var(--color-primary);
}

.testimonial-content .item .review-star i{
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
}

@media (max-width:992px){
  .testimonial-content {
    /* display: flex;
    align-items: center;
    justify-content: center; */
    flex-direction: column;
  }

  .item .card-title{
    margin: 20px 0;
  }
}

/*--------------------------------------------------------------
/* News Update 
--------------------------------------------------------------*/
.latest_news{
	padding:20px;
	background:#fff;
	border:2px solid;
}
.latest_news h2{
	font-size:26px;
	font-weight:600;
	color: #004281;
    border-bottom: 2px solid;
}
.latest_news .items{
	border:1px solid #CCCCCC;
	margin:5px;
}
.latest_news .items .new_date{
	background:#b01405;
	color:#fff;
}
.latest_news .items .new_date p{
	color:#fff;
    font-weight: 600;
	text-align:center;
	font-size:20px;
}
.latest_news .items .new_date p span{
	font-size: 35px;
}
.latest_news .items .cont{
	padding-left:10px;
}
.latest_news .items .cont h4{
	font-size:22px;
	font-weight:600;
	color:#b01405;
}

@media (max-width: 575px) {
.enquiry_form {
    padding: 20px;
  }
}

.enquiry_form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.enquiry_form p {
  font-size: 14px;
  margin-bottom: 20px;
}

.enquiry_form input,
.enquiry_form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.enquiry_form input:focus,
.enquiry_form textarea:focus {
  border-color: var(--color-primary);
}

.enquiry_form input {
  padding: 12px 15px;
}

.enquiry_form textarea {
  padding: 12px 15px;
}

.enquiry_form .send {
  background: var(--color-primary);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.enquiry_form .send:hover {
  background: rgba(254, 185, 0, 0.8);
}

/*--------------------------------------------------------------
# alt other page news
--------------------------------------------------------------*/
.news-page-header h4{
  font-weight: 600;

}

.news-page-header strong{
  font-weight: 600;
  color: #6c757d;
}

.border-line{
  height: 2px;
  width: 100%;
  background-color: #a5a5a5;
}

.news-page-content p{
  line-height: 1.5;
  
  font-weight: 600;
  color: #6c757d;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: #fff;
  background: url("../img/footer-bg.jpg") top center no-repeat;
  background-size: cover;
  font-size: 14px;
  padding: 80px 0 60px 0;
  position: relative;
}

.footer:before {
  content: "";
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  inset: 0;
}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
}

.footer .footer-content .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.footer .footer-content .footer-info h3 span {
  color: var(--color-primary);
}

.footer .footer-content .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: #fff;
}

.footer .footer-content .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  margin-right: 8px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .footer-content .social-links a:hover {
  background: var(--color-primary);
  text-decoration: none;
}

.footer .footer-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-content .footer-links {
  margin-bottom: 30px;
}

.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-content .footer-links ul li {
  padding: 8px 0;
}

.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-content .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
  color: #fff;
}

.footer .footer-legal .copyright {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer .footer-legal .credits {
  padding-top: 4px;
  font-size: 13px;
  color: #fff;
}

.footer .footer-legal .credits a {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  padding: 20px 0 30px 0;
}

.contact .info-item i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 24px;
  line-height: 0;
  color: var(--color-primary);
  border-radius: 50%;
  border: 2px dotted #ffd565;
}

.contact .info-item h3 {
  font-size: 20px;
  color: #6c757d;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  padding: 30px;
}

.contact .php-email-form .form-group {
  padding-bottom: 20px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.contact .php-email-form button[type=submit]:hover {
  background: rgba(254, 185, 0, 0.8);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}



/* vision & mission */

.vision_mission_page .content h3 {
  font-size: 36px;
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 9px;
  position: relative;
}

.vision_mission_page .content h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team-member{
  cursor: pointer;
  border: 2px solid rgba(21, 18, 18, 0.058);
  background: #2e4f5e;
  color: #fff;
}



.team-member img{
	width: 140px;
	height: 140px;
	border-radius: 50%;
	box-shadow: -5px -5px 0 var(--color-primary);
  position: relative;
  top:-30px;
}

.team-member .member-name{
	font-size: 26px;
  font-weight: bold;
}


.member p{
  font-weight: 600;
}

.member-name{
  font-weight: 700;
  font-size: 29px;
}

.team-member-social i{
  font-size: 17px;
  transition: ease .3s;
}


.team-member-social i:hover{
  color: var(--color-primary);
}




/* other Page event gallery */
/* Instapost */
.insta-post{
	position: relative;
	overflow: hidden;
}

.insta-post .insta-btn{
	width: 80px;
	height: 80px;
	background-color: #ffffffdc;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	opacity: 0;
}

.insta-post img{
	transition: all 0.4s;
}

.insta-post:hover img{
	transform: scale(1.2);
}

.insta-post:hover .insta-btn{
	opacity: 1;
}
/*********************/
.c_issues{
    padding:30px;
    margin:10px 0px;
    background:#f5f5f5;
}
.c_issues .issues-box{
    background:#fff;
    width:100%;
    height:100%;
    padding:20px;
}