/* ----------------------------------------------------------------
     [ Start Basics ]
-----------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  list-style: none;
  word-wrap: break-word;
}

.clearfix{
  clear: both;
}

:root {

  --fontprimary: 'Archivo', sans-serif;
  --fontsecondary: 'Archivo', sans-serif;

  --colorwhite: #FFFFFF;
  --colorblack: #000000;
  --colorlightgrey: #e0e3e8;
  --colormediumgrey: #777777;
  --colordarkgrey: #222222;

  --coloraccent:#8fe1ff;
  --coloraccentdark: #0f1929;
  --coloryellow:#ffc342;
  --colorprimary:#000000;

  --bgprimary: #ffffff;
  --bgprimarydark: #333333;
  --bgwhite: #FFFFFF;
  --bgblack: #000000;
  --bglightgrey: #e7e7e7;
  --bgmediumgrey: #777777;
  --bgdarkgrey: #222222;
  --bgnav:#1d66dc;
  --bgnavdark:#003261;

  --bgaccent: #8fe1ff;
  --bgaccentlight: #ddf6ff;
  --bgbutton: #00a5e5;
  --bgaccentdark: #0f1929;
  --bgyellow:#ffc342;

}

html{
  min-height: 100%;
}

body {
  color: var(--colorprimary);
  line-height: 1.7;
  font-weight: 300;
  font-size: 15px;
  background: var(--bgprimary);
  font-family: var(--fontprimary);
  overflow: overlay;
  overflow-x: hidden !important;
  height: 100%;
}

.body_bg{
  position: fixed;
  bottom:0;
  width: 100%;
  height:100%;
  background: url(../img/body_bg.jpg) center right no-repeat;
  overflow: hidden;
  background-size: cover;
}

p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
  letter-spacing: 0.5px;
}

p span{
  font-weight: bold;
}

img {
  width: 100%;
  height: auto;
}

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

h1{
  font-size: 150px;
  font-family: var(--fontsecondary);
  font-weight: 800;
  line-height: 80%;
  letter-spacing: -2px;
}

h2{
  font-size: 70px;
  font-weight: 700;
}

h2 span{
  font-weight: 500;
}

h3{
  font-size: 40px;
  font-weight: 500;
}

h4{
  font-size: 24px;
  font-weight: 500;
}

h5{
  font-size: 19px;
  font-weight: 500;
}

.container{
  position: relative;
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  margin-right: auto;
  margin-left: auto;
}

.pos-re {
  position: relative;
  padding: 6vw 0px;
}


/* ----------------------------------------------------------------
     [ End Basics ]
-----------------------------------------------------------------*/


/* ----------------------------------------------------------------
     [ Start Buttons ]
-----------------------------------------------------------------*/


.butn {
  font-size: 16px;
  font-weight: 300;
  text-align: center;
  padding: 10px 30px;
  color: var(--colorwhite)!important;
  border: 0px solid;
  background: var(--bgbutton);
  border-radius: 0px;
  position: relative;
  cursor: pointer;
  outline: none !important;
  overflow: hidden;
  font-weight: 500;
  width: 100%;
  max-width: 250px;
}

.butn_outline {
  font-size: 16px;
  font-weight: 300;
  text-align: center;
  padding: 10px 30px;
  color: var(--colorwhite)!important;
  border: 1px solid;
  background: transparent;
  border-radius: 0px;
  position: relative;
  cursor: pointer;
  outline: none !important;
  overflow: hidden;
  font-weight: 500;
  width: 100%;
  max-width: 250px;
}

.butn:hover{
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  border-radius: 0px;
  transform: scale(0.98);
}


/* ----------------------------------------------------------------
     [ End Buttons ]
-----------------------------------------------------------------*/

/*bootstrap fix*/
.row{
  padding:0px!important;
  margin:0px!important;
}

/*.container 
.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, 
.col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, 
.col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, 
.col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9
{
  padding:0px;
  margin:0px;
}*/

.innercol{
  background: var(--bgaccentlight);
  padding:15px 40px;
  padding-top:40px;
  padding-bottom: 40px;
  min-height: 310px;
  margin-bottom: 0px;
  box-shadow: 20px 20px 20px 0px var(--bglightgrey);
}

/* ----------------------------------------------------------------
     [ Start Navbar ]
-----------------------------------------------------------------*/

.logo {
  width: 100%;
  max-width: 100px;
  z-index: 20;
}

.navlogo{
  position: fixed;
  padding-left:12px;
  padding-top:12px;
}

.navbar_bg{
  color: var(--colorwhite);
  border-radius:0px;
  position: fixed;
  width: 100%;
  height: 70px;
}

.navbar{
  color: var(--colorwhite);
  background: var(--bgnav);
/*  background: rgba(143, 225, 255, 0.4);*/
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border-radius:0px;
  position: fixed;
  width: 100%;
  margin:auto;
  left:0;
  right: 0;
  height: 70px;
  z-index: 99;
}

.navbar-nav{
  float:right;
  margin-top:-1px;
  padding-right: 15px;
}

.nav.active{
  display: block;
}
.nav>li>a:focus, .nav>li>a:hover,
.nav .open>a, .nav .open>a:focus, .nav .open>a:hover 
{
  text-decoration: none;
  background-color: var(--bgnavdark);
  border-color: transparent;
}
.navbar-nav>li>a {
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 14px;
  line-height:40px;
}
.navbar-nav .open .dropdown-menu>li>a {
  line-height: 40px;
}
.navbar-nav>li>.dropdown-menu {
  margin-top: 0px;
}
.dropdown-menu{
  background: var(--bgnav);
  position: absolute;
  top: 100%;
  left: 0px;
  right:0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 200px;
  padding: 0px;
  margin: 0px;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-clip: padding-box;
  border: 0px solid #ccc;
  border: 0px solid rgba(0,0,0,.15);
  border-radius: 0px;
  -webkit-box-shadow: 0 0px 0px rgba(0,0,0,0);
  box-shadow: 0 0px 0px rgba(0,0,0,0); 
}

.dropdown-menu>li>a {
  color: var(--colorwhite);
  display: block;
  padding: 10px 20px;
  clear: both;
  font-weight: 400;
  line-height: 100%;
  white-space: nowrap;
}
.dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover {
  color: var(--colorwhite);
  text-decoration: none;
  background-color: var(--bgnavdark);
}

/*hamburger*/
.hamburger{
  display: none;
  width: 50px;
  height: 70px;
  position: fixed;
  right:30px;
  top:0;
  cursor: pointer;
  z-index: 20;
  transform: scale(0.5) translateX(35px);
  animation: glowing 2s linear infinite;
}


.hamburger span:before, .hamburger span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 2px;
  width: 40px;
  background: var(--bgwhite);
  position: absolute;
  display: inline-block;
  content: '';
  margin:auto;
  top:0;
  bottom: 0;
  left: 0;
  right: 0;
}
.hamburger span:before {
  top: -10px; 
}
.hamburger span:after {
  bottom: -10px;
}

.hamburger span, .hamburger span:before, .hamburger span:after {
-webkit-transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1.000); 
   -moz-transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1.000); 
     -o-transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1.000); 
        transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1.000); 
}

.nav-item, .nav-item:before, .nav-item:after {
-webkit-transition: all 300ms cubic-bezier(1.000, 1.000, 1.000, 1.000); 
   -moz-transition: all 300ms cubic-bezier(1.000, 1.000, 1.000, 1.000); 
     -o-transition: all 300ms cubic-bezier(1.000, 1.000, 1.000, 1.000); 
        transition: all 300ms cubic-bezier(1.000, 1.000, 1.000, 1.000); 
}

.hamburger.active span:before, .hamburger.active span:after {
  top: 0;
}
.hamburger.active span:before {
  transform: rotate(45deg);
}
.hamburger.active span:after {
  transform: translateY(-10px) rotate(-45deg);
  top: 10px;
}



/* ----------------------------------------------------------------
     [ End Navbar ]
-----------------------------------------------------------------*/


/* ----------------------------------------------------------------
     [ start scrollbar ]
-----------------------------------------------------------------*/

/* width */
::-webkit-scrollbar {
  width: 7px;
  background: transparent;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
  padding: 1px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background:var(--bgnavdark);
  border-radius: 0px;

}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--bgaccent);
}

/* ----------------------------------------------------------------
     [ End scrollbar ]
-----------------------------------------------------------------*/



/* ----------------------------------------------------------------
     [ Start Home ]
-----------------------------------------------------------------*/

.home{
  position: relative;
  
}
.home_bg{
  width: auto;
  height:100vh;
  background: url(../img/home_bg.jpg) center right no-repeat;
  background-size: cover;
  overflow: hidden;
}

.home_bg_overlay{
  width: 100%;
  height:100vh;
  background: var(--bgaccentdark);
  position: absolute;
  top:0;
  opacity: 0;
}

.homeslogan_container{
  position: absolute;
  width: 100%;
  max-width: 1200px;
  margin:auto;
  left:0;
  right:0;
  top:25vh;
}

.homeslogan{
  padding: 15px!important;
  text-shadow: 
  -1px -1px 1px #43a9ff, 
  1px -1px 1px #43a9ff, 
  -1px 1px 5px #43a9ff,
  1px 1px 25px #43a9ff;
}

.homequick_link_container{
  width: 100%;
  max-width: 585px;
}
.homequick_link{
  display: inline-block;
}
.homeslogan h1{
  color: var(--colorwhite);
  font-size: 70px;
  line-height: 120%;
  font-weight: 700;
}

.homeslogan h1 span{
  font-size: 120px;
}

.homeslogan h2{
  color: var(--colorwhite);
  font-size: 40px;
  line-height: 120%;
  font-weight: 100;
  text-transform: uppercase;
}

/* ----------------------------------------------------------------
     [ End Home ]
-----------------------------------------------------------------*/


/* ----------------------------------------------------------------
     [ Start Partners ]
-----------------------------------------------------------------*/


.partner_container{
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  border-bottom: 1px solid;
  border-color: var(--colorlightgrey);
}

.partner_inner_container{
  font-size: 17px;
  padding: 15px;
}

.partner_logo{
  width: 100%;
  max-width: 140px;
  display: inline-block;
  background: rgba(0, 0, 0, 0);
}

/* ----------------------------------------------------------------
     [ End Partners ]
-----------------------------------------------------------------*/


/* ----------------------------------------------------------------
     [ Start Intro ]
-----------------------------------------------------------------*/



/*INTRO0 ----------------------------------------------------------------*/

.intro0{
  border-bottom: 1px solid;
  border-color:var(--colorlightgrey);
  margin:0 auto;
  width: 100%;
  max-width: 1200px;
  text-align: center;
}

.intro0_bg{
  position: absolute;
  bottom:0;
  width: 100%;
  height:100%;
  background: url(../img/intro1_bg.jpg) center right no-repeat;
  overflow: hidden;
  background-size: cover;
}

.icon_img{
  width: 60px;
  filter: invert(49%) sepia(94%) saturate(2993%) hue-rotate(167deg) brightness(100%) contrast(101%);
}


/*INTRO1 ----------------------------------------------------------------*/


.intro1{
  text-align: center;
}

.intro_service_block{
 /* padding:15px 40px;
  padding-top:30px;
  min-height: 310px;
  box-shadow: 20px 20px 20px 0px var(--bglightgrey);*/
  
}

.intro1_bg{
  position: absolute;
  bottom:0;
  width: 100%;
  height:100%;
  background: url(../img/intro1_bg.jpg) center right no-repeat;
  overflow: hidden;
  background-size: cover;
}

.intro1 .intro_service_block{
  cursor: pointer;
  padding-top:30px;
}

.intro1 .intro_service_block:hover{
  transform: translate(-7px,-7px);
  filter: contrast(1.2);
  transition: 0.3s;
}

.reason_icon{
  padding-bottom: 20px;
}

.serviceflow_container{
  margin-top:100px;
}
.serviceflow_img_container p{
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
}
.serviceflow_img{
  max-width: 200px;
  border-radius: 50%;
  border:10px solid;
  border-color: rgba(0, 50, 97, .1);
}

.serviceflow_arrow{
  position: absolute;
  max-width: 140px;
  top:30px;
  right: -50px;
  opacity: .7;
}


/*INTRO2 ----------------------------------------------------------------*/

.intro2{
  padding-bottom: 0px;
  padding-top:0px;
  text-align: left;
}

.intro2_bg{
  position: absolute;
  bottom:0;
  width: 100%;
  height:100%;
  background: var(--bgaccentlight);
  overflow: hidden;
}

.intro2_container{
  position: relative;
}

.intro2_text{
  padding-top:0%;
}

.intro2_img{
  width: 100%;
  max-width: 600px;
  padding-top: 30px;
}


/*INTRO3 ----------------------------------------------------------------*/

.intro3{
  color:var(--colorwhite);
  padding-top: 0px;
}

.intro3_bg{
  width: 100%;
  background: url(../img/intro3_bg.jpg) left center no-repeat;
  position:relative;
  background-size: cover;
}

.intro3_text{
  padding:50px 0px;
  text-shadow: 
  -1px -1px 1px #000, 
  1px -1px 10px #000, 
  -1px 1px 20px #000,
  1px 1px 30px #000;
}
.intro3_text .butn{
  text-shadow: none;
}

.intro3_img{
  width: 100%;
/*  max-width: 470px;*/
}


/*INTRO4 ----------------------------------------------------------------*/

.intro4{
  text-align: left;
}

.intro4 .butn{
  margin:0 auto;
}


.logoevent{
  width:100%;
  max-width: 100px;
  height: 100px;
  padding:15px;
  border:1px solid;
  border-color: var(--colorlightgrey);
  border-radius: 0px;
  margin-right:30px;
  margin-bottom:15px;
  filter:invert(1);
}
.event-name-container{
  display:inline-block;
  vertical-align:middle;
  font-size:24px;
  font-weight:400;
}
.meet_list{
  margin-bottom: 40px;
  border-bottom:1px solid;
  border-color: #999;
}

.meet_btn{
  padding-top:20px;
  float:right;
}



/* ----------------------------------------------------------------
     [ End Intro ]
-----------------------------------------------------------------*/


/* ----------------------------------------------------------------
     [ Start contact ]
-----------------------------------------------------------------*/

.footer{
  background: var(--bgnav);
  position: relative;
  width: 100%;
  margin:0 auto;
  color:var(--colorwhite);
  padding-bottom:0px;
}

.copyright{
  margin-top:40px;
  padding-top:20px;
  text-align: center;
  border-top:1px solid;
  border-color:var(--colorlightgrey);
}

#iframe_footer{
  width: 100%;
  height: 100%;
  overflow: hidden;
  min-height: 420px;
}

.iframefooter{
  background: var(--bgnav);
  color:var(--colorwhite);
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* ----------------------------------------------------------------
     [ End contact ]
-----------------------------------------------------------------*/



/* ----------------------------------------------------------------
     [ subpage ]
-----------------------------------------------------------------*/

.sectionbg{
  position: relative;
  background-size: cover!important;
  background-position: center center!important;
  background-repeat: no-repeat!important;
  min-height: 350px;
  margin-bottom: 30px;
  overflow: hidden;
}

.about_bg { background: url(../img/about_bg.jpg); }

.vasplatform_bg { background: url(../img/vasplatform_bg.jpg); }
.carrierbilling_bg { background: url(../img/carrierbilling_bg.jpg); }
.smsmarketing_bg { background: url(../img/smsmarketing_bg.jpg); }
.compliancesupport_bg { background: url(../img/compliancesupport_bg.jpg); }
.customercare_bg { background: url(../img/customercare_bg.jpg); }
.otpsms_bg { background: url(../img/otpsms_bg.jpg); }

.ecommerce_bg { background: url(../img/ecommerce_bg.jpg); }
.publicservice_bg { background: url(../img/publicservice_bg.jpg); }
.mobilecontent_bg { background: url(../img/mobilecontent_bg.jpg); }
.entertainmentmedia_bg { background: url(../img/entertainmentmedia_bg.jpg); }
.televoting_bg { background: url(../img/televoting_bg.jpg); }

.coverage_bg { background: url(../img/coverage_bg.jpg); }
.career_bg { background: url(../img/career_bg.jpg); }
.contact_bg { background: url(../img/contact_bg.jpg); }

.subpage{
  padding-top:0px;
  text-align: center;
}

.subpage .container{
  padding-bottom: 7vw;
}

.grid{
  width: 6px;
  height: 6px;
  position: absolute;
  width: auto;
  height: 100%;
  left: 0;
  right: 0;
  margin:auto;
  /*background: url(../img/grid-white.png) repeat;*/
  background: url(../img/grid.png) repeat;
  z-index: 1;
}

/* ----------------------------------------------------------------
     [ Start about ]
-----------------------------------------------------------------*/

.team_img{
  width: 100%;
}

/* ----------------------------------------------------------------
     [ Start vas platform ]
-----------------------------------------------------------------*/

.vasplatformrow .innercol{
  min-height:600px;
}

/* ----------------------------------------------------------------
     [ Start carrierbilling ]
-----------------------------------------------------------------*/

.carrierbilling_img{
  max-width: 220px;
}

.numbering{
  text-align: center;
  font-size: 16px;
  margin:0 auto;
  background: var(--bgaccent);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding-top:7px;
  font-weight: bold;
  color: var(--colorwhite);
  margin-bottom: 10px;
}

/* ----------------------------------------------------------------
     [ Start smsmarketing ]
-----------------------------------------------------------------*/

.smsmarketingrow .innercol{
  margin:0 auto;
  max-width: 800px;
  min-height: 10px;
}

/* ----------------------------------------------------------------
     [ Start ecommerce ]
-----------------------------------------------------------------*/

.ecommercerow .innercol{
  min-height:360px;
}

/* ----------------------------------------------------------------
     [ Start mobilecontent ]
-----------------------------------------------------------------*/

.mobilecontentrow .innercol{
  min-height:450px;
}

/* ----------------------------------------------------------------
     [ Start coverage ]
-----------------------------------------------------------------*/

.coverage_text{
  text-align: left;
}

/* ----------------------------------------------------------------
     [ Start career ]
-----------------------------------------------------------------*/


.job_block{
  border:1px solid;
  border-color:var(--colormediumgrey);
  padding: 20px;
}

.job_block .butn{
  margin: 0 auto;
}

/* ----------------------------------------------------------------
     [ Start legal disclosure ]
-----------------------------------------------------------------*/

.legalrow .innercol{
  min-height:260px;
}

.col_block{
  padding-top:30px;
}

.legalrow .col_block{
  padding-top:15px;
  padding-left:0px;
}

/* ----------------------------------------------------------------
     [ Start contact ]
-----------------------------------------------------------------*/

.contact_img{
  padding-top: 40px;
}

.inputfield-container, .contactbtn{
  position: relative;
  width: 100%;
  max-width: 600px;
}

.inputfield{
  padding: 30px;
  height: 60px;
  border-radius: 0px;
  background: #f9f9f9;
  border-radius: 0px;
}
.inputtext{
  padding: 30px;
  margin:0 auto;
  width: 100%;
  max-width: 600px;
  background: #f9f9f9;
  border: 1px solid #bbb;
  border-radius: 0px;
}

select,
input[type="text"],
input[type="tel"],
input[type="email"] {
  margin: 0 auto;
  width: 100%;
  border: 1px solid #bbb;
  text-indent: 0px;
}

select{height: 32px;}
input[type="text"],
input[type="tel"],
input[type="email"] {
  font-size: 17px;
  line-height: 100%
}

select.invalid,
input[type="text"].invalid,
input[type="tel"].invalid,
input[type="email"].invalid {
  border: 1px solid red;
}


input[type=checkbox]
{
  -ms-transform: scale(1.5); /* IE */
  -moz-transform: scale(1.5); /* FF */
  -webkit-transform: scale(1.5); /* Safari and Chrome */
  -o-transform: scale(1.5); /* Opera */
  transform: scale(1.5);
  padding: 7px;
}

.checkboxtext
{
  font-size: 110%;
  display: inline;
}

#checkbox {
  border: 0px;
  float: left;
  margin-right:10px;
}

.errortext{
  color: #ffffff;
  background: red;
  font-size: 12px;
  position: absolute;
  padding: 0px 10px;
  display: none;
}
.messagesent{
  color: #ffffff;
  background:green;
  font-size: 12px;
  position: absolute;
  padding: 0px 10px;
  margin-top:10px;
  display: none;
}


/* ----------------------------------------------------------------
     [ Start terms ]
-----------------------------------------------------------------*/

.terms{
  padding-top:120px;
}



/* ==========================================================================
   Placeholders
   ========================================================================== */
::-webkit-input-placeholder {font-weight: normal;color:#777;}
::-moz-placeholder {font-weight: normal;color:#777;}
:-moz-placeholder {font-weight: normal;color:#777;}
input:-moz-placeholder{font-weight: normal;color:#777;}
:-ms-input-placeholder {font-weight: normal;color:#777;}
input:-ms-input-placeholder{font-weight: normal;color:#777;}
input.address:-ms-input-placeholder{font-weight: normal;color:#777;}



/* ----------------------------------------------------------------
     [ End Contact ]
-----------------------------------------------------------------*/





/* ----------------------------------------------------------------
   [ Responsive ]
-----------------------------------------------------------------*/


@media screen and (min-width: 1200px) {

  .container {
    max-width: 1200px;
  }

  #iframe_footer{
    min-height: 250px;
  }
  .sectionbg{
    min-height: 500px;
    margin-bottom: 80px;
  }
  .intro2_text{
    padding-top:15%;
  }
  .intro2_bg{
    height:80%;
  }

}

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

  h1{
    font-size: 120px;

}


@media screen and (max-width: 991px) {
  
  .logo{
    margin: 0 auto;
  }

  .innercol{
    margin-bottom: 20px;
    min-height: 10px;
  }

  .iframefooter{
    text-align: center;
  }

  .home_bg{
    background: url(../img/bg_home_tablet.jpg) bottom center no-repeat;
  }

  .home_bg_overlay{
    opacity: 0.3;
  }

  .intro2{
    text-align: center;
  }
  .intro2 .butn{
    margin:0 auto;
  }
  .serviceflow_arrow{
    max-width: 140px;
    top: 140px;
    right: 0;
    left: 0;
    margin: auto;
    transform: rotate(90deg) scale(.5);
  }

  .serviceflow_img{
    max-width: 160px;
  }
  .serviceflow_img_container p{
    margin-bottom:55px;
  }

  .intro1 .intro_service_block, .legalrow .col_block, .col_block{
    padding-top:0px;
  }

  .vasplatformrow .innercol, 
  .ecommercerow .innercol,
  .mobilecontentrow .innercol,
  .legalrow .innercol{
    min-height:10px;
  }
  
  .coverage_text{
    text-align: center;
  }
}



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

  /*kill hover state animation on mobile device screensize range*/
  .icon-arrow svg:hover,
  .butn:hover:after,.butn-blank:hover:after,
  .butn:hover + .dotbtn , .butn-blank:hover + .dotbtn,
  .tab:hover:after,
  .hamburger:hover:after
  {
    pointer-events:none;
    animation:none;
  }

  .navbar{
    padding:0px;
  }
  .navbar-container{
    padding: 0px;
  }
  .navbar-nav{
    float:left;
    padding: 20px;
    padding-top:80px;
    margin:0px;
    margin-left:-1px;
    width:102%;
  }

  .nav{
    display: none;
    background-color: var(--bgnav);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
  }
  .navbar-nav>li>a {
    line-height:20px;
  }
  .navbar-nav .open .dropdown-menu>li>a {
    line-height: 40px;
    padding-left:50px;
  }
  .hamburger{
    display: block;
  }

  .homeslogan h1 span{
    font-size: 90px;
  }
  .homeslogan h1{
    font-size: 50px;
  }
  .home_bg{
    background: url(../img/bg_home_mobile.jpg) bottom center no-repeat;
  }

  /*.home_bg_overlay{
    opacity: 0.5;
  }*/

  .intro2_img, .intro3_img{
    position: relative;
  }

}

@media screen and (min-width: 768px) {

}


@media only screen and (min-width: 992px) {
  
  #iframe_footer{
    min-height: 240px;
  }

}

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

}

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

  h2{
    font-size: 40px;
  }

  h3{
    font-size: 30px;
  }
  h4{
    font-size: 20px;
  }
  p{
    font-size: 13px;
  }

  .home_bg{
    background: url(../img/bg_home_mobile_small.jpg) bottom left no-repeat;
  }

  .homeslogan h1{
    font-size: 40px;
  }

  .homeslogan h1 span{
    font-size: 60px;
  }

  .homeslogan h2{
    font-size: 30px;
  }

  .partner_inner_container{
    font-size: 14px;
  }
  .partner_logo{
    max-width: 60px;
  }


  .intro0, .intro1, .intro2, .intro3, .intro4{
    text-align: center;
  }
  .intro2 .butn, .intro3 .butn{
    margin:0 auto;
  }
  .meet_btn{
    float:none;
  }
  .logoevent {
    margin-right: 0px;
    margin-bottom: 0px;
  }
  .event-name-container {
    font-size: 18px;
    display: block;
  }
  .footer{
    text-align: center;
  }
}

@media screen and (min-width: 1600px) {
  .home_bg_overlay{
    opacity: 0;
  }

}

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


}

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


}
