html, body{
    background-color: whitesmoke;
}

.title{
    font-weight: normal;
}

li,
p{
    font-size: 15px;
    color: #525252;
}

li,
span,
h1,h2,h3,
p{
    font-family: "Poppins", sans-serif;
}

li{
    font-size: 18px;
}
#app{
    overflow: hidden;
}

.is-centered{
    text-align: center;
}

.nav{
    box-shadow: none!important;
}

/* start navbar */
.navbar {
    background-color: #16191A;
}

.navbar a img{
    margin-right: 10px
}


.navbar a{
    color: #fff!important;
}
.navbar-nav a {
    margin-right: 10px;
    font-size: 15px;
}

/*end navbar */



.download-sec {
    padding: 10px 0;
}
.download-sec h2{
    font-family: "Montserrat", sans-serif;
}
.download-sec a{
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px!important;
    border-radius: 50px;
    transition: 0.5s;
    margin: 0 5px;
    color: #16191A!important;
    background: #e2f1fd;
    text-decoration: none;
}
footer{
    padding: 10px 0;
    align-items: center;
        border-top: 1px solid #e1e1e1;
}

footer div{
    width: 100%;
    text-align: center;
    color: #000;
}


footer a{
    font-size: 2em;
    color: #000;
    padding: 0 20px;
}

.logo-footer img{
    width: 150px;
}

footer p{
    font-size: 14px;
    color: #000;
    margin-top: 10px;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  position: relative;
  padding: 120px 0 0 0;
}

#hero:before {
  content: "";
  background: url("../../images/background.jpg");
  background-repeat: no-repeat;
  background-size: auto;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.dropdown-backdrop {
    position: static;
}

#hero h1 {
  margin: 0 0 20px 0;
  font-size: 30px;
  line-height: 56px;
  color: rgba(255, 255, 255, 0.8);
}
#hero p {
  color: #fff;
  font-size: 18px;
}

#hero h1 span {
  color: #fff;
  border-bottom: 4px solid #ffc107;
}


#hero table span {
  color: #cecece;
  display: block;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  font-size: 20px;
}
.navbar-nav .download,
#hero .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px!important;
  border-radius: 50px;
  transition: 0.5s;
  color: #16191A!important;
  background: #fff;
  text-decoration: none;
}
.navbar-nav .download:hover,
#hero .btn-get-started:hover {
  background: #ffc107;
  color: #fff!important;
}

#hero .iphone {
    margin: 0 10px;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #hero {
    padding-top: 80px;
  }
 
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    max-width: 90%;
  }
  #hero h1 {
    font-size: 24px;
    line-height: 46px;
    margin-bottom: 10px;
  }

  #hero p {
    font-size: 15px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 70%;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

.hero-waves {
  display: block;
  margin-top: 60px;
  width: 100%;
  height: 60px;
  z-index: 5;
  position: relative;
}

.wave1 use {
  -webkit-animation: move-forever1 10s linear infinite;
  animation: move-forever1 10s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave2 use {
  -webkit-animation: move-forever2 8s linear infinite;
  animation: move-forever2 8s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave3 use {
  -webkit-animation: move-forever3 6s linear infinite;
  animation: move-forever3 6s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@-webkit-keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@-webkit-keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}



/* start nxn-privacy */
.nxn-privacy{
    background-color: #fff;
    padding: 40px 15px;
}


.nxn-privacy .desc{
    color: rgb(107, 107, 107) !important;
    margin: 0 10px 15px;
    font-size: 16px !important;
}

.nxn-privacy .items p{
    color: #000;
    margin: 13px 0 0;
    margin-bottom: 10px;
}

.nxn-privacy ul{
    margin-left: 15px;
}

.nxn-privacy ul li{
    color: rgb(66, 66, 66);
    font-size: 16px;
}

.nxn-privacy ul li span{
    margin-left: 15px;
    color: rgb(107, 107, 107);
    font-size: 15px;
}
.nxn-privacy img{
    width: 80px;
}

.nxn-privacy .simple-text{
    margin-top: 15px;
    color: rgb(107, 107, 107) !important;
    font-size: 16px;
}
/* end nxn-privacy */



/*Otorro */
.voip42-logo{
    display: block;
    margin: auto;
    margin-bottom: 25px;
    width: 150px;
}


/* Start Voip */
.voip{
    background-color: #F6F6F6;
    padding-bottom: 30px;
    padding-top: 30px
}
.voip42{
    background-color: #fff
}

.voip .image1 img{
    width: 75%;
    float: right;
}

@media screen and (max-width: 769px){
    .voip .image1 img{
        width: 75%;
    }
}
.voip .info{
    margin: auto 56px;
}

.voip .info img{
    width: 106px;
}

.voip {
    overflow: hidden;
}

.voip .info .logo{
    display: contents;
}

.voip .image2 img{
    width: 90%;
    margin: 10px 0px
}

.voip .image2,
.voip .image1{
    padding: 0px
}

/* End Voip */

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  padding: 50px 0;
}

.faq li {
  margin-bottom: 8px
}

.faq .step {
  color: #4eabff;
}

.faq img{
    width: 100px;
    height: auto;
}

.faq .faq-item {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid #dde8f1;
}

.faq .faq-item .qst {
  color: #9bbbd7;
  font-size: 20px;
  float: left;
  line-height: 0;
  padding: 13px 0 0 0;
  margin: 0;
}

.faq .faq-item h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  margin: 0 0 10px 28px;
  font-family: "Poppins", sans-serif;
}

.faq .faq-item li,
.faq .faq-item p {
  font-size: 15px;
}