@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


/*------------------------------------------------*/
/* Variable STYLES */
/*------------------------------------------------*/

:root {
    /* Color Palette */
    --color-h1: #111;  
    --color-h2: #333;  
    --color-h3: #00a9e1;
    --color-text: #111;
    
    --color-link: #666; 
    --color-hover:#00a9e1;  
    
    --color-hr-border: #00a9e1;  
    
    --button-bg-link:#00a9e1;  
    --button-bg-hover: #FFF;
    
    /* Typography */
    --font-family-base: "montserrat", sans-serif;
    --font-family-heading: "montserrat", sans-serif;
    --font-size-normal: 1rem;

    /* Top Level Menu */
    --color-topmenu-link: #EEE;
    --color-topmenu-hover:#FFF;
    --color-topmenu-border-link: 2px solid transparent;
    --color-topmenu-border-hover: 2px solid #00a9e1;

    --font-size-topmenu: 20px;
    --background-color-up: transparent;
    --background-color-down: transparent;
    --font-weight-topmenu: 400;



/*------------------------------------------------*/
/* Feature Box – Global Overrides */
/*------------------------------------------------*/

 /* Overlay (hover) */
 --feature-overlay-bg-start: rgba(0, 140, 190, 0.85);
--feature-overlay-bg-end: rgba(0, 169, 225, 0.95);
  --feature-overlay-opacity: 1;

  /* Overlay Typography */
  --feature-title-color: #ffffff;
  --feature-title-size: clamp(1.3rem, 2.2vw, 1.7rem);
  --feature-text-color: rgba(255,255,255,0.9);
  --feature-text-size: 0.95rem;
  --feature-text-line-height: 1.1;
  --text-align: left;

  /* Pre-hover Label */
  --feature-label-color: #ffffff;
  --feature-label-size: clamp(1.2rem, 2vw, 1.8rem);
  --feature-label-weight: 700;
  --feature-label-letter-spacing: 0.5px;
  --feature-label-bg-start: rgba(0,0,0,0.2);
  --feature-label-bg-end: rgba(0,0,0,0.45);
  --feature-label-border: 2px solid #00a9e1;

  /* CTA */
  --feature-cta-color: #ffffff;
  --feature-cta-hover-color: #ffffff;
  --feature-cta-bg: transparent;
  --feature-cta-bg-hover: transparent;
  --feature-cta-size: 0.95rem;
  --feature-cta-font-weight: 600;
  --feature-cta-padding: 0 1.25rem;
  --feature-arrow-shift: 6px;

  /* Motion */
  --feature-img-scale: 1.08;
  --feature-overlay-translate: 0;
  --feature-transition-speed: 0.45s;
  --feature-transition-ease: cubic-bezier(.2,.8,.2,1);

  /* Shape + Depth */
  --feature-radius: 0;
  --feature-hover-lift: 0;
  --feature-hover-shadow: 0 20px 40px rgba(0,0,0,.2);
}





/*------------------------------------------------*/
/* Global STYLES */
/*------------------------------------------------*/

a, a:link, a:visited, a:active {
    color:var(--color-link);
    text-decoration: none; 
	-webkit-transition:all ease .3s; 
	transition:all ease .3s;

}

a:hover {
        color:var(--color-hover); 
        text-decoration: none;
		-webkit-transition:all ease .3s; 
		transition:all ease .3s;
}

body {

}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin: 0 0 10px 0;

}

h1 {
    font-size: 34px;
	color:var(--color-h1);
	font-family: var(--font-family-heading);	
	font-weight:800;
}

h2 {
    font-size: 24px;
	color:var(--color-h2);
	font-weight:600;
	font-family: var(--font-family-base);
}

h3 {
    font-size: 20px;
    color:var(--color-h3);
	font-weight:400;
}

h4 {
    font-size: 18px;
    color: #111;
}

h5  {
    font-size: 14px;
    color: #111;
}

h6  {
    font-size: 13px;
    color: #666;
}

p {
    margin: 0 0 25px 0;
}

hr {
    clear: both;
    height: 0;
    border: var(--color-hr-border);
    border-width: 1px 0 0;
    margin: 20px 0 20px 0;
}

div, p {line-height:24px; font-size:16px;}

td {color:var(--color-text);padding:5px;line-height:18px; font-size:var(--font-size-normal);font-family: var(--font-family-base);}

ul li {
    font-size:var(--font-size-normal); 
	color:#222;
	margin-bottom: 8px;
	}

ol li {
    list-style-type: decimal;
    margin-bottom: 8px;
	font-size:var(--font-size-normal); 
}

ol ol {
    margin-top: 8px;
    margin-left: 30px;
}

    ol ol li {
        list-style-type: lower-roman;
    }

    ol ol ol li {
        list-style-type: lower-alpha;
    }

ol ul li {
    list-style-type: lower-roman;
}


/*------------------------------------------------*/
/* Responsive Video and Image STYLE */
/*------------------------------------------------*/

img {
	max-width: 100%;
	height:auto;
}

.video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video iframe,
.video object,
.video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-responsive{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}
.video-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}




.imglg{ transition: all .2s ease-in-out; }
.imglg:hover { transform: scale(1.02); }


.page-break-section {box-shadow:none !important;}


/* ==============================================
   CHEVRON (Custom Arrow for Dropdowns)
   ============================================== */


/* Prepare dropdown link for arrow positioning */
#dnnMenu .dropdown-toggle {
    position: relative;
    padding-right: 30px; /* Space for arrow */
}

/* Replace Bootstrap triangle */
#dnnMenu .dropdown-toggle::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
    transition: transform .25s ease;
    border-top: none;
    border-left: none;
}

/* Rotate arrow when open */
#dnnMenu li.show > .dropdown-toggle::after {
    transform: translateY(-50%) rotate(225deg);
}



/* ==============================================
   TOP LEVEL NAVIGATION (DESKTOP BASE)
   ============================================== */

#dnnMenu .topLevel {
    list-style: none;
    padding: 0;
    margin: 0;
}

#dnnMenu .topLevel > li {
    position: relative;
}

#dnnMenu .topLevel > li > a {
    text-transform: uppercase;
    padding: 8px 14px;
    margin: 0 8px;
    background: var(--background-color-up);
    color: var(--color-topmenu-link);
    border-bottom: var(--color-topmenu-border-link);
    transition: all .3s ease;
    font-size: var(--font-size-topmenu);
    font-weight: var(--font-weight-topmenu);
    font-family:var(--font-family-heading);
    display: inline-block;
}

/* Hover / Active / Open */
#dnnMenu .topLevel > li > a:hover,
#dnnMenu .topLevel > li > a:focus,
#dnnMenu .topLevel > li.active > a,
#dnnMenu .topLevel > li.show > a {
    color: var(--color-topmenu-hover);
    background: var(--background-color-down);
    border-bottom: var(--color-topmenu-border-hover);
}



/* ==============================================
   DESKTOP DROPDOWN STYLING
   ============================================== */

@media (min-width: 993px) {

    #dnnMenu .dropdown-menu {
        border-radius: 0;
        background: #f5f5f5;
        padding: 0;
        margin-top: 0;
        border: none;
        min-width: 220px;
        box-shadow: 0 10px 25px rgba(0,0,0,.08);
    }

    #dnnMenu .dropdown-menu li {
        border-bottom: 1px solid #e1e1e1;
    }

    #dnnMenu .dropdown-menu li:last-child {
        border-bottom: none;
    }

    #dnnMenu .dropdown-menu li > a {
        display: block;
        padding: 10px 16px;
        color: #333;
        font-size: 15px;
        text-align: left;
        transition: background .2s ease, color .2s ease;
    }

    #dnnMenu .dropdown-menu li > a:hover {
        background: #e9e9e9;
        color: #111;
    }

}



/* ==============================================
   NAVBAR TOGGLER (Mobile Button)
   ============================================== */

.navbar-toggler {
    margin-bottom: 3px;
    margin-top: -100px; /* Adjust if needed */
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}



/* ==============================================
   MOBILE NAVIGATION (≤ 992px)
   ============================================== */

@media (max-width: 992px) {

    /* Stack menu vertically */
    #dnnMenu .topLevel {
        width: 100%;
        text-align: center;
    }

    #dnnMenu .topLevel > li {
        width: 100%;
        border-top: 1px solid rgba(0,0,0,.1);
    }

    /* Remove desktop underline styling */
    #dnnMenu .topLevel > li > a,
    #dnnMenu .topLevel > li.show > a,
    #dnnMenu .topLevel > li.active > a {
        border-bottom: none !important;
        background: transparent;
        margin: 0;
        padding: 14px 0;
        width: 100%;
        display: block;
    }

    /* Larger arrow for touch */
    #dnnMenu .dropdown-toggle::after {
        right: 18px;
        width: 10px;
        height: 10px;
    }

    /* Mobile dropdown container */
    #dnnMenu .dropdown-menu {
        position: static;
        box-shadow: none;
        background: #eeeeee;
        border-top: 1px solid rgba(0,0,0,.1);
    }

    /* Center dropdown links */
    #dnnMenu .dropdown-menu li > a {
        text-align: center;
        padding: 12px 0;
        border-bottom: 1px solid rgba(0,0,0,.05);
    }

    #dnnMenu .dropdown-menu li:last-child > a {
        border-bottom: none;
    }

}




/*------------------------------------------------*/
/* Global Button Styles */
/*------------------------------------------------*/


.MoreButton a:link, .MoreButton a:visited {
  padding: 10px 15px;
  text-align: center;
  color: #FFF;
  font-size:16px;
  display: inline-block;  border-radius:40px;
  border:1px solid var(--button-bg-link);
  background:var(--button-bg-link);
  font-family: var(--font-family-base);
  margin:3px 0 3px 0;
  -webkit-transition:all ease .5s; transition:all ease .5s;
  width:100%;
}

.MoreButton a:hover, .MoreButton a:active {
  padding: 10px 15px;
  text-align: center;
  color: var(--button-bg-link);
  font-size:16px;
  display: inline-block;
  border:1px solid var(--button-bg-link);
  border-radius:40px;
  background:var(--button-bg-hover);
  font-family: var(--font-family-base);
  margin:3px 0 3px 0; 
  -webkit-transition:all ease .5s; transition:all ease .5s;
  width:100%;
}



/*------------------------------------------------*/
/* Header STYLES */
/*------------------------------------------------*/

.menuwrap {padding:12px 0;}

.headerwrap {padding:10px 0 10px 0;}
.headerbkwrap {padding:10px 0 10px 0;background:#0d0d0d;}
.headertext {text-align:center;padding:7px 0;}
.headertext h1 {color:#FFF;font-size:22px;text-align:center;padding-top:20px;}
.headertext h1 span {color:#FFF;font-size:16px;text-align:right;font-weight:400;font-family:var(--font-family-base);}

.logo {text-align:center;margin:0 auto;text-align:center;padding-top:20px;max-width:320px; height:auto;}

.menupad {padding-top:10px;}

.contacttext {text-align:center;font-size:28px;padding:17px 0;}


.contacttext ul {list-style:none;margin:0;padding:0;text-align:right;}
.contacttext li ul {margin:0;}
.contacttext li  {margin:0;display:inline-block;color:#EEE;}

.contacttext li a:link, .contacttext li a:visited {font-weight:400;font-size:18px;padding:0 6px 0 6px;color:#EEE;  -webkit-transition:all ease .5s; transition:all ease .5s;}
.contacttext li a:hover, .contacttext li a:active {font-weight:400;color:#FFF;font-size:18px;padding:0 6px 0 6px; -webkit-transition:all ease .5s; transition:all ease .5s;}

@media (max-width: 768px) {

    .contacttext ul {
        text-align: center;
    }

    .contacttext li {
        display: block;
        margin-bottom: 10px;
    }

    /* Optional: space out icons nicely */
    .contacttext li:last-child a {
        display: inline-block;
        margin: 0 6px;
    }
}

/*------------------------------------------------*/
/* Main Content STYLES */
/*------------------------------------------------*/


.showcasewrap {
	background:url('images/showcase-responsive_bg.webp');
    width:100%;
    background-size:cover;
    background-position:top center;s
}

.showcasetext {margin:10% 0 20% 0;}
.showcasetext h1 {color:#EEE;font-size:4rem;font-weight:600;font-family:var(--font-family-heading);line-height:.9;}
.showcasetext h1 span {color:#EEE;font-size:30px;font-weight:400;font-family:var(--font-family-base);display:inline-block;}

.borderblu {border-left:2px solid #00a9e1;padding-left:20px;}

.main-image {
    border-radius: 20px;
    width: 100%;
}

.mainwrap {padding:50px 0;}
.welcometext {text-align:left;}


.welcometext h2 {color:#111;font-size:58px;font-weight:600;font-family:var(--font-family-heading);transform: scaleY(0.8);}


.cta-call {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
}

/* Icon circle */
.cta-icon {
    width: 100px;
    height: 100px;
    background: #e9e9e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon */
.phone-icon {
    font-size: 50px;
}

/* Text content */
.cta-heading {
    color: #bb0000;
    font-weight: 600;
    font-size: 2.5rem;
    letter-spacing: 1px;
    line-height:1.2;
    padding-bottom:15px;
}

.cta-subheading {
    color: #666;
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    line-height:1.3;
}

.cta-phone {
    font-size: 36px;
    font-weight: 500;
    color: #222;
}


.feature-icon {
    font-size: 32px;
    color: #00a9e1;
    background: rgba(0,169,225,0.1);
    padding: 20px;

    border-radius: 50%;
}


.section-wrapper {
    position: relative;
    background: #fff; /* or your section color */
    overflow: hidden;
}

/* Divider base */
.section-divider {
    width: 100%;
    line-height: 0;
}

.section-divider img {
    width: 100%;
    height: auto;
    display: block;
}

/* Top divider */
.section-divider.top {
    position: relative;
}

/* Bottom divider (flipped) */
.section-divider.bottom {
    transform: rotate(180deg);
    margin-top: -1px; /* removes tiny gap */
}

/* Content spacing */
.section-content {
    padding: 60px 20px;
    text-align: center;
    background:url('images/service-repeat_bg.jpg') repeat top left;
}

.sliderbox {border-radius:15px;background:#111;padding:15px;margin-top:-170px;text-align:center;}
.sliderbox p {color:#EEE;}

.image-stack {
    position: relative;
    width: 100%;
    max-width: 500px; /* adjust as needed */
}

/* Main image */
.image-main img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

/* Overlay image */
.image-overlay {
    position: absolute;
    bottom: -40px;   /* controls vertical overlap */
    left: -40px;     /* controls horizontal offset */
    width: 55%;      /* smaller than main image */
}

.image-overlay img {
    width: 100%;
    border-radius: 16px;
    display: block;

    /* nice subtle depth */
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}


.insurancewrap {padding-bottom:120px;}


.testimonialwrap {background:#00a9e1;}

.testimonialbox {background:#00a9e1;border-radius:15px;margin-top:-85px;box-shadow:0 -15px 15px 0px rgba(0,0,0,0.1);}
.testimonialbox h3 {font-size:26px; color:#FFF;}

/*------------------------------------------------*/
/* Footer Content STYLES */
/*------------------------------------------------*/

.footertopwrap {
	background:#0d0d0d;
	padding:15px 0;

}

.footerwrap {
    padding:25px 0;
	background:#242424;
}

.footerlinks {padding-top:10px;font-size:18px;color:#DDD;text-align:center;}
.footerlinks h3 {font-size:20px;color:#DDD;text-align:left;font-weight:600;}
.footerlinks p {font-size:16px;color:#DDD;text-align:left;}

.footerlinks ul {
	list-style:none;
	margin:0 20px 0 0;
    border-left:1px solid #00a9e1;
}

.footerlinks ul li {
	list-style:none;
	margin:0;
}


.footerlinks li { text-align:left;font-size:18px;padding-bottom:10px;}

.footerlinks li a:link, .footerlinks li a:visited {padding-left:7px;color:#DDD;font-size:18px;-webkit-transition:all ease .5s; transition:all ease .5s;}
.footerlinks li a:hover, .footerlinks li a:active{padding-left:10px;color:#00a9e1;font-size:18px;-webkit-transition:all ease .5s; transition:all ease .5s;}

.footerlinks a:link, .footerlinks a:visited {color:#DDD;font-size:22px;}
.footerlinks a:hover, .footerlinks a:active{color:#00a9e1;font-size:22px;}

.login {color:#666;font-size:12px;}
.login li {color:#00a9e1;font-size:12px;}


a.login:link {color:#666; font-size:12px; text-decoration:none;}
a.login:visited {color:#666; font-size:12px; text-decoration:none;}
a.login:active {color:#ad9669; font-size:12px; text-decoration:none;}
a.login:hover {color:##00a9e1; font-size:12px; text-decoration:underline;}

.copyright {font-size: 12px;color: #666;text-align:center;}

a.copyright:visited {color: #666; font-size:12px; text-decoration:none;}
a.copyright:active {color: #666; font-size:12px; text-decoration:none;}
a.copyright:link {color: #666; font-size:12px; text-decoration:none;}
a.copyright:hover {color: #00a9e1; font-size:12px; text-decoration:underline;}

.wecontrol {
    text-align: center;
    font-size: 11px;
    padding-top: 10px; 
	color: #666;

}

.wecontrol ul { 

  margin:0;
  padding:0;
}

.wecontrol ul li { 
  display: inline; 
  color: #666; 
  margin:0;
  padding:0;
}

.wecontrol ul li a
{
   text-decoration: none;
   padding: 3px;
   color: #666;
}

.wecontrol ul li a:hover {
    color:#ad9669;
    text-decoration:underline;
}

/*------------------------------------------------*/
/* @media Display STYLES */
/*------------------------------------------------*/


/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
    .showcasetext {margin-bottom:150px;}
    .testimonialtext {text-align:center; margin-top:0;}

    .footerlinks ul {
	list-style:none;
	margin:0 20px 0 0;
    border-left:none;
}

.footerlinks ul li {
	list-style:none;
	margin:0;
}


.footerlinks li { text-align:center;font-size:18px;padding-bottom:10px;}
}

/* Small Devices, Tablets */

@media only screen and (max-width : 768px) {
    .showcasetext h1 {color:#EEE;font-size:2.2rem;font-weight:600;font-family:var(--font-family-heading);line-height:.9;}
    .showcasetext h1 span {color:#EEE;font-size:24px;font-weight:400;font-family:var(--font-family-base);display:inline-block;}
    .welcometext h2 {color:#111;font-size:48px;font-weight:600;font-family:var(--font-family-heading);}
    .cta-heading {
    color: #bb0000;
    font-weight: 600;
    font-size: 2rem;
    letter-spacing: 1px;
    line-height:1.2;
    padding-bottom:15px;
}

.cta-subheading {
    color: #666;
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    line-height:1.3;
}

.cta-phone {
    font-size: 24px;
    font-weight: 500;
    color: #222;
}

}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
  
}


/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {

}

