/*!
Theme Name: eagle
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: eagle
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

eagle is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*-------------------------------*/
/* WORDPRESS CLEAN UP */
/*-------------------------------*/
aside#secondary,
header.entry-header,
footer.entry-footer {
    display: none;
}
p:empty {
    display: none;
}
body p {
    margin-bottom: 0;
}
body, 
html {
    overflow-x: hidden;
}
a {
    text-decoration: none !important;
    cursor: pointer !important;
    outline: none !important;
}
.post, 
.page,
.entry-content {
    margin: 0 !important;
}
input {
    outline: none !important;
}
.vc_col-has-fill>.vc_column-inner, 
.vc_row-has-fill+.vc_row-full-width+.vc_row>.vc_column_container>.vc_column-inner, 
.vc_row-has-fill+.vc_row>.vc_column_container>.vc_column-inner, 
.vc_row-has-fill>.vc_column_container>.vc_column-inner,
.vc_column_container>.vc_column-inner {
    padding: 0 !important; 
}
.vc_single_image-wrapper img {
    object-fit: cover;
    height: 100% !important;
    width: 100%;
}
.vc_single_image-wrapper {
    height: 100%;
    width: 100%;
}
.wpb_single_image .wpb_wrapper {
    height: 100%;
    width: 100%;
}
.wpb_content_element {
    margin-bottom: 0 !important;
}
.entry-summary {
    margin-top: 0 !important;
}
.hide-desktop {
    display: none;
}

/* ------------------
 Font
 ------------------ */
@font-face {
    font-family: "Gellatio";
    src: url("assets/fonts/Gellatio Regular.woff2") format("woff2"),
        url("assets/fonts/Gellatio Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Gellatio";
    src: url("assets/fonts/Gellatio Swash.woff2") format("woff2"),
        url("assets/fonts/Gellatio Swash.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}

p.gellatio{
    color: #283671;
    font-family: "Gellatio";
    font-size: 24px;
    
}
h2.gellatio{
    font-family: "Gellatio";
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 52px;
}

/*-------------------------------*/
/* GENERAL CLASSES */
/*-------------------------------*/
h1,h2,h3,h4,h5,h6,li,lo,p,a,button,form *,table th,table td, select, option,div {
    font-family: 'Montserrat', sans-serif;
}
.monstserrat {
	font-family: 'Montserrat', sans-serif;
}
.eagle-widthcontainer,
.eagle-wp-widthcontainer > .vc_column-inner {
    margin: 0 auto !important;
    max-width: 1170px;
}
.uppercase {
    text-transform: uppercase;
}
.black-bg {
    background: #373737;
}
.black-color,
.black-color * {
    color: #373737;
}
.white-bg {
    background: #FFFFFF;
}
.white-color,
.white-color * {
    color: #FFFFFF;
}
.lightblue-bg {
    background: #00ABFF;
}
.lightblue-color,
.lightblue-color * {
    color: #00ABFF;
}
.yellow-bg {
    background: #FFC800;
}
.yellow-color,
.yellow-color * {
    color: #FFC800;
}
.orange-bg {
    background: #FF7D00;
}
.orange-color,
.orange-color * {
    color: #FF7D00;
}
.blue-bg {
    background: #0095FF;
}
.blue-color,
.blue-color * {
    color: #0095FF;
}
.grey-bg {
    background: #787878;
}
.grey-color,
.grey-color * {
    color: #787878;
}
.lightgrey-bg {
    background: #C6C6C6;
}
.lightgrey-color,
.lightgrey-color * {
    color: #C6C6C6;
}
.lightgrey-bg {
    background: #C6C6C6;
}
.lightgrey-color,
.lightgrey-color * {
    color: #C6C6C6;
}
.top-header-color{
	background: #283671;
}
.gws-heading h2{
    color: #283671 ;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}

/*-------------------------------*/
/* ANIMATION */
/*-------------------------------*/
@keyframes slideUp {
    0% {
        transform: translateY(50%);
    }
    100% {
        transform: translateY(0);
    }
}
.slideUp {
    animation: 1s ease-out 0s 1 slideUp;
}
@keyframes slideDown {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0);
    }
}
.slideDown {
    animation: 1s ease-out 0s 1 slideDown;
}
@keyframes slideInLeft {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}
.slideInLeft {
    animation: 1s ease-out 0s 1 slideInLeft;
}
@keyframes slideInRight {
    0% {
        transform: translateX(50%);
    }
    100% {
        transform: translateX(0);
    }
}
.slideInRight {
    animation: 1s ease-out 0s 1 slideInRight;
}
@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
.fadeInAnimation {
    animation: 1s ease-out 0s 1 fadeInAnimation;
}
@keyframes animRipple {
    from {
        opacity: 1;
        transform: scale3d(0.75, 0.75, 1);
    }
    to {
        opacity: 0;
        transform: scale3d(1.25, 1.25, 1);
    }
}
.animRipple {
    animation: animRipple 2s infinite;
}
@keyframes floatTopBottom {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-20px);
	}
	100% {
		transform: translatey(0px);
	}
}
.floatTopBottom {
    animation: floatTopBottom 6s ease-in-out infinite;
}
@keyframes floatBottomTop {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(20px);
	}
	100% {
		transform: translatey(0px);
	}
}
.floatBottomTop {
    animation: floatBottomTop 6s ease-in-out infinite;
}
@keyframes floatLeftRight {
	0% {
		transform: translatex(0px);
	}
	50% {
		transform: translatex(-20px);
	}
	100% {
		transform: translatex(0px);
	}
}
.floatLeftRight {
    animation: floatLeftRight 6s ease-in-out infinite;
}
@keyframes floatRightLeft {
	0% {
		transform: translatex(0px);
	}
	50% {
		transform: translatex(20px);
	}
	100% {
		transform: translatex(0px);
	}
}
.floatRightLeft {
    animation: floatRightLeft 6s ease-in-out infinite;
}

/*--------------
 HEADER
 --------------- */
.eagle-top-header-wrapper.top-header-color nav.navbar {
    justify-content: center;
}
.eagle-menu-wrapper.menu-wrapper ul#menu-top-menu li:not(last-child) {
    margin-right: 50px;
}
.eagle-menu-wrapper.menu-wrapper ul#menu-top-menu li a {
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
}
.right-main-menu-wrapper {
    display: flex;
}
.right-main-menu-wrapper > div .inner-item {
    display: flex;
	align-items: center;
	padding: 8px 12px;
}
.eagle-header-wrapper .eagle-widthcontainer  {
    display: flex;
    justify-content: space-between;
	padding: 20px 0;
}
.claim-wrapper img, .login-wrapper img  {
    padding-right: 6px;
}
.quote-calculator img, .health-portal img{
	padding-right: 10px;
    width: unset;
}
p.main-menu-item {
    color: #283671;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
}
.health-portal p.main-menu-item {
    color: #fff;
}
.limit-per-illness {
    display: none;
}
.quote-calculator {
    border-radius: 5px;
    background: #35B6B4;
}
.health-portal {
    border-radius: 5px;
    background: #283671;
}
.menu-search {
    display: flex;
    align-items: center;
}
.right-main-menu-wrapper > div:not(:last-child) {
    margin-right: 12px;
}
ul#menu-main-menu > li {
    display: flex;
    align-items: center;
}
ul#menu-main-menu{
    height: 100%;
}
.eagle-main-menu-holder #main-navigation ul {
	flex-direction: row;
	justify-content: space-between;

}
.eagle-main-menu-holder > div {
    height: 100%;
}
.eagle-main-menu-holder #main-navigation ul li:first-child {
    margin-right: 30px;
}
.eagle-main-menu-holder #main-navigation ul li a {
    color: #283671;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
}
.eagle-main-menu-holder #main-navigation ul li.menu-item-has-children::after {
    content: "\f0d7";
    font-family: FontAwesome;
	color: #35B6B4;
    padding-left: 10px;
}
.eagle-logo a img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.eagle-logo {
    width: 145px;
    height: 45px;
	margin-right: 35px;
}
.hide-section{
	display: none;
}
input#search {
    border-radius: 16px;
	width: 320px;
    opacity: 1;
	transition: width 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
	padding: 0 7px;
    margin-right: 16px;
	border: 1px solid #283671;
}
input#search::placeholder {
    color: #283671;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}
.eagle-main-menu-holder #main-navigation ul li.menu-item-19 {
    display: none ;
}
.eagle-main-menu-holder {
	transition: opacity 0.4s ease, transform 0.4s ease;
	width: auto;
  	flex-shrink: 1;
    position: relative;
    height: 100%;
    top: 0;
    bottom: 0;
    display: flex; 
    align-items: center;
}
  /* .eagle-main-menu-holder.hidden {
	opacity: 0;
	transform: translateX(-30px);
	pointer-events: none;
	width: 0;
}
.right-main-menu-wrapper.search-active #search {
	opacity: 1;
	width: 320px;
	border: 1px solid #283671;
	padding: 0 7px;
} */

.menu-item-has-children ul.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999; /* Make sure it overlaps eagle-header-wrapper */
    background-color: #fff;
    width: 100%;
    height: 0;
    opacity: 0;
    justify-content: space-evenly;
    transition: all 0.4s ease-in-out;
    border: 0;
    justify-content: center;
    display: flex;
    visibility: hidden;
}
.quote-calculator p.main-menu-item {
    color: #fff;
    margin-left: 10px;
}
.quote-calculator svg path {
    fill: #fff;
}
/* .eagle-menu-wrapper.menu-wrapper ul#menu-top-menu li.menu-item-has-children:hover ul.dropdown-menu {
    display: flex;
    justify-content: space-evenly;
} */
.eagle-menu-wrapper.menu-wrapper .menu-item-has-children ul.dropdown-menu li a {
    color: #283671 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
}
/* Dropdown */
.eagle-main-menu-holder ul > li.menu-item-has-children > ul.sub-menu {
    padding: 25px 30px;
    position: absolute;
    /* max-width: 100%; */
    border-radius: 0;
    height: auto;
    width: 250px;
    opacity: 0;
    top: 50px;
    border: 0;
    right: 0;
    left: 0;
    transition: all 250ms ease;
    z-index: 1;
    background: #fff;
    display: flex;
    flex-direction: column !important;
    gap: 10px;
    border-radius: 15px;
    box-shadow: 1px 4px 4px 0px rgba(0, 0, 0, 0.25);
     visibility: hidden;

}
.eagle-menu-wrapper.menu-wrapper ul#menu-top-menu li.hoverActive ul.dropdown-menu {
    opacity: 1;
    height: 85px;
    visibility: visible;
}

.eagle-mobile-menu #menu-main-menu-1 .dropdown.active ul.dropdown-menu {
    opacity: 1;
    height: 100%;
    visibility: visible;
}

.eagle-mobile-menu #menu-top-menu-1 .dropdown.active ul.dropdown-menu {
    opacity: 1;
    height: 100%;
    visibility: visible;
}

.eagle-main-menu-holder ul > li.menu-item-has-children:hover >  ul.sub-menu {
    visibility: visible;
    opacity: 1;
}
.eagle-main-menu-holder ul > li.menu-item-has-children > ul.sub-menu li::marker{
    content: none;
}
.eagle-main-menu-holder ul > li.menu-item-has-children > ul.sub-menu li a {
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: normal;
}
.eagle-main-menu-holder ul > li.menu-item-has-children > ul.sub-menu li a {
    color: #283671;
    font-family: Montserrat;
    font-size: 14px !important;
    font-style: normal;
    font-weight: 400 !important;
    line-height: normal;
}

.eagle-main-menu-holder ul > li.menu-item-has-children > ul.sub-menu li:not(:last-child):after {
    content: "";
    display: block;
    height: 1px;
    background: #283671;
    width: 100%;
    position: relative;
    z-index: 2;
    margin-top: 10px;
}
.eagle-main-menu-holder ul > li.menu-item-has-children > ul.sub-menu li:first-child {
    margin: 0 !important;
}
.eagle-menu-wrapper.menu-wrapper ul#menu-top-menu li {
    position: unset;
    display: flex;
    align-items: center;
}
.eagle-top-header-wrapper  {
    position: relative;

}
div#comments {
    display: none;
}







/*--------------------
 FOOTER
 ---------------------- */
 div#main-navigation ul {
    margin-left: 0;
}
.eagle-header-wrapper .left-main-menu {
    display: flex;
    align-items: center;
}
.eagle-footer-container .left-footer-inner-content {
    display: flex;
	padding-top: 40px;
    position: relative;
    z-index: 1;
}
.info-heading h2 {
    color: var(--Sub-color, #C0F8E8);
    font-size: 22px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}
.footer-top-section label.gfield_label.gform-field-label {
    display: none;
}
.footer-top-section label.gform-field-label.gform-field-label--type-inline.gfield_consent_label {
    padding-right: 5px;
}
.footer-top-section .gform_fields.form_sublabel_below {
    gap: 10px;
}
.footer-top-section .gform_fields.form_sublabel_below .gfield--type-consent {
    padding-top: 5px;
}
.footer-top-section .gform_footer.before {
    margin-top: 10px;
}
.footer-label p {
    color: var(--Sub-color, #798DA3);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 12.6px */
}
.phone-fax-wrapper .phone-wrapper {
    display: flex;
}
.menu-heading h3 {
    color: var(--Sub-color, #C0F8E8);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}
.footer-sub-heading h3 {
    color: var(--Sub-color, #C0F8E8);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}
.phone-label-description .number a, .fax-label-description .number a {
    color: var(--Sub-color, #C0F8E8);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    text-decoration-line: underline !important;
    text-decoration-style: solid;
}
#menu-footer-menu .menu-item a::before, .help-support-wrapper .menu-item a::before, .privacy-wrapper .menu-item a::before  {
    content: "\f054";
    font-family: "Font Awesome 6 Pro";
    color: #C0F8E8;
    font-size: 12px;
    font-weight: 700;
    padding-right: 10px;
}
#menu-footer-menu .menu-item , .help-support-wrapper .menu-item , .privacy-wrapper .menu-item {
    padding-bottom: 10px;
}
.help-support-wrapper {
    margin-bottom: 15px;
}
.eagle-footer-container  .right-footer-content.call-back-form input, .eagle-footer-container .right-footer-content.call-back-form select {
    border-radius: 5px;
    border: 0.75px solid rgba(255, 255, 255, 0.10);
    background: #B9E2DB;
}
.menu-item a {
    color: var(--White, #FFF);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}
.footer-description p, .footer-description a {
    color: var(--White, #FFF);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}
.footer-icon i {
    font-size: 32px;
    color: #798DA3;
}
.info-section > div {
    display: flex;
    align-items: center;
}
.footer-icon {
    padding-right: 22px;
}
.eagle-footer-container {
    background: #283671;
}
.eagle-footer-container .eagle-widthcontainer {
    padding: 40px 0;
}
.eagle-footer-container {
    background: #283671;
}
.eagle-footer-container .eagle-widthcontainer {
    padding: 40px 0;
    display: flex;
}
.eagle-footer-container .left-footer-content {
    width: 70%;
    position: relative;
}
.eagle-footer-container  .right-footer-content.call-back-form {
    width: 30%;
}
.eagle-footer-container  .left-footer-content .info-container {
    margin-right: 70px;
}
.eagle-footer-container  .left-footer-content .menu-container {
    margin-right: 50px;
}
.address-wrapper, .phone-fax-wrapper {
    margin-bottom: 20px;
}
.phone-label-description {
    padding-right: 15px;
}
.fax-label-description {
    padding-left: 15px;
}
.phone-label-description {
    border-right: 1px solid #ffffff47;
}
/* .help-support-privacy:after {
    content: "";
    border-left: 1px solid #ffffff47;
    line-height: 24px;
    position: absolute;
    height: 70%;
    top: 25px;
    bottom: 0;
    left: 0;
} */
.form-footer-heading h3 {
    color: #283671;
    font-size: 18px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: capitalize;
}
/* .gform_wrapper ::placeholder,
 .gform_wrapper ::-webkit-input-placeholder,
 .gform_wrapper input[placeholder]{
	color: #283671;
	font-family: Hind;
	font-size: 9.75px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%; 
	opacity: 0.5;
} */
.footer-form-wrapper {
    border-radius: 15px;
    background: #D9EFEB;
    box-shadow: 0px 22.5px 30px 0px rgba(0, 0, 0, 0.20);
    display: flex;
    width: 330px;
    height: auto;
    padding: 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    flex-shrink: 0;
}
.dot-map-container {
    position: absolute;
    top: 50px;
    bottom: 0;
    right: 0;
    left: 0;
    width: 85%;
}
input#gform_submit_button_1{
	width: 100%;
    border-radius: 5px;
    background: #042181;
}
input#input_1_6_1 {
    border-radius: 5px;
    border: 1px solid #283671;
    background: rgba(255, 255, 255, 0.15);
    width: 20px;
    height: 20px;
}
label.gform-field-label.gform-field-label--type-inline.gfield_consent_label {
    color: #283671;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
label.gform-field-label.gform-field-label--type-inline.gfield_consent_label a {
    color: #283671 !important;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration-line: underline !important;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}
span.gfield_required.gfield_required_text{
	display: none !important;
}
.footer-inner-bottom-section{
	display: block;
	border-top: 1px solid #ffffff3d;
}
.footer-inner-bottom-section .bottom-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.center-content > p {
    color: #FFF;
    text-align: center;
    font-size: 12.5px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; 
}
.center-content > p span {
    font-weight: 700;
}
.social-media-link a i::before {
    color: #fff;
}
.social-media-link a i {
    background-color: transparent;
    border-radius: 50%;
    border: 2px solid #fff;
    padding: 10px;
}
.social-media-link > a:not(:last-child) {
    margin-right: 12px;
}

/* General */
.gws-image-item .image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
img {
    object-fit: cover;
    width: 100%;
    height: 100% !important;
}

/* Slick Dots */
.slick-dots {
    position: absolute;
    bottom: 100px;
    list-style: none;
    text-align: center;
    padding: 0;
    width: 100%;
    max-width: 1170px;
    left: 0;
    margin-left: calc((100% - 1170px) / 2);
    display: flex;
    justify-content: flex-start;
}
.slick-dots li {
	position: relative;
	display: inline-block;
	height: 20px;
	width: 20px;
	margin: 0 ;
	padding: 0;
	cursor: pointer;
}
.slick-dots li button {
	border: 0;
	background: transparent;
	display: block;
	height: 7px;
	width: 7px;
	outline: none;
	line-height: 0;
	font-size: 0;
	color: transparent;
	padding: 5px;
	cursor: pointer;
	border-radius: 50%;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
	outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
	opacity: 1;
}
.slick-dots li button:before {
	position: absolute;
	top: 0;
	left: 0;
	content: "•";
	width: 20px;
	height: 20px;
	font-family: "slick";
	font-size: 6px;
	line-height: 5px;
	text-align: center;
	color: black;
	opacity: 0.25;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
	color: black;
	opacity: 0.75;
}
.slick-dots li button::before {
    content: none !important;  
}
i.fa-light.fa-chevron-right {
    color: #042181 !important;
    font-size: 18px;
    font-weight: 600;
	padding: 10px;
}

/* HOMEPAGE */
.vc_row.home-banner-slider {
    min-height: 600px;
}
.container-col.home-item-wrapper {
    justify-content: center;
    flex-direction: column;
	position: relative;
}
.slider-container.home-banner-slider-container.dots-right .slick-dots {
    width: 42%;
    left: unset;
    right: 0;
    bottom: 100px;
}
.home-content-wrapper {
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}
/* .home-content-wrapper.mosofer .vc_column_container>.vc_column-inner{
    display: flex;
    justify-content: flex-end;
} */
.home-content-wrapper.mosofer.eagle-widthcontainer {
    align-items: flex-end;
}
.home-content-wrapper.mosofer .text-content-wrapper p:first-child {
    font-weight: 700;
}
.home-content-wrapper.mosofer .slick-dots{
    width: 42%;
    right: 0;
    left: unset;
    margin: 0;
    bottom: 100px;
}
.slider-container.home-banner-slider-container {
    position: relative;
}
.home-content-wrapper.mosofer .text-content-wrapper p{
    color: #fff;
}
.home-content-wrapper .wpb_wrapper {
    width: 42%;
}
.home-content-wrapper .gws-heading h1 {
    font-style: normal;
    font-weight: 800;
    line-height: 43px;
}
.home-content-wrapper .text-content-wrapper p {
    color:  #4F556A;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.home-content-wrapper.eagle-widthcontai7ybn ner .gws-button-wrapper {
    margin-top: 15px;
}
.home-content-wrapper .gws-button a {
    padding: 8px 40px;
    border-radius: 5px;
}
.home-content-wrapper .gws-heading {
    margin-bottom: 10px;
}
.home-banner-slider-container button.slick-arrow {
    position: absolute;
    right: 80px;
    bottom: -20px;
    border: none;
    border-radius: 5px;
    outline: none;
	z-index: 99;
	background: #D9EFEB;
}
.box-image-description-inner .gws-image-item .image-wrapper {
    height: 100%;
}
.box-image-description-inner .gws-image-item .image-wrapper .image {
    height: 100%;
}
.box-image-description-inner .gws-image-item .image-wrapper .image img {
    object-fit: contain;
	object-position: center;
}
i.fa-light.fa-chevron-left{
	color:#D9EFEB !important;
    font-size: 18px;
    font-weight: 600;
	padding: 10px;
}
.home-banner-slider-container button.slick-prev.slick-arrow {
    right: 8%;
	background:  #042181;
}
.container-col.home-quotes-items-wrapper {
    max-width: 1170px;
    margin: 0 auto;
}
.container-col.home-quotes-items-wrapper .box-image-description-inner {
    width: 90%;
	padding: 18px 0;
}
.container-col.home-quotes-items-wrapper .box-image-description-inner .gws-image-item {
    min-height: 150px;
}
.container-col.home-quotes-items-wrapper .box-image-description-inner .box-content {
    min-height: 120px;
}
.container-col.home-quotes-items-wrapper .box-image-description-wrapper:not(:last-child) {
    border-right: 1px solid #fff;
}
.our-values-inner-row .gws-heading h2 {
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}
.get-quote-inner-row .wpb_wrapper {
    display: flex;
    justify-content: space-between;
}
.get-quote-inner-row .wpb_wrapper .content-wrapper {
    width: 50%;
}
.get-in-touch-form-wrapper .form-title h2 {
    color: #283671;
}
.get-in-touch-form-wrapper.eagle-widthcontainer .gform_fields {
    row-gap: 18px !important;
} 
.get-in-touch-form-wrapper.eagle-widthcontainer label.gfield_label.gform-field-label {
    color: #283671;
}
.get-quote-inner-row .wpb_wrapper .content-wrapper .gws-heading h2 {
    color: #283671;
    font-family: "Gellatio Personal Use";
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 52px; /* 162.5% */
}
.get-quote-inner-row .wpb_wrapper .content-wrapper .text-content-wrapper p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.get-quote-row {
    background: rgba(100, 64, 188, 0.30);
    padding: 60px 0 100px;
    position: relative;
    height: 500px;
}
.get-quote-inner-row .wpb_wrapper .gws-image-item {
    width: 40%;
}
.get-quote-inner-row.eagle-widthcontainer .wpb_wrapper .content-wrapper {
    width: 45%;
    margin-top: 10%;
}
.testimonials-row {
    background: rgba(153, 208, 193, 0.60);
}
.testimonial-heading-wrapper {
    flex-direction: column;
    align-items: anchor-center;
}
.testimonial-heading-wrapper .gws-heading h2 {
    color: #283671;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}
.testimonial-heading-wrapper .text-content-wrapper p {
    color: #35B6B4;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
    position: relative;
}
.testimonial-heading-wrapper .text-content-wrapper {
    padding: 10px 0 30px;
}
.testimonial-box-wrapper {
    width: 390px;
    height: auto;
}
.testimonial-box-wrapper {
    background: #fff;
}
.testimonial-box-inner-wrapper {
    padding: 15px;
}
.profile-img img {
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.testimonial-top-section {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 15px;
}
.double-quote {
    position: absolute;
    top: -40%;
    right: 0;
}
.profile-rating-description .name p {
    color: #283671;
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: capitalize;
}
.profile-rating-description .service-assistance p {
    color: #9196A7;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}
.testimonial-bottom-section:before {
    content: '';
    display: block;
    border-top: 1px solid #EAEAEA;
    padding: 10px 0;
}
.testimonial-top-section .profile-img {
    position: relative;
    bottom: 50px;
}
.testimonial-heading-wrapper .text-content-wrapper p:after , .container-col.testimonial-heading-wrapper .text-content-wrapper p:before {
    position: absolute;
    top: 51%;
    overflow: hidden;
    width: 50%;
    height: 1px;
    content: '\a0';
    background-color: #EFEFEF;
}
.testimonial-heading-wrapper .text-content-wrapper p:before {
    margin-left: -50%;
    text-align: right;
}
.testimonials-inner-content-wrapper.slick-initialized.slick-slider .slick-list{
    /* margin: 0 -5px; */
    overflow: unset;
}
.testimonials-inner-content-wrapper.slick-initialized.slick-slider .slick-slide>div {
    padding: 0 20px;
}
.testimonials-row {
    padding: 130px 0 110px;
}
.our-values-item-wrapper {
    display: flex;
    justify-content: space-evenly;
    gap: 60px;
}
.value-content-item-wrapper {
    width: calc(100% / 5);
}
.our-values-heading {
    padding-bottom: 50px;
}
 .value-content-item-wrapper .value-content p {
    text-align: center;
}
.value-content-item-wrapper .value-content{
    padding-top: 15px;
}
.value-content-item-wrapper .value-heading h3{
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    transform: skew(25deg);
    padding: 7px 5px;
}
.value-content-item-wrapper .value-heading{
    text-align: center;
}
.our-values-heading .gws-heading {
    text-align: center;
}
.gws-heading h3 {
    color: #283671;
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}
.values-row {
    padding: 120px 110px;
}
.blog-items-section {
    width: calc(100% / 3);
    border-radius: 15px;
    background: #FFF;
    box-shadow: 0px 7.469px 22.406px 0px rgba(0, 0, 0, 0.05);
    padding: 20px;
}
.blog-date-category {
    display: flex;
    align-items: center;
}
.blog-date-category > div {
    display: flex;
    align-items: center;
}
.blog-date-category .date {
    padding-right: 25px;
}
.blog-date-category i {
    padding-right: 14px;
    color:  #4F556A;
    font-size: 12px;
}
.blog-date-category p {
    color:  #4F556A;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}
.blog-title h4 {
    color: #35B6B4;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.blog-excerpt p {
    color: var(--Body-text, #4F556A);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; 
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}
.read-more-btn-wrapper a p {
    color: #283671;
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: capitalize;
    padding-left: 15px;
}
.underline {
    background: #35B6B4;
    height: 10px;
    position: absolute;
    width: 105%;
    bottom: 0;
    z-index: -1;
    left: 4%;
}
.read-more-btn-wrapper a {
    width: fit-content;
    display: block;
}
.read-more-btn-wrapper {
    position: relative;
    z-index: 2;
    width: fit-content;
    overflow: visible;
}
.blog-content-wrapper > div:not(:last-child) {
    margin-bottom: 18px;
}
.eagle-sub-heading p:after, .eagle-sub-heading p:before {
    position: absolute;
    top: 65%;
    overflow: hidden;
    width: 50%;
    height: 1px;
    content: '\a0';

}
.testimonial-heading-wrapper .eagle-sub-heading p:after, .testimonial-heading-wrapper .eagle-sub-heading p:before{
    background-color: #EFEFEF;
}
.blogs-headings .eagle-sub-heading p:after, .blogs-headings .eagle-sub-heading p:before{
    background-color: #35B6B4;
}
.eagle-sub-heading p:before {
    margin-left: -50%;
    text-align: right;
}
.eagle-sub-heading {
    position: relative;
    text-align: center;
    width: 10%;
    margin: 0 auto;
    padding-top: 10px;
}
.eagle-sub-heading p {
    color: #35B6B4;
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
    position: relative;
}
.blogs-item-wrapper{
    display: flex;
    gap: 40px;
    margin-top: 50px;
}
.home-blog-row {
    background: #F17E8B26;
    padding: 100px 0 80px;
}
.home-content-wrapper.ekyc.eagle-widthcontainer .gws-heading.ekyc-heading {
    width: 45%;
    text-align: center;
    transform: skew(-30deg);
    background: #fff;
    margin: 0 auto;
}
.home-content-wrapper.ekyc.eagle-widthcontainer .text-content-wrapper p em {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 43px;
}
.home-content-wrapper.ekyc.eagle-widthcontainer .text-content-wrapper p {
    color: #FFF;
    text-align: center;
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.home-content-wrapper.ekyc.eagle-widthcontainer .text-content-wrapper p strong {
    font-weight: 700;
    font-size: 35px;
}
.home-content-wrapper.ekyc.eagle-widthcontainer .gws-heading.ekyc-heading h1 {
    transform: skew(25deg);
    color: #283671;
    font-size: 28px;
}
.blog-image img {
    border-radius: 15px;
}
.newsletter-heading h2 {
    color: #35B6B4;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.newsletter-description {
    background: #74CABE33;
    padding: 31px 9px;
    border-radius: 15px;
}
.newsletter-description p {
    color: #283671;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.newsletter-description p.bold {
    font-weight: 600;
    padding-bottom: 10px;
}
.newsletter-top-wrapper {
    display: flex;
    justify-content: space-between;
}
.newsletter-top-wrapper .top-left-section {
    width: 30%;
}
.newsletter-top-wrapper .top-right-section {
    width: 60%;
    padding-top: 50px;
}
.newsletter-top-wrapper .top-right-section input {
    border-radius: 4px;
    border: 1px solid #283671;
    opacity: 0.3;
    background: #FFF;
}
.newsletter-top-wrapper .top-right-section input[type=text]{
    color: #000 !important;
}
.newsletter-top-wrapper .top-right-section input::placeholder {
    color: #000 !important;
}
::-ms-input-placeholder{
    color: #000 !important;
}
.newsletter-top-wrapper .top-right-section legend{
    color: var(--dark-grey-bg, #494645);
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.newsletter-top-wrapper .top-right-section .ginput_container_consent{
    color: var(--dark-grey-bg, #494645);
    text-align: justify;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; 
    letter-spacing: -0.39px;
}
.newsletter-top-wrapper .top-right-section .gform_footer.before input{
    border-radius: 5px !important;
    background: #35B6B4 !important;
}
.newsletter-top-wrapper .top-right-section span label {
    display: none;
}
.newsletter-top-wrapper .top-right-section .gform_fields {
    row-gap: 25px;
}
.newsletter-heading {
    margin-bottom: 30px;
}
.social-media-wrapper {
    text-align: center;
    padding-top: 40px;
}
.social-media-wrapper .label p {
    color: #283671;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.social-media-icons a i {
    color: #283671;
    border: 1px solid #283671;
    border-radius: 50%;
    padding: 12px;
}
.social-media-icons a i::before {
    border-radius: 50%;
    border: 1px solid transparent;
}
.social-media-icons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 14px;
}
.social-media-wrapper .label p::before {
    content: "";
    background-color: #283671;
    width: 40%;
    display: block;
    height: 1.5px;
    position: absolute;
    top: 50%;
}
.social-media-wrapper .label p::after {
    content: "";
    background-color: #283671;
    width: 40%;
    display: block;
    position: absolute;
    height: 1.5px;
    right: 0;
    top: 50%;
}
.social-media-wrapper .label {
    position: relative;
}
.newsletter-social-section {
    margin-top: 40px;
}
.newsletter-top-wrapper .top-right-section .gform_footer.before input {
    position: absolute;
    right: 0;
}
.newsletter-top-wrapper .top-right-section form{
    position: relative;
}
.newsletter-top-wrapper .top-right-section input[type=checkbox] {
    background: #E2E2E2;
    border: none;
}
.newsletter-form-row {
    padding: 110px 0 50px;
}
.testimonials-inner-content-wrapper.slick-slider .testimonial-box-wrapper {
    opacity: 0.5;
}
.testimonials-inner-content-wrapper.slick-slider .slick-slide.slick-active .testimonial-box-wrapper {
    opacity: 1;
}
.testimonial-heading-wrapper {
    margin-bottom: 70px;
}
.rating-stars .star {
    display: inline-block;
    color: #ccc;
}
.rating-stars .star.filled {
    color: #35B6B4; 
}
.blog-category p {
    color: #283671;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
}
/* Get a quote */
.get-quote-inner-row .get-quote-content-wrapper{
    display: flex;
    justify-content: space-between;
}
.get-quote-inner-row .get-quote-left-content {
    width: 45%;
    margin-top: 10%;
}
.get-quote-inner-row .get-quote-left-content .gws-heading h2 {
    color: #283671;
    font-family: "Gellatio Personal Use";
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 52px;
}
.get-quote-inner-row  .get-quote-left-content .text-content-wrapper p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.get-quote-inner-row .get-quote-right-content {
    width: 40%;
}
.testimonials-container {
    padding-top: 40px;
}
.home.get-a-quote-container .quotes-items-wrapper button.slick-arrow {
    position: absolute;
    right: 80px;
    top: -25px !important;
    border: none;
    border-radius: 5px;
    outline: none;
    z-index: 99;
    background: #D9EFEB !important;
    height: 50px;
    width: 50px;
}
.home.get-a-quote-container .quotes-items-wrapper button.slick-prev.slick-arrow {
    background: #042181 !important;
    right: -50px !important;
    left: unset !important;
}
.home.get-a-quote-container .quotes-items-wrapper button.slick-next.slick-arrow {
    right: -110px;
}
.home.get-a-quote-container .quotes-items-wrapper button.slick-prev.slick-arrow i{
    color: #C0F8E8;
}
.home.get-a-quote-container{
    border-radius: 0px 0px 35px 35px;
    background: #99D0C1;
 }
.home.get-a-quote-container .box-image-description-wrapper .box-heading h3{
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}
.home.get-a-quote-container .box-image-description-wrapper .box-content p{
    color: #283671;
    text-align: left;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}
.home.get-a-quote-container .box-image-description-wrapper:not(:last-child){
    border-right: 1px solid #fff;
}
.box-image-description-wrapper .box-image-description-inner {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    gap: 15px;
    padding: 30px 0;
}
.home.get-a-quote-container .box-content {
    min-height: 100px;
}
.home.get-a-quote-container .box-button a {
    color:  #fff;
    background: #6440BC;
    padding: 6px 14px;
    border-radius: 5px;
}
.quotes-items-wrapper {
    display: flex;
}
.home.get-a-quote-container .box-image-description-inner .gws-image-item {
    height: 120px;
    width: 85%;
}
.home-content-wrapper.eagle-widthcontainer .gws-button-wrapper {
    margin-top: 30px;
}

/* --------------------
    who we are
------------------- */
.who-we-are-banner {
    position: relative;
}
.who-we-are-banner .gws-heading.who-we-are-heading {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gws-image-item.company-profile-left {
    width: 55%;
}
.content-wrapper.container-company-profile-right {
    width: 45%;
}
.company-profile-row .wpb_wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}
.gws-image-item.company-profile-left img{
    border-radius: 15px;
}
.company-profile-row.eagle-widthcontainer {
    padding: 86px 0;
}
.milestone-year h4 {
    color: #35B6B4;
    font-size: 22px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}
.milestone-description p {
    color: #283671;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.horizontal-line {
    height: 50px;
    width: 1px;
    background: #35B6B4;
    margin: 15px 0;
}
.milestone-item.top-description .horizontal-line {
    position: absolute;
    bottom: 30px;
}
.milestone-item.top-description .milestone-description {
    position: absolute;
    bottom: 110px;
}
.milestone-item-wrapper {
    display: flex;
    position: relative;
    margin-top: 20%;
}
.milestone-item-wrapper.slick-initialized.slick-slider button.circle-chevron.slick-arrow {
    background: none;
    border: none;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}
.milestone-item-wrapper.slick-initialized.slick-slider button.circle-chevron.slick-arrow i {
    font-size: 20px;
}
.milestone-item-wrapper.slick-initialized.slick-slider button.slick-prev.circle-chevron.slick-arrow {
    left: -7%;
    right: unset;
}
.milestone-item-wrapper.slick-initialized.slick-slider button.slick-next.circle-chevron.slick-arrow {
    right: -7%;
    left: unset;
}
.milestones-heading {
    text-align: center;
}
.shareholding-profile-row .top-row .wpb_wrapper {
    display: flex;
    gap: 10%;
}
.content-wrapper.container-shareholding-profile-chart-left-wrapper {
    width: 40%;
}
.content-wrapper.container-shareholding-profile-chart-right-wrapper {
    width: 60%;
}
.container-col.shareholding-profile-chart-left-wrapper {
    gap: 30px;
}
.container-col.shareholding-profile-chart-left-wrapper h2 {
    text-align: left;
}
.milestone-item-wrapper.slick-initialized.slick-slider button.circle-chevron.slick-arrow i {
    color: #042181;
}
.eagle-shaholding.middle-shareholding .wpb_wrapper {
    display: flex;
    margin-right: calc((100% - 1170px)/ 2);
    justify-content: space-between;
    align-items: baseline;
}
.eagle-shaholding.middle-shareholding .wpb_wrapper .gws-image-item {
    width: 60%;
}
.shareholding-stat-right {
    width: 30%;
}
.bottom-shareholding-row .wpb_wrapper {
    display: flex;
    gap: 5%;
}
.shareholding-profile-row {
    background: #35B6B433;
    padding: 90px 0 112px;
}
.eagle-shaholding.middle-shareholding {
    padding: 30px 0 80px;
}
.milestone-item {
    width: 320px;
    position: relative;
}
.milestone-item-wrapper.slick-slider .slick-list.draggable {
    overflow-x: clip;
    overflow-y: unset;
}
.milestones-inner-wrapper.eagle-widthcontainer {
    padding: 70px 0 120px;
}
/*Chart */
.chart-label {
    text-align: center;
}
.chart-label p {
    color: #000;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
text.highcharts-credits {
    display: none;
}
.content-wrapper.container-shareholding-profile-chart-right-wrapper .chart-item-wrapper {
    width: calc(100% / 3);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.bottom-shareholding-row .chart-item-wrapper {
    width: calc(100% / 4);
    display: flex;
    flex-direction: column;
    align-items: center;
}


/*-----------------
    TEAM MEMBER
------------------- */
.archive-team-member {
    width: calc(100% / 3);
}
.archive-team-member .linked-in-container i.fa-brands.fa-linkedin-in{
    color: #283671;
}
.team-member-image img {
    background: linear-gradient(223deg, #FAFAFA 6.5%, #EBEBEB 86.22%);
}
.archive-team-member .open-popup {
    position: relative;
}
.archive-team-member {
    position: relative;
}
.member-description {
    position: absolute;
    bottom: 0;
    text-align: center;
    right: 0;
    left: 0;
    background: rgba(40, 54, 113, 0.50);
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.member-name p {
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    /* font-weight: 700; */
    line-height: normal;
    text-transform: capitalize;
}
.member-job-title p {
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.team-member-image.hover  img{
    background: #35B6B4;
}
.term-management .team-member-image {
    height: 370px;
}
.team-member-image i {
    position: absolute;
    top: 0;
    padding: 20px;
    color: #283671;
    font-size: 22px;
    font-weight: 600;
    transition: 0.7s color;
}
.team-member-image.hover i{
    color: #fff;
}
.member-inner-content-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}
.member-left-content-wrapper {
    width: 35%;
    height: 100%;
}
.member-right-content-wrapper {
    width: 65%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.popup-member-description .member-name p {
    color: #35B6B4;
    text-align: left;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}
.popup-member-description .member-job-title p {
    color: #283671;
    text-align: left;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.popup-member-description {
    padding-bottom: 15px;
}
.member-info-content p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.team-member-content.popup-box .member-left-content-wrapper img {
    background: linear-gradient(217deg, #FAFAFA 0.28%, #EBEBEB 99.72%);
}
.member-right-content-wrapper button.btn-close {
    position: absolute;
    top: 0;
    right: 0;
    color: #283671;
    opacity: 1;
}
body.popup-open {
    overflow: hidden;
}
.archive-team-items-wrapper{
    position: relative;
}
.team-member-content.popup-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75); /* darker overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    overflow-y: auto;
    padding: 40px 20px;
  }
  .member-inner-content-wrapper {
    background: #fff;
    max-width: 70%;
    width: 100%;
    display: flex;
    gap: 5%;
    padding: 60px 60px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    height: 550px;
    align-items: center;
  }
  .archive-who-we-are-inner-wrapper {
    padding: 75px 0 130px;
}
.who-we-are-heading p {
    color: #283671;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: capitalize;
}
h3.gellatio {
    color: #283671;
    font-family: Gellatio;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}
.who-we-are-heading {
    padding-bottom: 20px;
}
  
/* Financial */
.statement-item {
    /* width: calc(100% / 2); */
    background: #35B6B433;
    border-radius: 15px;
}
.statement-title-btn {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 5%;
}
.statement-title p {
    color: #283671;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
}
.statement-title-btn a i, .dividend-btn a i {
    font-size: 18px;
    color: #283671;
    font-weight: 500;
}
.statement-date p {
    color: #283671;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}
.statement-inner-content {
    padding: 30px 20px;
}
.statement-date {
    padding-bottom: 5px;
}
.statement-item:not(:last-child), .dividend-item:not(:last-child) {
    margin-bottom: 10px;
}
.statement-heading h3, .dividend-heading h3, .annual-report-heading h3 {
    color: #283671;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}
.statement-heading, .dividend-heading, .annual-report-heading, .financial-highlights-heading {
    margin-bottom: 30px;
}
.dividend-item {
    display: flex;
    gap: 5%;
    justify-content: space-between;
    border-radius: 15px;
    background: #99D0C1;
    padding: 25px 20px;
}
.annual-report-title p {
    color: #283671;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
}
.annual-report-item {
    display: flex;
    justify-content: space-between;

}
.annual-report-btn a {
    color: #283671;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.annual-report-btn a i {
    color: #283671;
    font-size: 16px;
    font-weight: 400;
    margin-left: 10px;
}
.financial-report-inner-content{
    border-radius: 15px;
    background: rgba(100, 64, 188, 0.20);
    /* width: calc(100% / 2); */
    padding: 40px 35px 30px;
}
.annual-report-item:not(:last-child) {
    padding-bottom: 17px;
    border-bottom: 1px solid #283671;
    margin-bottom: 17px;
}
.financial-stat-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(40, 54, 113, 0.50);
    padding: 62px;
    width: 50%;
    height: 45%;
}
.financial-stat-box .stat-label p {
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
}
.financial-stat-box .stat-number {
    color: #FFF;
    font-size: 65px;
    text-align: center;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}
.financial-stat-box  .stat-stat-currency span {
    color: #FFF;
    font-size: 16px;
    text-align: center;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}
.financial-highlights-statistic-items {
    position: relative;
    height: 600px;
}
.fianancial-statements-items-wrapper {
    min-height: 600px;
    display: flex
;
    flex-direction: column;
    justify-content: space-between;
}
.statistic-bg-img{
    height: 100%;
}
.gross-premium.financial-stat-box {
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0px 15px 0px 0px;
}
.group-equity.financial-stat-box {
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 0px 0px 15px 0px;
}
.group-profit.financial-stat-box {
    position: absolute;
    top: calc(50% / 2);
    bottom: 0;
}
.statistic-bg-img img {
    border-radius: 15px;
    height: 600px;
}
.financial-highlights-heading {
    min-height: 60px;
}
.container-col.statement-highlight-row, .container-col.dividend-annual-row {
    flex-wrap: nowrap;
    gap: 5%;
}
.financial-statements-container, .financial-dividends-container {
    width: 100%;
}
 .financial-annual-reports-container{
    width: 70%;
}
.financial-highlights-container{
    width: 100%;
}
.content-wrapper.container-dividend-annual-row {
    margin-top: 60px;
}
.financial-announcement-container.eagle-widthcontainer .wpb_wrapper > div {
    width: 92%;
}
.financial-announcement-container.eagle-widthcontainer .wpb_wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.annual-report-view-more-btn a {
    border-radius: 15px;
    background: #283671;
    padding: 3px 30px;
    color: #FFF;
    text-align: center;
    font-size: 14px;
}
.annual-report-view-more-btn {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}
.financial-heading-row.eagle-widthcontainer .gws-heading h2 {
    text-align: left;
}
.financial-announcement-container.eagle-widthcontainer {
    padding: 56px 0 120px;
}
.financial-heading-row.eagle-widthcontainer {
    padding-top: 50px;
}
.financial-announcement-heading-title h3 {
    color: #283671 !;
    text-align: left;
    font-family: Gellatio;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}
/* new design */
.financial-announcemenet-inner-content-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    width: 85%;
    margin: 0 auto;
    height: 550px;
}
.financial-announcemenet-inner-content-wrapper  .left-content-wrapper {
    width: 50%;
}
.financial-announcemenet-inner-content-wrapper  .right-content-wrapper {
    width: 50%;
    overflow-y: auto;
}
.financial-announcemenet-inner-content-wrapper .announcement-box .image img {
    border-radius: 15px;
}
.financial-announcemenet-inner-content-wrapper .announcement-box {
    position: relative;
    height: 100%;
}
.financial-announcemenet-inner-content-wrapper .announcement-box .title-heading {
    position: absolute;
    top: 0;
    padding: 50px 30px 0 30px;
}
.financial-announcemenet-inner-content-wrapper .title p.gellatio {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}
.financial-announcemenet-inner-content-wrapper .heading p {
    color: #FFF;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}
.back-btn:hover i {
    transform: translateX(10px);
}
.financial-item-content .view-more-btn:hover a {
    color: #283671;
    background: #fff;
}
.financial-announcemenet-inner-content-wrapper .heading {
    padding-top: 10px;
}
.financial-heading-row .gws-heading h2 {
    text-align: left;
}
.financial-announcement-inner-container .back-btn a i, .financial-announcement-inner-container .back-btn a p {
    color: #283671 !important;
    font-size: 16px !important;
    transition: all 0.5s ;
}
.financial-announcement-inner-container .back-btn a {
    display: flex;
    align-items: center;
}
.financial-announcemenet-inner-content-wrapper .announcement-box .image {
    height: 100%;
}
.single-financial-announcement-container {
    padding: 50px 0 110px;
}
.financial-announcement-container .left-container-wrapper {
    width: 50%;
}
.financial-announcement-container .right-container-wrapper {
    width: 50%;
}
.financials-container {
    padding: 55px 0 90px;
}
.financial-announcement-container {
    display: flex;
    min-height: 570px;
    column-gap: 20px;
    padding-top: 50px;
}
.financial-highlights-heading h3 {
    color: #fff;
    line-height: 55px;
}
.financial-highlights-heading {
    position: absolute;
    top: 0;
    padding: 35px;
    width: 50%;
}
.fianancial-dividends-items-wrapper {
    overflow: auto;
}
.financial-item-content {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
}
.financial-item.corporate-announcement .financial-item-content {
    justify-content: end;
}
.financial-item.corporate-governance .financial-item-content {
    justify-content: flex-end;
}
.financial-item-content {
    padding: 20px;
}
 .financial-item-content .title {
    padding-bottom: 20px;
    padding-right: 10px;
}
.financial-item-content .title p {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}
.financial-item-content .view-more-btn a {
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-radius: 15px;
    background: #283671;
    padding: 4px 10px;
    transition: all 0.5s;
}
.financial-item img {
    border-radius: 15px;
    background: linear-gradient(0deg, rgba(40, 54, 113, 0.40) 0%, rgba(40, 54, 113, 0.40) 100%), url(<path-to-image>) lightgray 50% / cover no-repeat;
}
.financial-item .image{
    height: 100%;
}
.financial-item {
    position: relative;
}
.financial-item-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: 100%;
    grid-auto-rows: 187px;
    gap: 20px;
}
.financial-item:nth-child(1) {
  grid-column: 1;
  grid-row: span 1;
}
.financial-item:nth-child(2) {
  grid-column: 2;
  grid-row: span 2;
}
.financial-item:nth-child(3) {
  grid-column: 1;
  grid-row: span 2;
}
.financial-item:nth-child(4) {
  grid-column: 2;
  grid-row: span 1;
}

/* Accordion Component*/
.check i.fa-solid.fa-check {
    color: #45B87A;
    font-size: 33px;
    font-weight: 700;
}
.check i.fa-solid.fa-xmark {
    font-size: 33px;
    font-weight: 700;
    color: #FE3A3A;
}
.accordion-card {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 3%;
}
.accordion-heading-row {
    display: flex;
    justify-content: space-between;
    gap: 5%;
}
.main-heading-plan {
    width: 30%;
}
.accordion-heading-description h3 {
    color: #283671;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: 35px; 
}
.accordion-heading-description .heading-description p {
    color: #283671;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.title-panel-wrapper .accordion-title p {
    color: #283671;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.title-panel-wrapper .accordion-title {
    display: flex;
    justify-content: space-between;
}
.title-panel-wrapper .accordion-title i {
    font-size: 18px;
    stroke: #283671;
    font-weight: 500;
}
.accordion-card > div {
    padding: 20px 0;
}
.accordion-panel p {
    color: #283671;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.accordion-panel {
    padding-top: 25px;
}
.single-insurance-solution-wrapper .accordion-heading-description.col-width .wrapper {
    padding: 0 65px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8%;
    padding-top: 60px;
}
.accordion-heading-description.col-width {
    border-radius: 19px 19px 0 0;
}
.accordion .accordion-card:last-child .check {
    border-radius: 0 0 19px 19px;
    padding-bottom: 45px;
}
.heading-wrapper .left-img-accordion {
    position: relative;
     margin-left: calc((100vw - 1170px) / 2 * -1);
     top: -20%;
}
.heading-wrapper.eagle-widthcontainer {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 3%;
}
.checkbox-description p {
    color: #283671;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}


/* Individual Solution:  */
.insurance-plans-heading-row .text-content-wrapper p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.key-features-text {
    text-align: center;
    width: 80%;
    margin: 0 auto;
    padding-bottom: 40px;
}
.the-first-choice-text-block {
    width: 60%;
    margin: 0 auto;
}
.the-first-choice-text-block {
    padding-top: 14px;
}
.insurance-plans-heading-row {
    text-align: center;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding-bottom: 60px;
}
.insurance-plans-heading-row .gws-heading h3 {
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}
.insurance-plans-heading-row > div:last-child {
    width: 70%;
}
.mosofer-wrapper, .rodent-cover-wrapper, .assistance-ada {
    justify-content: space-between;
    gap: 4%;
    flex-wrap: nowrap !important;
}
.plans-overview-row {
    padding: 110px 0 90px;
}
.mosofer-wrapper > div .wpb_column, .rodent-cover-wrapper > div .wpb_column, .assistance-ada > div .wpb_column {
    height: 100%;
}
.mosofer-wrapper  > div .wpb_column .vc_column-inner, .assistance-ada  > div .wpb_column .vc_column-inner, .rodent-cover-wrapper > div .wpb_column .vc_column-inner {
    height: 100%;
}
.mosofer-wrapper  > div .wpb_column .vc_column-inner .wpb_wrapper, .rodent-cover-wrapper  > div .wpb_column .vc_column-inner .wpb_wrapper, .assistance-ada  > div .wpb_column .vc_column-inner .wpb_wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    width: 75%;
}
.mosofer-wrapper > div .wpb_column .vc_column-inner .wpb_wrapper .gws-heading h2, .rodent-cover-wrapper > div .wpb_column .vc_column-inner .wpb_wrapper .gws-heading h2, .assistance-ada > div .wpb_column .vc_column-inner .wpb_wrapper .gws-heading h2 {
    text-align: start;
}
.plans-overview-row .vc_column_container .vc_column-inner .wpb_wrapper > .content-wrapper:not(:last-child) {
    margin-bottom: 80px;
}
.gws-button-wrapper.plan-btn a {
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border-radius: 5px;
    border: 1px solid #283671;
    padding: 8px 25px;
}
.rodent-cover-wrapper > div .wpb_column .vc_column-inner .wpb_wrapper {
    align-items: flex-end;
    text-align: end;
}
.get-in-touch.left .ginput_container.ginput_container_textarea textarea {
    border: 0.857px solid #E2E2E2;
    background: #FFF;
}
.qna-top-text p {
    color: #35B6B4;
    font-size: 15px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}
.car-insurance-plan-row {
    padding-top: 60px;
}
.single-insurance-solution-wrapper .quotes-items-wrapper.slick-slider button {
    background: transparent;
    position: absolute;
    margin: 0 auto;
    bottom: 0;
    border: none;
    height: 100%;
    width: 25px;
    padding: 0;
    right: 0; 
    left: 0;
    top: 0;
}
.single-insurance-solution-wrapper .quotes-items-wrapper.slick-slider button i {
    font-weight: 700;
    font-size: 25px;
    color: #283671;
}
.single-insurance-solution-wrapper .quotes-items-wrapper button.slick-next.slick-arrow {
    right: -95%;
}
.single-insurance-solution-wrapper .quotes-items-wrapper button.slick-prev.slick-arrow {
    left: -95%;
    z-index: 1;
}

/* Personal Insurance */
.key-features-row {
    background: #35B6B4;
}
.key-features-row .icon-text-item {
    width: calc(100% / 4);
}
.icon-wrapper {
    width: 90px;
    height: auto;
}
.key-features-row .icon-text-wrapper.position-column {
    align-items: center;
}
.key-features-row .icon-text-content-wrapper {
    text-align: center;
}
.key-features-inner-row .container-col.features-wrapper {
    gap: 5%;
    flex-wrap: nowrap;
}
.key-features-inner-row .gws-heading {
    text-align: center;
    margin-bottom: 35px;
}
.key-features-inner-row .text-content-wrapper.terms-conditions {
    text-align: center;
    margin-top: 40px;
}
.key-features-inner-row.eagle-widthcontainer {
    padding: 40px 0 35px;
}
.key-features-row {
    /* margin: 80px 0; */
    margin-top: 80px;
}
.why-insure-at-eagle-inner-row .gws-heading {
    text-align: center;
}
.why-insure-at-eagle-inner-row .text-content-wrapper {
    text-align: center;
    padding: 24px 0 35px;
}
.why-insure-at-eagle-inner-row .gws-button-wrapper {
    text-align: center;
}
.why-insure-at-eagle-inner-row .wpb_wrapper {
    max-width: 61%;
    margin: 0 auto;
}
.why-insure-at-eagle-inner-row.eagle-widthcontainer {
    padding-top: 60px;
}
.cover-left-content {
    margin-left: calc((100% - 1170px) / 2) !important;
    width: 60%;
    padding-right: 10%;
}
.cover-left-content.eagle-widthcontainer .wpb_wrapper {
    flex-direction: column;
}
.cover-left-content .wpb_wrapper {
    flex-direction: column;
    align-items: flex-start !important;
    display: flex;
    gap: 5%;
}
.gws-image-item.cover-right-img {
    width: 45%;
}
.insurance-covers-row .vc_column_container .vc_column-inner .wpb_wrapper {
    display: flex;
    align-items: center;
}
.cover-left-content .gws-heading.left {
    margin-bottom: 30px;
}


/* Get a personalised quote */
.personalised-quote.get-personalised-quote-container form .top-form .form-group input, .personalised-quote.get-personalised-quote-container form .form-group select {
    width: 100%;
    border-radius: 5px;
    background: #F7F7F7;
    box-shadow: 0px 0.752px 3.008px 0px rgba(0, 0, 0, 0.07) inset;
    border: 1px solid #fff;
    padding: 8px 12px;
    align-items: center;
    gap: 8px;
    display: flex;
    color: #4F556A;
    font-weight: 400;
    font-size: 14px;
}
.personalised-quote.get-personalised-quote-container form .form-group button{
    width: 100%;
}
.personalised-quote.get-personalised-quote-container form .top-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.personalised-quote.get-personalised-quote-container form .top-form input::placeholder {
    color: #4F556A;
    font-weight: 400;
    font-size: 14px;
}
.personalised-quote.get-personalised-quote-container form .bottom-form {
    padding-top: 15px;
}
.personalised-quote.get-personalised-quote-container .submit-btn {
    margin-top: 30px;
}
.personalised-quote.get-personalised-quote-container form .slider-wrapper {
    margin: 20px 0;
    position: relative;
}
.personalised-quote.get-personalised-quote-container form .slider-wrapper label {
    color: var(--Main-color, #042181);
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 45px;
}
.personalised-quote.get-personalised-quote-container form .slider-wrapper {
    position: relative;
    width: 100%;
}
.personalised-quote.get-personalised-quote-container .gform_footer.before input[type="submit"] {
    background: var(--Main-color, #042181) !important;
    border-radius: 5px !important;
    border: 1px solid #042181 !important;
    transition: all 0.4s ;
}
.personalised-quote.get-personalised-quote-container .gform_footer.before input[type="submit"]:hover {
    background: transparent !important;
    color: #042181 !important;
}
.personalised-quote.get-personalised-quote-container form input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background: #f8f8f8;
    box-shadow: inset 0 1px 3px rgba(0,0,0,.2);
}
.single-insurance-solution-wrapper.boat-insurance .insurance-at-eagle-section {
    margin-top: 300px;
}
  /* Track */
  .personalised-quote.get-personalised-quote-container form input[type="range"]::-webkit-slider-runnable-track {
    height: 10px;
    border-radius: 5px;
    background: linear-gradient(to right, #283671 var(--val, 0%), #f8f8f8 var(--val, 0%));
  }
  /* Thumb */
  .personalised-quote.get-personalised-quote-container form input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    margin-top: -12px; /* center on track */
    position: relative;
    box-shadow: 0 1.504px 22.563px 0 rgba(4, 33, 129, 0.20);
  }
  /* Bubble */
  .personalised-quote.get-personalised-quote-container form .slider-value {
    position: absolute;
    top: 25px; /* place above slider */
    left: 0;
    transform: translateX(-50%);
    background: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    color: #283671;
    font-size: 16px;

    /* background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="62" fill="none"><path fill="currentColor" d="M27.3 27.3C25 29.6 17 35.8 17 43v3c0 3 2.5 5 3.2 5.8a6 6 0 1 1-8.5 0C12.6 51 15 49 15 46v-3c0-7.2-8-13.4-10.3-15.7A16 16 0 0 1 16 0a16 16 0 0 1 11.3 27.3z"/><circle cx="16" cy="56" r="1" fill="%235D509E"/></svg>'); */
  }
.personalised-quote.get-personalised-quote-container form .slider-minmax {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #555;
    margin-top: 12px;
}
.personalised-quote.get-personalised-quote-container form  .submit-btn a {
    width: 100%;
    display: block;
    text-align: center;
    border-radius: 5px;
    background: var(--Main-color, #042181);
    color: #fff;
    border: 1px solid #042181;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 0;
    transition: all 0.3s ease;
}
.personalised-quote.get-personalised-quote-container form  .submit-btn:hover a {
    background: transparent !important;
    color: #042181 !important;
}
.personalised-quote.get-personalised-quote-container form {
    padding: 75px;
    column-count: 2;
    column-gap: 50px;
}
.personalised-quote.get-personalised-quote-container {
    border-radius: 10px;
    width: 100%;
    height: auto;
    position: relative;
    background: #ffff;
    z-index: 1;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
        min-height: 520px;
}
.personalised-quote.get-personalised-quote-container .gform_footer.top_label input:hover {
    background: transparent;
    color: #042181;
}
.personalised-quote.get-personalised-quote-container .gfield {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    display: inline-block;
    width: 100%;
}
.personalised-quote.get-personalised-quote-container .gfield_label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    break-after: avoid;
    page-break-after: avoid;
}
.insurance-at-eagle-section {
    margin-top: 150px;
}
.quote-top-section {
    display: flex;
    justify-content: space-around;
    width: 80%;
    margin: 0 auto;
    align-items: center;
}
.quote-heading {
    width: 30%;
}
.quote-content {
    width: 70%;
}
.quote-content p {
    color: #283671;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.personalised-quote.get-personalised-quote-container .gform_footer.top_label input{
    border-radius: 5px;
    background: var(--Main-color, #042181) !important;
}
.get-personalised-quote-row .quote-bottom-section {
    width: 100%;
}
.get-personalised-quote-row .quote-row-inner.eagle-widthcontainer {
    display: flex;
    align-items: center;
    position: relative;
    gap: 10%;
    height: 100%;
    flex-direction: column;
    padding-top: 80px;
}
.get-personalised-quote-row {
    background: rgba(100, 64, 188, 0.30);
    height: 480px;
    position: relative;
    margin-bottom: 80px;
}
.get-personalised-quote-row .quote-heading h2 {
    color: #042181;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.get-personalised-quote-row .quote-content p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.quote-row {
    padding: 50px 0 155px;
}
.g-recaptcha, .ginput_container.ginput_recaptcha {
    transform: scale(0.8);
    transform-origin: left;
}
.single-insurance-solution-wrapper.personal-insurance .make-a-claim-container.eagle-widthcontainer, .single-insurance-solution-wrapper.health-insurance .make-a-claim-container.eagle-widthcontainer {
    padding-top: 250px;
}


/*-------------------------
     Claim - Archive
--------------------------- */
.archive-claim-container .claim-heading-description-inner {
    position: absolute;
    bottom: 15%;
    width: 40%;
    z-index: 2;
}
.archive-claim-container  .claim-banner {
    position: relative;
}
.archive-claim-container .claim-heading-description-inner  .heading-wrapper h1 {
    color: #FFF;
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}
.archive-claim-container .claim-heading-description-inner  .description-wrapper p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.archive-claim-container .claim-top-bg {
    height: 63px;
    background: linear-gradient(90deg, #35B6B4 0%, rgba(100, 64, 188, 0.20) 100%);
}
.claim-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(180deg, rgba(40, 54, 113, 0.00) 29.86%, #11173A 100%);
}
.tabs-item-inner .wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px; /* space between tabs */
    position: relative;
  }
.tabs {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background: #35B6B4;
}
.tabs-item-inner.eagle-widthcontainer .wrapper a {
    display: flex;
    align-items: center;
    gap: 5%;
    position: relative;
    padding: 15px 130px;
}
a.tab-link p {
    color: #283671;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.tab-content-wrapper.eagle-widthcontainer {
    padding: 50px 0 90px;
}
.tab-link.active::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 5px;
    background: #0c1a60;
}
.tabs-item-inner.eagle-widthcontainer .wrapper a i {
    font-size: 22px;
    color: #283671;
    font-weight: 300;
}
.tabs-item-inner a.tab-link.active p {
    font-weight: 700;
}
.tabs-item-inner a.tab-link.active i{
    font-weight: 500;
}
.claim-box-inner-wrapper {
    padding: 58px 60px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: space-around;
}
.claim-description p {
    color: #283671;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}
.claim-title h3 {
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: capitalize;
}
.claim-btn a {
    border-radius: 5px;
    background: #283671;
    padding: 8px 16px;
    text-align: center;
    font-size: 15px;
    color: #fff !important;
    border: 1px solid #283671;
    transition: all 0.5s;
}
.claim-title {
    min-height: 55px;
}
.claim-description {
    min-height: 70px;
}
.claim-box {
    /* width: calc(100% / 3); */
    border-radius: 30px;
    background: rgba(53, 182, 180, 0.50);
    min-height: 430px;
    flex: 1;
}
.claim-btn:hover a {
    background: transparent;
    color: #283671;
}
.claim-items-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 20px;
    margin-top: 30px;
  }
  .claim-insurance-icon-wrapper {
    margin-bottom: 15px;
    min-height: 150px;
  }
  .claim-icon img {
    /* max-width: 100px; */
    /* height: auto; */
  }
.why-choose-us-items-wrapper .feature-item {
    width: calc(100% / 2);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
    justify-content: center;
}
.why-choose-us-items-wrapper {
    display: flex;
    flex-wrap: wrap;
}
/* .why-choose-us-items-wrapper .feature-icon {
    width: 30px;
    height: 35px;
} */
.why-choose-us-heading h2 {
    color: #35B6B4;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}
.why-choose-us-items-wrapper .feature-item .feature-title p {
    color: #283671;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
}
.why-choose-us-items-wrapper .feature-description p {
    color: #283671;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
}
.why-choose-us-heading h2 {
    color: #35B6B4;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}
.why-choose-us-inner-row {
    padding: 63px 0 70px;
}
.why-choose-us-row {
    background: rgba(100, 64, 188, 0.10);
}
.why-choose-us-inner-row .feature-title {
    padding-top: 15px;
    padding-bottom: 7px;
}
.why-choose-us-inner-row .feature-description {
    max-width: 80%;
}
.why-choose-us-heading {
    padding-bottom: 25px;
}
.assistance-container {
    background: linear-gradient(180deg, rgba(100, 64, 188, 0.60) 0%, rgba(153, 208, 193, 0.60) 51.17%), #FFF;
    padding: 60px 110px;
}
.assistance-content-wrapper {
    border-radius: 30px;
    background: #FFF;
}
.assistance-content-wrapper  .left-content-wrapper {
    width: 50%;
    padding: 0 0 0 65px;
}
.assistance-content-wrapper .right-content-wrapper {
    width: 50%;
}
.assistance-content-wrapper .content-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 100px;
}
.assistance-content-wrapper .left-content-wrapper .need-assistance-heading p {
    color: #283671;
    font-family: Gellatio;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.assistance-content-wrapper .need-assistance-content p {
    color: #283671;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.assistance-content-wrapper .assistance-btn a {
    border-radius: 5px;
    background: #35B6B4;
    padding: 8px 40px;
    color: #FFF;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    border: 1px solid #35B6B4;
    transition: all 0.5s;
}
.assistance-btn:hover a {
    background: #fff;
    color: #35B6B4;
}
.assistance-content-wrapper .need-assistance-heading {
    margin-bottom: 20px;
}
.assistance-content-wrapper .assistance-btn {
    margin-top: 55px;
}
.claim-tab-container .tab-content.active {
    display: block;
}
.claim-tab-container .tab-content {
    display: none;
}
.claim-icon {
    height: 150px;
    margin: 0 auto;
    width: 90%;
}
.claim-icon img {
    object-fit: contain !important;
}

/*--------------
 Newsroom 
--------------*/
.heading-share-wrapper .blog-title h2 {
    color: #35B6B4;
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}
.newsroom-title h3 {
    color: #283671;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}
.load-more-wrapper {
    display: flex;
    justify-content: center;
}
button#loadMoreBtn {
    border: 1px solid #283671;
    border-radius: 5px;
    background: var(--Main-color, #042181);
    color: #fff;
    font-family: 'Montserrat';
    padding: 5px 10px;
    transition: all 0.5s;
}
.load-more-wrapper button#loadMoreBtn:hover  {
    color: #283671;
    background: transparent;
}
.heading-share-wrapper {
    display: flex;
    gap: 5%;
    justify-content: space-between;
    margin: 30px 0 40px;
}
.heading-share-wrapper .blog-title {
    width: 70%;
}
.share-blog-wrapper {
    width: 25%;
    display: flex;
    justify-content: flex-end;
    gap: 5%;
}
.share-blog-wrapper .share-article p {
    color: #283671;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.share-icon i {
    color: #283671;
    font-size: 18px;
    font-weight: 300;
}
.single-blog-outer-wrapper {
    padding: 70px 0 50px;
}
.single-blog-outer-wrapper .blog-img {
    max-width: 80%;
    margin: 0 auto;
    height: auto;
}
.social-share-link a i {
    color: #283671;
    font-weight: 500;
}
.social-share-link {
    display: flex;
    gap: 2%;
    align-items: center;
}
.social-share-link a:not(:last-child) {
    margin-right: 8px;
}

/* ----------------------
 Our Sales Agent
 ------------------------- */
 .agent-tabs .tabs-item-inner.eagle-widthcontainer .wrapper a.tab-link p {
    color: #283671;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    transition: all 0.2s;
    padding: 0 30px;
}
.agent-tabs .tabs-item-inner.eagle-widthcontainer a.tab-link.active p{
    color: #35B6B4;
    font-weight: 800;
}
.agent-tabs .tabs-item-inner.eagle-widthcontainer .tab-link.active::after{
    display: none;
}
.agent-tabs .tabs-item-inner.eagle-widthcontainer .wrapper a{
    padding: 0;
}
.agent-tabs .tabs-item-inner .wrapper{
    gap: 0;
}
.agent-tabs .tabs-item-inner.eagle-widthcontainer .wrapper a:not(:last-child) {
    padding: 0;
    border-right: 1px solid #283671;
}
.QR-code-wrapper .image-wrapper {
    width: 105px;
    height: auto;
}
.agent-email a, .agent-number a {
    color: #000000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.QR-code-wrapper p {
    color: #283671;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.QR-code-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 5%;
    margin-top: 40px;
}
.agent-contact-details {
    margin: 10px 0 25px;
}
.tabs-container.sales-agent .member-name p{
    text-transform: uppercase;
}
.tabs-container.sales-agent .tab-content {
    display: none;
}
.tabs-container.sales-agent .tab-content.active {
    display: block;
}
.agent-box-inner-wrapper {
    display: flex;
    justify-content: space-between;
}
.agent-name p {
    color: #283671;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.agent-email a, .agent-number a {
    color: #283671;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.agent-box {
    width: 80%;
    margin: 0 auto;
}
.agent-box-inner-wrapper:not(:last-child)::after {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    position: absolute;
    bottom: -20px;
    background: #283671;
}
.agent-items-wrapper .team-member-item {
    width: calc(100% / 3);
}
div#relationship-managers .agent-items-wrapper {
    display: flex;
    gap: 35px;
    flex-wrap: nowrap;
}
div#sales-person .agent-email {
    min-width: 220px;
}
div#sales-person  .agent-name {
    min-width: 220px;
}
div#sales-person .agent-number {
    min-width: 120px;
}
.agent-box-inner-wrapper {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #283671;
    padding: 20px 0;
}
.agent-tabs {
    padding-bottom: 100px;
}
.sales-agents-container .who-we-are-heading {
    padding: 75px 0 80px;
}
.agent-email , .agent-number {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.agent-number .detail-wrapper {
    min-width: 110px;
    padding-bottom: 10px;
}
.agent-email .detail-wrapper {
    padding-bottom: 10px;
}



/* Annual Reports */
.report-item {
    width: 310px;
    height: auto;
}
.annual-reports-items-inner {
    display: flex;
    gap: 34px;
    flex-wrap: wrap;
}
.annual-reports-items-wrapper {
    width: 90%;
    margin: 0 auto;
}
.annual-reports-heading h3 {
    color: #283671;
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: capitalize;
}
.annual-reports-container {
    padding: 55px 0 150px;
}
.annual-reports-heading {
    padding-bottom: 55px;
}


/* UAT */
.benefits-text-icon-wrapper .icon-wrapper {
    width: 50px;
    height: auto;
}
.contact-us-form-wrapper div#field_submit {
    display: block;
    align-content: center;
}
.container-col.assistance-ada > div:last-child {
    width: 55% !important;
}

.container-col.assistance-ada .gws-image-item.car-insurance-left-img {
    width: 45% !important;
}

