body {
    margin: 0;
}
.topDiv {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 1;
    border-bottom: 3px solid rgba(0, 134, 213, 1);
}
  
.Logo {
    width: 160px;
}
  
.topDiv #topMenu a {
    padding: 10px 20px;
    text-decoration: none;
    font-size: 16px;
    color: black;
}

.txt-white {
    color: white;
}
  
.topDiv #topMenu a:hover {
    color: white;
    background: #00a4f1;
    border-radius: 39px;
}

@media only screen and (min-width: 764px) {
    #dropDown {
        display: none;
    }
}

@media only screen and (max-width: 764px) {
    #topMenu {
      display: none;
    }
    #dropDown {
        display: block;
        margin-right: 10%;
    }
}
#dropDownBtn {
    background-color: transparent;
    border: 0;
    cursor: pointer;
}
#dropDownContent {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    width: 100px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
#dropDownContent a{
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
#dropDownContent a:hover {
    background-color: #00a4f1;
    color: white;
}
#dropDown.open #dropDownContent {
    display: block;
    
}
.pricing {
    width: 100%;
    height: 100%;
    margin-top: 6%;
}
.pricing li {
   margin: 15px 0;
   color: rgba(121, 121, 121, 1);
   font-size: 14px;
   list-style-type: none;
}
.plan-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.plan-content span {
    font-size: 30px;
    font-weight: 900;
}
.plan-content p {
    font-size: small;
    width: 350px;
    color: rgba(144, 144, 167, 1);
    text-align: center;
    margin-bottom: 30px;
}

.plans {
    width: auto;
    height: 550px;
    display: flex;
    flex-direction: row;
    border-radius: 15px;
    padding: 15px;
}
.priceView{
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.plans-left {
    height: 480px;
    padding: 20px 60px;
    background-color: rgba(249, 249, 249, 1);
}
.plans-middle {
    padding-right: 50px;
    padding-left: 50px;
    color: white !important; 
    background-color: #0086D5;
}
.middle-li-a li{
    color: white;
}
.plans-right {
    height: 480px;
    padding: 20px 45px;
    background-color: rgba(249, 249, 249, 1);
}
.per-month {
    font-size: 26px;
    font-weight: 900;
}
.per-year {
    font-size: 13px;
    color: rgba(198, 138, 21, 1);
    padding: 5px;
    background-color: rgba(255, 238, 204, 1);
    border-radius: 20px;
}
.title {
    font-size: 22px;
    font-weight: 700;
    align-self: center;
}
.offer {
    background-color: rgba(255, 255, 255, 1);
    padding: 4px 9px;
    border-radius: 20px;
}
.popular {
    background: linear-gradient(90deg,#0b5cff 2.83%,#00ff91 97.64%);
    color: white;
    font-weight: 700;
}
.plans a{
    color: white;   
    background-color:#00a4f1;
    padding: 7px;
    border-radius: 15px;
    text-decoration: none;  
    cursor: pointer;
}
.traffic-plans-website {
    height: 480px;
    padding: 20px 60px;
    background-color: rgba(249, 249, 249, 1);
}
.traffic-plans-app {
    height: 480px;
    padding: 20px 60px;
    background-color: rgba(249, 249, 249, 1);
    margin-left: 2%;
}
.traffic-plans-video {
    height: 480px;
    padding: 20px 45px;
    background-color: rgba(249, 249, 249, 1);
    margin-left: 2%;
}
.footer {
    width: 100%;
    height: 100%;
    padding:0px 100px;
    margin-top: 5%; 
}

.footer-logo{
    width: 160px;
}
.footer a, .footer span{
    font-size: 15px;
}
.company-details {
    width: 250px;
}
.company-details span, .company-details p {
    font-size: 15px;
    color: rgba(121, 121, 121, 1);
    margin: 0;
}

.footer a {
    text-decoration: none;
    color: rgba(121, 121, 121, 1);
}
.footer li {
    margin: 10px 0;
    list-style: none;
    
}
.pages ul, .utility-pages ul, .address ul{
    color: rgba(121, 121, 121, 1);
}
.address span {
    color: rgba(121, 121, 121, 1);
}
.address img {
    width: 13px;
}
.copyright {
    display: flex;
    justify-content: space-between;
    bottom: 0;
    margin: 0 45px 0 45px;
}
.social-media button{
    background-color: transparent;
    border: 0;
    cursor: pointer;
    padding: 0;
    margin: 0 8px;
}
.innerFooter{
    display: flex; 
    justify-content: space-between;
}

* {
    box-sizing: border-box;
    scrollbar-color: transparent transparent;
    scrollbar-width: 0px;
  }
  
  *::-webkit-scrollbar {
    width: 0;
  }
  
  *::-webkit-scrollbar-track {
    background: transparent;
  }
  
  *::-webkit-scrollbar-thumb {
    background: transparent;
    border: none;
  }
  
  * {
    -ms-overflow-style: none;
  }

/* Mobile Resolution */
@media only screen and (max-width: 767px) and (orientation: portrait) {
    body {
        zoom:80%;
    }
    .pricing{
        height: 100%;
        margin-top: 5%; 
        zoom: 82%;
     }
    .priceView{
        flex-direction: column;
        align-items: center;
    }
    .traffic-plans-website, .traffic-plans-app{
        margin-bottom: 3%;
    }
    .footer{
        height: 100%;
        flex-direction: column;
        padding: 50px;
    }
    .innerFooter{
        display: flex; 
        justify-content: space-between;
        flex-direction: column;
    }
    .copyright{
        zoom: 80%;
        margin: 0 10px 0 10px;
        width: 100%;
    }
}

@media only screen and (max-height: 432px) and (orientation: landscape) {
    body{
        zoom: 70%;
    }
    .pricing{
        height: 100%;
        margin-top: 5%;
        zoom: 75%;
     }
     .priceView{
        margin-top: 3%;
    }
    .footer{
        padding: 20px;
        height: 100%;
    }
}
    
/* Tablet resolution */
@media only screen and (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
    body{
        zoom: 80%;
    }
    .pricing{
        height: 100%;
    }
    .priceView{
        margin-top: 30px;
        zoom: 90%;
    }
    .footer{
        zoom: 110%;
        height: 100%;
        padding: 50px;
        margin: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) and (orientation: landscape) {
    body{
        zoom: 90%;
    }
    .pricing{
        height: 100%;
    }
    .team-reviews{
        height: 100%;
    }
    .footer{
        padding: 30px;
    }
}
/* Laptop/PC resolution
@media only screen and (min-width: 1489px) {

} */