@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&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: "Google Sans Flex", sans-serif;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	font-family: "Google Sans Flex", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {

	font-family: "Fjalla One", sans-serif;
}


header,
.banner,
.section,
.h2,
.para,
.flexbox,
footer {
	width: 100%;
	float: left;
}

nav {
      background: transparent;
      color: #fff;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: absolute;
      z-index: 1000;
	  width: 100%;

    }
	nav .container{
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
    .logo {
      font-size: 30px;
      font-weight: bold;
	  font-family: "Fjalla One", serif;
	  color: #ffffff;
	  font-weight:700;
	  background-color: #1b2929;
	  padding: 15px 20px;
	  	  border-bottom-left-radius: 30px;
	  border-bottom-right-radius: 30px;
    }

    .menu {
      display: flex;
		display: none;
    }

   .menu a {
  text-decoration: none;
  position: relative;
  overflow: hidden;
  color: #fff;
  transition: 0.3s;
  padding: 15px;
}
.menu a:hover{
	transform: translate(-3px);
}

    .menu-btn {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 30px;
      height: 22px;
      cursor: pointer;
	  z-index: 3;
    }

    .menu-btn span {
      height: 3px;
      width: 100%;
      background: #ffffff;
      border-radius: 2px;
      transition: 0.4s;
    }

    /* Cross Icon Animation */
    .menu-btn.open span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }
    .menu-btn.open span:nth-child(2) {
      opacity: 0;
    }
    .menu-btn.open span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Mobile */
    @media (max-width: 768px) {
      .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 220px;
        height: 100%;
        background: #1b2929;
        flex-direction: column !important;
        padding-top: 50px;
        transition: 0.3s;
		margin-right: 0;
		padding-right: 10px;
		display: block;
      }
	  .menu-link{
		display: flex;
		align-items: flex-start;
		justify-content: center;
		flex-direction: column;
	  }
      .menu a {
        padding: 15px 20px;
		font-size: 14px;

      }

      .menu.active {
        right: 0;
      }
.logo{
	font-size: 25px;
}
      .menu-btn {
        display: flex;
      }
    }
.container {
	width: 100%;
	max-width: 1300px;
	padding: 0 15px;
}

.navigation{
	position: absolute;
	right: 0;
	width: 10%;
	top: 0;
	height: auto;
	/* background: rgba(0, 0, 0, 0.7); */
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	flex-direction: column;
	z-index: 3;
}
.links{
	color: #fff;
	padding: 15px 10px;
	width: 100%;
	background-color: #1b2929;
	border-left: 3px solid #fff;
	margin: 5px 0;
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
}
.links:hover{
	background-color: #426569;
	transform: translateX(-5px);
}
.banner {
	background:  url(../img/banner.jpg);
	background-size: cover;
	padding: 20px 0;
	position: relative;
}
.banner1 {
	background:linear-gradient(rgba(0,0,0,0.5)),  url(../img/banner1.jpg);
	background-size: cover;
}
.banner2 {
	background:linear-gradient(rgba(0,0,0,0.5)),  url(../img/banner2.jpg);
	background-size: cover;
}
.banner-inner .container {
	min-height: 250px !important;
	align-items: center;
	text-align: center;
}

.banner .container {
	min-height: 400px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	flex-direction: column;
	color: #fff;
}

.banner h1 {
	font-size: 40px;
	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: 50%;

}
.float{
	 animation: floatUpDown 3s ease-in-out infinite;
}
@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px); /* upar jayegi */
  }
  100% {
    transform: translateY(0); /* wapas niche */
  }
}
.flexbody{
		z-index: +999 !important;
}
.content{
	background-color: #fff;
	float: left;
	padding: 20px;
	color: #000;
	margin-top: -200px;
	position: relative;
	overflow: hidden;
	border-radius: 200px;
	border-bottom: 8px solid #1b2929;
}
.content::after{
	position: absolute;
    content: '';
    width: 130%;
    height: 94%;
    background-color: #9abcbc;
    border-radius: 100%;
    left: -71px;
    transform: rotate(-170deg);
    top: -147px;
}
.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;
}
.btn-96,
.btn-96 *,
.btn-96 :after,
.btn-96 :before,
.btn-96:after,
.btn-96:before {
  border: 0 solid;
  box-sizing: border-box;
}

.btn-96 {
  -webkit-tap-highlight-color: transparent;
  background-color: #000;
  background-image: none;
  color: #fff;
  cursor: pointer;
  font-size: 100%;
  line-height: 1.5;
  margin: 0;
  float: left;
  width: 280px;
}

.btn-96:disabled {
  cursor: default;
}

.btn-96:-moz-focusring {
  outline: auto;
}

.btn-96 svg {
  display: block;
}

.btn-96 [hidden] {
  display: none;
}

.btn-96 {
  box-sizing: border-box;
  display: block;
  font-weight: 900;
  padding: 2rem;
  perspective: 800px;
  position: relative;
  text-transform: uppercase;
  transform-style: preserve-3d;
  float: left;
}

.btn-96 span {
  background: #1b2929;
  color: #ffffff;
  display: grid;
  inset: 0;
  place-items: center;
  position: absolute;
  transform: rotateX(0deg);
  transform-origin: top center;
  transition: 0.2s;
}

.btn-96:hover span {
  transform: rotateX(35deg);
}

.btn-96:after,
.btn-96:before {
  background: #ddd;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: rotateX(0deg);
  width: 100%;
  z-index: -1;
}

.btn-96:after {
  background: #ccc;
  width: 0;
}

.btn-96:hover:after {
  -webkit-animation: progress-bar 1.2s;
  animation: progress-bar 1.2s;
}

@-webkit-keyframes progress-bar {
  0% {
    opacity: 1;
    width: 0;
  }

  10% {
    opacity: 1;
    width: 15%;
  }

  25% {
    opacity: 1;
    width: 25%;
  }

  40% {
    opacity: 1;
    width: 35%;
  }

  55% {
    opacity: 1;
    width: 75%;
  }

  60% {
    opacity: 1;
    width: 100%;
  }

  to {
    opacity: 0;
    width: 100%;
  }
}

@keyframes progress-bar {
  0% {
    opacity: 1;
    width: 0;
  }

  10% {
    opacity: 1;
    width: 15%;
  }

  25% {
    opacity: 1;
    width: 25%;
  }

  40% {
    opacity: 1;
    width: 35%;
  }

  55% {
    opacity: 1;
    width: 75%;
  }

  60% {
    opacity: 1;
    width: 100%;
  }

  to {
    opacity: 0;
    width: 100%;
  }
}
.flexgroup {
	width: 100%;
	float: left;
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
	margin: 0 0 10px;
}

.flexgroupbox {
	width: 32%;
	background: #1b2929;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	text-align: center;
	color: #fff;
	padding: 15px;
	border: 1px solid transparent;
	border-left: 5px solid #ffffff;
}
.flexgroupbox:hover{
	border: 1px solid #fff;
	border-left: 5px solid #3b5c5c;
	background-color: #0f3b3b;
}
.flexgroupbox img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.left{
	align-items: flex-start;
	text-align: left;
}
.images{
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	width: 70%;
	background-color: #000;

}
.images img{
	width: 100%;
	object-fit: cover;
	height: 400px;
}
.flex-image{
	position: absolute;
	bottom: 0;
}
.flex-image h5{
	color: #fff;
	padding: 15px;
}
.flex img{
	width: 100%;
	object-fit: cover;
	height: 100%;
	border-left: 5px solid #fff;
}
.flex{
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 400px;
	height: 400px;
		z-index: 999 !important;
		border-radius: 100%;
		overflow: hidden;
}
.img2{
	margin-top: 40px;
}
footer .ul li{
	line-height: 50px;
	text-align: left;
}
.section1::after{
	content: '';
	position: absolute;
	background-color: #1b2929;
	width: 100px;
	right: 0;
	height: 100%;
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
}

.section2::after{
	content: '';
	position: absolute;
	background-color: #1b2929;
	width: 100px;
	left: 0;
	height: 100%;
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;
}

.box{
	width: 24%;
}
.box2{
	width: 24%;
}
iframe{
	width: 100%;
}
.box1{
	align-items: flex-start;
	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: #0f3b3b;
}
.social-links-container i:hover{
	color: #000000;
}
.formfield {
	width: 49%;
	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: '⿻';
}
footer{
	background-color: #1b2929;
	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;
}
.box1{
	background-color: #0f3b3b;
}
.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: #1b2929 !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: 20px;
	align-items: center;
	border-radius: 5px;
}

.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;
}

@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;
	}
	nav{
		display: block;
	}
	.navigation{
		display: none;
	}

	.flex{
		width: 250px;
		height: 250px;
		margin: 0 0 20px;
	}
	.images{
		width: 100%;
		margin: 0 0 20px;
		height: auto;
		position: relative;
		flex-direction: column;
	}
	.section1{
		padding: 20px 0;
	}
	.flex-image{
		position: relative;
		width: 100%;
		height: auto;
		
	}
	.images img{
		height: auto;
		position: relative;
		background: transparent !important;
	}
	.box1{
		width: 100%;
		padding: 10px;
	}
	.content{
		border-radius: 200px 200px 0 0;
	}
	.section1::after, .section2::after{
		display: none;
	}
	.content{
		margin-top: 0;
	}

}