* {
	padding:0px;
	margin: 0px;
	box-sizing: border-box;
}
body {
	padding:0;
	margin:0;
	font-family: Arial, Helvetica, sans-serif;
	margin:0;
}
h1,h2,h3,h4,h5,h6,p,ul,ol,li {
	margin:0;
	padding:0; font-family: 'Houschka Pro';
}
ul,ol,li {
	list-style:none;
}
input:focus,textarea:focus,a:focus,button:focus {
	outline:none !important;
}
img {
	max-width:100%;
}
a {
	text-decoration:none;
	outline:none;
}
section,header,footer {
	display:inline-block;
	width:100%;
}
:focus {
	outline:none !important;
}


.Banner-Outer-Panel {
	display: flex;
	align-items: center;
	height: 100vh;
	/*background: url(../images/bacground-banner.jpg) center center no-repeat;*/
	position: fixed;
	background-size: cover;
	flex-direction: column;
	justify-content: space-between;
}
.Banner-Outer-inn {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-top: 50px;
	position: relative;
	z-index: 9;
}
.sitelogo, .sitelogo a {
	display: inline-block;
}
.sitelogo a img {
	max-width: 218px;
}
.newslaterWrap {
	text-align: center;
	margin-top: 70px;
}
.footer-img {
	position: absolute;
	bottom: 0;
	width: 100%;
	text-align: center;
	display: flex;
  align-items: flex-end;
      justify-content: center;
}
.right-rotateImage {
	height: 100vh;
	position: fixed;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: auto;
}
.newslaterWrap h1 {
	font-family:'Houschka Pro' !important;
	font-weight: 400;
	font-size: 24px;
	line-height: 39px;
	letter-spacing: 0%;
	text-align: center;
	color: #fff;
}
.newslaterWrap h1 span {
	display: inline-block;
	width: 100%;
	font-size: 38px;
	font-weight: 500;
}
.newslaterForm {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 30px;
}
.newslaterForm input {
  height: 71px;
 font-family:'Houschka Pro' !important;
  padding: 16px 30px 16px 70px;
  /*max-width: 478px;*/
  width: 100%;
  display: inline-block;
  line-height: 1;
  font-size: 16px;
  font-weight: 500;
  box-sizing: border-box;
  border: 2px solid #ffffff8f;
  color: #fff;
  border-radius: 6px;
  background: 
    url("../images/email-icon.png") 25px center / 26px 23px no-repeat,
    linear-gradient(110.97deg, rgba(255,255,255,0.4) -4.87%, rgba(255,255,255,0) 103.95%);
}
.newslaterForm input::placeholder { 
  color: #fff;
  opacity: 1;
}

.newslaterForm input::-webkit-input-placeholder {
  color: #fff;
}

.newslaterForm input:-ms-input-placeholder { 
  color: #fff;
}

.newslaterForm input::-ms-input-placeholder { 
  color: #fff;
}

/*.newslaterForm input:focus
{
	border-color:#003cae;
}*/
.newslaterForm button {
	background: #25354C;
	display: inline-block;
	color: #fff;
	height: 70px;
	border: 0;
	font-weight: 600;
	font-style: DemiBold;
	font-size: 16px;
	line-height: 33.25px;
	letter-spacing: 12%;
	font-family:'Houschka Pro' !important;
	text-align: center;
	text-transform: uppercase;
	width: 220px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
}
.newslaterForm {
	display: flex;
	align-items: start;
	justify-content: center;
	margin-top: 30px;
	gap: 18px;
}
.newslaterForm button:hover {
	background: #003cae;
	color: #fff;
}
.animate-btn::before {
	position: absolute;
	left: -120px;
	content: "";
	height: 100px;
	width: 10px;
	transform: rotate(30deg);
	top: -30px;
	border: 10px double #aabfdd;
	transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
}
.newslaterForm button.animate-btn:hover::before {
	left: 140%;
}

.sitelogo,
.Banner-Outer-Panel h1,
.newslaterForm {
  opacity: 0;
  transform: translateY(-30px); 
  animation: slideDown 1s ease forwards;
}

.sitelogo {
  animation-delay: 0.2s;
}
.Banner-Outer-Panel h1 {
  animation-delay: 0.6s;
}
.newslaterForm {
  animation-delay: 1s;
}
.form_inputbox {
    max-width: 478px;
    width: 100%;
}
label#email_address-error {
    margin: 10px;
    display: inline-block;
    font-weight: 600;
    color: #ffffff;
}
video.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
section.Banner-Outer-Panel::after {
	content: '';
	width: 100%;
	height: 100%;
	/* background: #ea611a75 !important; */
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: absolute;
	z-index: -1;
	background: linear-gradient(180deg, #DF3300FC 0%, #D4823A99 99%);
	opacity: 0.9;
}

@keyframes slideDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.right-rotateImage img {
  opacity: 0;
  transform: translateX(100px); 
  animation: slideInRight 2.5s ease-out forwards;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.footer-img img {
  filter: blur(20px);              
  opacity: 0;                      
  animation: unblur 2.5s ease-out forwards;
}

@keyframes unblur {
  from {
    filter: blur(20px);
    opacity: 0;
  }
  to {
    filter: blur(0);
    opacity: 1;
  }
}
.msg.success {
	font-size:18px!important;
}


/*Media*/

@media only screen and (min-width:1401px) and (max-width:1600px)
{
.footer-img img {
	max-width: 1068px;
}
.right-rotateImage img {
	max-width: 330px;
}


}


@media only screen and (min-width:1201px) and (max-width:1400px)
{
.footer-img img {
max-width: 1068px;
}
.newslaterWrap {
margin-top: 40px;
}
.newslaterWrap h1 {
font-size: 21px;
line-height: 36px;
}
.newslaterWrap h1 span {
font-size: 33px;
}
.sitelogo a img {
max-width: 198px;
}
.right-rotateImage img {
max-width: 260px;
}
.newslaterForm input {
height: 66px;
font-size: 15px;
border: 2px solid #ffffff8f;
}
.form_inputbox {
    max-width: 448px;
}
.newslaterForm button {
height: 66px;
font-size: 15px;
width: 200px;
}


}


@media only screen and (min-width:992px) and (max-width:1200px)
{
.footer-img img {
max-width: 838px;
}
.newslaterWrap {
margin-top: 40px;
}
.newslaterWrap h1 {
font-size: 21px;
line-height: 36px;
}
.newslaterWrap h1 span {
font-size: 30px;
}
.sitelogo a img {
max-width: 188px;
}
.right-rotateImage img {
max-width: 230px;
}
.newslaterForm input {
height: 66px;
font-size: 15px;
}
.form_inputbox {
max-width: 388px;
}
.newslaterForm button {
height: 66px;
font-size: 15px;
width: 180px;
}
.Banner-Outer-inn {
padding-top: 30px;
}



}


@media only screen and (min-width:768px) and (max-width:991px)
{
	.footer-img img {
max-width: 838px;
}
.newslaterWrap {
margin-top: 40px;
}
.newslaterWrap h1 {
font-size: 21px;
line-height: 36px;
}
.newslaterWrap h1 span {
font-size: 30px;
}
.sitelogo a img {
max-width: 188px;
}
.right-rotateImage img {
max-width: 230px;
}
.newslaterForm input {
height: 66px;
font-size: 15px;
}
.form_inputbox {
max-width: 388px;
}
.newslaterForm button {
height: 66px;
font-size: 15px;
width: 180px;
}
.Banner-Outer-inn {
padding-top: 30px;
}


}

@media only screen and (max-width:767px)
{
.footer-img img {
	max-width: 838px;
	width: 100%;
}
.newslaterWrap {
margin-top: 40px;
}
.newslaterWrap h1 {
	font-size: 20px;
	line-height: 32px;
}
.newslaterWrap h1 span {
	font-size: 26px;
}
.sitelogo a img {
	max-width: 178px;
}
.right-rotateImage img {
	max-width: 160px;
}
.newslaterForm input {
	height: 58px;
	font-size: 15px;
}
.form_inputbox {
	max-width: 328px;
}
.newslaterForm button {
	height: 58px;
	font-size: 15px;
	width: 150px;
}

.Banner-Outer-inn {
	padding-top: 30px;
	padding-left: 15px;
	padding-right: 15px;
}
.footer-img {
	height: 290px;
}
.footer-img img {
	width: auto;
	height: 100%;
	max-width: unset;
}
.newslaterForm {
	gap: 15px;
}


}

@media only screen and (max-width:479px)
{
.newslaterForm {
	gap: 15px;
}	
	
.newslaterWrap h1 span {
	font-size: 23px;
}
.newslaterWrap h1 {
	font-size: 18px;
	line-height: 30px;
}
.newslaterForm input {
	height: 52px;
	font-size: 15px;
	width: 100%;
}
.form_inputbox {
	max-width: 328px;
}
.newslaterForm {
	margin-top: 20px;
	flex-direction: column;
}
.newslaterForm button {
	height: 50px;
	font-size: 15px;
	width: 180px;
}
.right-rotateImage img {
	max-width: 110px;
}
.sitelogo a img {
	max-width: 168px;
}
.newslaterWrap {
	margin-top: 20px;
}
.footer-img img {
	width: 608px;
}
.footer-img {
	height: 290px;
}
.footer-img img {
	width: auto;
	height: 100%;
	max-width: unset;
}
.newslaterForm {
    align-items: center;
}
.Banner-Outer-inn {
	padding-top: 30px;
	padding-left: 15px;
	padding-right: 15px;
	height: 55vh;
	justify-content: space-around;
}


}