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;
}
  
.topDiv #topMenu a:hover {
    color: white;
    background: #00a4f1;
    border-radius: 39px;
}

* {
    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;
  }

#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;
    
}
.faq-container {
    width: 100%;
    background-color: #0086D5;
    
}
.questions {
    width: 100%;
    background-color: #0086D5;
    padding-bottom: 20px;
}
.title {
    text-align: center;
    font-size: 25px;
    color: white;
    padding-top: 50px;
    margin-top: 0;
}
.question1, .question2, .question3, .question4, .question5 {
    width: 50%;
    margin: auto;
    background-color: white;
    padding: 5px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.faq-question {
    display: flex;
    font-size: 17px;
    font-weight: 700;
    justify-content: space-between;
    padding: 10px 10px;
    margin: 10px 0;
}

.faq-answer {
    display: none;
    width: 90%;
    margin: auto;
}
.faq-question img {
    width: 15px;
}
.faq-answer-button {
    background-color: transparent;
    border: 0;
    cursor: pointer;
}
.dowm-arrow {
    display: none;
}
.customer-support {
    width: 100%;
    height: 100%;
    
}
.customer-support-row{
   display: flex;
   justify-content: space-around;
}
.cs-title {
    font-size: 28px;
    font-weight: 700;
}
.cs-para {
    font-size: 13px;
    width: 400px;
    color: #797979;
}
.left-content {
    align-self: center;
}
.customer-support img{
    width: 35%;
}

.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;
}

/* Top Menu */
@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%;
    }
}

/* Mobile resolution */
@media only screen and (max-width: 767px) and (orientation: portrait) {
   body{
    zoom: 80%;
   }
   .faq-container{
    height: 100%;
   }
   .question1,.question2,.question3,.question4,.question5{
    width: 80%;
   }
   .customer-support{
    height: 100%;
   }
   .customer-support-row{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    zoom: 110%;
   }
   .customer-support img{
    width: 70%;
   }
   .footer{
    height: 100%;
    margin-top: 20px;
    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%;
    }
    .question1,.question2,.question3,.question4,.question5{
        width: 60%;
    }
    .customer-support{
        height: 100%
    }
    .customer-support img{
        zoom: 70%;
    }
    .footer{
        height: 100%;
        padding: 50px;
    }
}

/* Tab resolution */
@media only screen and (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
    body{
        zoom: 80%;
    }
    .question1,.question2,.question3,.question4,.question5{
        width: 60%;
    }
    .customer-support{
        zoom: 110%;
        height: 100%;
    }
    .customer-support img{
        zoom: 90%;
    }
    .footer{
        zoom: 110%;
        height: 100%;
        padding: 50px;
        padding-bottom: 0px;
        margin: 0;
    }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) and (orientation: landscape) {
    body{
        zoom: 90%;
    }
    .faq-container{
        height: 100%;
    }
    .questions{
        width: 100%;
    }
    .customer-support{
        height: 100%;
    }
    .footer{
        padding: 30px;
    }
}

/* Lap, PC resolution
@media only screen and (min-width: 1024px) {
    body{
       zoom: 100%;
    }
    
} */