html, body
{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

/*------------ Fonts ------------*/  
@font-face {
  font-family: 'Neo Sans Std Light';
  font-weight: 300;
  src: url(../fonts/Neo-Sans-Std-Light.woff);
}

@font-face {
  font-family: 'Neo Sans Std Regular';
  font-weight: 400;
  src: url(/site/wp-content/fonts/Neo-Sans-Std-Regular.woff);
}

@font-face {
  font-family: 'Neo Sans Std Italic';
  font-weight: 400;
  src: url(../fonts/Neo-Sans-Std-Italic.woff);
}

@font-face {
  font-family: 'Neo Sans Std Medium';
  font-weight: 500;
  src: url(/site/wp-content/fonts/Neo-Sans-Std-Medium.woff);
}


body
{
	font-family: 'Neo Sans Std Regular';
	font-size: 20px;
    line-height: 30px;
    color: #2F2D2C;
}
    
ul
{
	margin: 0;
	padding: 0;
}
ul li
{
	list-style: none;
}
a
{
	text-decoration: none;
    color: #2F2D2C;
}
a:hover
{
    color: #E73331;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6
{
    color: #2F2D2C;
}

h1, .h1
{ 
    font-family: 'Neo Sans Std Medium';
    font-size: 52px;
    line-height: 66px;
}

h2, .h2
{ 
    font-family: 'Neo Sans Std Medium';
    font-size: 52px;
    line-height: 66px;
}

h3, .h3
{ 
    font-family: 'Neo Sans Std Medium';
    font-size: 32px;
    line-height: 42px;
}

h4, .h4
{ 
    font-family: 'Neo Sans Std Medium';
    font-size: 24px;
    line-height: 34px;
}

h5, .h5
{ 
    font-family: 'Neo Sans Std Medium';
    font-size: 22px;
    line-height: 32px;
}


h6, .h6
{ 
    font-family: 'Neo Sans Std Medium';
    font-size: 20px;
    line-height: 28px;
}


/*------------ Common ------------*/  

.bg-primary
{
    background-color: #E73331 !important;   
}

.bg-dark
{
    background-color: #2F2D2C !important;   
}

.text-primary
{
 color: #E73331 !important;   
}

.text-dark
{
 color: #2F2D2C !important;   
}

.h-100
{
    height: 100%;
}
.py-100
{
    padding: 100px 0;
}

.link
{
    text-decoration: underline;
    color: #2F2D2C;
    transition: ease-in-out 0.4s;
}
.link:hover
{
    text-decoration: none;
    color: #E73331;
}

.btn {
    font-family: 'Neo Sans Std Medium';
    font-size: 18px;
    line-height: 28px;
    padding: 7px 20px;
    text-align: center;
    text-transform: uppercase;
    border-radius: 4px;
    transition: ease-in-out 0.4s;
}

.btn .btn-icon
{
    font-size: 16px;
}

.btn.btn-primary
{
   background-color: #E73331;
   border-color: transparent;
   color: #fff ;
   box-shadow: 0 0 0 3px rgb(0 0 0 / 0%);
    transition: ease-in-out 0.4s;
}

.btn.btn-primary:hover
{
   box-shadow: 0 0 0 4px rgb(233 75 27 / 40%);
}

.btn.btn-dark
{
   background-color: #2F2D2C;
   border-color: transparent;
   color: #fff;
   box-shadow: 0 0 0 3px rgb(0 0 0 / 0%);
    transition: ease-in-out 0.4s;
}

.btn.btn-dark:hover
{
    box-shadow: 0 0 0 4px rgb(2 2 2 / 30%);
}

.btn.btn-outline-primary
{
   background-color: transparent;
   border-color: #E73331;
   color: #E73331 ;
   box-shadow: none;
    transition: ease-in-out 0.4s;
}

.btn.btn-outline-primary:hover
{
   background-color: #E73331;
   color: #fff;
}

.btn.btn-outline-dark
{
   background-color: transparent;
   border-color: #2F2D2C;
   color: #2F2D2C;
   box-shadow: none;
    transition: ease-in-out 0.4s;
}

.btn.btn-outline-dark:hover
{
    background-color: #2F2D2C;
    color: #fff;
}

.btn.btn-lg{
    font-size: 20px;
    line-height: 30px;
    padding: 11px 30px;
    text-align: center;
    text-transform: uppercase;
    border-radius: 8px;
    transition: ease-in-out 0.4s;
}

.btn.btn-lg .btn-icon
{
    font-size: 18px;
}

.sec-title {
    color: #2F2D2C;
    font-size: 20px;
}

/*------------ Header ------------*/  

.header
{
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    background: rgb(0 32 60 / 85%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.navbar
{
    padding: 20px 0;
}


.navbar-brand img
{
    height: 40px;
    width: auto;
}

.header .navbar .nav-item {
    margin-right: 52px;
}

.header .navbar .nav-item:last-child {
    margin-right: 0px;
}

.header .navbar .nav-link {
    font-family: 'Neo Sans Std Regular';
    font-size: 18px;
    line-height: 28px;
    padding: 10px 0;
    color: #fff;
    position: relative;
    transition: ease-in-out 0.4s;
}

.header .navbar .nav-link:after {
 content: "";
    position: absolute;
    /* width: 100%; */
    height: 3px;
    border-radius: 2px;
    top: 24px;
    opacity: 1;
    /* left: 0; */
    color: #ffffff;
    /* background-color: #E73331; */
    z-index: 1;
    transition: ease-in-out 0.4s;
}


.header .navbar .nav-link:hover, .header .navbar .nav-link.active {
    color: #E73331;
}

.header .navbar .nav-link:hover:after, .header .navbar .nav-link.active:after {
    bottom: 0px;
    opacity: 1;
    transition: ease-in-out 0.4s;
}

.header .navbar .navbar-toggler {
    padding: .25rem .25rem;
    border-color: #999;
    outline: none;
    box-shadow: none;
}

.header .lang-icon:hover:after
{
display: none;
}

.header .lang-icon img
{
    width: 40px;
    height: auto;
}

/*------------ Hero Section ------------*/
.hero-sec {
    position: relative;
    background-color: #03101E;
	/*top: 90px;*/
    height: 90vh;
}

.hero-sec .bg-video {
    position: absolute !important;
    z-index: 0;
    clip: rect(100px, 100%, 780px, 0px);
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0.9;
    overflow: hidden;
    z-index: 0;
}

.hero-sec .bg-video #video {
  min-width: 100%;
    min-height: 100%;
    overflow: hidden;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-sec:after
{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50vh;
    background: rgb(3,16,30);
    background: linear-gradient(180deg, rgba(3,16,30,0) 0%, rgba(5,26,43,1) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    margin-bottom: 90px;
}

.hero-content .hero-title
{
    color: #fff;
	
}
.italic{
	font-style: italic;
}

/*------------ Download Section ------------*/
.dl-content {
    font-size: 50px;
    line-height: 62px;
}

.dl-content .app-dl-btn img
{
    height: 66px;
    width: auto;
        transform: scale(1.0);
    transition: ease-in-out 0.4s;
}

.dl-content .app-dl-btn img:hover
{
    transform: scale(1.02);
}

.dl-app-img {
    position: relative;
}

.dl-app-img img {
    position: absolute;
    right: 0;
    bottom: -200px;
}

/*------------ Map Section ------------*/

/*.map-region .svgMap-map-wrapper {
    background: #fff;
    color: #2F2D2C;
}

.map-region .svgMap-map-wrapper .svgMap-country {
    stroke: #7184AE;
    fill: #243354;
}

.map-region .svgMap-map-wrapper .svgMap-country:hover {
    stroke: #ED1C24;
    fill: #ED1C24;
}*/

/*------------ Footer Section ------------*/

.footer {
    background: #eaf1f7;
    padding: 40px 0;
    position: relative;
}

.footer .foot-logo
{
    width: 154px;
    height: auto;
    float: right;
}

.footer .copy-link li {
    display: inline-block;
    padding: 0 15px;
    margin: 0;
    font-size: 16px;
    line-height: 23px;
    border-right: 1px solid #2F2D2C;
}
.footer .copy-link li:last-child{
    border-right:none;
}


/*------------ Responsive css ------------*/

@media only screen and (max-width:  1399px){

/*------------ Common css ------------*/
body {
    font-size: 18px;
    line-height: 28px;
}
h1, .h1 {
    font-size: 66px;
    line-height: 86px;
}
h2, .h2 {
    font-size: 42px;
    line-height: 54px;
}
h3, .h3 {
    font-size: 34px;
    line-height: 46px;
}
.py-100
{
    padding: 80px 0;
}


/*------------ other css ------------*/

.footer {
    padding: 30px 0;
}


}


@media only screen and (max-width:  1199px){

/*------------ Common css ------------*/


body {
    font-size: 18px;
    line-height: 28px;
}
.container, .container-lg, .container-md, .container-sm {
    max-width: 96%;
}

h1, .h1 {
    font-size: 62px;
    line-height: 84px;
}

.sec-title {
    font-size: 18px;
}

/*------------ other css ------------*/
.header .navbar .nav-item {
    margin-right: 42px;
}
.header .navbar .nav-link {
    font-size: 15px;
    line-height: 25px;
}

.hero-sec {
    height: 80vh;
}

.hero-content {
    margin-bottom: 40px;
}


.download-sec {
    padding-top: 60px;
}
.dl-content {
    font-size: 50px;
    line-height: 64px;
}
.dl-app-img img {
    position: absolute;
    right: 0;
    bottom: -180px;
}


}



@media only screen and (max-width:  991px){

/*------------ Common css ------------*/

h1, .h1 {
    font-size: 42px;
    line-height: 54px;
}

h2, .h2 {
    font-size: 34px;
    line-height: 44px;
}


.py-100
{
    padding: 50px 0px;
}

/*------------ other css ------------*/
.hero-sec {
    height: 65vh;
}

.download-sec {
    padding-top: 40px;
}

.dl-content {
    font-size: 34px;
    line-height: 56px;
}
.dl-content .app-dl-btn img
{
    height: 54px;
}


}



@media only screen and (max-width:  767px){

/*------------ Common css ------------*/

.container, .container-lg, .container-md, .container-sm {
    max-width: 540px;
}

h1, .h1 {
    font-size: 34px;
    line-height: 46px;
}

h2, .h2 {
    font-size: 28px;
    line-height: 38px;
}


/*------------ Other css ------------*/
.hero-sec {
    height: 500px;
}
.dl-content {
    font-size: 28px;
    line-height: 40px;
}
.dl-content .app-dl-btn img
{
    height: 44px;
}
.dl-app-img img {
    bottom: -120px;
}



}


@media only screen and (max-width:  575px){
.footer .copy-link li {
    display: block;
    padding: 0 15px;
    margin: 0;
    font-size: 16px;
    text-align: center;
    line-height: 23px;
     border:none !important;
}
	.footer .foot-logo {
    width: 154px;
    height: auto;
    float: none;
    padding: 10px;
    text-align: center;
    margin: 0 auto;
}
/*------------ Common css ------------*/
h1, .h1 {
    font-size: 36px;
    line-height: 50px;
}
h2, .h2 {
    font-size: 28px;
    line-height: 36px;
}

.navbar {
    padding: 10px 0;
}
.navbar-brand img {
    height: 34px;
}

.hero-sec {
    height: 380px;
}

/*------------ Other css ------------*/

.download-sec {
    padding-top: 40px;
    padding-bottom: 0;
}
.dl-app-img {
    width: 80%;
    margin: 50px auto 0;
    height: 350px;
    overflow: hidden;
}

.dl-app-img img{
    position: static;
}


}



@media only screen and (max-width:  374px){

/*------------ Common css ------------*/
h1, .h1 {
    font-size: 34px;
    line-height: 50px;
}
h2, .h2 {
    font-size: 26px;
    line-height: 36px;
}
.navbar-brand img {
    height: 30px;
}

/*------------ Other css ------------*/



}
