* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
}
ul li {
  list-style-type: none;
}
a {
  text-decoration: none;
}
body {
  background-color: #FFFFFF;
  min-height: 100vh;
  background-size: cover;
  width: 100vw;
  overflow-x: hidden;
}

body > header{
  z-index: 900;
  height: 65px;
  width: 100%;
  padding: 0 52px 0 50px;
  position: fixed;
  top:20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.owl-theme .owl-controls .owl-page span{
  background-color: #FFFFFF !important;
}
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}
body > header.scrolled{
  background-color: #EB3939;
  margin-top: -20px;
  height: 100px !important;
}
header > figure{
  width: 15%;
}
nav{
  margin-left: -20px;
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.hdMenuActive {
  width: 80vw !important;
}
div.menubg {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 4;
    top: 0;
    right: -100%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
header div.burgermenu {
   width: 40px;
   height: 40px;
   cursor: pointer;
   display: none;
   top:26px;
}
header div.burgermenu span {
   display: block;
   width: 100%;
   height: 4px;
   margin-top: 7px;
   background-color: #FFFFFF;
   border-radius: 3px;
}
.menuopen {
  right: 0 !important;
}
header > nav > ul{
width: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
 -webkit-box-align: center;
-ms-flex-align: center;
 align-items: center;
 -webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
header > nav > ul > li{
  text-transform: uppercase;
  color: #FFFFFF;
  font-size: 15px;
  line-height: 106px;
  padding: 0 20px;
  position: relative;
}
header > nav > ul > li > a{
  color: #FFFFFF;
  white-space: nowrap;
}

header > nav > ul > li > ul{
  left: calc(50% - 225px);
  position: absolute;
  background-color: #FFFFFF;
  min-width: 240px;
  /*padding: 12px 0px;*/
  z-index: 1;
  display: none;
-ms-flex-wrap: wrap;
    flex-wrap: wrap;
width: 450px;
}
header > nav > ul > li > ul > li > a{
  color: #ED393A;
  font-weight: bold;
}
header > nav > ul > li > ul > li{
  height: 60px;
  width: 225px;
  padding: 20px;
  line-height: initial;
}
header > nav > ul > li > ul > li:hover{
  background-color: #EEEEEE;
}
header > nav > ul > li:hover{
  background-color: #FFFFFF;
}
header > nav > ul > li:hover > a{
  color: #ED393A;
}
header > nav > ul > li:hover ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}


header > div.f {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 20%;
  height: 40px;
}
header > div.f > form{
  width: auto;
  height: auto;
  min-width: 60px;
  -webkit-transition: .3s;
  transition: .3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
  position: relative;
}
header > div.f > form input[type=text]{
  width: 0px;
  height: 40px;
  -webkit-transition: .3s;
  transition: .3s;
  background-color: transparent;
      background-position: center center;
}
header > div.f > form input[type=submit]{
  width: 40px;
  height: 40px;
  background-color: transparent;
  background-image: url('../images/search.png');
  background-repeat: no-repeat;
  background-position: center center;
      position: absolute;
      top: 0;
    right: 10px;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    /*margin-top: -20px;*/
}

.search-active {
  width: 200px !important;
  height: 40px !important;
  border-radius: 20px !important;
  border: 1px solid #FFFFFF !important;
  position: relative !important;
}
.input-active {
  width: 181px !important;
  padding: 10px !important;
  font-size: 15px !important;
  color: #FFFFFF !important;
  border: 1px solid #FFFFFF;
  border-radius: 20px;
}
header > div.f > ul.change-language{
  width: 40px;
  height: 40px;
  border-radius: 50px !important;
  border: 1px solid #FFFFFF !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
  margin-right: 25px;
}
header > div.f > ul.change-language > li{
  display: none;
}
header > div.f > ul.change-language > li:first-of-type{
  display: block;
  margin-top: 10px;
}
header > div.f > ul.change-language > li > a{
  color: #FFFFFF;
}
header > div.f > ul.change-language:hover{
  height: 70px;
}
header > div.f > ul.change-language:hover li{
  display: block;
  width: 40px;
  margin-top: 10px;
  text-align: center;
}



main{
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
section.over{
  z-index: 899;
  width: 100%;
  height: 556px;
  position: relative;
  overflow: hidden;
  background-image: url('../images/header.png');
  background-repeat: no-repeat;
  background-size: cover;
}
div.roundmenu{
  z-index: 899;
  width: 100%;
  height: 556px;
  background-color: transparent;
  position: absolute;
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
div.rect{
  width: 100%;
  height: 100%;
  background-color: #ED393A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  display: none;
}
div.rect .close {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 32px;
  height: 32px;
}
div.rect .close:before, .close:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 33px;
  width: 2px;
  background-color: #FFFFFF;
}
div.rect .close:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
div.rect .close:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

div.rect div.rectmenu{
  width: 24%;
  height: 50%;
  text-transform: uppercase;
  /*text-align: center;*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
  font-size: 15px;
  color: white;
}
/*div.rect div.rectmenu:hover{
  background-color: #DB4943;
  opacity: 0.8;
}*/
div.rect div.rectmenu a{
  text-align: center;
  color: #FFFFFF;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
          padding: 20px 0;
}
div.rect div.rectmenu img{
  margin-top: 10%;
  width: auto;
}

.svground{
  position: absolute;
  right: 0;
  height: 100%;
}
.roundmenuactive{
  right: 0!important;
  width: 1050px;
}
#text1{
  display: none;
}
#g{
  fill: none;
}
.hov1:hover{
  fill: url(#hover1)!important;
  z-index: -787;
}
.hov2:hover{
  fill: url(#hover2);
}
.hov3:hover{
  fill: url(#hover3);
}
.hov4:hover{
  fill: url(#hover4);
}
.hov5:hover{
  fill: url(#hover5);
}
.hov6:hover{
  fill: url(#hover6);
}
.hov7:hover{
  fill: url(#hover7);
}
.st0{
  z-index: 45454;
}
text{
  text-transform: uppercase;
  font-size: 12px;
  text-align: center;
  color: #FFFFFF;
}
.svgmap{
  width: 100%;
  margin-top: 75px;
  height: 570px;
  margin-right: 0;
}
.infohover{
  width: 200px;
  height: 100px;
  background-color: #EE393B;
  margin-bottom: 25px;
  display: block;
  position: fixed;
  display: none;
  color: #FFFFFF;
  font-size: 15px;
  text-align: center;
}
.infohover::after{
  content: "";
  width: 0;
	height: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 5px solid #EE393B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 100px;
  left: calc(50% - 12px);
  position: absolute;
}
section.item div.item-content{
    position: relative;
    z-index: 2222222222;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#owl-demo{
  z-index: 898;
  width: 100%;
  height: 556px;
  overflow: visible;
}
.owl-wrapper-outer {
  height: 100%;
}
.owl-wrapper  {
  height: 100%;
}
div.owl-pagination{
  position: absolute;
  bottom: 60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
}
.owl-item{
  height: 100%;
}
.item{
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.item:after{
  content:"";
  background-color: rgba(237,57,58, 0.8);
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
}
h1{
  color: #FFFFFF;
  font-size: 35px;
  text-transform: uppercase;
  text-align: center;
}
div.sliderinfo{
  width: 495px;
  color: #EEB0AC;
  font-size: 20px;
  font-weight: normal;
  text-align: center;
  margin-top: 30px;
  letter-spacing: 1px;
}
section.item  a{
  margin-top: 35px;
  width: 240px;
  height: 50px;
  background-color: #FFFFFF;
  color: #ED393A;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  border: 1px solid #FFFFFF;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;

}
section.content{
  width: 100%;
  min-height: 690px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
aside.homeaside{
  width: 44%;
  padding: 50px 0 0 50px;
  background-color: #FFFFFF;
  z-index: 1;
  padding-bottom: 20px;
}
h3{
  font-size: 25px;
  color: #ED393A;
  text-transform: uppercase;
}
aside.homeaside > article {
  min-height: 80px;
  width: 100%;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
aside.homeaside > article > div.newstext{
  width: calc(100% - 103px);
  color: #666666;
  font-size: 15px;
  padding-left: 10px;
  font-weight: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
aside.homeaside > article > div.newstext a{
  color: #666666;
}
aside.homeaside > article  header{
  font-size: 12px;
  color: #999999;
  background-color: #FFFFFF;
}
aside.homeaside > article figure{
  width: 103px;
}
aside.homeaside > article  p{
  padding-top: 5px;
  /*max-height: 7em;*/
  line-height: 1.2em;
  /*overflow: hidden;*/
}
aside.homeaside > figure{
  margin-top: 40px;
}
h2{
  color: #ED393A;
  text-transform: uppercase;
}
aside.homeaside > div.info{
  width: 380px;
  color: #666666;
  font-size: 15px;
  margin-top: 50px;
}
aside.homeaside > address{
  width: 380px;
  color: #666666;
  font-size: 15px;
  margin-top: 23px;
  font-style: normal;
}
aside.homeaside > address a{
  color: #ED393A;
}
section.glpresence{
  width: 60%;
  padding-top: 50px;
}
section.glpresence > figure{
  position: relative;
  top: 42px;
  left: -40px;
  z-index: -1;
}
footer{
  width: 100%;
  height: 150px;
}
footer > header{
  background-color: #F5F5F5;
  height: 100px;
  padding: 0 50px 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
          flex-direction: row;
}
footer > header div.left{
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer > header div.left div.social{
  width: 50px;
  height: 13px;
  margin-left: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;

}
footer > header div.left div.social > a > img:hover{
  fill: #EE393B;
  }


footer > header nav{
  width: 60%;
}
footer > header > nav > ul > li:hover{
  background-color: #F5F5F5;
  line-height: 50px;
}
footer > header  nav ul{
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
   -webkit-box-align: center;
  -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
footer > header nav ul li{
  text-transform: uppercase;
  color: #666666;
  font-size: 15px;
  font-weight: bold;
}
footer > header nav ul li a{
  color: #666666;
}
footer > footer{
  background-color: #FFFFFF;
  height: 50px;
  padding: 0 50px 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;

}
  footer > footer div.l{
    font-size: 14px;
    color: #666666;
}
  footer > footer div.r{
    font-size: 14px;
    color: #666666;
}
footer > footer div.r a{
  color: #EE393B;
  text-decoration: underline;
}




/*---------------------DATA CENTER CSS-------------------------*/
div.datacontent{
  padding: 50px ;
  width: 100%;
  position: relative;
  min-height: 690px;
  height: auto;
  /*background-color: green;*/
}
.datacontent p{
  color: #333333;
  font-size: 15px;
  line-height: 27px;
  padding-top: 40px;
  width: 62%;
  z-index: 1;
}
h4{
  color: #ED393A;
  font-size: 20px;
  line-height: 24px;
  padding-top: 60px;
  font-weight: lighter;
}
.datacontent ul{
  padding-left: 18px;
}
.datacontent ul li{
  padding-top: 15px;
  color: #EE393B;
  font-size: 15px;
  list-style-type: disc;
}
.datacontent ul li span {
    color: #333333;
}
.datacontent img{
  right: 50px;
  top:107px;
  position: absolute;
  z-index: -1;
}

.datacontent .intvoice-services {
  min-height: 400px;
  height: auto;
}

.datacontent .intvoice-services .callinfo {
  margin-top: 40px;
}
.datacontent .intvoice-services .callinfo p {
  padding-top: 0px;
}

/*---------------------10-07 CSS-------------------------*/
.content div.callContent{
  padding: 50px 50px 50px 50px;
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.content .callContent div.callinfo{
  margin-top: 40px;
  height: 55px;
  color: #333333;
  font-size: 15px;
  /*line-height: 27px;*/
  font-weight: bold;
}
h5{
  color: #EB3939;
  font-size: 20px;
  /*line-height: 36px;*/
  font-weight: bold;
  margin-bottom: 8px;
}
.tabContent > div{
  display: none;
}
.tabContent > div:first-child{
  display: block;
}
.tabContent {
  margin-top: -1px;
  padding: 50px 12px;
  border: 1px solid #ccc;
  min-height: initial;
  height: auto;
  z-index: -1;
}

.tab{
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 65px;
  width: 95%;
  margin-left: 20px;
  margin-top: 85px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
ul.tab li{
  height: 65px;
  color: #666666;
  font-size: 20px;
  font-weight: bold;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  text-transform: uppercase;
  list-style-type: none;
}
ul.tab li:hover{
  cursor: pointer;
}
.act{
  background-color: #FFFFFF;
  color: #EB4545 !important;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  z-index: 1;
}
h6{
  width: 97%;
  height: 40px;
  margin-top: 30px;
  margin-left: 15px;
  color: #EC4545;
  font-size: 15px;
  border-bottom: 1px solid #EC4545;
}
h6:first-child{
  margin-top: 0;
}

div.infoTable{
  width: 97%;
  height: auto;
  margin-top: 25px;
  display: inline-block;
  margin-left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
div.infoTable div.infoTableRow{
  width: 100%;
  padding: 10px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: flex-end;
  -webkit-transition: background-color 200ms ease;
  -moz-transition: background-color 200ms ease;
  transition: background-color 200ms ease;
  cursor: pointer;
}

div.infoTable div.infoTableRow:not(:first-child):hover {
  background-color: rgba(80, 80, 80, 0.1);
}

div.infoTable div.infoTableRow:first-child{
  margin-top: 0;
}
div.infoTable div.infoTableRow div.countries{
  width: 76%;
  color: #333333;
  font-size: 15px;
  font-weight: bold;
}
div.infoTable div.infoTableRow  h6{
  color: #333333;
  font-size: 15px;
  text-transform: uppercase;
  border: none;
  margin-left: 0;
}
div.infoTable div.infoTableRow div.countries p{
  padding-bottom: 0px;
  padding-top: 0px;
  width: auto;
}
div.infoTable div.infoTableRow div.fixed{
  width: 10%;
  color: #333333;
  font-size: 15px;
  margin-left: auto;
}
div.infoTable div.infoTableRow div.fixed p{
  padding-bottom: 0px;
  padding-top: 0px;
  width: auto;
}
div.infoTable div.infoTableRow div.cellular{
  width: 10%;
  color: #333333;
  font-size: 15px;
}
div.infoTable div.infoTableRow div.cellular p{
  padding-bottom: 0px;
  padding-top: 0px;
  width: auto;
}
.moreinfo{
  width: 100%;
  height: auto;
  font-size: 15px;
  color: #EB3939;
  font-style: italic;
  margin-top: 20px;
  padding-left: 8px;
}
.moreinfo p{
  padding-bottom: 7px;
}
div.news{
  margin-right: auto;
  margin-left: auto;
  /*padding-left: 50px;*/
  width: 90%;
  height: auto;
  min-height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
div.news > figure{
  width: 38%;
}
div.news > article{
  width: 60%;
  padding-top: 60px;
  margin-bottom: 30px;
}
div.news > figure > img{
  width: 100%;
  margin-top: 68px;
}
div.news > article > header{
  font-size: 30px;
  color: #ED393A;
  text-transform: uppercase;
  font-weight: bold;
}
div.news > article > header > p{
  font-size: 14px;
  color: #999999;
  background-color: #FFFFFF;
  text-transform: capitalize;
  font-weight: normal;
}
div.news > article > p{
  color: #666666;
  font-size: 15px;
  font-weight: normal;
  margin-top: 20px;
  text-align: justify;
}

div.news > article > ul > li {
  list-style-type: disc;
  margin-left: 20px;
}

div.news > article table, div.news > article table th, div.news > article table td {
  border: 1px solid #d8d8d8;
}

div.news > article table th, div.news > article table td {
  border: 1px solid #d8d8d8;
  padding: 10px;
}

aside.homeaside:last-of-type{
  margin-top: 30px;
}
.svgsocial:hover{
  fill: #ED393A;
}
section.newsPage{
  width: 100%;
  height: 690px;
  padding: 0 50px 50px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
section.newsPage > article {
  height: 140px;
  width: 47%;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
section.newsPage > article > div.newstext{
  width: calc(100% - 103px);
  color: #666666;
  font-size: 15px;
  padding-left: 10px;
  font-weight: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
section.newsPage > article > div.newstext a{
  color: #666666;
}
section.newsPage > article  header{
  font-size: 12px;
  color: #999999;

}
section.newsPage > article > figure{
  width: 180px;
  height: 140px;
}
section.newsPage > article > figure > a > img{
  width: 180px;
  height: 140px;
}
section.newsPage > article  p{
  padding-top: 10px;
}
section.newsPage > figure{
  margin-top: 40px;
}
h2{
  color: #ED393A;
  text-transform: uppercase;
}
section.newsPage> div.info{
  width: 380px;
  color: #666666;
  font-size: 15px;
  margin-top: 23px;
}
section.newsPage > address{
  width: 380px;
  color: #666666;
  font-size: 15px;
  margin-top: 23px;
  font-style: normal;
}
section.newsPage > address a{
  color: #ED393A;
}
#allNews > h1{
  color: #ED393A;
  text-align: left;
  padding-left: 50px;
}
#iframe{
  margin-top: 100px;
}
body > main > section.content > aside > h3 > a{
  color: #ED393A;
}
body > header.globalMenu{
  background-color: #ED393A;
  top: 0;
  height: 100px;
}
section#contact{
  width: 100%;
  min-height: 690px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
section.contact-info{
  width: 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  /*background-color: green;*/
}
section.contact-form{
  width:48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  /*background-color: yellow;*/
}
#map{
  width: 90%;
  height: 225px;
  background-color: grey;
  margin-top: 15px;
  border: 0px;
  border-radius: 5px;
}
.cont{
  padding-top: 50px;
  padding-left: 50px;
  padding-right: 50px;
}
#contact > section.contact-info > p{
  color: #6f6f6f;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  padding-top: 40px;
}
.contact-address{
  margin-top: 5px;
}
#contact > section.contact-form > p{
  color: #6f6f6f;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  padding-top: 40px;
}
#contact > section.contact-form > div > form > input{
  width: 80%;
  height: 40px;
  margin-top: 10px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  text-indent: 10px;
  color: #6f6f6f;
}
#contact > section.contact-form > div > form > textarea{
  width: 80%;
  height: 120px;
  margin-top: 10px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  resize: none;
  text-indent: 10px;
  color: #6f6f6f;
}
#contact > section.contact-form > div > form > div{
  margin-top: 10px;
  font-size: 15px;
}
#contact > section.contact-form > div > form > input.submit{
  width: 170px;
  height: 50px;
  background-color: #EE393B;
  border: 0px;
  border-radius: 25px;
  color: #FFFFFF;
  font-size: 18px;
  text-transform: uppercase;
}
#contact > section.contact-info > address > p{
  color: #000000;
  font-size: 15px;
  line-height: 0;
  font-style: normal;
}
#contact > section.contact-info > address > p:nth-child(1)::before{
  content: " ";
  background-image: url('../images/add5.png');
  background-repeat: no-repeat;
  background-position: left center;
  width: 20px;
  height: 20px;
  display: inline-block;
  padding-right: 15px;
  margin-top: 20px;
}
#contact > section.contact-info > address > p:nth-child(2)::before{
  content: " ";
  background-image: url('../images/add1.png');
  background-repeat: no-repeat;
  background-position: left center;
  width: 20px;
  height: 20px;
  display: inline-block;
  padding-right: 15px;
  margin-top: 20px;
}
#contact > section.contact-info > address > p:nth-child(3)::before{
  content: " ";
  background-image: url('../images/add2.png');
  background-repeat: no-repeat;
  background-position: left center;
  width: 20px;
  height: 20px;
  display: inline-block;
  padding-right: 15px;
  margin-top: 20px;
}
#contact > section.contact-info > address > p:nth-child(4)::before{
  content: " ";
  background-image: url('../images/add3.png');
  background-repeat: no-repeat;
  background-position: left center;
  width: 20px;
  height: 20px;
  display: inline-block;
  padding-right: 15px;
  margin-top: 20px;
}
body > main > div.datacontent > p > img.gmap{
  top: 0 !important;
  bottom: 100px !important;
  right: initial !important;
  left: 0;
  height: auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
}
section.lookingContent{
  width: 100%;
  min-height: 690px;
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 50px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
div.query{
  width: 365px;
  height: 100%;
}
div.result{
  width: 73%;
  height: 100%;
}
.query-form > p{
  margin-top: 20px;
  color: #666666;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
}
div.result > p{
  margin-top: 20px;
  color: #666666;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
}
body > main > section.lookingContent > div.query > form > input[type="text"]{
  width: 365px;
  height: 40px;
  margin-top: 15px;
  border: 1px solid #DDDDDD;
  border-radius: 50px;
  text-indent: 15px;
}
body > main > section.lookingContent > div.query > form > select{
  width: 365px;
  height: 40px;
  margin-top: 15px;
  border: 1px solid #DDDDDD;
  border-radius: 50px;
  text-indent: 15px;
}
div.button-div{
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  /*padding-right: 10%;*/
}
div.button-div button{
  height: 40px;
  width: 35%;
  border: 0px solid #DDDDDD;
  border-radius: 50px;
  background-color: #DDDDDD;
  font-size: 18px;
  color: #FFFFFF;
}
div.button-div button:first-child{
  margin-right: 10px;
}
div.button-div button:hover{
  background-color: #EE393B;
}
div.router-info{
  width: 250px;
  height: 40px;
  margin-top: 30px;
  color: #000000;
  font-size: 15px;
  line-height: 20px;
  font-weight: normal;
}
body > main > section.lookingContent > div.result > div > p > span{
  font-weight: bold;
}
.result-info{
  width: 100%;
  height: auto;
  color: #EE393B;
  font-size: 13px;
  margin-top: 15px;
  line-height: 20px;
}

div.radio-div{
  width: 365px;
  height: 40px;
  margin-top: 15px;
  border: 1px solid #DDDDDD;
  border-radius: 50px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  color: #000000;
  font-weight: normal;
  text-transform: uppercase;
}
body > main > section.lookingContent > div > form > div.radio-div > input[type="radio"]{
  display: none;
}

div.radio-div > input[type="radio"]:checked + label {
  background-color: #EB3939;
  color:#FFFFFF;
}
label{
  width: calc(100% /3);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
body.global{
  margin-top: 80px;
}
body.global > footer{
  position: relative;
  z-index: 1;
  margin-top: -70px;
}


.fwidth{
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.part_list{
  margin-left: 10px;
  margin-right: 10px;
  width:240px;
  height:280px;
  margin-bottom: 15px;
  border: 1px solid #cccccc;
  /*background: rgb(255,255,255);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(66%,rgba(255,255,255,1)), color-stop(100%,rgba(246,246,246,1)));
  background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 66%,rgba(246,246,246,1) 100%);
  background: linear-gradient(to bottom,  rgba(255,255,255,1) 66%,rgba(246,246,246,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f6f6f6',GradientType=0 );
  box-shadow: 0px 2px 3px 1px rgba(172,170,171,0.41)*/
}
.part_list img {
    width: 210px;
    height: 140px;
    float: left;
    margin: 22px 0 0 14px;
}
.part_list .img-block {
    display: block;
    width: calc(100% - 40px);
    height: 140px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 20px;
    margin-right: 20px;
}
.part_list .title {
    width: 100%;
    margin-top: 25px;
    float: left;
    text-align: center;
    color: #666666;
    font-size: 20px;
    height: 49px;
    overflow: hidden;
}
.part_list .city {
    float: left;
    width: 100%;
    font-family: Georgia;
    text-align: center;
    margin-top: 15px;
    font-style: italic;
    color: #666666;
}
.damalulitexti{
  display: none;
}
.popup .x{
  position: absolute;
  right: 5px;
  top: 5px;
  display: inline-block;
  width: 31px;
  height: 30px;
  background-image: url('../images/xxx.png');
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
  background-color: #EB3939;
  border-radius: 5px;
}
.popup{
  position: fixed;
  left: calc(50% - 280px);
  top: 0;
  width: 560px;
  z-index: 902;
  overflow: hidden;
  background: #f0f0f0;
  border: 1px solid #fff;
  box-shadow: 0 1px 10px #333;
  box-shadow: 0 1px 10px rgba(32, 32, 32, 0.5);
  -moz-box-shadow: 0 1px 10px rgba(32, 32, 32, 0.5);
  -webkit-box-shadow: 0 1px 10px rgba(32, 32, 32, 0.5);
  border-radius: 5px;
  padding: 50px 20px;
  display: none;
}
.popupbg{
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 901;
  background-color: rgba(0,0,0,0.5);
  display: none;
}
.localp{
  width: 100% !important;
  margin: 0;
}
.localp  img{
  left: auto;
  right: auto;
  height: auto;
  position: relative;
  top: initial;
  width: 100%;
}


.ln-wrapper h3,
.ln-wrapper p {
    width: 48%;
    clear: both;
    margin-bottom: 40px;
}

.ln-wrapper p {
	margin-bottom: 10px;
	color: #333333;
}

.ln-wrapper .banner-wrapper p {
    margin-bottom: 0;
}
.ln-wrapper ul {
    width: 48%;
    clear: both;
    padding-left: 18px;
}
.ln-wrapper ul li {
    color: #EE393B;
    font-size: 15px;
    list-style-type: disc;
    padding-bottom: 15px;
}
.ln-wrapper ul li span {
    color: #333333;
}
.ln-wrapper .banner-wrapper {
    width: 100%;
    padding: 50px;
}
.ln-wrapper .geo-cities {
    position: relative;
    min-height: 500px;
    width: 100%;
    padding: 0 50px;
    margin-bottom: 40px;
}

.ln-wrapper .geo-cities img {
    right: 50px;
    top: 20px;
    position: absolute;
    z-index: -1;
}
.ln-wrapper .stable-speed {
    position: relative;
    min-height: 500px;
    width: 100%;
    padding: 50px;
    margin-bottom: 40px;
    background-color: #f5f5f5;
}
.ln-wrapper .stable-speed img {
    left: 50px;
    top: 30px;
    position: absolute;
}
.ln-wrapper .stable-speed h3,
.ln-wrapper .stable-speed p,
.ln-wrapper .stable-speed ul {
    float: right;
}

@media (min-width: 320px) and (max-width: 767px) {
  div.infoTable div.infoTableRow h6 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (min-width: 320px) and (max-width: 864px) {
	.datacontent p {
		display: block;
		width: 100% !important;
	}
	.datacontent h4 {
	  display: block;
    float: left;
    width: 100%;
    padding-top: 20px;
    margin-bottom: 20px;
	}
	.datacontent ul {
		width: 100%;
		float: left;
	}
  div.infoTable div.infoTableRow div.countries {
    width: 60% !important;
  }
  div.infoTable div.infoTableRow div.fixed {
    width: 20% !important;
  }
  div.infoTable div.infoTableRow div.cellular {
    width: 20% !important;
  }
}

@media (min-width: 320px) and (max-width: 1300px) {
  .intvoice-services {
    width: 100%;
    float: left;
  }
  .tabcontainer {
    width: 100%;
    float: left;
  }
  .tabContent {
    width: 100%;
    float: left;
  }
  .moreinfo {
    width: 100%;
    float: left;
    height: auto !important;
  }
  .datacontent .intvoice-services > p {
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
  }
  .datacontent .intvoice-services > p img {
    position: static;
  }

  div.infoTable div.infoTableRow div.countries {
    width: 70%;
  }
  div.infoTable div.infoTableRow div.fixed {
    width: 12%;
  }
  div.infoTable div.infoTableRow div.cellular {
    width: 12%;
  }

}