/*------ Normalise CSS ------*/
a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {margin: 0;padding: 0;border: 0;font: inherit;vertical-align: baseline }article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block }ol, ul {list-style: none }blockquote, q {quotes: none }blockquote:after, blockquote:before, q:after, q:before {content: '';content: none }table {border-collapse: collapse;border-spacing: 0 }button:focus, textarea:focus, div:focus {outline: 0 !important;}select:focus {outline: none;}a, a:hover {text-decoration: none;color: inherit;}button {background: transparent;border: 0;padding: 0;line-height: 0;}button:focus {outline: none;box-shadow: none;}input::placeholder, textarea::placeholder {color: var(--placeholder) !important }input::-moz-placeholder, textarea::-moz-placeholder {color: var(--placeholder) !important;opacity: 1 }input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {color: var(--placeholder) !important;opacity: 1 }input:focus {outline: 0 !important }input::-webkit-inner-spin-button, input::-webkit-outer-spin-button {-webkit-appearance: none;margin: 0 }input[type=number] {-moz-appearance: textfield }ul {list-style-type: none;padding: 0;margin: 0 }a:hover {text-decoration: none }p {margin: 0 }button {border: 0 }button:focus {outline: 0 }

/*------ Normalise CSS End ------*/

/*------ Main CSS ------*/

* {
    box-sizing: border-box;
}
:root {
    --theme-blue: #18A4FF;
    --theme-green: #05C37F;
    --bg-color: #FFFFFF;
    --navy-blue: #0A033C;
    --text-color: #040C1A;
    --grey-color: #8893A8;
    --white: #FFFFFF;
    --theme-gradient: linear-gradient(72deg, var(--theme-blue) 22.16%, var(--theme-green) 76.47%);
    --theme-hover-gradient: linear-gradient(72deg, var(--theme-green) 22.16%, var(--theme-blue) 76.47%);
    --transition: .3s ease-out;
    font-size: 0.75rem;
}
body {
    background-color: var(--bg-color);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.875rem;
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important; 
    overflow-x: hidden;
}
.wrapper {
    overflow-x: hidden;
}
@keyframes animatedgradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.no-scroll {
    overflow: hidden;
}
.theme-gradient {
    background: var(--theme-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: fit-content;
}
.font-light {
    font-weight: 400;
}
.font-bold {
    font-weight: 700 !important;
}
.align-right {
    float: right;
}
.green-text {
    color: var(--theme-green);
}
.width-100 {
    width: 100% !important;
}
.text-right {
    text-align: right;
}
.hide {
    display: none !important;
}
.capitalize {
    text-transform: uppercase;
}
.right-top {
    background-position: right top !important;
}
.z-index-1 {
    z-index: 1;
    position: relative;
}
.article-min-height {
    min-height: calc(100vh - 9.375rem);
}

/*------ Main CSS End ------*/

/*------ Header CSS ------*/

.header-block {
    width: 100%;
    height: 7.375rem;
    background: linear-gradient(72deg, rgba(24, 164, 255, 0.05) 22.16%, rgba(5, 195, 127, 0.05) 76.47%);
    position: fixed;
    left: 0;
    top: 0;
    transition: var(--transition);    
    z-index: 10;
}
.header-block.sticky {
    height: 5rem;
    background: var(--white);
    box-shadow: 0 0.063rem 0.25rem 0 rgb(0 0 0 / 10%);
}
.header-inner {
    width: 100%;
    height: 7.375rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}
.sticky .header-inner {
    height: 5rem;
}
.brand-logo img {
    cursor: pointer;
    transition: .3s ease-out;
}
.sticky .brand-logo img {
    width: 7.5rem;
}
.sticky-logo{
    display: none;
}
.sticky .non-sticky-logo {
    display: none;
}
.sticky .sticky-logo {
    display: block;
}
.menu-listing {
    display: flex;
    align-items: center;
}
.menu-listing li {
    display: inline-block;
    padding: 0 0.75rem;
}
.menu-listing li:last-child {
    padding-right: 0;
}
.menu-listing li .nav-link {
    color: var(--white);
    letter-spacing: 0.036rem;
    transition: 0.3s ease-out;
}
.menu-listing li .action-btn {
    color: var(--white);
}
.sticky .menu-listing li .nav-link {
    color: var(--text-color);
}
.menu-listing li .nav-link:hover, a:hover {
    color: var(--theme-blue);
}
.form-group .form-control{
    margin-bottom: 0.5rem;
}

.hamburger-menu {
    float: left;
    width: auto;
    position: relative; 
    z-index: 1;   
    display: none;
}
.line {
    width: 2.063rem;
    height: 0.063rem;
    background: var(--theme-gradient);
    display: block;
    position: relative;
    top: 0;
    margin-bottom: 0.563rem;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.line.line:nth-child(3) {
    margin-bottom: 0;
}
.on .line:nth-child(1) {
    background: transparent;
}
.on .line:nth-child(2) {
    transform: rotate(45deg) translate(0,0);
    background: white;
}
.on .line:nth-child(3) {
    transform: rotate(-47deg) translate(0.438rem,-0.438rem);
    background: white;
}
.menu-panel .ti-close {
    width: 1.875rem;
    color: var(--white);
    font-size: 1.563rem;
    position: absolute;
    right: 1.25rem;
    top: 1.563rem;
    display: none;
}
.action-btn {
    height: 3rem;
    padding: 0 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 3rem;
    background-image: var(--theme-gradient);
    background-size: 100% auto;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 0.25rem 0.5rem 0 rgba(0, 15, 115, 0.08);
    transition: .3s ease-out;
}
.action-btn:hover {
    color: var(--white) !important;
    background: var(--theme-hover-gradient);
}
.action-btn.white {
    background: var(--white);
}
.action-btn.white span { 
    background: var(--theme-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.0419rem;
}
.action-btn.bordered {
    background: transparent;
    border: 0.125rem solid var(--theme-blue);
}


.cs-dropdown .action-btn {
    height: 2.25rem;
    padding: 0 0.875rem;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.875rem;
    display: flex;
    align-content: center;
    gap: 0.5rem;
    border-radius: 0.25rem;
}
.cs-dropdown .action-btn::after {
    border: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='8' viewBox='0 0 11 8' fill='none'%3E%3Cpath d='M0.5 1.77453C0.5 1.91385 0.551329 2.05317 0.661319 2.16316L5.11228 6.61412C5.32493 6.82677 5.6769 6.82677 5.88955 6.61412L10.3405 2.16316C10.5532 1.95052 10.5532 1.59855 10.3405 1.3859C10.1279 1.17325 9.77588 1.17325 9.56324 1.3859L5.50091 5.44822L1.43859 1.3859C1.22594 1.17325 0.873968 1.17325 0.661319 1.3859C0.551329 1.48855 0.5 1.63521 0.5 1.77453Z' fill='white' stroke='white'/%3E%3C/svg%3E");
    width: 0.563rem;
    height: 0.313rem;
    background-size: 100%;
    margin: 0;
    transition: var(--transition);
    background-repeat: no-repeat;
}
.cs-dropdown.show .action-btn::after {    
    transform: rotate(-180deg);
}
.dropdown-menu{width:100%}
.cs-dropdown .dropdown-menu {    
    padding: 0.5rem 0;
    background: var(--white);
    border: 0;
    box-shadow: 0 0.313rem 1.25rem 0 rgba(75, 70, 92, 0.40);
    right: 0.625rem;
    width: auto;
}
.cs-dropdown .dropdown-menu.show:before {
    content: "";
    width: 0.875rem;
    height: 0.438rem;
    border-left: 0.4375rem solid rgba(0,0,0,0);
    border-right: 0.4375rem solid rgba(0,0,0,0);
    border-bottom: 0.4375rem solid var(--white);
    position: absolute;
    bottom: 100%;
    right: 0.875rem;
}
.cs-dropdown .dropdown-menu li {
    width: 100%;
    padding: 0;
}
.cs-dropdown .dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--navy-blue);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.375rem;
    padding: 0.5rem 1rem;
    transition: var(--transition);
}
.cs-dropdown .dropdown-menu li a:hover {
    color: var(--theme-blue);
}
.cs-dropdown .dropdown-menu li a:focus {
    background: transparent;
}
.search-box-lt .search-ico {
    left: unset;
    right: 0.313rem;
    top: 0.313rem;
    width: 1.25rem;
    height: 1.25rem;
    background-repeat: no-repeat;
}
.search-box-lt{
    display: none; 
    position: relative;
}
.menu-listing li.searchLi .header-srch-link {
    width: 1.75rem;
    height: 1.75rem;
}
.search-box-lt input {
    border-radius: 0.25rem;
    padding-left: 0.75rem;
    border: 0;
}
.nameHT {
    height: 1.188rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    background-color: var(--theme-blue);    
    border-radius: 50%;
    padding: 0.625rem;
    text-transform: uppercase;
}

/*------ Header CSS End ------*/

/*------ Banner CSS ------*/

.banner-block {
    width: 100%;
    height: 23.25rem;
    background: linear-gradient(72deg, rgba(24, 164, 255, 0.25) 22.16%, rgba(5, 195, 127, 0.25) 76.47%), #000;
    position: relative;
}
.banner-block.general{
    height: 9.375rem;
}
.banner-block .container {
    width: 100%;
    height: 100%;
    padding: 7.375rem 0 0 0;
    position: relative;
}
.carousel-inner-block {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0.625rem;
}
.carousel-text-content {
    width: 100%;
}
.carousel-text-content form {
    width: 100%;
    max-width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.carousel-text-content h1 {
    font-size: 2.6rem;
    font-weight: 500;
    line-height: 3rem;
    color: var(--white);
}
.cs-input {
    width: 100%;
    /* max-width: 80%; */
    position: relative;
}
.cs-input input {
    width: 100%;
    height: 3.75rem;
    padding-left: 4.25rem;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 3.75rem;
    border: 0;
}
.cs-input input::placeholder {
    color: #6E7072;
    opacity: 0.5;
}
.cs-input input:focus {
    box-shadow: none;
}

/*------ Banner CSS End ------*/

/*------ Login CSS ------*/

.login-card {
    width: 100%;
    height: 40.188rem;
    background: var(--brand_dark, linear-gradient(72deg, #072A40 22.16%, #023120 76.47%), rgba(0, 0, 0, 0.00));
    border-radius: 2.25rem;
    box-shadow: 0 1.5rem 4.938rem 0 rgba(0, 0, 0, 0.15);
}
.login-card-left {
    width: 50%;
    height: 100%;
    background: var(--brand_dark, linear-gradient(72deg, #072A40 22.16%, #023120 76.47%), rgba(0, 0, 0, 0.00));
    border-radius: 2.25rem 0 0 2.25rem;
    position: relative;
}
.login-card-left .container {
    height: 100%;
}
.login-card-right {
    width: 50%;
    height: 100%;
    background: var(--white);
    padding: 2.25rem;
    border-radius: 2.25rem 2.25rem 2.25rem 2.25rem;
    
}
.animation-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.overlay-item {
    display: flex;
    position: absolute;
    transform: translate(var(--x), var(--y));
    transition: 0.2s linear;
}
.left-top {
    left: 0;
    top: 0;
}
.left-bottom {
    left: 0;
    bottom: 0;
}
.right-top {
    right: 0;
    top: 0;
}
.right-bottom {
    right: 0;
    bottom: 0;
}
.overlay-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.triangle-sm-left {
    width: 1.688rem;
    height: 1.5rem;
    left: 14.25rem;
    top: 4.5rem;
}
.triangle-sm-right {
    width: 1.688rem;
    height: 1.5rem;
    right: 16.188rem;
    top: 5.125rem;
    transform: rotate(90deg);
}
.circle-sm-left {
    width: 2.25rem;
    height: 2.25rem;
    left: 8.375rem;
    top: 8.125rem;
}
.circle-sm-center {
    width: 2.25rem;
    height: 2.25rem;
    right: 15.188rem;
    top: 11.5rem;
}
.circle-sm-right {
    width: 2.25rem;
    height: 2.25rem;
    right: 6.688rem;
    top: 7.563rem;
}
.triangle-b-sm-left {
    width: 1.438rem;
    height: 1.688rem;
    left: 5.313rem;
    top: 12.313rem;
}
.triangle-b-sm-right {
    width: 1.438rem;
    height: 1.688rem;
    right: 4.25rem;
    top: 14.438rem;
}
.triangle-lg-left {
    width: 3.625rem;
    height: 3.125rem;
    left: 3.5rem;
    bottom: 9.75rem;
}
.circle-md-left {
    width: 3.375rem;
    height: 3.375rem;
    left: 11.688rem;
    bottom: 7.875rem;
}
.circle-lg-right {
    width: 4.5rem;
    height: 4.5rem;
    right: 4.563rem;
    bottom: 2.75rem;
}
.form-container-block h1 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 3rem;
}
.input-block {
    float: left;
    width: 100%;
    position: relative;
}
.input-block input {
    float: left;
    width: 100%;
    height: 3rem;
    padding-left: 1.688rem;
    border: 0.063rem solid var(--grey-color);
    border-radius: 0.5rem;
}
.input-block input::placeholder {
    opacity: 1;
    color: var(--grey-color) !important;
}
.checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.checkbox label {
    color: #636C78;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.375rem;
    cursor: pointer;
}
.checkbox input {
    width: 1.125rem;
    height: 1.125rem;
    border-color: #BFC4C4;
    margin: 0;
    cursor: pointer;
}
.forgot-link {
    line-height: 1.5rem;
    transition: var(--transition);
    color: var(--text-color) !important;
}
.forgot-link:hover {
    color: var(--theme-blue);
}
.forgot-link  > p {
    color: #636C78;
    font-size: 0.875rem !important;
    font-weight: 400 !important;
    line-height: 1.375rem !important;
    cursor: pointer;
}
.form-container-block .section-button-block {
    float: left;
    width: 100%;
}
.form-container-block .section-button-block .action-btn {
    width: 100%;
    height: 3.75rem;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}
.term-condition {
    width: 100%;
}
.term-condition p {
    width: 100%;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2rem;
    color: var(--grey-color);
    margin-bottom: 0 !important;
}
.tnc {
    color: #0A033C;
    transition: var(--transition);
}
.tnc:hover {
    color: var(--theme-blue);
}
.boiler-card h5{
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 3rem;
    margin-bottom: 0.625rem;
}
.boiler-card p {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.875rem;
}
.divider {
    width: 100%;
    height: 0.063rem;
    background: var(--grey-color);
}

/*------ Login CSS End ------*/

/*------ Main Content CSS ------*/

.article-container {
    /*padding: 3rem 0;*/
    padding: 1.7rem 0 7rem 0rem; 
    position: relative;
    overflow: hidden;
}
.line-art {
    background: url(../images/png/line-art.png) no-repeat;
    background-size: 100%;
    background-position: right bottom;
}
.bubble-box {
    width: 48.875rem;
    height: 48.875rem;
    border-radius: 50%;
    opacity: 0.15;
    background: #27B99E;
    filter: blur(9.375rem);
    z-index: -1;
}
.bubble-box.left-top {
    position: absolute;
    left: -2.188rem;
    top: -0.625rem;
}
.bubble-box.right-top {
    position: absolute;
    right: -2.5rem;
    top: -9.375rem;
}
.bubble-box.left-bottom {
    position: absolute;
    left: -0.938rem;
    bottom: -0.625rem;
}
.bubble-box.right-bottom {
    position: absolute;
    right: -5rem;
    bottom: -5rem;
}
.section-header h5 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 2rem;
    color: var(--grey-color);
    margin-bottom: 0.75rem;
}
.section-header h5:last-child {
    margin-bottom: 0;
}
.section-header h3 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 4rem;
    margin-bottom: 1.25rem;
}
.section-header h3:last-child {
    margin-bottom: 0;
}
.section-header h4 {
    width: 100%;
    font-size: 2rem;
    font-weight: 700;
    line-height: 2.5rem;
}
.section-content {
    width: 100%;
    margin-top: 0.75rem;
}
.section-content p {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.875rem;
    margin-bottom: 1.563rem;
}
.section-content p:last-child {
    margin-bottom: 0;
}
.section-button-block .action-btn {
    float: left;
    color: var(--white);
    font-weight: 600;
}
.section-button-block .action-btn:after {
    content: "";
    width: 1.5rem;
    height: 1.5rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M19.7961 12.3537L20.1497 12.0001L19.7961 11.6466L14.2561 6.10656C14.1614 6.01183 14.1614 5.84841 14.2561 5.75367C14.3508 5.65893 14.5143 5.65893 14.609 5.75367L20.679 11.8237C20.7737 11.9184 20.7737 12.0818 20.679 12.1766L14.609 18.2466C14.5577 18.2979 14.4971 18.3201 14.4326 18.3201C14.3572 18.3201 14.2983 18.2914 14.2681 18.259L14.2622 18.2527L14.2561 18.2466C14.1614 18.1518 14.1614 17.9884 14.2561 17.8937L19.7961 12.3537Z' stroke='white'/%3E%3Cpath d='M20.3339 12.25H3.50391C3.37005 12.25 3.25391 12.1339 3.25391 12C3.25391 11.8661 3.37005 11.75 3.50391 11.75H20.3339C20.4678 11.75 20.5839 11.8661 20.5839 12C20.5839 12.1339 20.4678 12.25 20.3339 12.25Z' stroke='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    display: inline-block;
    margin-left: 0.5rem;
    transition: .3s cubic-bezier(.3, 0, 0, 1.3);
    transform: translateX(0);
    background-position: center;
}
.section-button-block .action-btn:hover:after {
    transform: translateX(0.438rem);
}
.each-category-card {
    width: 100%;
    padding: 2rem;
    border-radius: 0.75rem;
    background: var(--white);
    border: 0.063rem solid transparent;
    box-shadow: 0 1.5rem 4.938rem 0 rgba(0, 0, 0, 0.15);
    margin-bottom: 1.875rem;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}
.each-category-card:hover {
   border-color: var(--theme-blue);
}
.each-category-card:hover h5 {
    background: var(--theme-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: fit-content;
}
.each-category-card figure {
    width: 3.75rem;
    height: 3.75rem;
}
.category-card-details h5 {
    /*font-size: 1rem;*/
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.25rem;
    transition: var(--transition);
}
.category-card-details p {
    width: 100%;
    /*font-size: 0.75rem;*/
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.125rem;
}

.alert-card {
    width: 100%;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 2rem;
    border: 0.063rem solid var(--theme-blue);
    background: linear-gradient(72deg, rgba(24, 164, 255, 0.05) 22.16%, rgba(5, 195, 127, 0.05) 76.47%);
}
.alert-card h5 {
    width: 72%;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 3rem;
    text-align: left;
}
.alert-card p {
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.25rem;
}
.alert-card .action-btn {
    flex-shrink: 0;
    color: var(--white);
}

/*------ Main Content CSS End ------*/

/*------ Footer CSS ------*/

.footer-block {
    width: 100%;
    padding: 3.75rem 0;
    overflow: hidden;
}
.footer-bg {
    background: url('../images/footer.jpg'), lightgray 50% / cover no-repeat;;
    /* background: linear-gradient(0deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.60) 100%), url('../images/footer.jpg'), lightgray 50% / cover no-repeat; */
    position: relative;
    background-size: cover;
}
.footer-bg .bubble-box {
    z-index: 0;
}
.footer-link {
    height: 4.188rem;
}

.footer-links li a  {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 2.5em;
    color: var(--white) !important;
}
.footer-section-header figure {
    width: 11.688rem;
    height: 4.188rem;
}
.footer-social-link {
    display: flex;
}
.footer-social-link li {
    margin: 0 0.5rem;
}
.footer-social-link li:first-child {
    margin-left: 0;
}
.footer-social-link li a {
    width: 2rem;
    height: 2rem;
    border-radius: 0.375rem;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
}
.copyright-block {
    width: 100%;
    margin-top: 2.5rem;
    padding: 2.5rem 0;
    border-top: 0.063rem solid rgba(108, 178, 185, 0.20);
}
.copyright-block p {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.875rem;
    color: var(--white);
}

.footerBlock{
    position:relative;
    z-index:4
}
.form-label-group input, .form-label-group label{
    height: 4rem;
}
.form-label-group input{
 padding-top: 0;
}
.cus-drop-down-arrow {
    position: absolute;
    top: 1.063rem;
    right: 0.625rem;
    width: 0.563rem;
    height: 0.594rem;
    border-left: solid 0.094rem #008cd1;
    border-bottom: solid 0.094rem #008cd1;
    transform: rotate(-45deg);
    z-index: 10;
}
.table thead th {
    vertical-align: bottom;
    border-bottom: 0.125rem solid #dee2e6;
}
.table td, .table th {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 0.063rem solid #dee2e6;
}
.input-group-lg>.form-control, .input-group-lg>.input-group-append>.btn, .input-group-lg>.input-group-append>.input-group-text, .input-group-lg>.input-group-prepend>.btn, .input-group-lg>.input-group-prepend>.input-group-text {
    height: calc(2.875rem + 2px);
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}
.mr-3, .mx-3 {
    margin-right: 1rem!important;
}
.modal-title{
    font-size: 25px;
    font-weight: 700;
    line-height: 2rem;    
}
#accordion .answer{font-style: italic; font-weight: 400;}
/*------ Footer CSS End ------*/

/*------ Media Queries ------*/

@media only screen and (min-width: 992px) {
    :root {font-size: 0.75rem;}
}

@media only screen and (min-width: 1440px) {
    :root {font-size: 0.875rem;}
}

@media only screen and (min-width: 1600px) {
    :root {font-size: 1rem;}
}