@import url('header.css');
@import url('footer.css');
@import url('fonts.css');
/* Add  custom CSS below */
:root {
    --primary-color: #002e5b;
    --hover-color: #6c98e1;
    --secondary-clr: #f15a24;
    --heading-font: 'Inter 18pt';
    --body-font: 'Poppins';
}
* {
    margin: 0;
    box-sizing: border-box;
}
img {
    max-width: 100%;
}
body {
    padding: 0;
    margin: 0;
    line-height: 1.7;
    font-family: var(--body-font);
    font-weight: 400;
    font-style: normal;
}
a {
    transition: 0.5s ease-in-out;
    text-decoration: none;
}

strong {
    font-weight: 600;
}

.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}
/* =====container css ======*/
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
}
@media (min-width: 1660px) {
    .container {
        max-width: 1350px;
    }
}
/* =====container css ends======*/
/* ==== flex layout ===== */
.is-flex {
    display: flex;
}
.is-align-center {
    align-items: center;
}
.is-justify-space-between {
    justify-content: space-between;
}
.is-flex-ac-jsb {
   display: flex; 
   align-items: center;
   justify-content: space-between;
}
/* ==== flex layout ends ===== */

/* ===== Scroll to Top Button ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 65px;
    width: 40px;
    height: 40px;
    background-color: rgba(241, 90, 36, 0.3);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--secondary-clr);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}
/* ===== Scroll to Top Button Ends ===== */

/*====== everest forms custom css ======*/
.everest-forms .evf-container input,
.everest-forms .evf-container select,
.everest-forms .evf-container textarea {
    font-family: var(--body-font) !important;
    font-size: 14px !important;
    font-weight: 400 !important;
}

.v2-egf-form-wrapper .everest-forms .evf-container .evf-error {
    font-family: var(--body-font) !important;
}

.v2-form-analysis-form {
    color: #494d50;
}

.v2-form-analysis-form .everest-forms-captcha-equation {
    color: #494d50 !important;
}