*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    /* font-family: 'inter', sans-serif; */
}

.row{
    margin:0;
    padding:0;
}

html{
    margin-top:0;
    margin-bottom: 0;
    margin-left:0;
    margin-right:0;
}

section{
    width:100%;
    float:left;
}

.fixed-container {
    max-width: 1250px;
    margin: 0 auto;
    width: 93%;
}

/* Fonts */
@font-face{
    font-family: "Inter-Regular";
    src: url("../fonts/Inter-Regular.ttf");
}

@font-face{
    font-family: "Inter-ExtraBold";
    src: url("../fonts/Inter-ExtraBold.ttf");
}

@font-face{
    font-family: "Inter-Bold";
    src: url("../fonts/Inter-Bold.ttf");
}

@font-face{
    font-family: "Inter-SemiBold";
    src: url("../fonts/Inter-SemiBold.ttf");
}

@font-face{
    font-family: "Inter-Medium";
    src: url("../fonts/Inter-Medium.ttf");
}

/* Fontawesome */
@font-face {
    font-family: "FontAwesome";
    src: url("../fonts/fontawesome-webfont.eot");
    font-display: swap;
}

@font-face {
    font-family: "FontAwesome";
    src: url("../fonts/fontawesome-webfont");
    font-display: swap;
}

@font-face {
    font-family: "FontAwesome";
    src: url("../fonts/fontawesome-webfont.woff");
    font-display: swap;
}

@font-face {
    font-family: "FontAwesome";
    src: url("../fonts/FontAwesome.otf");
    font-display: swap;
}

h1,h2,h3,h4 {
    font-family: "Inter-Bold";
}

p {
    font-family: "Inter-Regular";
}
/* Navbar */
header {
    background: white;
    width: 100%;
    position: fixed;
    z-index: 9;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

ul.menu a {
    font-size: 16px;
    font-family: "Inter-ExtraBold";
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.side-menu {
    font-weight: 600;
    font-size: 16px;
    /* margin-top: 10px; */
    display: flex;
    align-items: center;
    font-family: "Inter-Bold";
}

.menu {
    gap: 30px;
    list-style: none;
    display: flex;
}

ul.menu {
    padding: 0;
    margin-bottom: 0 !important;
}

.nav-links {
    text-decoration: none;
    color: black;
}

.nav-links:hover {
    color: #046c95;
}

.nav-btn {
    font-weight: 600;
    font-size: 16px;
    border-style: none;
    background-color: #046c95;
    padding: 10px 40px;
    color: white;
    margin-left: 50px;
    font-family: "Inter-Bold";
}

.menu-icon {
    display: none;
}

span.menu-icon.menu-tab {
    position: relative;
    z-index: 10;
    top: 0;
}

@media(max-width: 991px) {
    .hide-menu {
        display: block;
        position: fixed;
        top: 0;
        width: 100%;
        height: 100vh;
        z-index: 9;
        background-color: #046c95;
        right: -100%;
        transition: all 0.6s ease-in-out;
    }

    .menu li {
        border-bottom: 1px solid #ffffff69;
        width: 100%;
        text-align: center;
    }

    .nav-links {
        color: white;
    }

    .nav-links:hover {
        color: black;
    }

    .nav-bar {
        justify-content: space-between;
    }

    .navbar-left img {
        padding-top: 14px;
        padding-bottom: 10px 
    }

    .menu-icon {
        display: block;
    }

    .menu-icon img {
        /* position: fixed; */
        width: 25px;
        height: 25px;
        display: inline-block;
        margin-right: 15px;
    }

    .show {
        display: block;
        right: 0 !important;
        transition: all 0.6s ease-in-out;
    }

    .menu {
        flex-direction: column;
        align-items: center;
        margin-top: 130px;
    }

    .nav-btn {
        display: none;
    }

    /* Services */
    .services-div {
        padding-bottom: 0;
        margin-bottom: 0;
    }

    /* About Us */
    .hidden-text {
        display: none;
    }
    
    .read-btn {
        display: block !important;
        margin: 20px 0;
        border: none;
        border-radius: 33px;
        padding: 6px 26px;
        background: #046c95;
        color: #ffffff;
        font-weight: 600;
        font-family: "Inter-Bold";
    }
}

/* Banner */
section#main-banner-sec {
    margin-top: 100px;
}

.main-banner-img-mob{
    display: none;
}
.main-banner-img-dt{
    max-width: 100%;
    width: 100%;
}
section#main-banner {
    position: relative;
}
.banner-content-right h1{
    color: #046c95;
    font-size: 33px;
    font-family: 'Inter-bold' !important;
}
.banner-content-right h6{
    color: black;
    font-weight: 200;
    font-size:22px;
    margin-bottom: 30px;
    font-family: 'Inter-SemiBold' !important;
}
@media(max-width:1024px){
    .banner-content-right h6{
        font-size: 18px !important;
    }
}
@media(min-width:1140px){
    .banner-content-right h1{
        font-size: 50px !important;
    }
    .banner-content-right h6{
        font-size: 26px !important;
    }
}

.banner-content-right a{
    background-color: white;
    border: 1px solid #046c95;
    border-radius: 30px;
    color: #046c95;
    padding: 10px 27px;
    text-decoration: none;
    font-family: 'Inter-SemiBold' !important;
    font-size: 16px;
}

@media(min-width: 768px) and (max-width: 1599px){
    .row.banner-content {
        position: absolute;
        top: 17%;
        right: 9%;
    }
    section#home-ban {
        position: relative;
    }
}

@media(max-width: 980px) and (min-width: 768px) {
    .banner-content-right h6 {
        margin-bottom: 0 !important;
    }
}

@media(min-width: 1600px) {
    .row.banner-content {
        position: absolute;
        top: 17%;
        right: 23%;
    }
}


@media(max-width:767px) {

    .main-banner-img-dt{
        display: none;
    }
    .main-banner-img-mob{
        display:block;
        max-width: 100%;
        width: 100%;
    }
    .banner-content-right {
        text-align: center;
        background-color: #fff;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .banner-content-right h1{
        font-size: 23px !important;
    }
    .banner-content-right h6{
        font-size: 14px !important;
    }
    .banner-content-right a{
        padding: 10px 25px;
    }
    .row.banner-content {
        margin: 0px;
    }
}

@media(min-width:1140px){
    .banner-content-right h1{
        font-size: 35px !important;
    }
}

@media(min-width:768px) and (max-width:980px){
    .banner-content-right h1{
        font-size: 27px !important;
    }

    .banner-content-right h6{
        padding-bottom: 13px;
    }

    .banner-content-right a{
        padding: 10px 25px;
    }
}

@media(min-width:768px) and (max-width:992px){
    .banner-content-right {
        position: relative;
        top: 25px;
    }
}


@media(max-width: 1024px) {
    .navbar-left img {
        width: 132px;
    }

    /* about */
    .wcu-img img,
    .about-right img {
        width: 100%;
        max-width: 100%;
    }

    /* Services */
    .services-content-card {
        position: relative !important;
        width: 100% !important;
    }

    .services-div {
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }


}

.about-right img {
    width: 100%;
    max-width: 100%;
}

@media(max-width: 768px) {

    /* WWD Section*/
    .wwd-content {
        padding-top: 20px;
    } 

    .wwd-card {
        margin: 10px 0px;
        min-height: 150px;
    }

    /* about */
    .wcu-img img,
    .about-right img {
        width: 260px;
    }

    /* Services */
    .services-div {
        padding-bottom: 0;
        margin-bottom: 0;
    }
    
    .emr-logo img {
        width: auto !important;
        padding-bottom: 19px;
    }

    .footer-div img {
        width: 25px;
    }

    .contact-us-submit-btn, .contact-btn {
        padding: 5px 18px !important;
        font-family: "Inter-Bold";
    }

    .contact-main-card p {
        font-size: 16px;
        font-family: "Inter-Regular";
    }

    /* Why Choose Us Section */    
    #openform {
        float: none !important;
    }
}

@media(min-width: 1440px) {
    div.wcu-img img {
        width: auto !important;
    }
}

@media(max-width: 575px) {
    .row.emr-row>* {
        width: 50%;
    }
    .footer-div p {
        font-size: 12px !important;
    }
}



/* Mobile Banner */
.banner-img img {
    width: 100%;
}

/* WWD Section */
section#wwd-sec {
    padding-bottom: 50px;
}

.wwd-content {
    padding: 50px 12px 10px;
}

.wwd-content h3 {
    font-weight: 600;
    font-family: "Inter-ExtraBold";
    font-size: 26px;
}

.wwd-content p {
    color: #555555;
    font-family: "Inter-Regular";
    font-size: 16px;
}

.wwd-card h3 {
    font-size: 20px;
    font-weight: 700;
    font-family: "Inter-ExtraBold";
}

.wwd-card p {
    font-size: 16px;
    font-family: "Inter-Regular";
}
 
.wwd-card {
    padding: 15px;
    background: #ebebeb;
    margin: 12px 0px;
    border-radius: 20px;
    text-align: center;
    min-height: 190px;
}

@media(max-width: 980px) {
    .wwd-card {
        min-height: 0 !important;
    }
}

.wwd-card:hover {
    background: #046c95;
    color: white;
    transition: 1.2s;
}

/* About Us Section */
section#about-sec {
    margin-bottom: 50px;
}

.about-left {
    margin-top: 15px;
}

.about-left h3 {
    font-size: 26px;
    font-family: "Inter-Bold";
}

.about-head {
    color: #046c95;
}

.about-text {
    color: #979797;
    font-family: "Inter-Regular";
    font-size: 16px;
}

.about-head {
    color: #046c95;
    font-size: 30px;
    font-family: 'Inter-SemiBold';
}

/* Horizontal Tab */
div#HorizontalTab {
    width: 100%;
    float: left;
    margin-top: 20px !important;
}

#HorizontalTab h3 {
    font-family: "Inter-Bold";
    font-size: 24px;
}

h2.resp-accordion.hor_1 {
    background: none !important;
}

ul.resp-tabs-list {
    text-align: center;
}

ul.resp-tabs-list.hor_1 {
    padding-top: 10px !important;
}

li.resp-tab-item {
    width: 20%;
    vertical-align: bottom;
    display: inline-block;
}

li.resp-tab-item p {
    color: #c5c2c2;
    font-size: 14px;
    font-family: "Inter-Regular";
}

.resp-tab-content {
    padding-top: 50px !important;
}

.resp-tabs-list li {
    padding: 10px 0 !important;
    min-height: 170px !important;
}

/* Why Choose Us Section */
.wcu-content-div {
    padding: 50px 0;
}

.wcu-content {
    padding: 68px 82px 0;
}

@media(max-width: 1032px) {
    .wcu-content {
        padding: 10px !important;
    }
}

.wcu-left {
    padding: 0 !important;
}

.wcu-right {
    background: #083346;
    max-height: 100%;
}

.wcu-content h2 {
    font-size: 32px;
    font-family: "Inter-Bold";
    color: #ffc61b;
    padding-bottom: 15px;
}

.wcu-content h3 {
    font-size: 28px;
    font-family: "Inter-Bold";
    color: white;
    padding-bottom: 13px;

}

.wcu-content p {
    font-size: 16px;
    font-family: "Inter-Regular";
    color: white;
}

div.wcu-img img {
    display: block;
    height: 100%;
    width: 100%;
    max-width: 100%;
}


/* Services */
.services-container {
    padding-top: 70px;
}

.services-div {
    position: relative;
    padding-bottom: 190px;
    margin-bottom: 30px 
}

.services-img img {
    width: 100%;
}

.services-content-card {
    margin: 0 auto;
    min-height: 250px;
    text-align: center;
    background: #f3efef;
    border-radius: 12px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    width: 83%;
    margin-bottom: 30px;
}

.services-content {
    padding: 18px;
}
.services-content img {
    padding-bottom: 10px;
}

.services-head {
    font-size: 26px;
    font-family: "Inter-Bold";
}

.services-text {
    font-size: 18px;
    font-family: "Inter-Regular";
}


/* Conatct Us */
#contact-us {
    background-image: url(../images/Contact-us-banner.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

.contact-us-banner-content p {
    font-size: 16px;
    font-family: "Inter-Regular";
}

.contact-content {
    text-align: right;
}

.contact-content h2 {
    font-size: 26px;
    font-family: "Inter-Bold";
    color: #046c95;
    padding: 20px 0;
}

.contact-content p {
    font-size: 14px;
    font-family: "Inter-Regular";
}

.contact-us-submit-btn,
.contact-btn {
    margin: 20px 0;
    border: none;
    border-radius: 33px;
    padding: 15px 50px;
    background: #046c95;
    color: #ffffff;
    font-weight: 600;
    font-family: "Inter-Bold";
    font-size: 16px;
}

@media(max-width: 991px) {
    .contact-main-card h3 {
        font-size: 21px;
    }

    .contact-main-card p {
        font-size: 14px;
        font-family: "Inter-Regular";
    }

}

@media(min-width: 576px) and (max-width: 768px) {
    .contact-main-card h3 {
        font-size: 20px;
    }

    .contact-main-card p {
        font-size: 12px;
    }

    .contact-main-card {
        min-height: 247px !important;
    }

}

/* Footer */
#footer {
    background: #c4c4c5;
}

.footer-content {
    text-align: center;
    padding: 20px;
}

.footer-div {
    padding-bottom: 17px;
}

.footer-div img {
    padding-bottom: 5px;
}

.footer-div p {
    font-size: 16px;
    font-family: "Inter-Regular";
}

.footer-copyright {
    font-size: 10px;
    font-family: "Inter-Regular";
}

/* **************************** ABOUT US PAGE ***************** */
#about-us-sec {
    background-image: url(../images/about-us-banner.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.about-us-content {
    padding: 130px 0;
    text-align: center;
    color: white;
}

.about-us-content p {
    font-family: "Inter-Regular";
    font-size: 16px;
}

/* About help */
#about-slider {
    padding-bottom: 50px;
}

.about-help-img img {
    width: 100%;
    /* max-height: 425px; */
}

.about-help-content {
    padding-top: 50px;
}

.about-help-content h3 {
    font-weight: 600;
    font-family: "Inter-Bold";
    font-size: 26px;
}

.hidden-text,
.about-help-content p {
    font-size: 18px;
    font-family: "Inter-Regular";
}


/* .hidden-text {
    display: none;
}

.read-btn {
    display: block;
    margin: 20px 0;
    border: none;
    border-radius: 33px;
    padding: 6px 26px;
    background: #046c95;
    color: #ffffff;
    font-weight: 600;
    font-family: "Inter-Bold";
}

*/

.read-btn {
    display: none;
}

/* EMR Section */
section#emr-sec {
    padding: 30px 0;
}

.emr-head {
    text-align: center;
    font-weight: 600;
    padding: 20px 0;
    font-family: "Inter-Bold";
    font-size: 26px;
}

.emr-row {
    padding: 20px 0;
    justify-content: center;
}


.emr-logo img {
    width: 135px;
    max-width: 100%;
}

.epic-logo img {
    height: 75%;
}

.row.emr-row>* {
    display: grid;
    justify-content: center;
}


/* slider section */
.slider-content h3 {
    font-weight: 600;
    font-family: "Inter-Bold";
    font-size: 26px;
}

.slider-content p {
    font-size: 16px;
    font-family: "Inter-Regular";
}

.slider-card p {
    font-size: 16px;
    font-family: "Inter-Regular";
}

.slider-img img{
    width: 100%;
}

.slider-bottom-content {
    padding-top: 10px;
}

.slider-img {
    position: relative;
}

.slick-next:before {
    content: "\f105" !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display,inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    font-family: "FontAwesome" !important;
}

.slick-prev:before {
    content: "\f104" !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display,inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    font-family: "FontAwesome" !important;
}

.slick-prev, .slick-next {
    background: #046c95 !important;
    border-radius: 50% !important;
    top: 105% !important;
    width: 34px !important;
    height: 34px !important;
}

.slick-prev:before, .slick-next:before {
    color: #ffffff !important;
}

.slick-next {
    right: 40% !important;
}

.slick-prev {
    left: 40% !important;
}

ul.slick-dots li {
    border-radius: 50%;
}

.slick-dots li.slick-active button:before {
    color: #03A9F4 !important;
}

.slick-dots li button:before {
    font-size: 72px !important;
}

.slider-down-text {
    padding-left: 10px;
}

.slider-down-text img {
    padding-bottom: 10px;
}

@media(max-width: 1150px) {
    .slider-card h3,
    .slider-card p,
    .slider-down-text img {
        padding-left: 10px;
    }

    
}

@media(min-width: 1151px) {
    .row.slider-card .col-1 {
        padding-right: 28px;
    }
}

@media(min-width: 426px) and (max-width: 768px) {
    .slider-bottom-content {
        display: flex;
    }
}

@media(max-width: 418px) {
    .slider-down-text {
        text-align: center;
    }
}

/* *************************************REVIEWS PAGE********************************** */
#reviews-banner-sec,
#contact-us-banner-sec {
    background-image: url(../images/reviews-banner.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.review-content {
    background: #ededed;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    height: 200px;
    padding: 15px;
    border-radius: 15px;
    margin: 10px 0;
}

.row.review-cards-block {
    padding: 70px 0;
}

.reviews-banner-content h2 {
    font-family: "Inter-Bold";
    font-size: 26px;
}

.reviews-banner-content p {
    font-family: "Inter-Regular";
    font-size: 16px;
}

.review-content h3 {
    padding: 10px 0 2px 0;
    font-family: "Inter-Bold";
    font-size: 26px;
}

.review-content p {
    font-size: 16px;
    font-family: "Inter-Regular";
}

.review-content:hover {
    background: #046c95;
    color: white;
    transition: 1s;
}

.review-content img {
    width: 50px;
}

/* Table */
.review-table table td {
    font-size: 16px;
    font-family: Archivo-Regular;
    border: 1px solid #cfcfcf;
    text-align: center;
    color: #000;
    height: 26px
}

.review-table table th {
    background: #def2ff;
    padding: 6px 18px;
    border: 1px solid #cfcfcf;
    font-size: 16px;
    font-family: Archivo-SemiBold;
}
@media only screen and (max-width: 768px),(min-device-width:768px) and (max-device-width:991px) {
    .review-table-div,table,tbody,td,th,thead,tr {
        display:block
    }

    .review-table-div thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px
    }

    .review-table-div tr {
        margin: 0 0 1rem
    }

    .review-table-div td {
        border: 1px solid;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%
    }

    .review-table-div td:before {
        padding-top: 10px;
        position: absolute;
        top: 0;
        height: 40px;
        left: 6px;
        border-right: 1px solid #cfcfcf;
        width: 49%;
        padding-right: 10px;
        white-space: nowrap
    }

    .review-table-div td:first-of-type:before {
        content: "Capacitance Mfd"
    }

    .review-table-div td:nth-of-type(2):before {
        content: "Tolerance +/ - %"
    }

    .review-table-div td:nth-of-type(3):before {
        content: "Rated voltage"
    }

    .review-table-div td:nth-of-type(4):before {
        content: "Frequency HZ"
    }

    .review-table-div td:nth-of-type(5):before {
        content: "Operating temperture"
    }

    .review-table-div td:nth-of-type(6):before {
        content: "Dimension DxH"
    }
}

@media(max-width: 425px) {
    .review-table table td {
        min-width: 156px!important
    }
}

@media(max-width: 768px) {
    .review-table table td {
        font-size: 14px;
        border: 1px solid #cfcfcf;
        min-width: 191px
    }
    .review-table table th {
        padding: 6px 0;
        text-align: center;
        font-size: 14px
    }

    .review-table {
        display: block
    }

    .review-table table td {
        height: 40px;
        padding-top: 10px
    }
}

@media(min-width: 991px) {
    .review-table table th {
        padding: 10px 18px;
    }

    .review-table table td {
        padding: 8px 0
    }
}

/* .table-head {
    text-align: center;
    color: #046c95;
    padding-bottom: 5px;
    font-family: "Inter-Bold";
}

table {
    margin: auto;
}

table, tr, th, td {
    border: 1px solid black !important;
    border-collapse: collapse !important;
    padding: 20px;
    font-family: "Inter-Regular";
}

.table-content {
    overflow-x: auto;
    padding-bottom: 90px;
    font-family: "Inter-Bold";
}
 */


/* *************************************FAQ PAGE************************************** */
/* Banner Section */
#faq-banner-sec {
    background-image: url(../images/Faq-banner.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.faq-banner-content,
.reviews-banner-content,
.contact-us-banner-content {
    text-align: center;
    color: white;
    padding: 130px 10px;
}

.faq-banner-content h2,
.reviews-banner-content h2,
.contact-us-banner-content h2 {
    font-weight: 600;
    font-family: "Inter-Bold";
    font-size: 26px;
}

/* FAQ Section */
#faq-sec {
    padding: 50px 0;
}

.faq-banner-content p {
    font-size: 16px;
    font-family: "Inter-Regular";
}


.faq-head-content {
    text-align: center;
    padding: 40px 0 0;
}

.faq-head-content h2 {
    font-weight: 600;
    font-family: "Inter-Bold";
    font-size: 26px;
}

.faq-head-content p {
    font-family: "Inter-Regular";
    font-size: 16px;
}

.tw-accordion,
.emp-accordion,
.emp-list-title,
.emp-list-accordion {
    width: 100%;
    float: left;
}

.emp-accordion {
    padding: 15px 0;
}

.emp-list-accordion {
    padding-top: 10px;
    display: none;
}

.emp-list-title,
.emp-list-accordion p {
    background: #f5f5f5;
}

.emp-list-accordion p {
    padding: 0 10px;
    font-size: 16px;
    font-family: "Inter-Regular";
}

.emp-list-title h4 {
    padding: 10px 20px 5px 5px;
    font-size: 17px;
    font-family: "Inter-Bold";
    text-transform: uppercase;
    position: relative;
}

.openicon .emp-list-accordion {
    display: inline-block;
}


.emp-list-title h4:after {
    content: "\f067";
    position: absolute;
    top: 14px;
    right: 10px;
    display: inline-block;
    height: 20px;
    width: 10px;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display,inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    font-family: "FontAwesome" !important;
}

.openicon .emp-list-title h4:after {
    content: "\f068";
}

.openicon .emp-list-title {
    background: #046c95;
    color: white;
}

.faq-btn-div {
    padding: 29px 0;
    background-color: #edebeb;
}

/* Popup Modal */
.form-container {
    margin-top: 32px;
}
  
.close{
    font-size: 27px !important;
    font-family: "Inter-Bold";
    color: #fff !important;
    opacity: 1 !important;
}
.info{
    color: #fd5a5a;
    font-weight: 600 ;
    font-size: 13px;
    font-family: "Inter-Regular";
    /* position: absolute; */
    left: 0;
    bottom: 1px;
}
.cover{
    position: relative;
    padding-bottom: 15px;
}
.container-box{
    padding: 30px 35px;
    background-color: #00558f;
}
.modal-body{
    background-color: #00558f!important;
}
.container-box h4{
    font-size: 20px;
    text-transform: uppercase;
    color: #fff;
    padding-left: 15px;
    margin-top: 0;
    padding-top: 7px;
    padding-bottom: 7px;
    border-left: 3px solid #a7d9ef;
    font-family: "Inter-Bold";
    font-weight: 600;
    font-size: 20px;
}
.ip-cover{
    padding-bottom: 20px;
    position: relative;

}
.form-container ::placeholder{
    color: #fff;
    font-weight: 600;
}

.form-container .ip-cover input{
    padding: 0 10px;
    width: 100%;
    height: 46px;
    background-color: transparent;
    border: 1px solid #3167a9;
    font-family: "Inter-Regular";
    font-size: 16px;
    color: #fff;
    outline: 0;
}
.form-txt{
  margin: 0!important;
  
}
.submitenquiry{
    background-color: #a7d9ef !important;
    padding: 12px 30px!important;
    font-size: 16px;
    font-weight: 600;
    font-family: "Inter-Regular";
    border: 2px solid #03A9F4!important;
    color: black !important;
    cursor: pointer!important;
    display: inline-block;
    width: auto!important;
    height: auto!important;
}
.submit-button{
  text-align: center;
}
.submitenquiry:hover{
    background-color: #03A9F4 !important;
    color: #fff!important;
}
#openform{
    background: #00558f;
    padding: 8px 24px;
    display: inline-block;
    margin-right: 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: "Inter-Regular";
    border: 2px solid #00558f;
    color: white;
    margin-bottom: 12px;
    float: right;
}

#openform:hover{
    background: #00558f !important;
    color: #03A9F4 !important;
}

.close:focus, .close:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    filter: alpha(opacity=50);
    opacity: .5;
}

button.close {
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.close {
    float: right;
    font-size: 21px;
    font-family: "Inter-Bold";
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .2;
}

.modal-content h2 {
    color: #00558f;
    font-size: x-large;
    font-weight: 700;
    font-family: "Inter-Bold";
    font-size: 26px;
}
/* **********************************CONTACT US PAGE************************************ */
/* Contact main section */
section#contact-main-sec {
    padding: 70px 0;
}

.contact-main-head-content {
    text-align: center;
    padding-bottom: 40px;
}

.contact-main-head-content h2 {
    font-weight: 600;
    font-family: "Inter-Bold";
    font-size: 26px;
}

.contact-main-head-content p {
    font-size: 16px;
    font-family: "Inter-Regular";
}

.contact-main-row {
    padding: 30px 0;
}

.contact-main-card {
    margin-bottom: 15px;
    padding: 20px;
    text-align: center;
    background: #f1eded;
    min-height: 192px;
    border-radius: 10px;
}

@media(max-width: 991px) {
    .contact-main-card {
        min-height: 240px;
    }
}

@media(max-width: 575px) {
    .contact-main-card {
        min-height: 0;
    }
}

.contact-main-card:hover {
    background: #046c95;
    color: white;
}

.contact-main-card h3 {
    padding-top: 10px;
    /* color: #046c95; */
    font-family: "Inter-Bold";
    font-size: 26px;
}

.ct-card1:before {
    content: '\f041';
    font-family: 'FontAwesome';
    color: #000;
    font-size: 26px;
}

.ct-card1:hover::before {
    content: '\f042';
    font-family: 'FontAwesome';
    color: white;
    font-size: 26px;
}

.ct-card2:before {
    content: '\f095';
    font-family: 'FontAwesome';
    color: #000;
    font-size: 26px;
}

.ct-card2:hover::before {
    content: '\f2a0';
    font-family: 'FontAwesome';
    color: white;
    font-size: 26px;
}


.ct-card3:before {
    content: '\f0e0';
    font-family: 'FontAwesome';
    color: #000;
    font-size: 26px;
}

.ct-card3:hover::before {
    content: '\f2b6';
    font-family: 'FontAwesome';
    color: white;
    font-size: 26px;
}


/* Form Section */
section#contact-us-form {
    padding-bottom: 80px;
}

.contact-form {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
    border-radius: 20px;
}

.contact-head {
    text-align: center;
    color: white;
    background: #046c95;
    padding: 12px 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    font-family: "Inter-Bold";
}

.contact-form-fields label {
    font-size: 20px;
    font-family: "Inter-SemiBold";
}

.input-holder {
    width: 100%;
}

.contact-form-fields input {
    margin: 10px 0;
    border: none;
    padding-left: 10px;
    font-family: "Inter-Regular";
    font-size: 16px;
}

.contact-form-fields {
    padding: 37px;
    /* background: white; */
}

#file, #file-input {
    width: 227px;
}

.input-box {
    height: 45px;
    border: 1px solid #d7d7d7;
}

input:focus {
    outline: none;
}

.box-label {
    font-size: 16px !important;
    font-family: "Inter-Regular" !important;
}

.form-field {
    padding: 15px 0;
}

/* Empty Section */
section#empty-sec {
    padding-top: 82px;
}

.emp-list-title h4 {
    font-size: 16px;
    font-family: "Inter-Bold";
}

.emp-list-accordion p {
    font-family: "Inter-Regular";
    font-size: 16px;
}

@media(max-width: 768px) {
    ul.menu a,
    .nav-btn,
    .banner-content-right a {
        font-size: 14px;
    }

    .wwd-content h3,
    .about-head,
    .wcu-content h2 {
        font-size: 24px;
    }

    ul.resp-tabs-list.hor_1 h3 {
        font-size: 20px;
    }

    .wwd-content p,
    .wwd-card p,
    .about-text,
    .wcu-content p,
    .contact-content h2 {
        font-size: 14px;
    }

    .services-text {
        font-size: 14px;
    }

    .wwd-card h3 {
        font-size: 18px;
    }

    .wcu-content h3,
    .services-head {
        font-size: 20px;
    }

    .contact-content h2,
    .about-help-content h3,
    .emr-head,
    .slider-content h3  {
        font-size: 24px;
    }

    .reviews-banner-content h2,
    .faq-banner-content h2 {
        font-size: 24px;
    }

    .review-content p,
    .faq-banner-content p {
        font-size: 14px;
    }

    .about-us-content p {
        font-size: 14px;
    }

    .hidden-text, 
    .about-help-content p {
        font-size: 14px;
    }

    .slider-content p {
        font-size: 14px;
    }

    .read-btn {
        font-size: 16px;
    }

    .slider-card h3 {
        font-size: 20px;
    }

    .faq-head-content p {
        font-size: 14px;
    }

    .emp-list-title h4 {
        font-size: 14px;
    }

    .emp-list-accordion p {
        font-size: 14px;
    }

    .modal-content h2 {
        font-size: 24px;
    }

    #openform {
        font-size: 14px;
    }

    .contact-us-banner-content h2,
    .contact-main-head-content h2  {
        font-size: 24px;
    }

    .contact-us-banner-content p,
    .contact-main-head-content p {
        font-size: 14px;
    }

    .contact-main-card h3 {
        font-size: 24px;
    }
    
    .contact-form-fields label {
        font-size: 18px;
    }

    .contact-form-fields input {
        font-size: 14px;
    }

    .contact-us-submit-btn, 
    .contact-btn {
        font-size: 14px;
    }

    .resp-tabs-container.hor_1 p {
        font-size: 14px;
    }
}

@media(min-width: 1600px) {
    ul.menu a,
    .nav-btn,
    .banner-content-right a {
        font-size: 18px;
    }

    .wwd-content h3,
    .about-head,
    .wcu-content h2 {
        font-size: 40px;
    }

    ul.resp-tabs-list.hor_1 h3 {
        font-size: 26px !important;
    }

    .wwd-content p,
    .wwd-card p,
    .about-text,
    .wcu-content p,
    .contact-content h2 {
        font-size: 18px;
    }

    .services-text {
        font-size: 18px;
    }

    .wwd-card h3 {
        font-size: 26px;
    }

    .wcu-content h3,
    .services-head {
        font-size: 26px;
    }

    .contact-content h2,
    .about-help-content h3,
    .emr-head,
    .slider-content h3  {
        font-size: 40px;
    }

    .reviews-banner-content h2,
    .faq-banner-content h2 {
        font-size: 40px;
    }

    .review-content p,
    .faq-banner-content p {
        font-size: 18px;
    }

    .about-us-content p {
        font-size: 18px;
    }

    .hidden-text, 
    .about-help-content p {
        font-size: 18px;
    }

    .slider-content p {
        font-size: 18px;
    }

    .read-btn {
        font-size: 18px;
    }

    .slider-card h3 {
        font-size: 26px;
    }

    .faq-head-content p {
        font-size: 18px;
    }

    .emp-list-title h4 {
        font-size: 18px;
    }

    .emp-list-accordion p {
        font-size: 18px;
    }

    .modal-content h2 {
        font-size: 40px;
    }

    #openform {
        font-size: 20px;
    }

    .contact-us-banner-content h2,
    .contact-main-head-content h2  {
        font-size: 40px;
    }

    .contact-us-banner-content p,
    .contact-main-head-content p {
        font-size: 18px;
    }

    .contact-main-card h3 {
        font-size: 40px;
    }
    
    .contact-form-fields label {
        font-size: 26px;
    }

    .contact-form-fields input {
        font-size: 18px;
    }

    .contact-us-submit-btn, 
    .contact-btn {
        font-size: 18px;
    }

    li.resp-tab-item p {
        font-size: 18px;
    }

    .contact-content p {
        font-size: 18px;
    }

    .footer-copyright {
        font-size: 12px;
    }

    .footer-div p {
        font-size: 18px;
    }

    .contact-main-card {
        min-height: 233px;
    }
}