* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    font-family: Calibri, Candara, Segoe, Segoe UI, Optima, Arial, sans-serif;
}

section{
margin-bottom: 50px;
}

nav {
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 3px solid yellow;
    font-weight: 00;
    background-color: rgb(55, 55, 55);
}

nav:after {
    content: '';
    clear: both;
    display: table;
}

nav .logo {
    width: 35%;
    float: left;
    color: navy;
    font-weight: 600;
    /* line-height: 70px; */
    padding-left: 60px;
    padding-top: 15px;
}

.logo img {
    float: left;
    margin-bottom: 3%;
    /* width: 150px;
    height: 50px; */
}

.logo p {
    position: absolute;
    line-height: 170px;
    color: white;
    font-size: 0.8em;
}

nav ul {
    float: right;
    margin-right: 40px;
    list-style: none;
    position: relative;
}

nav ul li {
    float: left;
    display: inline-block;
    background-color: rgb(55, 55, 55);
    margin: 0 5px;
}

nav ul li a {
    color: yellow;
    line-height: 100px;
    text-decoration: none;
    font-size: 18px;
    padding: 8px 15px;
}

nav ul li a:hover {
    background: white;
    color: navy;
    font-size: 20px;
    border-radius: 5px;
    box-shadow: 0 0 5px #1c23f2, 0 0 10px #113ded;
}

nav ul ul li a:hover {
    box-shadow: none;
    border-radius: 5px;
    box-shadow: 0 0 5px #1c23f2, 0 0 10px #113ded;
}

nav ul ul {
    position: absolute;
    top: 90px;
    border-top: 3px solid rgb(0, 38, 255);
    opacity: 0;
    visibility: hidden;
    transition: top .3s;
}

nav ul ul ul {
    border-top: none;
}

nav ul li:hover>ul {
    top: 70px;
    opacity: 1;
    visibility: visible;
}

nav ul ul li {
    position: relative;
    margin: 0px;
    width: auto;
    float: none;
    display: list-item;
    border-bottom: 1px solid rgba(4, 4, 4, 0.892);
    z-index: 2;
}

nav ul ul li a {
    line-height: 50px;
}

nav ul ul ul li {
    position: relative;
    top: -60px;
    left: 150px;
}

.show,
.icon,
input {
    display: none;
}

.fa-plus {
    font-size: 15px;
    margin-left: 40px;
}


/* background image  */

.Contact::before {
    position: absolute;
    content: "";
    background: url(support/contactus-background.jpg) no-repeat;
    background-position: center;
    height: 450px;
    width: 100%;
    z-index: -1;
    top: 30px;
}

.Contact h2 {
    font-size: 3.5em;
    text-align: center;
    color: rgb(255, 255, 255, 0.7);
    margin-top: 15%;
}

.Contact p {
    text-align: center;
    color: rgb(255, 255, 255, 0.7);
    /* margin-top: 15%; */
}


/* contact text  */

.Contactcontainer {
    display: flex;
    margin: auto;
}

.ContactText {
    margin-top: 5%;
}

.Div {
    width: 30%;
    margin: auto;
    margin-top: 2%;
    text-align: center;
}

.Div img {
    background-color: green;
    border-radius: 50%;
    display: block;
    margin: auto;
}

.Div h3 {
    margin-top: 1%;
}


/* accordian css */

.Faq {

    /* margin-left: 10%; */

    text-align: center;
}

.Faq h2{
    
    display: inline-block;
    margin-bottom: 3%;
    color: yellow;
    background-color: rgb(63, 62, 62);
    padding: 0 1.5%;
    border-radius: 40px;
}

/* Style the buttons that are used to open and close the accordion panel */

.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 90%;
    font-weight: bold;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
}

.panel p{
    width: 90%;
    margin: auto;
}
.panel ol li{
    width: 80%;
    margin: auto;
}
.panel ul li{
    width: 80%;
    margin: auto;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */

.active,
.accordion:hover {
    background-color: #ccc;
}


/* Style the accordion panel. Note: hidden by default */

.panel {
    padding: 0 18px;
    background-color: white;
    display: none;
    overflow: hidden;
    width: 90%;
    text-align: justify;
}

.accordion:after {
    content: '\02795';
    /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2796";
    /* Unicode character for "minus" sign (-) */
}


/* footer css */

footer {
   
    width: 100%;
    padding-top: 3%;
    display: flex;
    text-align: center;
    background: linear-gradient(0deg, rgb(35, 136, 213) 0%, rgba(255, 255, 255, 1) 90%);
}

.Company {
    width: 30%;
    margin-left: auto;
    margin-right: auto;
}

.Company ul {
    list-style: none;
    margin-top: 5%;
}

.Company ul a {
    text-decoration: none;
    color: black;
}

.contactFooter {
    width: 30%;
    margin-left: auto;
    margin-right: auto;
}

.contactFooter p {
    margin-top: 5%;
}

.addressFooter {
    width: 30%;
    margin-left: auto;
    margin-right: auto;
}

.addressFooter p {
    margin-top: 5%;
}

.copyRight {
    background-color: rgb(55, 55, 55);
    text-align: center;
    color: yellow;
}

@media all and (max-width: 968px) {
    nav ul {
        margin-right: 0px;
        float: left;
    }
    nav .logo {
        padding-left: 30px;
        width: 100%;
    }
    nav ul li,
    nav ul ul li {
        display: block;
        width: 100%;
    }
    nav ul ul {
        top: 70px;
        position: static;
        border-top: none;
        float: none;
        display: none;
        opacity: 1;
        visibility: visible;
    }
    nav ul ul li {
        border-bottom: 0px;
    }
    nav ul ul ul {
        position: static;
    }
    nav ul ul a {
        padding-left: 40px;
    }
    .show {
        display: block;
        color: yellow;
        font-size: 18px;
        padding: 0px 15px;
        line-height: 80px;
        cursor: pointer;
    }
    .show :hover {
        color: navy;
    }
    .icon {
        display: block;
        color: yellow;
        position: absolute;
        right: 40px;
        font-size: 25px;
        line-height: 70px;
        cursor: pointer;
    }
    nav ul a :hover {
        box-shadow: none;
    }
    .show+a,
    ul {
        display: none;
    }
    [id^=btn]:checked+ul {
        display: block;
    }
    #quicklinks {
        display: block;
    }
    .textFAQ ul {
        display: block;
    }
    .Company ul {
        display: block;
    }
}


/* Small devices (portrait tablets and large phones, 600px and up) */

@media only screen and (max-width: 768px)and (min-width: 600px) {
    .logo p {
        font-size: 1.5em;
    }
    .Contact::before {
        position: absolute;
        content: "";
        background: url(support/contactus-background.jpg) no-repeat;
        background-position: center;
        height: 280px;
        width: 100%;
        z-index: -1;
        top: 30px;
    }
    .Div h3 {
        margin-top: 1%;
    }

}


/* Extra small devices (phones, 600px and down) */

@media only screen and (max-width: 600px) {
    .logo p {
        font-size: 0.8em;
    }
    .Contact {
        height: 25vh;
    }
    .Contact::before {
        position: absolute;
        content: "";
        background: url(support/contactus-background.jpg) no-repeat;
        background-position: center;
        height: 50vh;
        width: 100%;
        z-index: -1;
        top: 30px;
    }
    .Contact h2 {
        font-size: 1.5em;
        text-align: center;
        color: rgb(255, 255, 255, 0.7);
        margin-top: 15%;
    }
    .Contact p {
        text-align: center;
        color: rgb(255, 255, 255, 0.7);
    
    }
    /* footer  */
    footer {
        
        width: 100%;
        display: block;
        text-align: center;
        padding-bottom: 10px;
        background: linear-gradient(0deg, rgb(35, 136, 213) 0%, rgba(255, 255, 255, 1) 90%);
    }
    footer div{
        margin-top: 10%;
    }
    .Company {
        margin-top: 5%;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .Company ul {
        list-style: none;
        margin-top: 5%;
    }
    .Company ul a {
        text-decoration: none;
        color: black;
    }
    .contactFooter {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .contactFooter p {
        margin-top: 5%;
    }
    .addressFooter {
        width: 95%;
        margin-left: auto;
        margin-right: auto;
    }
    .addressFooter p {
        margin-top: 5%;
    }
    
    .Contactcontainer {
        display: block;
        margin: auto;
        margin-top: 20%;
    }
    .Div {
        width: 90%;
        margin: auto;
        margin-top: 5%;
        text-align: center;
    }
    
}