/*



*/


/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #0dbdfe;
  --secondary-color:              #000000;
  --section-bg-color:             #f0fffe;
  --custom-btn-bg-color:          #0dbdfe;
  --custom-btn-bg-hover-color:    #ff0015;
  --dark-color:                   #0dbdfe;
  --p-color:                      #000000;
  --border-color:                 #7fffd4;
  --link-hover-color:             #B22727;

  --body-font-family:             'Outfit', sans-serif;

  --h1-font-size:                 74px;
  --h2-font-size:                 36px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  12px;
  --btn-font-size:                14px;
  --copyright-font-size:          16px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-bold:             700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family); 

}



/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.link-fx-1 {
  color: var(--white-color);
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 6px;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.link-fx-1:hover {
  color: var(--link-hover-color);
}

.link-fx-1:hover::before {
  transform: translateX(17px) scaleX(0);
  transition: transform .2s;
}

.link-fx-1:hover .icon circle {
  stroke-dashoffset: 200;
  transition: stroke-dashoffset .2s .1s;
}

.link-fx-1:hover .icon line {
  transform: rotate(-180deg);
}

.link-fx-1:hover .icon line:last-child {
  transform: rotate(180deg);
}

.link-fx-1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform-origin: right center;
  transition: transform .2s .1s;
}

.link-fx-1 .icon {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateX(100%) rotate(90deg);
  font-size: 32px;
}

.icon {
  --size: 1em;
  height: var(--size);
  width: var(--size);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.link-fx-1 .icon circle {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset .2s;
}

.link-fx-1 .icon line {
  transition: transform .4s;
  transform-origin: 13px 15px;
}

.link-fx-1 .icon line:last-child {
  transform-origin: 19px 15px;
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 1px;
  padding-bottom: 1px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-color: var(--dark-color);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.section-overlay + .container {
  position: relative;
}

.tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 45px;
}

.nav-tabs {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-large);
  border-bottom: 0;
  padding: 15px;
}

.nav-tabs .nav-link {
  border-radius: var(--border-radius-large);
  border: 0;
  padding: 15px 25px;
  transition: all 0.3s;
}

.nav-tabs .nav-link:first-child {
  margin-right: 15px;
}

.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus, 
.nav-tabs .nav-link:hover {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  color: var(--primary-color);
}

.nav-tabs h5 {
  color: var(--p-color); 
  margin-bottom: 0;
}

.nav-tabs .nav-link.active h5,
.nav-tabs .nav-link:focus h5, 
.nav-tabs .nav-link:hover h5 {
  color: var(--primary-color);
}


/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
  color: var(--white-color);
  
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}


/*---------------------------------------
  VIDEO              
-----------------------------------------*/
.video-wrap {
  z-index: -100;
}

.custom-video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}


/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-color: var(--primary-color);
  padding-top: 12px;
  padding-bottom: 12px;
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin-top: 51px;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: var(--dark-color);
}

.navbar {
  background: transparent;
  z-index: 9;
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--white-color);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px 20px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: var(--secondary-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 30px;
  height: calc(100vh - 40px);
}

.hero-section small {
  color: var(--white-color);
  text-transform: uppercase;
}

.hero-section .section-overlay {
  z-index: 2;
  background-color: #000000;
  opacity: 0.35;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-bottom: 50px;
}

.hero-section .container .row {
  height: 100%;
}


/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-section {
  background-image: url('../images/2V7A0179r.png');
  background-color: #0dbdfe;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.about-image {
  border-radius: var(--border-radius-medium);
  display: block;
}

.about-text-wrap {
  position: relative;
}

.about-text-icon {
  background: var(--primary-color);
  border-radius: 100%;
  font-size: var(--h3-font-size);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
}

.about-text-info {
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: var(--border-radius-medium);
  border: 1px solid rgba(209, 213, 219, 0.3);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 10px;
  padding: 20px;
}


/*---------------------------------------
  TICKET               
-----------------------------------------*/
.ticket-section {
  background-image: url('../images/nicholas-green-unsplash-blur.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 130px;
}

.ticket-form {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 50px;
}

.ticket-form .form-check {
  position: relative;
  min-height: 52px;
  padding-left: 35px;
}

.ticket-form .form-check .form-check-label {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 12px;
  margin-left: 35px;
  width: 100%;
  height: 100%;
}


/*---------------------------------------
  ARTISTS              
-----------------------------------------*/
.artists-thumb {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.artists-image {
  border-radius: var(--border-radius-medium);
  display: block;
  width: 100%;
}

.artists-thumb:hover .artists-hover {
  transform: translateY(0);
  opacity: 1;
}

.artists-hover {
  background-color: var(--primary-color);
  background-color: rgba(8, 223, 205, 0.75);
  border-radius: var(--border-radius-medium);
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  margin: 20px;
  padding: 35px;
  transition: all 0.5s ease;
  transform: translateY(100%);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  opacity: 0;
}

.artists-hover p strong {
  color: var(--white-color);
  display: inline-block;
  min-width: 180px;
  margin-right: 20px;
}

.artists-hover p a {
  color: var(--secondary-color);
}

.artists-hover p a:hover {
  color: var(--white-color);
}

.artists-hover hr {
  margin: 1.5rem 0;
}


/*---------------------------------------
  SCHEDULE              
-----------------------------------------*/
.schedule-section {
  background-image: url('../images/2V7A0179r.png');
  background-color: #1ec8ce;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  
}
.text-white{
  color: #000000;
}
.table-responsive {
	filter: drop-shadow(2% 2px 4px #606060);
}

.schedule-table {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  color: #0dbdfe;
 
}


.schedule-table .bg-warning {
  background: #f0a5a5 !important;
}

.schedule-table thead th {
  background-color: var(--secondary-color);
}

.schedule-table th,
.schedule-table tr,
.schedule-table td {
  border-bottom-color: #0dbdfe;
  padding: 10px;
}

.schedule-table tr:last-child th,
.schedule-table tr:last-child td {
  border-bottom-color: transparent;
}

.schedule-table thead th {
  border-right: 1px solid #0dbdfe;
  border-bottom-color: transparent;
}

.schedule-table th + td {
  border-bottom: 0;
}

.schedule-table thead th:last-child {
  border-right-color: transparent;
}

.schedule-table .pop-background-image {
  background-image: url('../images/2V7A0179r.png');
}

.schedule-table .rock-background-image {
  background-image: url('../images/2V7A0179r.png');
}

.schedule-table .country-background-image {
  background-image: url('../images/logo1.png');
}

.table-background-image-wrap {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: none;
  position: relative;
}

.schedule-table h3,
.schedule-table p {

  position: relative;
  z-index: 2;
  color: #ffffff;
  font-weight: bold;
}


/*---------------------------------------
  PRICING              
-----------------------------------------*/
.pricing-thumb {
  border: 1px dotted var(--dark-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  padding: 30px;
}

.pricing-thumb h3 small {
  display: inline-block;
  font-size: var(--p-font-size);
  margin-right: 15px;
}

.pricing-list {
  column-count: 3;
  padding-left: 20px;
}

.pricing-list-item {
  line-height: normal;
  margin-right: 10px;
  margin-bottom: 10px;
}

.pricing-tag {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px;
}

.pricing-tag span {
  font-size: 180%;
  line-height: normal;
}

.pricing-thumb .link-fx-1 {
  color: var(--primary-color);
}

.pricing-thumb .link-fx-1:hover {
  color: var(--link-hover-color);
}
.pricing-thumb {
  transition: transform 0.3s ease;
}

.pricing-thumb:hover {
  transform: scale(1.05);
}
@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-5px) rotate(-5deg); }
  50% { transform: translateX(5px) rotate(5deg); }
  75% { transform: translateX(-5px) rotate(-5deg); }
  100% { transform: translateX(0); }
}

.pricing-thumb:hover {
  animation: shake 0.5s ease;
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.google-map {
  border-radius: var(--border-radius-medium);
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  background-color: var(--dark-color);
  position: relative;
  overflow: hidden;
  padding-bottom: 3px;
}

.site-footer-top {
  background-color: var(--secondary-color);
  background-repeat: no-repeat;
  margin-bottom: 7px;
  padding-top: 3px;
  padding-bottom: 3px;
  font-size: 10px;
}

.site-footer-bottom {
  border-top: 1px solid #1f1c1c;
  margin-top: 60px;
}

.site-footer-title {
  color: var(--primary-color);
}

.site-footer-link,
.copyright-text {
  color: var(--white-color);
}

.site-footer-links {
  padding-left: 0;
}

.site-footer-link-item {
  list-style: none;
  display: inline-block;
  margin-right: 15px;
}

.copyright-text {
  font-size: var(--copyright-font-size);
}










footer {
	margin-top: -6px;
	background: #0dbdfe;
	color: rgb(255, 255, 255);
	padding: 1px 0 1px;
	border-top-left-radius: px;
	border-bottom-right-radius: 0px;
	font-size: 3px;
}


.afterfooter {
	margin-top: 10px;
	background: #0dbdfe;
	color: rgb(255, 255, 255);
	border-top-left-radius: 0px;
	border-bottom-right-radius: px;
	font-size: 3px;
	text-align: center;

}
.afterfooter h5{
	padding-top: 10px;
  font-size: 13px;
  color: #000;
  font-weight: 900;
}




.afterfooter h6{
	display: inline-block;
	margin-top: 3px;
	text-decoration: none;
	color: #001a8d;
	font-size: 14px;
	font-weight: 900;
	text-shadow: none;
	letter-spacing: 0.1px;
}
.afterfooter h6 b{
  color: #ffffff;

}

.afterfooter h6 em{
	display: inline-block;
	text-decoration: none;
	color: rgb(255, 0, 0)!important;
	font-size: 14px;
	font-weight: 1000;
	text-transform: uppercase;
	text-shadow: none;
	letter-spacing: 1px;
}




footer .logo em {
	font-style: normal;
	font-size: 14px;
	color: #001572;
}
footer .logo-ft {
	display: inline-block;
	margin-top: 15px;
	text-decoration: none;
	color: rgb(255, 0, 0)!important;
	font-size: 21px;
	font-weight: 900;
	text-transform: uppercase;
	text-shadow: none;
	letter-spacing: 1px;
}

footer .logo p {
	font-weight: 900;
	font-size: 12px;
	color: #000000;
	margin-bottom: -10px;
	letter-spacing: 0.5px;
  font-style: italic;
  font-family: 'Courier New', Courier, monospace;
}
footer .logo p em{
	font-weight: 900;
	font-size: 12px;
	color: #ff0000;
  font-style: italic;
	margin-bottom: -10px;
	letter-spacing: 0.5px;
}

footer .logo span {
	font-weight: 600;
	color: #f7c552;
}

footer .logo a {
	color: #FFF;
}

footer .logo a:hover {
	color: #9F0;
}

footer .location h4 {
	margin-top: 0px;
	font-size: 13px;
	font-weight: 500;
	color: rgb(255, 0, 0);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 30px;
}

footer .location ul li {
	font-size: 11px;
	color: #000000;
	display: inline-block;
	line-height: 24px;
	letter-spacing: 0.5px;
	padding-top: 5px;
  padding-left: 0;
	padding-bottom: 5px;
  font-weight: 900;
}

footer .location ul li:first-child {
	margin-right: 15px;
	padding-right: 15px;
	border-right: 1px solid rgba(250, 250, 250, 0.1);
}

footer .contact-info h4 {
	margin-top: 0px;
	font-size: 13px;
	font-weight: 500;
	color: rgb(255, 0, 0);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 30px;
}

footer .contact-info ul li {
	font-size: 11px;
	color: #000000;
	display: inline-block;
	line-height: 24px;
	letter-spacing: 0.5px;
	padding-top: 5px;
	padding-bottom: 5px;
	font-weight: 900;
	margin-bottom: -15px;
}

footer .contact-info ul li em {
	font-style: normal;
	font-weight: 500;
}

footer .connect-us h4 {
	margin-top: 0px;
	font-size: 13px;
	font-weight: 500;
	color: #9F0;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 35px;
}

footer .connect-us ul li {
	display: inline-block;
	margin-right: 2px;
}

footer .connect-us ul li a {
	display: inline-block;
	width: 28px;
	height: 28px;
	line-height: 28px;
	text-align: center;
	background-color: #fff;
	border-radius: 50%;
	color: #0011ff;
	font-size: 15px;
	transition: all 0.3s;
}
footer .connect-us ul li a:hover {
	background-color: #00eeff;
}


/* RESPONSIVE */

@media (max-width: 991px){

	.baner-content .text-content p {
		padding: 0px 15%;
	}


	#about .service-item {
		margin-bottom: 80px;
	} 

	#portfolio .section-heading {
		text-align: center;
		padding-top: 100px;
		padding-bottom: 100px;
		background-color: #33c1cf;
		height: 505px;
		margin-left: -15px;
		padding-left: 0vh;
		margin-right: -15px;
		padding-right: 0vh;
		overflow: hidden;
	}

	#portfolio .section-heading .line-dec {
		margin: 20px auto 15px auto;
	}

	#portfolio .section-heading p {
		padding: 0px 20px;
	}

	.projects-holder {
		text-align: center;
		padding: 15px 0px;

	}
	#portfolio .project-item {
		margin: 15px 0px;
	}

	#blog .section-heading {
		text-align: center;
		padding-top: 100px;
		padding-bottom: 100px;
		background-color: rgba(0, 0, 0, 0.5);
		margin-left: -15px;
		padding-left: 0vh;
		margin-right: -15px;
		padding-right: 0vh;
		overflow: hidden!important;
	}

	#blog .section-heading .line-dec {
		margin: 20px auto 15px auto;
	}

	#blog .section-heading p {
		padding: 0px 30px;
	}

	.tabs {
		padding: 0px 45px;
	}

	#first-tab-group {
		margin-bottom: 30px;
	}

	#contact-us .section-heading p {
		padding: 0px 10%;
	}

	footer {
		text-align: center;
	}

	footer .logo {
		margin-bottom: 30px;
		padding-bottom: 30px;
		border-bottom: 1px solid rgba(250, 250, 250, 0.1);
	}

	footer .location {
		margin-bottom: 30px;
		padding-bottom: 30px;
		border-bottom: 1px solid rgba(250, 250, 250, 0.1);
	}

	footer .contact-info {
		margin-bottom: 30px;
		padding-bottom: 30px;
		border-bottom: 1px solid rgba(250, 250, 250, 0.1);
	}

	footer .contact-info ul li {
		margin-right: 10px;
		margin-left: 10px;
	}

}

@media (max-width: 768px){
	.baner-content .text-content p {
		padding: 0px 10%;
	}
	#main-nav {
		margin-left: -15px;
		margin-right: -15px;
		border-top: none;
		margin-top: 15px;
		background-color: rgba(250, 250, 250, 0.95);
	}

	.navbar-nav {
		margin-top: 0px;
		margin-bottom: 0px;
	}

	.navbar-inverse .navbar-nav>li {
		margin-left: 0px;
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	}

	.navbar-inverse .navbar-nav>li:last-child {
		border-bottom: none;
	}


	.navbar-inverse .navbar-nav>li>a {
		font-family: 'Roboto', sans-serif!important;
		line-height: 55px;
		color: #343434!important;
	}

}

@media (max-width: 385px){

	footer .location ul li {
		display: block;
	}

	footer .location ul li:first-child {
		margin-right: 0px;
		padding-right: 0px;
		border-right: none;
	}

}




















/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.social-icon-link span {
  display: block;
}

.social-icon-link span:hover::before{
  animation: spinAround 2s linear infinite;
}

@keyframes spinAround {
  from {
    transform: rotate(0deg)
  }
  to {
    transform: rotate(360deg);
  }
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .navbar {
    background-color: var(--dark-color);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 30px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .hero-section {
    padding-top: 150px;
  }

  .pricing-thumb {
    padding: 35px;
  }

  .schedule-table h3 {
    font-size: 22px;
  }

  .schedule-table th {
    padding: 20px;
  }

  .schedule-table tr, 
  .schedule-table td {
    padding: 25px;
  }

  .ticket-section {
    padding-top: 130px;
  }

  .ticket-form {
    padding: 30px;
  }
}

@media screen and (max-width: 767px) {
  .custom-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
}













/*---------------------------------------
  GALLERY/PORTIFOLIO               
-----------------------------------------*/



.slide2 img:hover {
  transform: scale(1.5);
}

.containerPortfolio {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 5px 10px 0 10px;
}
.containerPortfolio .headingPortfolio {
    width: 100%;
    padding-bottom: 10px;
    color: #0dbdfe;
}
.containerPortfolio .headingPortfolio h3 {
    font-size: 30px;
    font-weight: bolder;
    padding-bottom: 10px;
    border-bottom: 3px solid #000000;
}
.containerPortfolio .headingPortfolio h3 span {
    font-weight: 400;
}
    
  @keyframes swing {
    0% {
      transform: rotate(0deg);
    }
    50% {
      transform: rotate(10deg);
    }
    100% {
      transform: rotate(-10deg);
    }
  }

  .headingPortfolio h3 span {
    display: inline-block;
    animation: swing 1s ease-in-out infinite alternate;
  }

.wrapper2 {
    width: 100%;
    height: 18vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider2 {
    width: 90%;
    height: 110px;
    position: relative;
    background: white;
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.2);
    display: flex;
    overflow: hidden;
    border-radius: 30px;
}
.slide2 {
    height: 100px;
    display: flex;
    align-items: center;
    animation: slideshow 30s linear infinite;
}
.slide2 img {
    height: 70px;
    padding: 0 30px;
    transition: transform 0.3s ease-in-out;
}

@keyframes slideshow {
    0% { transform: translateX(0); }
    80% { transform: translateX(-70%); }
}

.h1{
	text-align: center;
	color: #04a6bd;
	font-size: 9px;
	font-family: 'Times New Roman', Times, serif;

}
@keyframes animate {
	0% {
		transform: scale(0);
	}
	100% {
		transform: scale(1);
		}
}





/*---------------------------------------
 MANAGEMENT PROFILE           
-----------------------------------------*/

#testimonial {
	background-color: #0dbdfe;
	text-align: center;
	padding: 70px 70px;
	height: 300px;
	font-size: 10px;

  

}


.testmonywrapper .testmonyouter{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 80px;
  }
  .testmonywrapper .testmonycard{
	background: #fff;
	width: auto;
	display: flex;
	align-items: center;
	padding: 20px;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	justify-content: space-between;
	border-radius: 100px 20px 20px 100px;
	box-shadow: 0px 10px 15px rgba(0,0,0,0.1);
	animation: animate 15s linear infinite;
	animation-delay: calc(3s * var(--delay));
	align-items: center;
	justify-content: center;

  }

  .testmonyouter:hover .testmonycard{
	animation-play-state: paused;
  }
  .testmonywrapper .testmonycard:last-child{
	animation-delay: calc(-3s * var(--delay));
  }
  @keyframes animate {
	0%{
	  opacity: 0;
	  transform: translateY(100%) scale(0.5);
	}
	5%, 20%{
	  opacity: 0.4;
	  transform: translateY(100%) scale(0.7);
	}
	25%, 40%{
	  opacity: 1;
	  pointer-events: auto;
	  transform: translateY(0%) scale(1);
	}
	45%, 60%{
	  opacity: 0.4;
	  transform: translateY(-100%) scale(0.7);
	}
	65%, 100%{
	  opacity: 0;
	  transform: translateY(-100%) scale(0.5);
	}
  }
  .testmonycard .testmonycontent{
	display: flex;
	align-items: center;
  }
  .testmonywrapper .testmonycard .img{
	height: 80px;
	width: 80px;
	position: absolute;
	left: -5px;
	background: #fff;
	border-radius: 50%;
	padding: 5px;
	box-shadow: 0px 0px 5px rgba(0,0,0,0.2);
  }
  .testmonycard .img img{
	height: 100%;
	width: 100%;
	border-radius: 50%;
	object-fit: cover;
  }
  .testmonycard .details{
	margin-left: 80px;
  }
  .details span{
	font-weight: 600;
	font-size: 14px;
  }



  .details p{
	font-weight: 600;
	font-size: 12px;
  }

  .testmonycard a{
	text-decoration: none;
	padding: 7px 18px;
	border-radius: 25px;
	color: #fff;
	background: #0dbdfe;
	transition: all 0.3s ease;
  }
  .testmonycard a:hover{
	transform: scale(0.94);
  }



/*---------------------------------------
BLOG     
-----------------------------------------*/
  
.card-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  max-width: 1250px;
  margin: 10px auto;
  padding: 1px;
  gap: 10px;
}

.card-list .card-item {
  background: #fff;
  padding: 8px;
  border-radius: 8px;
  box-shadow: 0px 5px 10px rgba(255, 255, 255, 0.04);
  list-style: none;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  transition: border 0.5s ease;
}

.card-list .card-item:hover {
  border: 2px solid #0dbdfe;
}

.card-list .card-item img {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  object-fit: cover;
}

.card-list span {
  display: inline-block;
  background: #F7DFF5;
  margin-top: 5px;
  padding: 8px 15px;
  font-size: 0.75rem;
  border-radius: 50px;
  font-weight: 600;
}

.card-list .developer {
  background-color: #F7DFF5; 
  color: #B22485;
}   

.card-list .designer {
  background-color: #d1e8ff;
  color: #2968a8;
}

.card-list .editor {
  background-color: #d6f8d6; 
  color: #205c20;
}

.card-item h3 {
  color: #000;
  font-size: 0.75em;
  margin-top: 28px;
  font-weight: 600;
}

.card-item .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-35deg);
  height: 20px;
  width: 20px;
  color: #000000;
  border: 1px solid #000;
  border-radius: 50%;
  margin-top: 10px;
  transition: 0.2s ease;
}

.card-list .card-item:hover .arrow  {
  background: #0dbdfe;
  color: #fff; 
}

@media (max-width: 1200px) {
  .card-list .card-item {
      padding: 15px;
  }
}

@media screen and (max-width: 980px) {
  .card-list {
      margin: 0 auto;
  }
}







/*---------------------------------------
Image Slider   
-----------------------------------------*/


.wrapperimg {
  display: flex;
  background-image: url('../images//2V7A0179r.png');
  max-width: auto;
  width: 100%;
  height: 330px;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  margin-top: 20px;


}
.wrapperimg i.button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 36px;
  width: 36px;
  background-color: #343f4f;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  color: #fff;
  font-size: 15px;
  transition: all 0.3s linear;
  z-index: 100;
  cursor: pointer;
}
i.button:active {
  transform: scale(0.94) translateY(-50%);
}
i#prev {
  left: 25px;
}
i#next {
  right: 25px;
}
.image-container {
  height: 320px;
  max-width: 400px;
  width: 100%;
  overflow: hidden;
}
.image-container .carousel {
  display: flex;
  height: 100%;
  width: 100%;
  transition: all 0.4s ease;
}
.carousel img {
  height: 100%;
  width: 100%;
  border-radius: 18px;
  border: 10px solid #fff;
  object-fit: cover;
}

/* 
---------------------------------------------
page heading - Career
--------------------------------------------- 
*/

.page-heading {
  background-image: url(../images/Blog/Header3.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 215px 0px 120px 0px;
  text-align: center;
}

.page-heading h2 {
  font-size: 56px;
  color: #fff;
  font-weight: 700;
}

.page-heading .div-dec {
  width: 80px;
  height: 6px;
  border-radius: 3px;
  background-color: #fff;
  margin: 20px auto 0 auto;
}



/* 
---------------------------------------------
page heading - IRMS
--------------------------------------------- 
*/

.page-heading9 {
  background-image: url(../images/logos/irms.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 215px 0px 120px 0px;
  text-align: center;
}

.page-heading9 h2 {
  font-size: 56px;
  color: #fff;
  font-weight: 700;
}

.page-heading9 .div-dec {
  width: 80px;
  height: 6px;
  border-radius: 3px;
  background-color: #fff;
  margin: 20px auto 0 auto;
}



/* 
---------------------------------------------
page heading - Board Members
--------------------------------------------- 
*/

.page-heading8 {
  background-image: url(../images/Blog/Header6.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 215px 0px 120px 0px;
  text-align: center;
}

.page-heading8 h2 {
  font-size: 56px;
  color: #fff;
  font-weight: 700;
}

.page-heading8 .div-dec {
  width: 80px;
  height: 6px;
  border-radius: 3px;
  background-color: #fff;
  margin: 20px auto 0 auto;
}

/* 
---------------------------------------------
page heading - Abstract
--------------------------------------------- 
*/

.page-heading1 {
  background-image: url(../images/Blog/Header1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 215px 0px 120px 0px;
  text-align: center;
}

.page-heading1 h2 {
  font-size: 56px;
  color: #fff;
  font-weight: 700;
}

.page-heading1 .div-dec {
  width: 80px;
  height: 6px;
  border-radius: 3px;
  background-color: #fff;
  margin: 20px auto 0 auto;
}




/* 
---------------------------------------------
page heading - Contact Us
--------------------------------------------- 
*/

.page-heading2 {
  background-image: url(../images/Blog/Header2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 215px 0px 120px 0px;
  text-align: center;
}

.page-heading2 h2 {
  font-size: 56px;
  color: #fff;
  font-weight: 700;
}

.page-heading2 .div-dec {
  width: 80px;
  height: 6px;
  border-radius: 3px;
  background-color: #fff;
  margin: 20px auto 0 auto;
}

/* 



/* 
---------------------------------------------
page heading - About Us
--------------------------------------------- 
*/
.page-heading8 {
  background-image: url(../images/Blog/Header2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 215px 0px 120px 0px;
  text-align: center;
  position: relative; /* Required for the overlay to position correctly */
}

.page-heading8::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Places the overlay above the background image */
}

.page-heading2 h2 {
  font-size: 56px;
  color: #fff;
  font-weight: 700;
  position: relative; /* Ensures the text stays above the overlay */
  z-index: 2; /* Places the text above the overlay */
}

.page-heading2 .div-dec {
  width: 80px;
  height: 6px;
  border-radius: 3px;
  background-color: #fff;
  margin: 20px auto 0 auto;
  position: relative; /* Ensures the div stays above the overlay */
  z-index: 2; /* Places the div above the overlay */
}
/* 
---------------------------------------------
page heading - Donate
--------------------------------------------- 
*/

.page-heading3 {
  background-image: url(../images/Blog/Header9.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 215px 0px 120px 0px;
  text-align: center;
}

.page-heading3 h2 {
  font-size: 56px;
  color: #fff;
  font-weight: 700;
}

.page-heading3 .div-dec {
  width: 80px;
  height: 6px;
  border-radius: 3px;
  background-color: #fff;
  margin: 20px auto 0 auto;
}

/* 
---------------------------------------------
page heading - Gallery
--------------------------------------------- 
*/

.page-heading4 {
  background-image: url(../images/Blog/Header7.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 215px 0px 120px 0px;
  text-align: center;
}

.page-heading4 h2 {
  font-size: 56px;
  color: #fff;
  font-weight: 700;
}

.page-heading4 .div-dec {
  width: 80px;
  height: 6px;
  border-radius: 3px;
  background-color: #fff;
  margin: 20px auto 0 auto;
}


/* 
---------------------------------------------
page heading - Our Projects
--------------------------------------------- 
*/

.page-heading5 {
  background-image: url(../images/Blog/Header6.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 215px 0px 120px 0px;
  text-align: center;
}

.page-heading5 h2 {
  font-size: 56px;
  color: #fff;
  font-weight: 700;
}

.page-heading5 .div-dec {
  width: 80px;
  height: 6px;
  border-radius: 3px;
  background-color: #fff;
  margin: 20px auto 0 auto;
}


/* 
---------------------------------------------
page heading - Our Team
--------------------------------------------- 
*/

.page-heading6 {
  background-image: url(../images/Blog/Header5.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 215px 0px 120px 0px;
  text-align: center;
}

.page-heading6 h2 {
  font-size: 56px;
  color: #fff;
  font-weight: 700;
}

.page-heading6 .div-dec {
  width: 80px;
  height: 6px;
  border-radius: 3px;
  background-color: #fff;
  margin: 20px auto 0 auto;
}

/* 
---------------------------------------------
page heading - Tenders
--------------------------------------------- 
*/

.page-heading7 {
  background-image: url(../images/Blog/Header8.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 215px 0px 120px 0px;
  text-align: center;
}

.page-heading7 h2 {
  font-size: 56px;
  color: #fff;
  font-weight: 700;
}

.page-heading7 .div-dec {
  width: 80px;
  height: 6px;
  border-radius: 3px;
  background-color: #fff;
  margin: 20px auto 0 auto;
}








/* 
---------------------------------------------
contact us page
--------------------------------------------- 
*/

section.map .info-item {
  text-align: center;
  padding: 40px 30px;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  margin-top: -60px;
  margin-left: 15px;
  margin-right: 15px;
  position: relative;
  z-index: 2;
  transition: all .5s;
}

section.map .info-item:hover {
  margin-top: -70px;
}

section.map .info-item i {
  font-size: 36px;
  color: #0dbdfe;
  margin-bottom: 25px;
}

section.map .info-item h4 {
  font-size: 18px;
  color: #212741;
  font-weight: 600;
  margin-bottom: 12px;
}

section.map .info-item a {
  font-size: 15px;
  font-weight: 600;
  color: #0dbdfe;
  transition: all 0.3s;
}

section.map .info-item a:hover {
  color: #000000;
}

#contact input {
  width: 100%;
  height: 50px;
  background-color: #f7f7f7;
  color: #212741;
  border-radius: 5px;
  border: none;
  padding: 0px 15px;
  font-size: 14px;
  outline: none;
  margin-bottom: 30px;
}

#contact textarea {
  width: 100%;
  height: 180px;
  max-height: 24px;
  min-height: 150px;
  background-color: #f7f7f7;
  color: #212741;
  border-radius: 5px;
  border: none;
  padding: 15px 15px;
  font-size: 14px;
  outline: none;
  margin-bottom: 30px;
}

#contact input::placeholder, 
#contact textarea::placeholder {
  color: #212741;
}
#contact button.orange-button {
  font-size: 14px;
  color: #fff;
  background-color: #0dbdfe;
  padding: 12px 30px;
  display: inline-block;
  border-radius: 5px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  border: none;
  transition: all .3s;
}

#contact button.orange-button:hover {
  background-color: #323233;
}



/*---------------------------------------
  Abstract           
-----------------------------------------*/


.abstractblog-posts{
	width: auto;
	padding: 20px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	cursor: pointer;
  }
  
  .abstractpost{
	width: calc(33% - 10px);
	overflow: hidden;
  }
  
  .abstractpost-img{
	width: 100%;
	border-radius: 6px;
	transition: .3s linear;
  }
  
  .abstractpost-content{
	background-color: #d3d0d0dd;
	margin: 0 20px;
	padding: 30px;
	border-radius: 6px;
	transform: translateY(-60px);
	transition: .3s linear;
  }
  
  .abstractpost-content h3{
	font-size: 14px;
	margin-bottom: 10px;
  }
  
  .abstractdate{
	font-size: 13px;
	color: #000000;
  }
  
  .abstractpost:hover .abstractpost-img{
	transform: translateY(20px);
  }
  
  .abstractpost:hover .abstractpost-content{
	transform: translateY(-80px);
  }
  
  @media screen and (max-width: 1200px){
	.abstractblog-posts{
	  justify-content: center;
	}
	.abstractpost{
	  width: min(600px, 100%);
	}
  }





















































  


/*---------------------------------------
 MEGA MENU              
-----------------------------------------*/


section1{
	position: fixed;
	top: 0;
    left: 0;
	z-index: 100;
	width: 100%;
	margin-top: 0px;
	padding: 0;
	background: #0dbdfe;
  }
  section1 .megamenuwrapper{
	position: relative;
	max-width: 1300px;
	padding: 0px 40px;
	height: 60px;
	line-height: 60px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
  }
  .megamenuwrapper .logo a{
	color: #f2f2f2;
	font-size: 30px;
	font-weight: 600;
	text-decoration: none;
	padding-top: 10px;
  }


  .megamenuwrapper .nav-links{
	display: inline-flex;
  }
  .nav-links li{
	list-style: none;
  }
  .nav-links li a{
	color: #000000;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	padding: 9px 15px;
	border-radius: 0px;
	transition: all 0.3s ease;
  }
  .nav-links li a:hover{
	background: #00eeff;
  }
  .nav-links .mobile-item{
	display: none;
  }
  .nav-links .drop-menu{
	position: absolute;
	background: #0dbdfe;
	width: 180px;
	line-height: 45px;
	font-size: 15px;
	top: 50px;
	opacity: 0;
	visibility: hidden;
	box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);

  }
  .nav-links li:hover .drop-menu,
  .nav-links li:hover .mega-box{
	transition: all 0.3s ease;
	top: 55px;
	opacity: 1;
	visibility: visible;
  }
  .drop-menu li a{
	width: 100%;
	display: block;
	padding: 0px;
	color: #fff;
	font-size: 14;
	font-weight: 400;
	border-radius: 0px;
  }
  .mega-box{
	position: absolute;
	left: 0;
	width: 100%;
	padding: 0 30px;
	top: 50;
	opacity: 0;
	visibility: hidden;
  }
  .mega-box .megamenucontent{
	background: #0dbdfe;
	padding: 5px 20px;
	display: flex;
	width: 100%;
	justify-content: space-between;
	box-shadow: 0 6px 10px rgba(0,0,0,0.15);
  }
  .mega-box .megamenucontent .megamenurow{
	width: calc(25% - 30px);
	line-height: 45px;
  }
  .megamenucontent .megamenurow img{
	width: 100%;
	height: 100%;
	object-fit: cover;
  }
  .megamenucontent .megamenurow header{
	color: #f2f2f2;
	font-size: 20px;
	font-weight: 500;
  }
  .megamenucontent .megamenurow .mega-links{
	margin-left: -40px;
	border-left: 1px solid rgba(151, 11, 11, 0.09);
  }
  .megamenurow .mega-links li{
	padding: 0 20px;
	font-size: 15px;
  }
  .megamenurow .mega-links li a{
	padding: 0px;
	padding: 0 20px;
	color: #000000;
	font-size: 14px;
	display: block;
  }
  .megamenurow .mega-links li a:hover{
	color: #f2f2f2;
  }
  .megamenuwrapper .btn{
	color: #000000;
	font-size: 25px;
	cursor: pointer;
	display: none;
  }
  .megamenuwrapper .btn.close-btn{
	position: absolute;
	right: 30px;
	top: 10px;
  }
  
  @media screen and (max-width: 970px) {
	.megamenuwrapper .btn{
	  display: block;
	}
	.megamenuwrapper .nav-links{
	  position: fixed;
	  height: 100vh;
	  width: 100%;
	  max-width: 350px;
	  top: 0;
	  left: -100%;
	  background: #0dbdfe;
	  display: block;
	  padding: 50px 10px;
	  line-height: 50px;
	  overflow-y: auto;
	  box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
	  transition: all 0.3s ease;
	}
	/* custom scroll bar */
	::-webkit-scrollbar {
	  width: 10px;
	}
	::-webkit-scrollbar-track {
	  background: #242526;
	}
	::-webkit-scrollbar-thumb {
	  background: #3A3B3C;
	}
	#menu-btn:checked ~ .nav-links{
	  left: 0%;
	}
	#menu-btn:checked ~ .btn.menu-btn{
	  display: none;
	}
	#close-btn:checked ~ .btn.menu-btn{
	  display: block;
	}
	.nav-links li{
	  margin: 15px 10px;
	}
	.nav-links li a{
	  padding: 0 20px;
	  display: block;
	  font-size: 14px;
	}
	.nav-links .drop-menu{
	  position: static;
	  opacity: 1;
	  top: 65px;
	  visibility: visible;
	  padding-left: 20px;
	  width: 100%;
	  max-height: 0px;
	  overflow: hidden;
	  box-shadow: none;
	  transition: all 0.3s ease;
	}
	#showDrop:checked ~ .drop-menu,
	#showMega:checked ~ .mega-box{
	  max-height: 100%;
	}
	.nav-links .desktop-item{
	  display: none;
	}
	.nav-links .mobile-item{
	  display: block;
	  color: #f2f2f2;
	  font-size: 15px;
	  font-weight: 500;
	  padding-left: 17px;
	  cursor: pointer;
	  border-radius: 5px;
	  transition: all 0.3s ease;
	}
	.nav-links .mobile-item:hover{
	  background: #01f7ff;
	}
	.drop-menu li{
	  margin: 0;
	}
	.drop-menu li a{
	  border-radius: 5px;
	  font-size: 14px;
	}
	.mega-box{
	  position: static;
	  top: 65px;
	  opacity: 1;
	  visibility: visible;
	  padding: 0 20px;
	  max-height: 0px;
	  overflow: hidden;
	  transition: all 0.3s ease;
	}
	.mega-box .megamenucontent{
	  box-shadow: none;
	  flex-direction: column;
	  padding: 20px 20px 0 20px;
	}
	.mega-box .megamenucontent .megamenurow{
	  width: 100%;
	  margin-bottom: 15px;
	  border-top: 1px solid rgba(255,255,255,0.08);
	}
	.mega-box .megamenucontent .megamenurow:nth-child(1),
	.mega-box .megamenucontent .megamenurow:nth-child(2){
	  border-top: 0px;
	}
	.megamenucontent .megamenurow .mega-links{
	  border-left: 0px;
	  padding-left: 15px;
	}
	.megamenurow .mega-links li{
	  margin: 0;
	}
	.megamenucontent .megamenurow header{
	  font-size: 19px;
	}
  }
  section1 input{
	display: none;
  }
  
  .body-text{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	text-align: center;
	padding: 0 30px;
  }
  .body-text div{
	font-size: 45px;
	font-weight: 600;
  }
  

.nav-links .decor b{
    color: #000000;
}


.nav-links .decor stan{
    color: #ff0000;
	font-weight: 980;

}










/*---------------------------------------
 GALLERY           
-----------------------------------------*/
.gallerypic{
	padding: 10px 0px;
}
img{
	max-width: 100%;
}
.gallerypic img{
	background: #0dbdfe;
	padding: 3px;
	width: 100%;
	box-shadow: 0px 0px 15px rgba(0,0,0,0.3);
	cursor: pointer;
}
#gallerypic-popup .modal-img{
	width: 100%;
}














/*---------------------------------------
TENDER        
-----------------------------------------*/

main.table {
  width: 100%;
  height: 99%;
  background-color: #fff;
  backdrop-filter: blur(7px);
  box-shadow: 0 .4rem .8rem #0005;
  border-radius: .8rem;
  overflow: hidden;
  font-size: 13px;
}

.table__header {
  width: 100%;
  height: 10%;
  background-color: #ffffff;
  padding: .8rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.table__header .input-group {
  width: 35%;
  height: 100%;
  background-color: #fff5;
  padding: 0 .8rem;
  border-radius: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .2s;
}

.table__header .input-group:hover {
  width: 45%;
  background-color: #0dbdfe;
  box-shadow: 0 .1rem .4rem #0002;
}

.table__header .input-group img {
  width: 1.2rem;
  height: 1.2rem;
}

.table__header .input-group input {
  width: 100%;
  padding: 0 .5rem 0 .3rem;
  background-color: transparent;
  border: none;
  outline: none;
}

.table__body {
  width: 95%;
  max-height: calc(89% - 1.6rem);
  background-color: rgba(255, 255, 255, 0.733);
  margin: .8rem auto;
  padding-top: 1px;
  border-radius: .6rem;
  overflow: auto;
  overflow: overlay;
}

.table__body::-webkit-scrollbar{
  width: 0.5rem;
  height: 0.5rem;
}

.table__body::-webkit-scrollbar-thumb{
  border-radius: .5rem;
  background-color: #0004;
  visibility: hidden;
}

.table__body:hover::-webkit-scrollbar-thumb{ 
  visibility: visible;
}

table {
  width: 100%;
}

td img {
  width: 36px;
  height: 36px;
  margin-right: .5rem;
  border-radius: 50%;

  vertical-align: middle;
}


tr:hover td {
  color: #0dbdfe;
  cursor: text;
  background-color: #e4e6e7;
}




table, th, td {
  border-collapse: collapse;
  padding: 1rem;
  text-align: left;
}

thead th {
  position: sticky;
  top: 0;
  left: 0;
  background-color: #0dbdfe;
  cursor: pointer;
  text-transform: capitalize;
}

tbody tr:nth-child(even) {
  background-color: #0000000b;
}

tbody tr {
  --delay: .1s;
  transition: .5s ease-in-out var(--delay), background-color 0s;
}

tbody tr.hide {
  opacity: 0;
  transform: translateX(100%);
}

tbody tr:hover {
  background-color: #fff6 !important;
}

tbody tr td,
tbody tr td p,
tbody tr td img {
  transition: .2s ease-in-out;
}

tbody tr.hide td,
tbody tr.hide td p {
  padding: 0;
  font: 0 / 0 sans-serif;
  transition: .2s ease-in-out .5s;
}

tbody tr.hide td img {
  width: 0;
  height: 0;
  transition: .2s ease-in-out .5s;
}

.status {
  padding: .4rem 0;
  border-radius: 2rem;
  text-align: center;
}

.status.On-Going {
  background-color: #86e49d;
  color: #006b21;
}

.status.Ended {
  background-color: #d893a3;
  color: #b30021;
}

.status.pending {
  background-color: #ebc474;
}

.status.shipped {
  background-color: #6fcaea;
}


@media (max-width: 1000px) {
  td:not(:first-of-type) {
      min-width: 12.1rem;
  }
}

thead th span.icon-arrow {
  display: inline-block;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  border: 1.4px solid transparent;
  
  text-align: center;
  font-size: 1rem;
  
  margin-left: .5rem;
  transition: .2s ease-in-out;
}

thead th:hover span.icon-arrow{
  border: 1.4px solid #000000;
}

thead th:hover {
  color: #ffffff;
}

thead th.active span.icon-arrow{
  background-color: #ffffff;
  color: #fff;
}

thead th.asc span.icon-arrow{
  transform: rotate(180deg);
}

thead th.active,tbody td.active {
  color: #6c00bd;
}

.export__file {
  position: relative;
}

.export__file .export__file-btn {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background: #fff6 url(images/export.png) center / 80% no-repeat;
  border-radius: 50%;
  transition: .2s ease-in-out;
}

.export__file .export__file-btn:hover { 
  background-color: #fff;
  transform: scale(1.15);
  cursor: pointer;
}

.export__file input {
  display: none;
}

.export__file .export__file-options {
  position: absolute;
  right: 0;
  
  width: 12rem;
  border-radius: .5rem;
  overflow: hidden;
  text-align: center;

  opacity: 0;
  transform: scale(.8);
  transform-origin: top right;
  
  box-shadow: 0 .2rem .5rem #0004;
  
  transition: .2s;
}

.export__file input:checked + .export__file-options {
  opacity: 1;
  transform: scale(1);
  z-index: 100;
}

.export__file .export__file-options label{
  display: block;
  width: 100%;
  padding: .6rem 0;
  background-color: #f2f2f2;
  
  display: flex;
  justify-content: space-around;
  align-items: center;

  transition: .2s ease-in-out;
}

.export__file .export__file-options label:first-of-type{
  padding: 1rem 0;
  background-color: #86e49d !important;
}

.export__file .export__file-options label:hover{
  transform: scale(1.05);
  background-color: #fff;
  cursor: pointer;
}

.export__file .export__file-options img{
  width: 2rem;
  height: auto;
}







/*---------------------------------------
 jobs and careers
-----------------------------------------*/
 
.jobswrapper{
	max-width: auto;
	margin: 0px 30px 10px 40px;
	padding-top: 5px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	font-size: 14px;
  font-weight: 600;
  }
  .jobswrapper .jobsbox{
	background: #ffffff;
	width: calc(33% - 10px);
	padding: 20px;
	border-radius: 3px;
	box-shadow: 0px 4px 8px rgba(0,0,0,0.15);
	margin-top: 10px;
  }

  .jobswrapper .jobsbox h4{
	color: #0dbdfe;
	font-weight: 800;
  font-size: 15px;

  }


  .jobswrapper .jobsbox p{
	color: #000;
	line-height: 7px;
  font-size: 12px;
  font-weight: 700;
  }



  .jobswrapper .jobsbox .jobscontent{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding-top: 5px;
  }

  .jobsbox .jobsinfo .job{
	font-size: 12px;
	font-weight: 900;
	color: #fe0d0d;
  }
  .jobsbox .jobsinfo .stars{
	margin-top: 2px;
  }
  .jobsbox .jobsinfo .stars i{
	color: #17a2b8;
  }
  .jobsbox .jobscontent .image{
	height: 75px;
	width: 75px;
	padding: 3px;
	background: #17a2b8;
	border-radius: 50%;
  }
  .jobscontent .image img{
	height: 100%;
	width: 100%;
	object-fit: cover;
	border-radius: 50%;
	border: 2px solid #fff;
  }
  .jobsbox:hover .jobscontent .image img{
	border-color: #fff;
  }
  
  @media (max-width: 1045px) {
	.jobswrapper .jobsbox{
	  width: calc(50% - 10px);
	  margin: 10px 0;
	}
  }
  @media (max-width: 702px) {
	.jobswrapper .jobsbox{
	  width: 100%;
	}
  }
  






/*---------------------------------------
Donate          
-----------------------------------------*/


.donatecontainer{
	display: flex;
	justify-content: center;
	align-items: center;
	padding:1px;
	min-height: 100vh;
	background: #fff;
  }
  
  .donatecontainer form{
	padding:20px;
	width:700px;
	background: #0dbdfe;
	box-shadow: 0 5px 10px rgba(0,0,0,.1);
  }
  
  .donatecontainer form .donaterow{
	display: flex;
	flex-wrap: wrap;
	gap:15px;
  }
  
  .donatecontainer form .donaterow .donatecol{
	flex:1 1 250px;
  }
  
  .donatecontainer form .donaterow .donatecol .title{
	font-size: 20px;
	color:#333;
	padding-bottom: 5px;
	text-transform: uppercase;
  }
  
  .donatecontainer form .donaterow .donatecol .inputBox{
	margin:15px 0;
  }
  
  .donatecontainer form .donaterow .donatecol .inputBox span{
	margin-bottom: 10px;
	display: block;
  }
  
  .donatecontainer form .donaterow .donatecol .inputBox input{
	width: 100%;
	border:1px solid #ccc;
	padding:10px 15px;
	font-size: 15px;
	text-transform: none;
  }
  
  .donatecontainer form .donaterow .donatecol .inputBox input:focus{
	border:1px solid #000;
  }
  
  .donatecontainer form .donaterow .donatecol .donateflex{
	display: flex;
	gap:15px;
  }
  
  .donatecontainer form .donaterow .donatecol .donateflex .inputBox{
	margin-top: 5px;
  }
  
  .donatecontainer form .donaterow .donatecol .inputBox img{
	height: 34px;
	margin-top: 5px;
	filter: drop-shadow(0 0 1px #000);
  }
  
  .donatecontainer form .submit-btn{
	width: 100%;
	padding:12px;
	font-size: 17px;
	background: #ffffff;
	color:#000000;
	margin-top: 5px;
	cursor: pointer;
  }
  
  .donatecontainer form .submit-btn:hover{
	background: #0dbdfe;
  }

  









  

/*---------------------------------------
Our Team     
-----------------------------------------*/


.rrow {
	display: flex;
	flex-wrap: wrap;
	padding: 0.3em 0.3em;
	text-align: center;
  }
  .column {
	width: 100%;
	padding: 0.5em 0;
  }
  h1 {
	width: 100%;
	text-align: center;
	font-size: 3.5em;
	color: #23c2df;
  }
  .card {
	box-shadow: 0 0 2.4em rgba(25, 0, 58, 0.1);
	padding: 3.5em 1em;
	border-radius: 0.6em;
	color: #1adddd;
	cursor: pointer;
	transition: 0.3s;
	background-color: #ffff;
	margin-bottom: 2%;
  }
  .card .img-container {
	width: 8em;
	height: 8em;
	background-color: #ffffff;
	padding: 0.5em;
	border-radius: 50%;
	margin: 0 auto 2em auto;
  }
  .card img {
	width: 100%;
	border-radius: 50%;
  }
  .card h3 {
	font-weight: 500;
  color: #000;
  font-size: 15px;
  }
  .card p {
	font-weight: 500;
	text-transform: uppercase;
	margin: 0.5em 0 2em 0;
	letter-spacing: 2px;
	color: #000000;
  }
  .icons {
	width: 50%;
	min-width: 180px;
	margin: auto;
	display: flex;
	justify-content: space-between;
  }
  .card a {
	text-decoration: none;
	color: inherit;
	font-size: 1.4em;
  }
  .card:hover {
	background: #0dbdfe;
	color: #ffffff;
  }
  .card:hover .img-container {
	transform: scale(1.15);
  }
  @media screen and (min-width: 768px) {
	section {
	  padding: 1em 7em;
	}
  }
  @media screen and (min-width: 992px) {
	section {
	  padding: 1em;
	}
	.card {
	  padding: 0.7em 1em;
	}
	.column {
	  flex: 0 0 25%;
	  max-width: 25%;
	  padding: 0 1em;
	}
  }
  






  

/*---------------------------------------
Board Member
-----------------------------------------*/



.team-section{
	background-color:#ffffff;
	min-height: 100vh;
	padding:15px 15px 30px;
}

.container{
	max-width: 1170px;
	margin:auto;
}

.trow{
	display: flex;
	flex-wrap: wrap;
}

.team-section .section-title{
	flex-basis: 100%;
	max-width: 100%;
	margin-bottom: 70px;
}

.team-section .section-title h1{
	font-size: 40px;
	text-align: center;
	margin:0;
	color: #ffffff;
	font-weight: 700;
}

.team-section .section-title p{
	font-size:16px;
	text-align: center;
	margin:15px 0 0;
	color:#ffffff;
}
.team-section .team-items{
	
	flex-basis: 100%;
	max-width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.team-section .team-items .item{
	flex-basis: calc(25% - 30px);
	max-width: calc(25% - 30px);
	transition: all .5s ease;
	margin-bottom: 40px;
}
.team-section .team-items .item img{
	display: block;
	width: 100%;
	border-radius: 8px;
}

.team-section .team-items .item .inner{
	position: relative;
	z-index: 11;
	padding:0 15px;
}
.team-section .team-items .item .inner .info{
	background-color:#0dbdfe;
	text-align: center;
	padding: 20px 15px;
	border-radius:8px;
	transition: all .5s ease;
	margin-top: -40px;
}
.team-section .team-items .item:hover  .info{
    transform: translateY(-20px);
}
.team-section .team-items .item:hover{
 transform: translateY(-10px);	
}
.team-section .team-items .item .inner .info h5{
	margin:0;
	font-size: 18px;
	font-weight: 600;
	color:#ffffff;
}
.team-section .team-items .item .inner .info p{
	font-size: 16px;
	font-weight: 400;
	color:#c5c5c5;
	margin:10px 0 0;
}

.team-section .team-items .item .inner .info .social-links{
	padding-top: 15px;
}

.team-section .team-items .item .inner .info .social-links a{
	display: inline-block;
	height: 32px;
	width: 32px;
	background-color: #ffffff;
	color:#009688;
	border-radius: 50%;
	margin:0 2px;
	text-align: center;
	line-height: 32px;
	font-size:16px;
	transition: all .5s ease;
}

.team-section .team-items .item .inner .info .social-links a:hover{
	box-shadow: 0 0 10px #000;
}

/*responsive*/
@media(max-width: 991px){
	.team-section .team-items .item{
      flex-basis: calc(50% - 30px);
       max-width: calc(50% - 30px);

   }
}

@media(max-width: 767px){
	.team-section .team-items .item{
      flex-basis: calc(100%);
       max-width: calc(100%);

   }
}


  

/*---------------------------------------
Core value Typing
-----------------------------------------*/



nav {
	text-align: center;
	padding-top: 2%;
}



.banner-area {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: Left;
	width: 100%;
}
.banner-area h3 {
	font-size: 40px;
	text-transform: capitalize;
	color: #ffffff;
	margin: 0 0 40px 0;
	font-family: titan;
	line-height: 1;
}
.banner-area h3 span{
	color: #626063;
}
.banner-area h2 {
	margin: 0;
	padding: 0;
	color: #0dbdfe;
	font-size: 40px;
	line-height: 0;
}
.banner-area h2 span {
	color: #ff0000;
}
.banner-area a {
	display: inline-block;
	margin-top: 50px;
	text-decoration: none;
	color: #fff;
	background: #028a98;
	padding: 10px 30px;
	font-size: 20px;
	text-transform: uppercase;
}
@media (max-width:800px) {
	nav a {
		font-size: 16px;
		margin: 0 10px;
	}
	.banner-area h2 {
		font-size: 1.7em;
	}
	.banner-area h3 {
		margin: 0 0 20px 0;
		font-size: 70px;
	}
	.home {
		background-position: 58%;
	}
}
@media (max-width: 767px){
	.banner-area h3 {
		font-size: 35px;
	}
	.banner-area h2 {
		font-size: 1em;
	}
	.banner-area a {
		font-size: 14px;
		margin-top: 30px;
	}
	nav a {
		font-size: 8px;
		margin: 0 5px;
	}
	.logo {
		font-size: 30px;
	}
	.home {
		background-position: 100%;
	}
}  



/*---------------------------------------
OUR TEAM 2
-----------------------------------------*/




.Teamwrapper{
  width: 100%;
  height: auto;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;


}
.Teamcontent-area{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;
  padding: 5px 0;

  
}
.single-content{
  width: 250px;
  height: 250px;
  overflow: hidden;
  position: relative;
  margin: 6px;
  box-shadow: 0 2px 20px 2px rgba(0,0,0,0.3);
  border-radius: 10%;

}

.single-content::after{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease;
  opacity: 0;
}
.single-content:hover::after {
  position: absolute;
  content: '';
  transform: translateY(0);
  background: linear-gradient(35deg, rgba(0, 46, 40, 0.8) 25%, rgba(0, 0, 46, 0));
  z-index: 2;
  width: 100%;
  height: 100%;	
  top: 0;
  left: 0;
  opacity: 1;	
}
.single-content img{
  object-fit: cover;
  min-height: 100%;
  height: auto;
  transition: all 0.5s ease;
  width: 100%;
  height: auto;    
}
.single-content:hover img{
  transform: scale(1.3) translate(10%, 10%);
}
.single-content .info{
  position: absolute;
  z-index: 3;
  opacity: 0;
  overflow: hidden;
  transform: translateX(-105%);
  transition: all 0.4s ease;
  left: 5%;
  right: 5%;
  bottom: 5%;
  padding: 10px 12px;
  border-left: 4px solid #fff;
  color: #ffffff;
  line-height: .0;

}
.single-content:hover .info{
  opacity: 1;
  transform: translateX(0);
  line-height: 1.1;
}
.single-content .info h3 {
  letter-spacing: 1px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  margin-bottom: 10px;
  color: #ffffff;
}
.single-content .info h3, 
.single-content .info p{
  transition: all 0.7s ease;
  transform: translateX(-100%);   
  overflow: hidden;
  color: #fff;
}
.single-content:hover .info h3, 
.single-content:hover .info p{
  transform: translateX(0);
}
.single-content .info p{
  font-weight: 500;

}





/*---------------------------------------
IRMS
-----------------------------------------*/


.wrappersy{
  padding: 10px 1%;
}
#cardsy-area{
  padding: 1px 0;
}
.boxsy-area{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 40px;
  margin-top: 10px;
}
.boxsy {
border-radius: 10px;
position: relative;
overflow: hidden;
box-shadow: 5px 5px 15px rgba(0,0,0,0.9);
height: 385px;
}
.boxsy img{
  width: 100%;
  border-radius: 10px;
  display: block;
  transition: transform 0.5s;
}
.overlay {
width: 100%;
height: 0%;
background: linear-gradient(transparent,#0dbdfe 58%);
border-radius: 10px;
position: absolute;
left: 0;
bottom: 0;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
padding: 0 40px;
text-align: center;
font-size: 14px;
transition: height 0.5s;
}
.overlay h3 {
font-weight: 500;
margin-bottom: 5px;
margin-top: 80%;
font-family: 'Bebas Neue', sans-serif;
font-size: 30px;
letter-spacing: 2px;
}
.overlay a {
margin-top: 10px;
color: #262626;
text-decoration: none;
font-size: 14px;
background: #fff;
border-radius: 50px;
text-align: center;
padding: 5px 15px;
}
.boxsy:hover img{
  transform: scale(1.1);
}
.boxsy:hover .overlay{
  height: 100%;
}
























.container2 {
	margin-top: 0%;
  background-image: url('../images/2V7A0179r.png');
  background-color: #0dbdfe;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-left: 6%;
    
}
.card2 {
    width: 90%;
    height: 250px;
    transform-style: preserve-3d;
    perspective: 500px;
    border: none;
    background-color: inherit;
}

.card2 .box {
  position: absolute;
  color: #262626;
  width: 100%;
  height: 100%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-radius: 30px 0 30px 0; /* Top-left: 15px, others: 0 */
  background: #fff;
  transform-style: preserve-3d;
  transition: 0.5s;
  backface-visibility: hidden;
}

.card2 .box.front{
    background-image: url(img/pattern.png);
    background-repeat: repeat; 

}
.card2 .box.front,
.card2 .box.back {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card2 .box.front img {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	object-fit: cover;
	border: 5px solid #0dbdfe;
	margin-bottom: 25px;
}

.card2:hover .box.front {
    transform: rotateY(180deg);
}
.box.front h2 {
	font-family: 'Bebas Neue', cursive;
}
.box.front h4 {
	font-size: 18px;
	letter-spacing: 2px;
}
.socials i {
	margin: 0 15px;
}
.card2 .box.back {
    position: absolute;
    background: #0dbdfe;
    transform: rotateY(180deg);
    padding: 10px 30px;
    text-align: center;
    user-select: none;

}

.card2 .box.back p{
  font-size: 13.5px;
  color: #000;
  font-weight: 500;
}

.card2 .box.back h4{
  color: #ffffff;
  font-weight: 500;
}

.card2 .box.back span{
  font-size: 3px;


}
.card2 .box.back .fa-quote-left {
	position: absolute;
	top: 25px;
	left: 180px;
	font-size: 3.2rem;
}

.card2:hover .box.back {
    transform: rotateY(360deg);
}



@media(max-width: 991.5px) {
    .col-lg-4 {
        margin-top: 40px;
        margin-bottom: 20px;
    }
}




IMAGE           
-----------------------------------------*/
.image-wrap {
  z-index: -100;
}

.custom-image {
  position: absolute;
  margin-top: 50px;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

















body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f4f4f4;
}

section {
  padding: 50px 20px;
}

.shdepha {
  color: #007bff;
}

.plus {
  color: #dc3545;
}

.sdwrapper {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.main-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.box {
  position: relative;
  overflow: hidden;
  height: 250px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.box:hover {
  transform: scale(1.03);
}

.box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 5px;
  height: 100%;
  background: #007bff;
  transition: all 0.3s ease-in-out;
}

.box:hover::before {
  right: calc(100% - 5px);
}

.box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.box:hover img {
  transform: scale(1.1);
  filter: brightness(60%);
}

.img-text {
  position: absolute;
  top: 0;
  right: 100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease-in-out;
  padding: 20px;
}

.box:hover .img-text {
  right: 0;
}

.content h2 {
  font-size: 28px;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #333;
}

.content p {
  font-size: 16px;
  color: #555;
  margin: 0;
}

@media (max-width: 500px) {
  .content h2 {
    font-size: 22px;
  }

  .content p {
    font-size: 14px;
  }
}
















.mapdiv{
  width:100%;
  margin: auto;
  fill: #ced2d3;
 background: #0dbdfe;
}

.mapdiv path {
  stroke: #ffffff;
  stroke-width:1.5px;
}
