<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

/******************************

[Table of Contents]

1. Fonts
2. Colors
3.1 Navbar
3.2 Header
4. Body and some general stuff
5. Footer
6. Animate
7. Common Styles for Pages 
8. Buttons
******************************/

/***********
1. Fonts
***********/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600&amp;display=swap');

a, h1, h2, h3, h4, h5, h6, p, b {
    font-family: 'Inter', sans-serif !important;
}

.font-bold3 {
    font-weight: 300 !important;
}

.font-bold7 {
    font-weight: 700 !important;
}

/***********
2. Colors
***********/

.primary-color {
    color: #1373b0;
}

.bg-primary-color {
    background-color: #1373b0;
}

.secondary-color {
    color: #414141;
}

.bg-secondary {
    background: #f7fcff !important;
}

.bg-light-color {
    background-color: #71d5e2 !important
}

/*.error {
    color: red !important;

}*/
/***********
3. Navbar
***********/
.navbar {
    padding: 0 !important;
}

.navbar-nav {
    margin-top: -10px !important;
}

.nav-link, .nav-link:hover {
    color: #000;
    cursor: pointer;
    font-size: 22px;
    font-weight: 700;
    opacity: .9;
}

.header-address a{
    color: #1373b0;
    font-weight: 400 !important;
}

.icon {
    cursor: pointer;
    position: relative;
    text-align: right;
    display: contents;
}

.offcanvas {
    width: 100%;
    display: -webkit-inline-box;
}

.offcanvas.show {
    width: auto;
    display: flex;
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding-left: 1rem;
    padding-right: 3rem;
    top: 111px;
}

.offcanvas-backdrop {
    display: none !important;
}

.navbar-toggler {
    width: auto !important;
    margin: 0 auto !important;
    margin-right: 0 !important;
}

.navbar-toggler:hover {
        background: none !important;
    }

.navbar-toggler:focus {
        text-decoration: none;
        outline: 0;
        box-shadow: none !important;
    }

.innerpage-heading {
    font-family: 'ivypresto-display', serif;
    font-style: normal;
    font-weight: 100;
    font-size: 45px;
    line-height: 70px;
    color:black;
}

.btn-header {
    background: #1373b0;
    border: 1px solid #1373b0;
    border-radius: 4px;
    color: #fff;
    font-size: 1.15em;
    font-weight: 700;
    line-height: 1.85714286em;
    transition: all .3s;
    padding: 0.8em 1.85714286em !important;
}

.btn-header:hover {
    background-color: #555 !important;
    color: white;
     transform: translate3d(0,-5px,0) !important;
     cursor: pointer;
    }

btn-header:focus:not(:focus-visible) {
    outline: 0;
}



@media only screen and (max-width: 850px) {
    .offcanvas {
                width: auto;
                display: flex;
                top: 111px;
            }
        }
        /***********
4. Body and some general stuff
***********/

/*        * {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
    text-shadow: rgba(0,0,0,.01) 0 0 1px;
}

body {
    font-size: 1em;
    font-weight: 300;
    background: #FFFFFF;
    color: white;
    width: 100%;
}

div {
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}*/

ul {
    list-style: none;
    margin-bottom: 0px;
}

/*h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 14px;
}
*/
h1, h2, h3, h4, h5, h6 {
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
    text-shadow: rgba(0,0,0,.01) 0 0 1px;
}

    h1::selection,
    h2::selection,
    h3::selection,
    h4::selection,
    h5::selection,
    h6::selection {
    }

.trans_200 {
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.trans_300 {
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.trans_400 {
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.trans_500 {
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}




.fill_height {
    height: 100%;
}

.super_container {
    width: 100%;
    overflow: hidden;
}

.parallax_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.background_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

/*.container {
    max-width: 1400px;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 15px;
}*/

/*.row {
    padding: 3px 0;
}*/

.hr {
    border: 0;
    border-top: 1px solid rgba(0,0,0,.1);
    margin-bottom: 1rem;
    margin-top: 1rem;
}



/*.col-6 {
    padding-right: 15px !important;
    padding-left: 15px !important;
}*/

.ml-2 {
    margin-left: 1rem !important;
}

.ml-4 {
    margin-left: 2.2rem !important;
}

.mr-2 {
    margin-right: 1rem !important;
}

.mr-4 {
    margin-right: 2.2rem !important;
}

.col-lg-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.dropdown-item {
    color: #252525;
    font-size: 1em;
    margin-bottom: 5px;
    opacity: .75;
    padding-left: 0;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 0 25px 0 rgb(0 0 0 / 8%);
    left: 30px !important;
    padding: 1.2381em 1.85714em;
    width: 350px;
}

.dropdown-toggle::after {
    border-color: #000;
    border-style: solid;
    border-width: 0 1px 1px 0;
    box-sizing: border-box;
    content: "";
    height: 5px;
    transform: rotate( 45deg);
    transition: border-width .15s ease-in-out;
    width: 5px;
}

.default-cursor {
    cursor: pointer;
}

a, a:hover {
    text-decoration: none !important;
    cursor: pointer;
}

.p {
    color: #878787 ;
    font-size: 1.2em ;
    font-weight: 300 ;
    line-height: 1.45em ;
    margin-bottom: 1.3684210526em;
}

.section-h-sm {
    padding-bottom: 4.4em !important;
    padding-top: 3.4em !important;
}
.section-sm {
    padding-bottom: 3.6em;
    padding-top: 4.95238095em;
}
.card-box {
    background: #fff !important;
    border: 1px solid #ececec !important;
    border-radius: 6px !important;
    padding: 5em !important;
    text-align: center !important;
    max-height: 592px !important;
}

/***********
5. Footer
***********/
.fa-angle-up {
    font-weight: 300 !important
}

button:hover {
    background-color: #555;
    transform: translate3d(0,-5px,0);
    -webkit-transform: translate3d(0,-5px,0);
}

#BtnTopPage {
    background: #414141;
    border: 1px solid #414141;
    border-radius: 50%;
    bottom: 3.71428571em;
    box-shadow: 0 0 25px 0 rgb(0 0 0 / 4%);
    color: #fff;
    cursor: pointer;
    font-size: 30px;
    height: 65px;
    line-height: 60px;
    position: fixed;
    right: 1.85714286em;
    text-align: center;
    transition: all .3s;
    width: 65px;
    z-index: 99;
    display: none;
}

#BtnTopPage:hover {
    background-color: #555;
    transform: translate3d(0,-5px,0);
    -webkit-transform: translate3d(0,-5px,0);
}

.footer {
    text-align: left !important;
    color: #555 !important;
    padding-left: 3rem !important;
    padding-right: 3rem !important;
    padding-bottom: 0px !important;
}

.footer h4 {
        font-weight: 700 !important;
        font-size: 1.5em !important;
        color: #555 !important;
    }

.footer img {
        margin-bottom: 5px !important;
    }

.footer h6 {
        letter-spacing: 1px;
        margin-bottom: 2.1666666667em;
        margin-right: -1px;
    }

.footer ul li a {
    color: #555 !important;
    font-weight: 400 !important;
    line-height: 2.32142857em !important;
    opacity: .6;
}

.footer ul li a:hover {
        opacity: 1;
    }

.footer .footer-copyrights {
        color: #555 !important;
        font-size: .85714286em;
        font-weight: 400;
        margin-left: 1.85714286em;
        opacity: .5;
    }

.loginfooter {
    background: #414141;
    bottom: 50px;
    color: #fff;
    left: 80%;
    padding: 8px 15px;
    position: relative;
    right: 0;
    top: 20px;
    width: 180px;
    z-index: 99;
}

.loginfooter a {
    color: white !important;
}

/***********
6. Animate
***********/

.animate_spped {
    --animate-delay: 1s !important;
}

.hoverMTop:after {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 0;
    height: 2px;
    background: #1373b0;
    display: block;
    content: '';
    transition: width 0.5s ease-in-out;
}

.hoverMTop:hover:after {
    width: 100%;
}

/***********
7. Common Styles for Pages 
***********/


.section-header {
    display: flex;
    width: 100%;
    height: 130px;
    background-color: #1373b0;
    align-items: center;
    padding-left: 40px;
}

.section-header__title {
    font-family: ivypresto-display,serif;
    font-size: 45px;
    font-style: normal;
    font-weight: 700;
    line-height: 70px;
    color: white;
    text-shadow: 0 1px 2px rgb(0 0 0 / 60%);
}
.container-block {
    padding-bottom: 30px;
}

/***********
7. Buttons
***********/



.btn__small {
    padding: 0.30952381em 1.85714286em !important;
   
}

.btn-clc {
    border: 2px solid;
  
    background-color: #1373b0;
    color: white;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    border-radius: 50px;
    padding: 12px 24px;
    transition: all 0.3s ease 0s;
}

.btn--white-outline:focus {
    box-shadow: rgba(0,123,255,.25) 0 0 0 .2rem;
    outline: 0;
}
.btn--white-outline:hover {
    border-color: #252525;
    transform: translate3d(0,-2px,0);
}

.contacttxt{
    line-height: 2em;


}

.feature::after {
    background: #1373b0;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    bottom: 0;
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    width: 100%;
}

.btn-blue-services {
    background: #1373b0;
    border: 1px solid #1373b0;
    border-radius: 4px;
    color: #fff;
    font-size: 1.15em;
    font-weight: 700;
    line-height: 1.85714286em;
    transition: all .3s;
    white-space: nowrap;
    padding: 8px 50px !important;
}

.continue-disabled {
    pointer-events: none;
    background-color: lightgray !important;
}

/*
.btn-clc {
    border: 2px solid #1373b0;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    border-width: 2px;
    border-style: solid;
    border-color: rgb(19, 115, 176);
    border-image: initial;
    border-radius: 50px;
    padding: 12px 24px;
    transition: all 0.3s ease 0s;
}
*/

@media screen and (max-width: 600px) {
    .footerDiv {
        display: block;
    }
}</pre></body></html>