@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=SN+Pro:ital,wght@0,200..900;1,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Black+Ops+One&display=swap');;

:root {
	--blue: #368CE7;
	--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;
	font-family: "Raleway", sans-serif;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	font-family: "Raleway", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {

	font-family: "Black Ops One", sans-serif;
}


header,
.banner,
.section,
.h2,
.para,
.flexbox,
footer {
	width: 100%;
	float: left;
}

.navbar {
	background-color: transparent !important;
	color: #fff;
	position: absolute;
	z-index: +4;

}
.container-fluid{
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	flex-direction: column !important;
	height: 100%;
}
.navbar-brand {
	font-size: 30px;
	font-family: "Black Ops One", serif;
	font-weight: 600;
	color: #fff;
}
.navbar-brand:hover{
	color: #fff;
}
.btn-close,
.navbar-toggler {
	border: none;
    color: transparent;
}

.navbar-toggler-icon {
	background: url(../img/menu.png);
	background-size: cover;
}

button span {
	color: #fff !important;
}

.navbar-nav .nav-link.active,
.nav-link {
	color: #fff;
}
.nav-link {
	transition: 0.3s;
	margin: 0 0 10px;
	font-family: "SN Pro", serif;
	width: 100% !important;
}

.nav-link:hover {
	color: #fff;
	transform: translateY(-3px);
	background-color: #473870;
	width: 100% !important;
}
.navbar-nav{
	background-color: #54447f;
	flex-direction: column !important;
	display: flex;
	padding: 20px;
	display: flex;
	align-items: center;
	text-align: center;
	border-radius: 20px;
}
.btn-close {
	background: url(../img/close.png);
	margin: 0 !important;
	background-size: cover;
	width: 15px;
	height: 15px;
	opacity: unset;
}

.navbar-nav .nav-link.show {
	color: #fff;
}
.container {
	width: 100%;
	max-width: 1300px;
	padding: 0 15px;
}
.banner {
	background:  url(../img/banner.jpg);
	background-size: cover;
	position: relative;
	height: 530px;
	overflow: hidden;
}
.banner img{
	width: 100%;
	   animation: premiumBanner 8s ease-in-out infinite;
	   position: relative;
}
@keyframes premiumBanner {
  0% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.06) translateY(-10px);
  }
  100% {
    transform: scale(1) translateY(0);
  }
}
.banner2 {
	background:linear-gradient(rgba(0,0,0,0.5)),  url(../img/banner1.jpg);
	background-size: cover;
	width: 100%;
	padding: 20px 0;
}
.banner2 .container{
	min-height: 300px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	flex-direction: column;
	color: #fff;
}
.banner-inner .container {
	min-height: 250px !important;
	align-items: center;
	text-align: center;
}
.cont{
	width: 60%;
	background: rgba(0,0,0,0.5);
	padding: 20px;
	color: #fff;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	position: absolute;
	z-index: +3 !important;
	bottom: 0;
	right: 0;
}
.cont1{
	margin: 0 0 15px;
	align-items: flex-start;
	text-align: left;
}


.banner h1 {
	font-size: 25px;
	font-weight: 700;
}
.banner p {
	font-size: 15px;
	line-height: 24px;
	width: 90%;
}

.section {
	padding: 20px 0;
	position: relative;
}
.section .container {
	position: relative;
	z-index: 2;
}
.flexbody{
	flex: 1;
}
.ul {
	width: 100%;
	float: left;
}

.ul li {
	font-size: 14px;
	line-height: 29px;
}

.h2 {
	font-size: 30px;
	font-weight: 200;
	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 {
	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: 40%;
	height: 450px;
	object-fit: cover;

}
.content{
	background-color: #423665;
	color: #fff;
	float: left;
	padding: 20px;
	text-align: center;
	display: flex;
	align-items: center;
	flex-direction: column;
}
.credentialing {
  --bg-color: #54447f;
  --bg-color-light: #e2fced;
  --text-color-hover: #4C5656;
  --box-shadow-color: rgba(184, 249, 211, 0.48);
}

.card {
  width: 24%;
padding: 20px;
  background: #fff;
  border-top-right-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  box-shadow: 0 14px 26px rgba(0,0,0,0.04);
  transition: all 0.3s ease-out;
  text-decoration: none;
}

.card:hover {
  transform: translateY(-5px) scale(1.005) translateZ(0);
  box-shadow: 0 24px 36px rgba(0,0,0,0.11),
    0 24px 46px var(--box-shadow-color);
}

.card:hover .overlay {
  transform: scale(6) translateZ(0);
}

.card:hover .circle {
  border-color: var(--bg-color-light);
  background: var(--bg-color);
}

.card:hover .circle:after {
  background: var(--bg-color-light);
}

.card:hover p {
  color: #fff;
}
.card h4{
	z-index: 1000;
	transition: color 0.3s ease-out;
	font-size: 18px;
}
.card:hover h4{
	color: #fff;
}
.card:active {
  transform: scale(1) translateZ(0);
  box-shadow: 0 15px 24px rgba(0,0,0,0.11),
    0 15px 24px var(--box-shadow-color);
}

.card p {
  font-size: 14px;
  color: #4C5656;
  z-index: 1000;
  transition: color 0.3s ease-out;
  text-align: center;
}

.circle {
  width: 131px;
  height: 131px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #473870;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-out;
  margin: 0 0 20px;
}

.circle:after {
  content: "";
  width: 118px;
  height: 118px;
  display: block;
  position: absolute;
  background: #d7d7d7;
  border-radius: 50%;
  transition: opacity 0.3s ease-out;
}

.circle img {
  z-index: 10000;
  transform: translateZ(0);
  width: 80px;
}

.overlay {
  width: 118px;
  position: absolute;
  height: 118px;
  border-radius: 50%;
  background: var(--bg-color);
      top: 29px;
    left: 93px;
  z-index: 0;
  transition: transform 0.3s ease-out;
}
.overlay1{
	    left: 383px;
}
.card1{
	width: 70%;
}
.card1 p{
	margin: 0 0 20px;
	width: 70%;
}
.section1{
	background: linear-gradient( rgba(0,0,0,0.7), transparent 50%), url(../img/img-1.jpg) center;
	background-size: cover;
	color: #fff;

}

.section2{
	background: linear-gradient( rgba(0,0,0,0.7), transparent 50%), url(../img/img-4.jpg) center;
	background-size: cover;
	color: #fff;

}

.section3{
	background: linear-gradient( rgba(0,0,0,0.7), transparent 50%), url(../img/banner2.jpg) center;
	background-size: cover;
	color: #fff;

}
.bg-img{
	position: absolute;
	width: 100%;
	height: 350px;
	bottom: 0;
	left: 0;
	object-fit: cover;
}
.img{
	width: 38%;
	height: 600px;
	
}
.img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.center {
	width: 100%;
	float: left;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	flex-direction: column;
	margin: 0 0 20px;
}
.center img{
	width: 100%;
	height: 250px;
	object-fit: cover;
	margin: 20px 0;
}
.center:last-child {
	margin: 0 !important;
}
.container>img {
	width: 100%;
	float: left;
	margin: 0 0 20px;
}
.bck-grnd {
  position: relative;
  display: flex;
  background-color: #54447f;
  padding: 10px 20px;
  font-size: 20px;
  color: rgb(255, 255, 255);
  text-decoration: none;
  border: 3px solid transparent;
  overflow: hidden;
  z-index: 2;
  border-radius: 10px;
  box-shadow: 0 0.4rem #423665;
  box-shadow: 0.4rem 0.4rem 0 #433665;
  transition: 0.5s;
  float: left;
}

.bck-grnd .style {
  background: #7257bd;
  height: 150px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 30px 30px 0px 0px;
  top: 120%;
  z-index: -1;
  transition: 0.5s;
}

.bck-grnd:hover .style {
  top: -70%;
  border-radius: 50px 50px 0px 0px;
}

.bck-grnd:hover {
  color: #ffffff;
  border: 3px solid #8169c3;
  box-shadow: none;
}

.bck-grnd:active {
  transform: scale(1.1);
}


.flexgroup {
	width: 100%;
	float: left;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 0 0 10px;
}
.group{
	justify-content: center;
}
.flexgroupbox {
	width: 40%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	color: #fff;
	padding: 15px;
	
}
.flexgroupbox h4{
	text-align: left;
}
.left{
	align-items: flex-start;
	text-align: left;
	margin: 0 0 10px;
	padding: 10px;
}
footer .ul li{
	line-height: 50px;
	text-align: left;
}

.formsection {
	color: #fff;
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	margin: 20px 0;
}

.formsection:before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}

.formsection .container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 3;
}

.formsection .para {
	text-align: center;
	font-size: 15px;
	line-height: 1.5;
}

.formbox {
	width: 100%;
	float: left;
	max-width: 800px;
	padding: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.social-links-container{
	font-size: 35px;
	color: #000000;
	background-color: #ffffff;
	padding: 10px;
	width: 100%;
	gap: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 15px;
}
.social-links-container i{
	color: #473870;
}
.social-links-container i:hover{
	color: #2f254b;
}
.formfield {
	width: 100%;
	height: 50px;
	margin: 0 0 10px;
	padding: 0 10px;
	border: none;
	background: #f3f3f3;
	border: solid 1px #333;
	color: #000;
	font-size: 15px;
}

.textarea-cu {
	width: 100%;
	height: 100px;
	margin: 0 0 10px;
	padding: 10px;
	border: none;
	background: #f3f3f3;
	border: solid 1px #333;
	color: #000;
	font-size: 15px;
}

.formfield::placeholder,
.textarea-cu::placeholder {
	color: #333;
}

.formbutton {
	width: 49%;
	float: left;
	height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border: none;
	color: #fff;
	cursor: pointer;
	outline: 0 !important;
}

.form-w {
	width: 100%;
}
.ul li{
	list-style-type: '»';
	padding-left: 10px;
}
footer{
	background-color: #473870;
	color:#fff;
	text-align: center;
	font-size:16px;
	font-weight:400;
	position: relative;
	padding: 30px 0;
}
footer .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
}
.footerlinks {
	flex: 1;
	display: flex;
	justify-content: center;
	width: 100%;
	align-items: center;
	margin: 20px 0;
	flex-wrap: wrap;
	z-index: 4;
}

.footerlinks a {
	font-size: 14px;
	color: #ffffff;
	margin: 0 6px;
}

.footerlinks a:hover {
	text-decoration: underline !important;
}
.copyrights {
	font-size: 14px;
	color: #fff;
	z-index: 4;
}

.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: #362a57 !important;
	color: #ffffff !important;
	position: fixed !important;
	bottom: 0;
	margin-bottom: 0 !important;
	left: 0;
	max-width: 100%;
	text-align: center;
	width: 25%;
	margin: auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
	padding: 10px;
	align-items: center;
	border-radius: 5px;
	border: 1px solid #fff;
}

.alert-dismissible {
	z-index: +3;
}

.alert-close {
	border: 1px solid transparent;
	border-radius: 4px;
	background: #ffffff;
	color: rgb(0, 0, 0);
	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;
}

.show-mob{
	display: none;
}
@media (max-width:800px) {
	.banner h1 {
		font-size: 28px;
		text-align: center;
	}
	.banner p {
		text-align: center;
		width: 100%;
	}
	.banner{
		padding-top: 70px;
	}
	.banner .container{
		min-height: 200px;
	}
	.logo{
		font-size: 20px;
	}
	.footerlinks {
		gap: 10px;
	}

	.footerlinks a {
		font-size: 15px;
	}
	.h2 {
		font-size: 20px;
	}

	footer {
		margin: 0;
	}

	.para {
		font-size: 14px;
	}

	.flexbox {
		flex-direction: column;
	}

	.flexbox>img {
		max-width: 100%;
		order: 1;
		height: 200px;
		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%;
		font-size: 13px;
	}

	.formfield {
		width: 100%;
	}

	.formbutton {
		width: 100%;
	}
	.footerlinks {
		justify-content: center;
		margin: 10px 0;
	}
	.alert{
		width: 100%;
		left: 0;
	}
	.alert p{
		font-size: 12px;
	}
	.container-fluid{
		flex-direction: row !important;
		width: 100% !important;
		height: auto !important;
		display: flex;
		justify-content: space-between !important;
		padding: 10px !important;
	}
	.navbar{
		width: 100% !important;
	}
	.navbar-nav{
		background: rgba(0,0,0,0.7);
	}
	.cont{
		width: 100%;
		bottom: 0;
		position: relative;
	}
	
	.card{
		width: 100%;
		margin: 0 0 10px;
	}
	.img{
		width: 100%;
		height: auto;
		margin: 0 0 15px;
	}
.show-desk{
	display: none;
}
.show-mob{
	display: block;
	position: relative;
	background-color: #473870;
	float: left;
}
.banner{
	height: 200px;
}
.overlay{
	left: 109px;
}
.banner2 .container{
	min-height: 200px;
}
}