@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');
*, body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}
body {
    background-color: #f5f7fa !important;
}
.maintain-area-margin {
    margin: 0 300px;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    height: auto;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0 2px 1px #e8e8e8;
    padding: 5px 0;
    z-index: 100;
    /*padding: 5px 170px;*/

}
header div.child {
    display: flex;
    align-items: center;
    flex-direction: row;

}
header div.logo-area {
    flex: 1;
}
header div.logo-area svg{
    height: 50px;
    width: auto;
    display: flex;
}
header button.signin {
    padding: 9px 16px;
    font-size: 15px;
    border: 0;
    border-radius: 7px;
    background-color: #002970;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease-in-out;

}
header button.signin:hover {
    background-color: #00baf2;
}
.title {
    font-size: 31px;
    font-weight: 600;
    color: #212121;
}
.title.mini {
    font-size: 21px;
    font-weight: 500;
}

div.faq-area {
    background-color: #fff;
    padding: 30px 0;
}

div.faq-area div.accordion-item {
    border-radius: 11px !important;
    border-color: transparent;
    background-color: #f5f7fa;
    margin-bottom: 20px;
}
div.faq-area button.accordion-button {
    box-shadow:none;width: 100%;text-align: left; border: none;background-color: transparent;padding: 14px 20px; font-weight: 600; font-size: 20px;
}
div.faq-area a {
    text-decoration: none;
    padding: 3px 0;
    color: #212121;
    font-weight: 500;
    background-color: #f5f7fa;
    padding: 9px 18px;
    border-radius: 50px;
}
div.faq-area a:hover {
    color: #fff;
    background-color: #212121;
}
div.faq-area p.more-faq {
    margin: 20px 0 0 0 !important;
}

/* footer design ---start--*/
footer {
    background-color: #f5f7fa;
    padding: 50px 0 0 0;
    margin-top: 100px;
}
footer div.child {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 40px;
}
footer div.bottom {
    height: 50px;
    border-top: 1px solid #e8e8e8;
    flex-direction: row;
    display: flex;
    align-items: center;
}
footer div.bottom div.end {
    flex: 1;
}
footer div.azmuth-logo svg{
    height: 20px;
    width: auto;
    float: right
}

footer div.tab {
    flex: 1;
    height: 100%;
    display: flex;
    /* align-items: center; */
    /* background-color: red; */
}
footer div.sub-tab {
    flex: 1;    
    /* background-color: red; */
}
footer div.sub-tab.start{
    margin-right: 100px;
}
footer div.end.tab {
    margin-left: 100px;
    /* background-color: red; */
}
footer div.logo svg {
    height: 40px;
    width: auto;
}
footer div.logo {
    margin-bottom: 10px;
}

footer div.category {
    flex: 1;
}
footer div.category div.links {
    display: grid;
}
p.category-title {
    font-weight: 600;
    font-size: 17px;
    margin: 0 0 10px 0;

}
footer a {
    text-decoration: none;
    padding: 3px 0;
    color: #002970;
}
footer a:hover {
    color: #00baf2;
}

footer div.category div.icon {
    margin-top: 0px;
    margin-right: 10px;
    padding: 7px;
    background-color: #fff;
    border-radius: 50px;
}
footer div.category svg {
    width: 18px;
    height: 18px;
    display: flex;
}
footer div.category div.icon[data-type="phone"] svg,
footer div.category div.icon[data-type="email"] svg {
    width: 18px;
    height: 18px;
    padding: 1px;
}
footer div.contact div.content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 6px;

}
footer div.contact div.content p {
    margin-bottom: 0 !important;
}
footer div.end.tab.small-device {
    display: none;
}


/* footer design ---end--*/

@media only screen and (max-width: 1600px) {
    .maintain-area-margin {
      margin: 0 100px;
    }
    footer div.sub-tab.start{
        margin-right: 60px;
    }
    footer div.end.tab {
        margin-left: 60px;
    }
}

@media only screen and (max-width: 1460px) {
    .maintain-area-margin {
      margin: 0 60px;
    }
    
}

@media only screen and (max-width: 1260px) {
    footer div.sub-tab.start{
        margin-right: 30px;
    }
    footer div.end.tab {
        margin-left: 30px;
    }
    
}

@media only screen and (max-width: 1030px) {

    header div.logo-area svg {
        height: 42px;
        margin: 4px 0;

    }    
    .maintain-area-margin {
      margin: 0 30px;
    }    
    .title {
        font-size: 25px;
    }
    .title.mini,
    div.faq-area h2 button {
        font-size: 18px !important;
    }
    footer p.category-title {
        font-size: 16px;
    }
    div.about-area p.info,
    div.faq-area div.accordion-body,
    footer div.category a,
    footer p.company-info,
    footer p.office-address {
        font-size: 15px;
    }
    div.faq-area div.child {
        margin: 0 60px !important;
    }
    footer div.logo svg {
        height: 30px;
    }
    footer {
        /* padding-top: 0; */
        margin-top: 50px !important;

    }
    footer div.end.tab.normal {
        display: none;
    }
    footer div.end.tab.small-device {
        display: flex;
    }

    footer div.child {
        display: grid;
        margin-bottom: 14px;
    }
    footer div.child div.tab.start {
        margin-bottom: 20px;
    }
    footer div.sub-tab.start{
        margin-right: 130px;
    }
    footer div.end.tab {
        margin-left: 0;
    }
    footer div.bottom div.start span{
        font-size: 12px !important;
    }
    div.faq-area p.more-faqs {
        font-size: 15px !important;

    }
}

@media only screen and (max-width: 800px) {
    div.faq-area div.child{
      margin: 0 30px !important;
    }
    .title {
        font-size: 22px;
    }
    div.faq-area p.more-faqs {
        font-size: 14px !important;

    }
}