/*************************************/
/************** GENERAL **************/
/*************************************/

@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@300;400;700&display=swap');

body {
  margin: 0px;
  font-family: 'Lexend Deca', sans-serif;
  /* background: linear-gradient(130deg, #F6F8F9 60%, #49AFFD 60%); */
  background: hsla(239, 100%, 67%, 1);

  background: linear-gradient(90deg, hsla(239, 100%, 67%, 1) 0%, hsla(187, 100%, 89%, 1) 100%);

  background: -moz-linear-gradient(90deg, hsla(239, 100%, 67%, 1) 0%, hsla(187, 100%, 89%, 1) 100%);

  background: -webkit-linear-gradient(90deg, hsla(239, 100%, 67%, 1) 0%, hsla(187, 100%, 89%, 1) 100%);

  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#595CFF", endColorstr="#C6F8FF", GradientType=1);
}

img {
  max-width: 100%;
}

.imgMiddle {
  vertical-align: middle;
}

h1 {
  color: #333;
  font-size: 4vw;
  text-align: center;
}

h2 {
  text-align: center;
}

.bgGradient {
  background: hsla(239, 100%, 67%, 1);

  background: linear-gradient(90deg, hsla(239, 100%, 67%, 1) 0%, hsla(187, 100%, 89%, 1) 100%);

  background: -moz-linear-gradient(90deg, hsla(239, 100%, 67%, 1) 0%, hsla(187, 100%, 89%, 1) 100%);

  background: -webkit-linear-gradient(90deg, hsla(239, 100%, 67%, 1) 0%, hsla(187, 100%, 89%, 1) 100%);

  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#595CFF", endColorstr="#C6F8FF", GradientType=1);
}

.bgColor {
  background-color: #F6F8F9;
}

.bgBlue {
  background-color: #49AFFD;
}

.bgWhite {
  background-color: #fff;
}

.bgOrange {
  background-color: rgb(255, 142, 72);
}

.bgGreen {
  background-color: rgb(53, 188, 139);
}

.bgWhiteSmoke {
  background-color: whitesmoke;
}

.bgCandyPink {
  background-color: #EF7A85;
}

.bgTurquoiseGreen {
  background-color: #85D5B8;
}

.bgOrangeYellow {
  background-color: #F8CD77;
}

.txtWhite {
  color: #fff;
}

.txtBlue {
  color: #49AFFD;
}

.padding25 {
  padding: 25px;
}

.noDeco {
  text-decoration: none;
}

.orange {
  color: #f90;
}

#page {
  padding: 150px 0 0 0;
  color: #444;
  clear: both;
  max-width: 100%;
  margin: auto;
}

th,
td {
  border: 1px solid #49AFFD;
  padding: 5px;
}

table {
  display: flex;
  justify-content: center;
  border-collapse: collapse;
}

tbody {
  background-color: rgb(255, 251, 249);
}

.type-orange {
  color: #FFA070;
}

.type-blue {
  color: #49AFFD;
}

.type-green {
  color: #69C9AB;
}

.radius25 {
  border-radius: 25px;
}

.boxShadow {
  box-shadow: 5px 5px 3px -1px rgba(0, 0, 0, 0.16);
}

.container {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  width: 100%;
  border-radius: 2px;
}

@media screen and (min-height: 300px) {
  .fixed {
    position: fixed;
    bottom: 0;
    background-color: #49AFFD;
  }

  .noBgRepeat {
    height: 100vh;
  }

  .visibleFooter {
    padding-bottom: 100px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*@media screen and (min-width: 1500px) {
  .bigContainer{
    display: flex;
    justify-content: center;
  }
  .bigContainer2 {
    display: flex;
    flex-flow: column wrap;
    align-content: center;
  }
  .container{
    width: 70%;
  }
}*/

@media screen and (min-width: 400px) {
  .bigContainer {
    display: flex;
    justify-content: center;
  }

  .bigContainer2 {
    display: flex;
    flex-flow: column wrap;
    align-content: center;
  }

  .container {
    width: 90%;
  }
}

/*************************************/
/************** NAVBAR ***************/
/*************************************/

nav {
  margin: 0;
  padding: 5px;
  text-align: right;
  background: white;
  position: fixed;
  width: 100%;
  z-index: 10;
}

@media screen and (min-width: 1000px) {
  nav {
    margin: 0;
    padding: 5px;
    text-align: right;
    background: white;
    display: flex;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    z-index: 10;
  }
}

nav ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
}

nav li {
 
  color: #fff;
  padding: 10px;
}

nav li a {
  padding: 4px;
  color: rgb(116, 99, 99);
  font: 1em "Trebuchet MS", Arial, sans-serif;
  text-decoration: none;
}

nav li a:hover,
nav li a:focus,
nav li a:active,
nav li a#selectedMenu {
  color: #49AFFD;
}

#signin {
  text-decoration: underline;
}

.logo {
  display: block;
  flex-flow: row nowrap;
  align-items: center;
  font-weight: bold;
}
.logo img {
	margin: auto;
  display: block;
}

.topnav {
  overflow: hidden;
}

.topnav .icon {
  display: none;
  color: #49AFFD;
  padding: 20px;
}
.topnav li ul {
        display: none;
        height: auto;
        margin: 0;
        padding: 0;
      }
	  
.topnav li:hover ul {
        display: block;
      }
	   .topnav li ul li {
		   width: 75px; 
     
      }
	

@media screen and (max-width: 1000px) {
  .topnav li {
    display: none;
  }

  .topnav a.icon {
    position: absolute;
    right: 0;
    top: 0;
    float: right;
    display: block;
    font-size:60px;
    padding-left: 10px;
  }
}

@media screen and (max-width: 1000px) {
  .topnav.responsive {
    position: relative;
  }

  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
    background-color: #f90;
  }

  .topnav.responsive {
    background-color: #F6F8F9;
    width: 100%;
    height: 100vh;
    transition: 700ms;
    position: fixed;
    height: 100%;
    overflow-y: hidden;
  }

  .topnav.responsive .listNav {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    transition: 50ms;
  }

  .topnav.responsive li {
    display: flex;
    font-size: 50px;
    padding: 2%;
  }
}

/* @media screen and (max-width: 1000px) {
  .listNav{
    display: flex;
    flex-direction: column;
  }
} */




/****************************************/
/************** FOOTER ******************/
/****************************************/

.containerFooter {
  display: flex;
  flex-flow: row nowrap;
  width: 100%;
  justify-content: flex-end;
  align-items: center;
}

.contentFooter {
  display: flex;
  list-style: none;
}

.contentFooter a {
  padding: 0 10px 0 0;
}

/****************************************/
/************** ACCORDION ***************/
/****************************************/

.containerAccordion {
  width: 80%;
  max-width: 600px;
  margin: 50px auto;
  padding: 5px;
}

button.accordion {
  width: 100%;
  background-color: whitesmoke;
  border: none;
  outline: none;
  text-align: left;
  padding: 15px 20px;
  font-size: 18px;
  color: #333;
  cursor: pointer;
  transition: background-color 0.2s linear;
  font-family: 'Lexend Deca', sans-serif;
}

button.accordion:after {
  font-family: FontAwesome;
  content: "\f150";
  font-family: "fontawesome";
  font-size: 18px;
  float: right;
}

button.accordion.is-open:after {
  content: "\f151";
}

button.accordion:hover,
button.accordion.is-open {
  background-color: #ddd;
}

.accordion-content {
  background-color: white;
  border-left: 1px solid whitesmoke;
  border-right: 1px solid whitesmoke;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-in-out;
}



/*************************************/
/************** HOMEEEE **************/
/*************************************/

.getstarted-img {
  text-align: center;
}

@media screen and (max-width: 1000px) {
  .containerHome {
    display: flex;
    flex-flow: column wrap;
    justify-content: space-around;
    padding: 20px;
    width: 100%;
    border-radius: 2px;
    animation: fadeIn 3s;
  }
}

@media screen and (min-width: 1000px) {
  .containerHome {
    display: flex;
    flex-flow: column wrap;
    justify-content: space-around;
    padding: 20px;
    width: 60%;
    border-radius: 2px;
    box-shadow: 5px 5px 3px -1px rgba(0, 0, 0, 0.16);
    animation: fadeIn 3s;
  }
}

.contentHome1 {
  padding: 20px;
  flex: 1;
  height: 100%;
  justify-content: end;
}

@media screen and (max-width: 1000px) {
  .contentHome1 {
    width: 70%;
  }
}

@media screen and (max-width: 1000px) {
  .containerQualities {
    flex-flow: row wrap;
  }
}

@media screen and (min-width: 400px) {
  .containerQualities {
    flex-flow: row nowrap;
  }
}

.containerQualities {
  display: flex;
  justify-content: center;
  animation: fadeIn 1s;
}

.contentQualities {
  display: flex;
  justify-content: center;
  flex-flow: column wrap;
  align-items: center;
  padding: 10px;
  text-align: center;
}

.contentOffer {
  display: flex;
  align-items: center;
  max-width: 500px;
  min-width: 200px;
  width: 20%;
  border-radius: 2px;
  text-align: center;
  box-shadow: 5px 5px 3px -1px rgba(0, 0, 0, 0.16);
  margin: 2px;
}

@media screen and (min-width: 400px) {
  .contentOffer {
    display: flex;
    align-items: center;
    max-width: 500px;
    min-width: 200px;
    width: 100%;
    border-radius: 2px;
    text-align: center;
    box-shadow: 5px 5px 3px -1px rgba(0, 0, 0, 0.16);
    margin: 2px;
  }
}

/****************************************/
/************** GET STARTED *************/
/****************************************/
.quickAccess {
  background-color: white;
  border-radius: 0 100px 100px 0;
  /*   align-self: flex-start;
 */
}

.containerGetStarted,
.containerGetStarted2 {
  display: flex;
  border-radius: 1px;
}

.containerUse {
  display: flex;
  border-radius: 1%;
}

.contentUse {
  display: flex;
  width: 100%;
  flex-flow: column;
}

.containerGetStartedContent {
  display: flex;
  flex-flow: column;
  width: 100%;
  justify-content: stretch;
}

@media screen and (max-width: 800px) {
  .quickAccess {
    /* width: 80%; */
  }

  .containerGetStarted,
  .containerGetStarted2 {
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
  }

  .containerUse {
    display: flex;
    width: 80%;
    flex-flow: row wrap;
    justify-content: center;
    border-radius: 1%;
    margin: 2px;
  }
}

@media screen and (min-width: 800px) {
  .containerGetStarted {
    flex-flow: row nowrap;
    justify-content: space-around;
    align-items: flex-start;
  }

  .containerGetStarted2 {
    flex-flow: column wrap;
    justify-content: space-around;
    align-items: center;
  }

  .screenIphone {
    padding-left: 5px;
    align-self: flex-end;
    align-items: flex-start;
    width: 100%;
  }

  .containerUse {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    border-radius: 1%;
    margin: 2px;
  }


}




/*************************************/
/*********** PAGE OF FOOTER **********/
/*************************************/

.containerLegal {
  display: flex;
  justify-content: center;
}

.contentLegal {
  background-color: #fff;
  width: 80%;
}

/*************************************/
/*********** CALLBOT *****************/
/*************************************/

.containerVideo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contentCallbot {
  padding: 20px;
}

.cardCallbot {
  border-radius: 5px;
}

@media screen and (max-width: 600px) {
  .containerVideo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
  }
}

@media screen and (max-width: 1000px) {
  .containerCallbot {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    padding: 20px;
    width: 90%;
    border-radius: 2px;
    align-items: center;
    align-content: center;
  }

  .contentCallbot {
    width: 100%;
  }

  .cardCallbot {
    width: 80%;
  }
}

@media screen and (min-width: 1000px) {
  .containerCallbot {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    padding: 20px;
    width: 100%;
    border-radius: 2px;
  }

  .contentCallbot {
    width: 20%;
    padding-right: 50px;
  }

  .cardCallbot {
    width: 20%;
  }
}

@media screen and (max-width: 1300px) and (min-width:1000px) {
  .contentCallbot {
    width: 25%;
  }

  .cardCallbot {
    width: 50%;
  }
}

.bigContainerUsePhone {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.containerUsePhone {
  display: flex;
  width: 90%;
  flex-flow: row wrap;
  justify-content: center;
}

.contentUsePhone {
  width: 20%;
  display: flex;
  flex-flow: column;
  align-items: center;
  text-align: center;
}

.round {
  background-color: white;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  font-size: 80px;
}

.resizeImg {
  width: 80%;
  margin-top: auto;
}

/*************************************/
/*********** PRICING *****************/
/*************************************/


.containerPrice {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}

.smallContainerPrice {
  width: 25%;
}

@media screen and (max-width: 880px) {
  .smallContainerPrice {
    width: 80%;
  }
}

@media screen and (min-width: 880px) and (max-width: 1200px) {
  .smallContainerPrice {
    width: 35%;
  }
}

.card {
  /* position: relative; */
  max-width: 300px;
  height: auto;
  background: linear-gradient(-45deg, #fe0847, #feae3f);
  border-radius: 15px;
  margin: 0 auto;
  padding: 40px 20px;
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
  box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
  -webkit-transition: .5s;
  transition: .5s;
  z-index: 0;
}

.card:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.smallContainerPrice:nth-child(1) .card,
.smallContainerPrice:nth-child(1) .card .title .fa {
  background: linear-gradient(-5deg, #FF9A5B 50%, rgb(255, 142, 72) 50%);
}

.containerPlug .smallContainerPrice:nth-child(1) .card,
.smallContainerPrice:nth-child(2) .card,
.smallContainerPrice:nth-child(2) .card .title .fa {
  background: linear-gradient(-5deg, #4AC397 50%, rgb(53, 188, 139) 50%);

}

.containerPush .smallContainerPrice:nth-child(1) .card,
.smallContainerPrice:nth-child(3) .card,
.smallContainerPrice:nth-child(3) .card .title .fa {
  background: linear-gradient(-5deg, #5CB7FD 50%, #49AFFD 50%);
}

.title .fa {
  color: #fff;
  font-size: 60px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  text-align: center;
  line-height: 100px;
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, .1);
  box-shadow: 0 10px 10px rgba(0, 0, 0, .1);

}

.title h2 {
  position: relative;
  margin: 20px 0 0;
  padding: 0;
  color: #fff;
  font-size: 28px;
  z-index: 2;
}

.price,
.option {
  position: relative;
  z-index: 2;
}

.price h4 {
  margin: 0;
  padding: 20px 0;
  color: #fff;
  font-size: 60px;
  text-align: center;
}

.option ul {
  margin: 0;
  padding: 0;

}

.option ul li {
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
  color: #FFF;
  font-size: 16px;
}

.card a,
.containerCompareButton .button {
  position: relative;
  z-index: 2;
  color: black;
  width: 150px;
  height: 40px;
  line-height: 40px;
  border-radius: 40px;
  display: block;
  text-align: center;
  margin: 20px auto 0;
  font-size: 16px;
  cursor: pointer;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
  box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
  text-decoration: none;

}

.card a:hover {
  text-decoration: none;
}

.card p {
  color: #FFF;
  text-align: center;
}

.priceTxt {
  font-size: 14px;
}


/*************************************/
/************ DETAILS PRICE **********/
/*************************************/


.basicBody {
  background: linear-gradient(130deg, #F6F8F9 70%, #49AFFD 70%);
}

.containerBasic,
.containerPlug,
.containerPush {
  display: flex;
  flex-flow: row;
}

@media screen and (max-width: 880px) {

  .containerBasic,
  .containerPlug,
  .containerPush {
    display: flex;
    flex-flow: column-reverse;
  }
}

/*************************************/
/********** COMPARE PRICE ************/
/*************************************/
.containerCompareButton {
  display: flex;
  flex-flow: row;
  padding: 3%;
}

.button:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/*************************************/
/*********** WHO ARE WE **************/
/*************************************/

.containerHeader {
  display: flex;
  flex-flow: row;
}

.cardMW {
  display: flex;
  flex-flow: column nowrap;
  width: 40%;
  border-radius: 25px;
  justify-content: center;
  align-items: center;
}

.containerMW {
  display: flex;
  flex-flow: row;
  justify-content: space-around;
}


@media screen and (max-width: 1000px) {
  .containerMW {
    display: flex;
    flex-flow: column;
    align-items: center;
  }

  .cardMW {
    width: 80%;
  }

  .contentMW2 {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .containerMW2 {
    padding: 25px;
  }
}

.contentMW2 {
  display: flex;
  width: 100%;
}

.containerMW3 {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.contentMW3 {
  width: 100%;
  align-content: center;
  justify-content: center;
}

/*************************************/
/************** ASSET ****************/
/*************************************/

.containerMogui1 {
  display: flex;
  flex-flow: row;
  justify-content: space-around;
}

.contentMogui1 {
  width: 45%;
}

@media screen and (max-width: 1000px) {
  .contentMogui1 {
    width: 100%;
  }

  .containerMogui1 {
    flex-flow: column;
    justify-content: center;
  }

  .containerTailoredSolution {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    width: 100%;
  }

  .contentTailoredSolution {
    width: 90%;
  }
}

.containerTailoredSolution {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
}

.contentTailoredSolution {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-content: center;
}

@media screen and (min-width: 1000px) {

  .containerTailoredSolution {
    width: 100%;
  }

  .contentTailoredSolution {
    width: 35%;
  }
}









