@import url('https://fonts.googleapis.com/css2?family=Rowdies:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800;900&display=swap');

:root{
	--blue : #0356b6;
	--blue-dark : #1666BA;
	--blue-light : #7AB3EF;

	--red : #FF0000;
	--red-dark : #A70000;
	--red-light : #FF5252;

	--green : #76BA1B;
	--green-dark : #4C9A2A;
	--green-light : #ACDF87;

	--orange : #ff7400;
	--orange-dark : #ff4d00;
	--orange-light : #ff9a00;

	--black : #000;
	--dark : #333;
	--light : #666;

	--white : #fff;
	--white-dark : #ccc;
	--white-light : #eee; 
}

*{
	box-sizing:border-box;
	margin:0;
	padding:0;
}

p{margin:0;}
a,
button,
input,
textarea{
	outline:0;
	transition: all .5s ease;
}
a{ text-decoration:none!important;}

html {
	scroll-behavior:smooth;
	 overflow-x: hidden;
}

body{
	font-family: "Raleway", serif;
	font-weight:400;
	font-style: normal;
}
h1,h2,h3,h4,h5,h6{
	font-family: "Rowdies", serif;
	font-weight: 700;
}

.bg{
	background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url(../img/bg.jpg) center;
	background-size: cover;
	background-attachment: fixed;
	color: #fff;
}
header, .banner, .section, .h2, .para, .flexbox, footer{
	width:100%; float:left;
}
header{
	display: flex;
	align-items: center;
	justify-content: center;
	padding:10px 15px;
	font-size:30px;
	font-weight:800;
	background-color: #000;
	box-shadow:0 2px 12px rgba(0,0,0,.1);
}

nav {
	position: absolute !important;
	top: 0 !important;
	width: 100%;
	float: left;
	left: 0;
	z-index: +5;
}

.navbar {
	background-color: #02459f !important;
	padding: 10px;
	margin: 0 !important;
}

.navbar-toggler {
	border: none !important;
}

.nav-container {
	max-width: 1300px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.navbar-toggler:focus {
	text-decoration: none;
	outline: 0;
	box-shadow: none !important;
}
.nav-link{
   color: #fff;
   transition: 0.3s;

}
.nav-link:hover{
	color: #59a1ff;
	transform: translateX(-3px);
}
.navbar-nav {
	justify-content: end;
	width: 100%;

}

.nav-item {
	margin: 1px 10px;
}

.nav-icon img {
	width: 23px;
}
.navbar-brand{
	color: #fff;
	font-family: "Rowdies", serif;
	font-size: 30px;
}
.container{
	width:100%;
	max-width:1300px;
	padding:0 15px;
}
.carousel-caption {
	margin-bottom: 20px !important;
	text-shadow: 3px 3px 10px #000000;
	background: linear-gradient( rgba(0,0,0,0.5),rgba(2, 85, 141, 0.7));
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 70%;
	float: left;
	z-index: 3;
	position: absolute;
	border-radius: 20px;
}

.margin {
	margin-bottom: 150px !important;
}
.banner{
	position: relative;
}
.carousel-indicators [data-bs-target] {
	box-sizing: content-box;
	flex: 0 1 auto;
	width: 25px;
	height: 4px;
	padding: 0;
	margin-right: 3px;
	margin-left: 3px;
	text-indent: -999px;
	cursor: pointer;
	background-color: #fff;
	background-clip: padding-box;
	border: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	opacity: .5;
	transition: opacity .6s ease;
}

.carousel-item {
	height: 550px;
	width: 100%;
}

.carousel-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.carousel-indicators .active {
	opacity: 4;
}

.carousel-indicators {
	display: flex;
	justify-content: center;
}
.inner-banner{
	background: url(../img/banner.jpg) center;
	background-size: cover;
	margin-top: 50px;
	padding: 20px;
	color: #fff;
}
.inner-banner .container{
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-direction: column;
	text-align: center;
}
.content{
	background: linear-gradient( rgba(0,0,0,0.5),rgba(2, 85, 141, 0.7));
	padding: 20px;
	border-radius: 20px;
}
.inner-banner2{
	background: url(../img/banner6.jpg) center;
	background-size: cover;
}
.banner-top .container{
	min-height: 250px;
}
.banner h1{font-size:40px; font-weight:800; margin:0 0 10px;}
.banner p{font-size:15px; line-height:24px;}

.section{padding:20px 0; position: relative;}
.section .container{position: relative; z-index: 2;}
.h2{font-size:30px; font-weight:600;margin:0 0 10px;}
.para{font-size:14px; line-height:23px;margin:0 0 20px;}
.para:last-child{margin:0;}
.flexbox{display:flex; align-items:center; margin:0 0 20px;}
.flexbox:last-child{margin:0;}
.flexbox > p, .flexbody{flex:1;}
.flexbox > p:first-child, .flexbody:first-child{padding:0 30px 0 0;}
.flexbox > p:last-child, .flexbody:last-child{padding:0 0 0 30px;}
.flexbox > img{width:100%; max-width:50%;}
.center{
	width: 100%;
	float: left;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	flex-direction: column;
	margin: 0 0 20px;
}
.m-t{
	margin: 0 0 10px;
}
.center:last-child{
	margin: 0 !important;
}
.container > img{
	width: 100%;
	float: left;
	margin: 0 0 20px;
}
.flexgroup{
	width: 100%; float: left;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.flexgroupbox{
	width:33%;
	padding:15px;
	background:#fff;
	margin:0 0 20px;

	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}
.flexgroupbox img{
	width: 100%;
	float:left;
	margin: 0 0 20px;
}
.flexgroupbox h4{
	font-size:20px;
}
.clr1{
	background-color: #02459f;
	align-items: center;
	text-align: center;
	color: #fff;
	border-radius: 10px;
	width: 19%;
}
.clr1 h2{
	background-color: #fff;
	padding: 10px;
	width: 100%;
	border-radius: 5px;
}
.box{
	background-color: transparent;
	text-align: center;
	align-items: center;
	justify-content: center;
	width: 33%;
	color: #000;
}
.right{
	background: rgba(255,255,255,0.7);
	margin-left: -80px;
	border: 1px solid #000;
}
.left{
	background: rgba(255,255,255,0.7);
	margin-right: -80px;
	border: 1px solid #000;
	z-index: 2;
}
.group{
	justify-content: center;
	align-items: center;
}
.box img{
	margin: 0;
	width: 100%;
	height: 100%;
}
.box h4{
	background-color: #0356b6;
	color: #fff;
	padding: 10px;
	width: 100%;
}

.center img{
	width: 70%;
	object-fit: cover;
	height: 200px;
	border-radius: 20px;
	margin: 10px 0 20px 0;
}
.box2{
	width: 33%;
	text-align: center;
	align-items: center;
	background-color: #02459f;
	color: #fff;
	border-radius: 10px;
	margin: 0 0 10px;
}
.box3{
	width: 15%;
	background-color: #02459f;
	color: #fff;
	text-align: center;
	align-items: center;
}
.box4{
	width: 19%;
}
.p-l{
	text-align: left;
}
.section2{
	background-color: #02459f;
	color: #fff;
}
.img-size{
	width: 45%;
	position: relative;
	margin: 20px 0;
}
.img-size img{
	width: 100%;
	border: 1px solid #fff;
}
.img-size::after{
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	background-color: #fc8b2c;
	left: -10px;
	top: -10px;
	z-index: -2;
}
.img-size::before{
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	background-color: #0356b6;
	right: -10px;
	bottom: -10px;
	z-index: -3;
}
.color{
	color: #fc8b2c;
	font-size: 16px;
}
.section1{
	background-color: #dfeeff;
}
.btn-cu {
  position: relative;
  margin: 0;
  padding: 17px 35px;
  outline: none;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-transform: uppercase;
  background-color: #fff;
  border: 1px solid rgba(22, 76, 167, 0.6);
  border-radius: 10px;
  color: #02459f;
  font-weight: 400;
  font-family: inherit;
  z-index: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
}
.btn-b{
	background-color: #02459f;
	color: #fff;
}

.btn-cu:hover {
  animation: rotate624 0.7s ease-in-out both;
}

.btn-cu:hover span {
  animation: storm1261 0.7s ease-in-out both;
  animation-delay: 0.06s;
}

@keyframes rotate624 {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }

  25% {
    transform: rotate(3deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(-3deg) translate3d(0, 0, 0);
  }

  75% {
    transform: rotate(1deg) translate3d(0, 0, 0);
  }

  100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}

@keyframes storm1261 {
  0% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }

  25% {
    transform: translate3d(4px, 0, 0) translateZ(0);
  }

  50% {
    transform: translate3d(-3px, 0, 0) translateZ(0);
  }

  75% {
    transform: translate3d(2px, 0, 0) translateZ(0);
  }

  100% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }
}


.btn-cu{
  border: 1px solid;
  overflow: hidden;
  position: relative;
}


.btn-cuspan {
  z-index: 20;
}


.btn-cu:after {
  background: #38ef7d;
  content: "";
  height: 155px;
  left: -75px;
  opacity: 0.4;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: -10;
}

.btn-shine:hover:after {
  left: 120%;
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}
.testimonials {
  display: flex;
  gap: 20px;
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}

.testimonial-card {
  background-color: #0356b6;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  width: 350px;
  text-align: center;
}

.featured {
  background-color: #fc8b2c;
  color: white;
}

.quote {
  font-size: 16px;
  margin-bottom: 20px;
}

.author {
  font-weight: bold;
}
.flexbox h5{
	font-size: 15px;
}
.contact-form{
	width: 30%;
	align-items: flex-start;
	text-align: left;
}
.group{
	justify-content: center;
}
.contact-form:nth-child(1){
	background-color: #fc8b2c;
}
.contact-form:nth-child(2){
	background-color: #0356b6;
}
.facilities{
	background-color: #fc8b2c;
	padding: 5px;
	width: 16%;
	margin: 0 0 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 13px;
}
.fac1{
	width: 19%;
}

.formsection{
	color:#fff;
	text-align: center;
	font-size:16px;
	font-weight:400;
	padding: 30px;
}
.formsection .container{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	position: relative;
	text-align: left;
	z-index: 3;
}
.formsection .para{
	text-align: center;
	font-size:16px;
	line-height:1.5;
}

.formbox {
	width: 100%;
	float: left;
	max-width: 1000px;
	flex-wrap: wrap;
	justify-content: space-between;
}

.formfield {
	width: 100%;
	height: 50px;
	margin: 0 0 10px;
	padding: 0 10px;
	border: none;
	background: #eeeeee;
	border: solid 1px #374151;
	color: #000000;
	font-size: 15px;
}

.label-group {
	  width: 100% !important;
	  display: flex;
	  align-items: flex-start;
	  justify-content: flex-start;
	  flex-direction: column;
	  float: left;
    }

    label {
      display: block;
      margin-bottom: 8px;
	  width: 100%;
    }
	.body-align{
		    text-align: left;
    flex-direction: column;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 50%;
	}
	.form-sec{
		width: 50%;
		align-items: flex-start;
		text-align: left;

	}
    input[type="text"],
    input[type="email"],
	input[type="phone"],
	input[type="subject"],
    textarea {
      width: 100% !important;
      padding: 12px;
      border-radius: 6px;
      font-size: 16px;
	  border: solid 1px #374151;
    }
    textarea {
      resize: vertical;
      min-height: 100px;
	  width: 100% !important;
	  background-color: #ffffff;
	  border: solid 1px #374151;
	  color: #fff;
    }
.textarea-cu{
	width: 100% !important;
}
.formfield::placeholder,.textarea-cu::placeholder{
	color:#3c3c3c;
}
.formbutton{
	width: 100%; float: left;
	height:50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border:none;
	background:#212c62;
	color:#fff;
	cursor: pointer;
	outline:0!important;
}
.label-group{
	width: 100%;
}
.social-icon{
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 5px;
	float: left;
}
.social-icon img{
	width: 40px;
}
footer{
	background:#02459f;
	text-align:center;
	padding:20px 0;
	color: #fff;
}
footer .container{
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
}
.footerlinks{
    flex:1;
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
	margin: 20px;
}
.ssl-img img{
    width: 120px;
	margin-top: 20px;
}

.footerlinks a{
	font-size:14px;
	color: #ffffff;
	margin:0 6px;
}
.footerlinks a:hover{
	text-decoration: underline!important;
}
.copyrights{
	font-size:14px;
	color: #fff;
}
.text-white{
	font-size: 14px;
	margin:  0 0 10px !important;
}
.cookiesection{
	width:100%; float:left;
	min-height:calc(100vh - 126px);
	padding:40px 0;
}
.cookiesection h2{
	font-size:22px;
	font-weight:600;
}
.cookiesection p{
	font-size:14px;
	line-height:20px;
}
.cookiesection p strong{
	font-weight:600;
}
.cookiesection p .bolder{
	display: block;
	margin:30px 0 10px;
	font-weight:600;
	font-size:16px;
	text-align:center;
}

.backbutton{
	float: left;
	display: inline-flex;
	align-items: center;
	margin:30px 0 20px;
	padding:6px 8px;
	border-radius:4px;
	font-size:13px;
	font-weight:600;
	color:var(--blue-dark)!important;
	border:solid 1px var(--blue-dark);;
}
.backbutton img{
	width:15px;
	margin:0 5px 0 0;
	transition: all .3s ease;
}
.backbutton:hover{
	background:var(--blue-dark);;
	color:#fff!important;
}
.backbutton:hover img{filter:saturate(0) brightness(10);}
.alert {
	background: rgba(0, 0, 0, 0.7) !important;
	color: #ffffff !important;
	position: fixed !important;
	bottom: 0px;
	margin-bottom: 0 !important;
	left: 0;
	border-radius: 0;
	text-align: center;
	width: 25%;
	margin: auto;
	padding: 20px 30px !important;
	display: flex;
	justify-content: center;
	border-radius: 10px !important;
	flex-wrap: wrap;
	align-items: center;
}
.alert-dismissible {
	z-index: +3;
}
.alert-close {
	border: 1px solid transparent;
	border-radius: 4px;
	background: #862041;
	color: white;
	padding: 0px !important;
	width: 3rem;
	height: 2rem;
	font-size: 14px;
}
.hide {
	display: none;
}
span {
	font-weight: bold;
}

.alert p {
	font-size: 14px;
}

.hide {
	display: none;
}
.alert-close {
	padding: 0px 9px;
	border: 1px solid transparent;
	border-radius: 4px;
	background: #862041;
	color: white;
	margin: 0 !important;
	font-size: 14px;
}
.section6{
	display: none;
}
@media (max-width:800px){
	.banner h1{font-size:28px;}
	.h2{font-size:20px;}
	.para{font-size:14px;}
	.flexbox{flex-direction:column;}
	.flexbox > img{max-width:100%; order:1; margin:0 0 15px;}
	.flexbody, .flexbox > .para{padding:0!important; order:2;}
	footer .container{flex-direction: column; align-items: center; text-align: center;}
	.flexgroupbox{
		width: 100%;
	}
	.formfield{
		width: 100%;
	}
	.formbutton{
		width: 100%;
	}
	.img-size{
		width: 100%;
	}
	.footerlinks{
		justify-content: center;
		margin: 10px 0;}
		.alert{
			width: 100%;
		}
		.navbar-brand img{
			width: 180px;
		}
		.section6{
			display: block;
		}
		.dnone{
			display: none;
		}
		.left{
			margin-right: 0;
		}
		.right{
			margin-left: 0;
		}
		.center img{
			width: 100%;
		}
		.form-sec{
			width: 100%;
		}
		.body-align{
			width: 100%;
			margin-top: 20px;
		}
	
}

.accordion-button:not(.collapsed) {
	color: #ffffff;
	background: #02459f !important;
	font-size: 18px;
	box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}
.accordion-button {
	font-size: 18px;
}
.accordion-button {
	background: #02459f;
	border: none !important;
	color: #ffffff;
}
.accordion-button:not(.collapsed)::after {
	background-image: url(../img/minus.png);
	transform: var(--bs-accordion-btn-icon-transform);
}
.accordion-item:first-of-type > .accordion-header .accordion-button {
	background: #293b4e;
	color: #ffffff;
}
.accordion-button::after {
	background-image: url(../img/plus.png);
}
.accordion {
	width: 100%;
	float: left;
}

.testimonial{
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
	padding: 20px;
	margin: 0 15px 30px 15px;
	overflow: hidden;
	position: relative;
	flex-direction: column;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	background-color: #02459f;
	height: 200px;
	margin-top: 20px;
}
.description{
	color: #fff !important;
}
.testimonial h3{
	background-color: #fff;
	color: #000000 !important;
	padding: 10px;
	border-radius: 10px;
}
.testimonial .pic img{
	width: 100%;
	height: auto;
}
.testimonial .description{
	font-size: 15px;
	letter-spacing: 1px;
	color: #6f6f6f;
	line-height: 25px;
	margin-bottom: 15px;
	text-align: center;
}
.testimonial .title{
	display: inline-block;
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #ffffff;
	margin: 0;
}
.testimonial .post{
	display: inline-block;
	font-size: 17px;
	color: #ffffff;
	font-style:italic;
}
.owl-carousel{
	margin: 0 0 20px;
}