@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
    --primary: #ee8225;
    --secondary: #7d7d7d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}

a:hover,
a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
    vertical-align: middle;
}

.section {
    padding: 50px 0;
}

.top-header {
    padding: 10px 0;
    background: var(--primary);
}

.covid__claim,
.faqs__btn {
    font-size: 13px;
    background: #fff;
    padding: 5px 15px;
    color: var(--primary);
    font-weight: 600;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    margin-right: 5px;
    display: inline-block;
}

.covid__claim:hover,
.faqs__btn:hover {
    color: #fff;
    background: var(--secondary);
}

.top__contact a,
.top__contact > p {
    display: inline-block;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    margin: 0;
}

.top__contact > p {
    margin-left: 5px;
}

.top__contact {
    flex: 2;
    text-align: right;
}
.mid-header {
    padding: 15px 0;
}

.site-logo img {
    width: 200px;
    padding: 10px 0;
}

.lang__switch > a {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    line-height: 100%;
}

.lang__switch > a img {
    height: 12px;
    margin-right: 2px;
    vertical-align: middle;
}

/* .lang__switch > a:not(:last-child) {
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid #111;
} */

.main-navigation {
    background: #fff;
    box-shadow: 0 4px 6px #0000002b;
}

.main-navigation > div > div > ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

.main-navigation > div > div > ul > li > a {
    color: #333;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 13px;
    display: block;
    position: relative;
}

.main-navigation > div > div > ul > li > a:hover,
.main-navigation > div > div > ul > li.active > a {
    /* background: var(--primary); */
    color: var(--primary);
    /* color: #fff; */
    /* border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px; */
}

.main-navigation > div > div > ul > li > ul,
.main-navigation > div > div > ul > li > ul > li > ul {
    position: absolute;
    top: 150%;
    left: 0;
    background: #fff;
    width: 220px;
    box-shadow: 2px 10px 21px rgba(0, 0, 0, 0.3490196078);
    visibility: hidden;
    opacity: 0;
    list-style-type: none;
    padding: 6px 0 12px 0px;
    border-radius: 0 0 6px 6px;
    margin: 0;
    z-index: 999;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    border-top: 3px solid var(--primary);
}

.main-navigation > div > div > ul > li > ul > li {
    position: relative;
}

.main-navigation > div > div > ul > li > ul > li > ul {
    top: 0;
    left: 150%;
}

.main-navigation > div > div > ul > li:hover > ul {
    visibility: visible;
    opacity: 1;
    transition: all 0.3s ease-in-out;
    top: 100%;
}

.main-navigation > div > div > ul > li ul > li:hover > ul {
    left: 100%;
    visibility: visible;
    opacity: 1;
}
.main-navigation > div > div > ul > li > ul > li,
.main-navigation > div > div > ul > li > ul > li > ul > li {
    padding: 9px 15px;
}

.main-navigation > div > div > ul > li > i {
    color: #fff;
    font-size: 14px;
    margin-left: 5px;
}
.main-navigation > div > div > ul > li > ul > li:last-child,
.main-navigation > div > div > ul > li > ul > li > ul > li:last-child {
    padding-bottom: 0;
}
.main-navigation > div > div > ul > li > ul > li:not(:last-child),
.main-navigation > div > div > ul > li > ul > li > ul > li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1294117647);
}
.main-navigation > div > div > ul > li > ul > li > a,
.main-navigation > div > div > ul > li > ul > li > ul > li > a {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
    display: block;
    color: #111;
}
.main-navigation > div > div > ul > li > ul > li:hover > a,
.main-navigation > div > div > ul > li > ul > li.active > a,
.main-navigation > div > div > ul > li > ul > li > ul > li:hover > a,
.main-navigation > div > div > ul > li > ul > li > ul > li.active > a {
    color: var(--primary);
}

.main-navigation > div > div > ul > li {
    position: relative;
}

.main-navigation > div > div > ul > li.has-submenu > a {
    padding-right: 25px;
}

.main-navigation > div > div > ul > li.has-submenu i {
    position: absolute;
    right: 7px;
    font-size: 10px;
    top: 17px;
}

.main-navigation > div > div > ul > li:hover:before,
.main-navigation > div > div > ul > li.active:before {
    width: 100%;
    transition: all 0.35s ease-in-out;
}

.offcanvas__header {
    background: #fff;
    padding: 15px;
    text-align: center;
}

.offcanvas__header img {
    padding: 0;
    width: 200px;
}

.offcanvas__nav > ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.offcanvas__nav > ul > li > ul,
.offcanvas__nav > ul > li > ul > li > ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: none;
}

.offcanvas__nav > ul > li > ul,
.offcanvas__nav > ul > li > ul > li > ul {
    background: var(--secondary);
}

.offcanvas__nav > ul > li > ul > li > ul {
    background: #11111140;
}

.offcanvas__nav > ul > li > a,
.offcanvas__nav > ul > li > ul > li > a,
.offcanvas__nav > ul > li > ul > li > ul > li > a {
    padding: 12px 20px;
    display: block;
    border-bottom: 1px solid #eeeeee4d;
    position: relative;
    font-weight: 600;
    font-size: 14px;
}
.offcanvas__nav > ul > li > ul > li:last-child {
    border-bottom: none;
}

.offcanvas__nav ul li {
    position: relative;
}

.offcanvas__nav > ul > li > a,
.offcanvas__nav > ul > li > ul > li > a {
    color: var(--secondary);
    font-weight: bold;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
}

.offcanvas__nav > ul > li > ul > li > a {
    font-size: 14px;
}

/* .uk-offcanvas-bar ul > li i {
    position: absolute;
    right: 20px;
    top: 17px;
    color: #fff;
} */

.uk-offcanvas-bar ul > li i {
	position: absolute;
	right: 0;
	top: 0;
	color: #fff;
	width: 46px;
	height: 46px;
	text-align: center;
	line-height: 46px;
	background: #0000001c;
	z-index: 999;
}

/* .uk-offcanvas-bar ul > li > ul {
    display: none;
} */

.uk-offcanvas-bar {
    padding: 0;
    background: var(--primary);
}

.uk-offcanvas-overlay::before {
    background: linear-gradient(90deg, #fbab1c 0%, #1d4593 100%);
}

.uk-offcanvas-overlay.uk-open::before {
    opacity: 0.5;
}

.banner__section {
    background: var(--primary);
}

.banner-slide {
    width: 100%;
    /* max-height: 570px; */
    height: 325px;
}

.banner-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.product__section {
    border-top: 8px solid var(--primary);
}

.product__heading {
    text-align: center;
    margin-bottom: 30px;
}

.product__heading h2,
.update__list h2 {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    margin: 0;
    padding: 12px 25px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 0 0 20px 20px;
    line-height: 100%;
    padding-bottom: 14px;
    /* letter-spacing: -0.5px; */
    text-transform: uppercase;
    font-weight: 800;
}

.product__grid {
    text-align: center;
}

.product__item {
    display: inline-block;
    margin-right: 23px;
    margin-bottom: 20px;
    vertical-align: top;
}

.product__item:last-child {
    border: 1px solid #686868;
    border-radius: 76px;
}

.product__item > a {
    display: inline-block;
    text-align: center;
}

.product__item:last-child > a {
    width: 76px;
    height: 76px;
    border-radius: 76px;
    font-size: 12px;
}

/* .product__item > a:hover > div {
    background: var(--secondary);
} */

.product__item > a > div {
    height: 76px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
}
.product__item > a > div img {
    height: 83px;
    object-fit: contain;
}

.product__item h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

.product__item:last-child > a h3 {
    font-size: 12px;
}

.product__item > a:hover h3 {
    color: var(--primary);
}

.product__item > a:hover div {
    transform: scale(1.1);
    animation: ease-in-out;
    transition: all 0.5s;
}

.bg-gray {
    background: #f2f2f2;
    padding: 50px 0;
}

.why__shikhar,
.about__facts__section {
    margin-top: 50px;
    position: relative;
}

.why__shikhar::after,
.about__facts__section::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 250px;
    background: url("../img/shikhar-bg.png") 0 0 no-repeat;
    opacity: 0.5;
    pointer-events: none;
}

.heading-wrap {
    margin-bottom: 30px;
}

.heading-wrap span {
    font-size: 15px;
    color: var(--secondary);
    font-weight: 700;
}

.heading-wrap h2 {
    margin: 0;
    font-size: 25px;
    /* letter-spacing: -1.1px; */
    font-weight: 600;
    color: var(--primary);
    /* width: 50%; */
    text-transform: uppercase;
    font-weight: 800;
}

.why__item {
    text-align: center;
}

.why__icon img {
    height: 65px;
    object-fit: cover;
}

.why__item span {
    display: block;
    width: 67%;
    margin: auto;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #686868;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.why__item span small {
    display: block;
}

.contact__card {
    text-align: center;
}

.contact__card--img {
    text-align: center;
}
.contact__card--img img {
    width: 100px;
    height: 100px;
    border-radius: 25%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border: 1px solid var(--secondary);
}

.contact__card--content {
    margin-top: 12px;
}

.contact__card--content h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
}

.contact__card--content p {
    margin: 0;
    margin-top: 3px;
    font-size: 13px;
    font-weight: 600;
}

.contact__card--content p a {
    color: var(--secondary);
    font-size: 13px;
}

.contact__card--content p a:hover {
    color: var(--primary);
}

.contact__information .heading-wrap h2 {
    /* font-size: 30px; */
    text-align: center;
}

.cta__section {
    padding: 75px 0;
    background: url("../img/shikhar-cta-bg.png") 0 0 no-repeat;
    text-align: center;
    position: relative;
}

.cta__section::before {
    content: "";
    background: var(--primary);
    opacity: 0.6;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.cta__section h2 {
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
}

.btn {
    padding: 12px 22px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    display: inline-block;
    background: var(--primary);
}

.btn:hover {
    background: var(--secondary);
    color: #fff;
}

.btn.btn-white {
    background: #fff;
    color: var(--primary);
}

.btn.btn-white:hover {
    color: #fff;
    background: var(--secondary);
}

.btn.btn-gray {
    background: var(--secondary);
    color: #fff;
}

.btn.btn-gray:hover {
    color: #fff;
    background: #111;
}

.btn.btn-small {
    font-size: 11px;
    padding: 10px 15px;
}

.inquiry__feedbacks {
    background: #f1f1f1;
}

.form-wrapper label {
    display: block;
    font-size: 13px;
    font-weight: 600;
}

.form-wrapper input,
.form-wrapper select,
.form-wrapper textarea {
    height: 50px;
    width: 100%;
    color: #000;
    padding: 0 20px;
    border-radius: 0;
    background: #fafafa;
    border-radius: 7px;
    border: 0;
    font-size: 14px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    margin-top: 5px;
    border: 1px solid #11111130;
}

.form-wrapper input[type="range"] {
    height: auto;
    border: none;
    padding: 0;
    background: transparent;
}
/*
.form-wrapper input[type="range"]::-webkit-slider-runnable-track {
    height: 30px;
    color: var(--primary);
    margin-top: -1px;
}

.form-wrapper input[type="range"]::-moz-range-progress {
    background-color: var(--primary);
}

.form-wrapper input[type="range"]::-moz-range-track {
    background-color: #999;
}

.form-wrapper input[type="range"]::-webkit-slider-runnable-track {
    background-color: var(--primary);
    height: 10px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.form-wrapper input[type="range"]::-webkit-slider-thumb {
    background-color: #999;
    margin-top: -3px;
} */

.form-wrapper textarea {
    height: 150px;
    padding: 10px 20px;
}

.form-wrapper button,
.form-wrapper input[type="submit"] {
    border: none;
    outline: none;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
}

.awards__section {
    position: relative;
}

.awards__section::before,
.awards__section::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 569px;
    height: 100%;
    background: url("../img/award-bg.png") 0 0 no-repeat;
    pointer-events: none;
}

.awards__section::after {
    left: auto;
    right: 0;
}

.awards__items {
    text-align: center;
}

.awards__items img {
    height: 300px;
    width: 100%;
}

.awards__items h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 3px;
}

.award__year {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.update__video {
    height: 100%;
}

.update__video iframe {
    width: 100%;
    height: 100%;
}

.update__list {
    padding: 30px;
    background: #f1f1f1;
    padding-top: 0;
}

.update__list ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 30px;
    margin-bottom: 15px;
}

.update__list ul li:not(:last-child) {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #00000014;
}

.update__list ul li h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    margin-bottom: 6px;
}

.update__list ul li h3 a {
    color: #111;
}

.update__list ul li h3 a:hover {
    color: var(--primary);
}

.update__list ul li p {
    font-size: 14px;
    margin: 0;
}

.postmeta {
    font-size: 13px;
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.loc__details h2 {
    margin: 0;
    color: var(--primary);
    font-size: 60px;
    font-weight: 800;
}

.loc__details h3 {
    margin: 0;
    font-size: 25px;
    font-weight: 600;
    margin: 15px 0;
    margin-top: 7px;
}

.loc__details h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
}

.locate__company form {
    margin-top: 10px;
}

.locate__company form input {
    height: 60px;
    width: 100%;
    color: #000;
    padding: 0 20px;
    border-radius: 0;
    background: #fafafa;
    border-radius: 7px;
    border: 0;
    font-size: 14px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    border: 1px solid #11111130;
}

.locate__company form button {
    position: absolute;
    right: 12px;
    top: 10px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border: none;
    outline: none;
    color: #fff;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
}

.or__text {
    font-size: 18px;
    padding: 20px 0;
    font-weight: bold;
}

.locate__company .btn {
    width: 100%;
    text-align: center;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 15px 25px;
}

.site-footer {
    /* margin-top: 30px; */
    padding: 50px 0;
    padding-bottom: 0;
    background: #111;
}

.footer-wrap h4 {
    color: var(--primary);
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.footer-wrap p {
    font-size: 14px;
    margin: 0;
    color: #ffffffc0;
    margin-bottom: 7px;
    line-height: 1.8;
}

.footer-wrap ul {
    font-size: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-wrap ul li {
    margin-bottom: 10px;
}

.footer-wrap ul li a {
    color: #fff;
    font-weight: 500;
}

.footer-wrap ul li a:hover {
    opacity: 0.9;
}

.footer-wrap strong {
    font-size: 14px;
    display: block;
    color: #ffffffc0;
    margin-bottom: 7px;
}

.copyright {
    background: var(--primary);
    padding: 15px 0;
    margin-top: 30px;
}

.copyright p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.burger__menu {
    display: none;
}

.footer-wrap img {
    width: 200px;
}

.online__partner {
    display: block;
    width: 143px;
}

.lang__switch > a.active {
    font-weight: bold;
    /* text-decoration: underline; */
    background-color: var(--primary);
    padding: 6px 12px;
    border-radius: 25px;
    color: white;
}

/* .lang__switch > a:hover {
    border: 1px solid var(--primary);
    padding: 6px 12px;
    border-radius: 25px;
} */

/* About Us Page */
.default__banner {
    padding: 150px 0;
    /* padding: 240px 0; */
    position: relative;
    background-size: cover;
    background-position: center ;

    &::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        background-color: #ee832580;
        width: 100%;
        height: 100%;
    }
}

.default__banner--content {
    position: relative;
}

.breadcrumbs {
    position: relative;
    text-align: center;
}

.breadcrumbs ul {
    margin: 0;
    padding: 0;
    list-style: none;

    & li {
        display: inline-block;
    }
}

.default__banner--content h1 {
    margin: 0;
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 15px;
}

.breadcrumbs {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
}

.breadcrumbs li,
.breadcrumbs a {
    color: #fff;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
}

.breadcrumbs a:hover {
    color: #111;
}

.breadcrumbs li span.sep {
    padding: 0 10px;
    font-size: 11px;
}

.about__page__img > img {
    width: 400px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.stats__first {
    padding: 30px 25px;
    background: var(--primary);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    position: absolute;
    left: 0;
    bottom: 150px;
    font-weight: 500;

    color: #fff;
}

.stats__first span {
    font-size: 40px;
    font-weight: bold;
    display: block;
    line-height: 100%;
    margin-bottom: 12px;
}

.stats__first p {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
}

.stats__last {
    left: auto;
    bottom: -50px;
    right: 0;
    padding: 20px;
    width: 240px;
    /* height: 240px; */
}

.stats__last span {
    font-size: 18px;
    margin: 15px 0;
}

.stats__first.stats__last img {
    width: 50px;
}

.about__links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    overflow: auto;
}

.about__links li {
    margin-right: 15px;
    margin-bottom: 10px;
}

.about__links li > a {
    padding: 10px 20px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    display: inline-block;
    background: var(--secondary);
    white-space: nowrap;

    &:hover {
        background: var(--primary);
    }
}

.about__links li > a svg {
    margin-left: 5px;
}

.about__links li.uk-active > a {
    background: var(--primary);
}

.aboout__tab__content p,
.content__area p {
    font-size: 16px;
    line-height: 1.8;
    color: #111;
    font-weight: 600;
    text-align: justify;
}

.page__heading span {
    font-size: 20px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 800;
}

.page__heading h2 {
    margin: 0;
    font-weight: bold;
    color: #686868;
    font-size: 25px;
    line-height: 1.2;
}

.page__heading {
    margin-bottom: 50px;
}

.fact__heading {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.fact__heading h2 {
    font-weight: 800;
    color: var(--primary);
    font-size: 30px;
    text-transform: uppercase;
}

.fact__heading p {
    font-size: 16px;
    line-height: 1.8;
    color: #111;
    font-weight: 600;
    flex: 1;
    margin: 0;

    margin-left: 30px;
    padding-left: 30px;
    border-left: 1px solid #111;
}

.facts__data {
    text-align: center;
    background: #fff;
    padding: 70px 30px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    font-weight: 600;
}

.facts__data span {
    font-size: 50px;
    font-weight: 800;
    color: var(--primary);
}

.team__item {
    text-align: center;
}

.team__item > a {
    display: block;
    /* height: 380px; */
    width: 100%;
}

.team__item > a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.team__item h3 {
    margin: 0;
    margin-top: 12px;
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}
.view__btn {
    width: auto;
    height: auto;
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
}

.view__btn i {
    font-size: 12px;
}
.team__item > a.view__btn {
    width: auto;
    height: auto;
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
}

.org__items {
    background: var(--primary);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    position: relative;
    padding: 50px;
    display: flex;
    flex-wrap: wrap;
}

.org__icon {
    width: 140px;
    margin-right: 30px;
}

/* .org__items::before {
    content: "";
    position: absolute;
    right: 20px;
    top: 20px;
    background: url("../img/icon-department.png");
    width: 70px;
    height: 102px;
    background-repeat: no-repeat;
    background-size: contain;
} */

.org__content {
    flex: 1;
}

.org__items h3 {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.org__items p {
    margin: 0;
    color: #fff;
    font-weight: 500;
    margin-bottom: 12px;
}

.org__items .btn {
    padding: 10px 15px;
    font-size: 12px;
}

.org__items .btn:hover {
    background: var(--secondary);
    color: #fff;
}

.reinsurance__img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.report__graph__img img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.tab__content {
    overflow: scroll;
}

.bod__members .team__data h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    margin-bottom: 4px;
}

.bod__members .team__data {
    padding: 15px;
    border: 1px solid #eee;
    height: 100%;
}

.bod__members .team__data p {
    margin: 0;
    margin-top: 5px;
    font-size: 13px;
}

.bod__members .team__data span {
    color: var(--secondary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.bod__members .team__data p a {
    color: #111;
}

.reinsurance__search input {
    width: 100%;
    border: 1px solid #555;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    height: 50px;
}

.reinsurance__tab {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
}

.reinsurance__tab li a {
    display: inline-block;
    background: var(--secondary);
    padding: 10px 20px;
    height: 100%;
    font-weight: 600;
    color: #fff;
}

.reinsurance__tab li a img {
    width: 30px;
    margin-right: 5px;
    vertical-align: middle;
}

.reinsurance__tab li.uk-active a,
.reinsurance__tab li a:hover {
    background: var(--primary);
}

.re__item > a {
    display: block;
    padding: 15px;
    border: 1px solid var(--primary);
    border-radius: 8px;
}

.re__item > a h3 {
    margin: 0;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
}

.re__level > span {
    margin-top: 10px;
    padding: 8px 10px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    display: inline-block;
    background: var(--primary);
    margin-right: 5px;
    margin-bottom: 5px;
}

.contact__item {
    padding: 30px;
    border: 1px solid #999;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    height: 100%;
}

.contact__item h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    margin-top: 12px;
}

.contact__item p {
    margin: 0;
    margin-top: 4px;
    font-weight: 600;
    color: #222;
}

.contact__item p a {
    color: #222;
}

.photo__items > a {
    display: block;
}

.photo__items > a img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    -webkit-border-radius: 20px 20px 0 0;
    -moz-border-radius: 20px 20px 0 0;
    -ms-border-radius: 20px 20px 0 0;
    -o-border-radius: 20px 20px 0 0;
}

.photo__items > a .photo__content {
    padding: 20px 30px;
    background-color: var(--primary);
    border-radius: 0 0 20px 20px;
    -webkit-border-radius: 0 0 20px 20px;
    -moz-border-radius: 0 0 20px 20px;
    -ms-border-radius: 0 0 20px 20px;
    -o-border-radius: 0 0 20px 20px;
    display: flex;
    flex-direction: column;
}

.photo__items > a .photo__content h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 15px;
}

.blog__container > a {
    display: block;
    padding: 15px;
    border: 1px solid #c4c4c4;
    height: 100%;
}

.blog__container > a img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.postdate {
    font-size: 14px;
    font-weight: bold;
    color: #111;
    display: block;
    margin-top: 12px;
}

.blog__container > a h3 {
    margin: 0;
    margin-top: 8px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary);
}

.blog__container > a h3:hover {
    color: var(--secondary);
}

.blog__container > a p {
    font-size: 14px;
    color: #111;
    margin: 0;
    margin-top: 6px;
}

.uk-icon:not(.uk-preserve) [stroke*="#"]:not(.uk-preserve) {
    stroke: var(--primary);
}

.blog__overlay {
    position: relative;
}

.blog__overlay > a {
    display: block;
    width: 100%;
    height: 400px;
    border: 1px solid #ddd;
}

.blog__overlay > a::before {
    content: "";
    background: linear-gradient(to top, #00000075, transparent);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
}

.blog__overlay .postdate {
    color: #fff;
}

.blog__overlay > a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scale {
    overflow: hidden;
}

.scale > img {
    transition: 0.3s linear;
    -webkit-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
    -ms-transition: 0.3s linear;
    -o-transition: 0.3s linear;
}

.scale:hover > img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transition: 0.3s linear;
    -webkit-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
    -ms-transition: 0.3s linear;
    -o-transition: 0.3s linear;
}

.blog__overlay__content {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 30px;
    width: 100%;
    z-index: 999;
}

.blog__overlay__content h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}

.report__items {
    height: 100%;
}

.report__items > a {
    padding: 30px;
    display: block;
    text-align: center;
    background: #fff;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    height: 100%;
}

.report__items > a img {
    height: 100px;
}

.report__items > a h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px;
}

.support__section .report__items > a h3 {
    color: var(--primary);
    text-transform: uppercase;
}

.report__items > a:hover h3 {
    color: var(--primary);
}

.report__items > a p {
    margin: 0;
    margin-top: 6px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.faq__accordion li {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #ddd;
}

.faq__accordion li a.uk-accordion-title {
    font-size: 18px;
    color: var(--secondary);
    font-weight: 600;

    &:hover {
        color: var(--primary);
    }
}

.uk-accordion-content p {
    font-size: 15px;
    color: #222;
    font-weight: 500;
}

.apply__form__data .about__links {
    align-content: stretch;
}
.apply__form__data .about__links li {
    align-content: stretch;
    width: 100%;
    text-align: center;
}

.apply__form__data .about__links li a {
    width: 100%;
}

.form__tab__content ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.form__tab__content ul li {
    padding: 30px;
    margin-bottom: 30px;
    background-color: #fff;
}

.form__img {
    position: relative;
    padding-left: 40px;
}
.form__container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.form__img img {
    position: absolute;
    left: 0;
    top: -5px;
    width: 25px;
}

.form__img h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.form__container a {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
}

.page__content--area p {
    font-size: 16px;
    color: #111;
    font-weight: 500;
    text-align: justify;
    line-height: 1.8;
}

.default__page .update__list h2 {
    font-size: 20px;
}

iframe {
    width: 100%;
    height: 450px;
}

.agency__page__content {
    margin-bottom: 30px;
}

.agency__page__content p {
    color: var(--primary);
    font-size: 23px;
    font-weight: 600;
}

.agency__wrapper {
    padding: 30px;
    border: 1px solid #777;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.agency__icon {
    display: flex;
    align-items: center;
}

.agency__icon img {
    width: 90px;
}

.agency__icon h3 {
    margin: 0;
}

.agency__icon h3 a {
    margin: 0;
    font-size: 23px;
    margin-left: 20px;
    font-weight: 600;
    color: var(--primary);
}

.agency__wrapper p {
    color: #333;
    font-weight: 500;
    line-height: 1.5;
}

.agency__wrapper .view__btn {
    text-align: right;
    display: block;
    font-size: 16px;
    color: var(--primary);
}

.photo__content > span.view__btn {
    color: #fff;
    font-size: 14px;
    margin-top: auto;
    display: block;
}

.agents__detailings table tr td,
.agents__detailings table tr th,
.job__wrapper table tr td,
.job__wrapper table tr th {
    padding: 3px 6px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    font-size: 12px;
    font-weight: 600;
    color: #222;
    transition: 0.3s ease;
}

.agents__detailings table tr th,
.job__wrapper table tr th {
    text-transform: uppercase;
    font-weight: bold;
}
.agents__detailings table {
    margin-bottom: 25px;
}

.agents__detailings table tr:nth-child(2n),
.job__wrapper table tbody tr:nth-child(odd) {
    background: #fffc;
}
.agents__detailings table tr:hover,
.job__wrapper table tr:hover {
    background: #fff;
    transition: 0.3s ease;
}
.agents__detailings table tr,
.job__wrapper table tr {
    transition: 0.3s ease;
}
.agents__detailings table,
.job__wrapper table {
    border: none;
    border-collapse: collapse;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #f1f1f1;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.agents__detailings .uk-icon:not(.uk-preserve) [stroke*="#"]:not(.uk-preserve),
.career__container .uk-icon:not(.uk-preserve) [stroke*="#"]:not(.uk-preserve),
.report__search .uk-icon:not(.uk-preserve) [stroke*="#"]:not(.uk-preserve) {
    stroke: #999;
}

.agents__detailings input {
    font-size: 14px;
    font-weight: 500;
}

.agents__detailings select {
    font-size: 14px;
    font-weight: 500;
    padding-right: 30px !important;
    cursor: pointer;
}

.product__container .heading-wrap {
    flex: 1;
    margin-right: 30px;
}

.product__container > div > div > p {
    margin: 0;
    flex: 1;
    font-weight: 600;
    font-size: 16px;
}

.product__container .product__item {
    width: 100%;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    text-align: center;
    background: #f8f8f8;
    padding: 30px;
    margin-top: 50px;
}

.product__container .product__item > a > div {
    margin-top: -80px;
}

.product__container .product__item > a > div img {
    background: #fff;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.product__container .product__item:last-child > a {
    width: 100%;
    height: 100%;
}

.product__container .product__item:last-child > a h3 {
    font-size: 17px;
    color: var(--primary);
}

.product__container .product__item:last-child > a p {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.product__container .product__item > a .view__btn {
    text-align: right;
    width: 100%;
}

.product__container .product__item > a:hover .view__btn {
    color: var(--primary);
}

.calculator__wrapper {
    padding: 15px;
    background: var(--primary);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.calculator__wrapper > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.calculator__wrapper > a img {
    height: 32px;
    object-fit: contain;
}

.calculator__wrapper:hover {
    background: var(--secondary);
}

.career__container .heading-wrap p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    margin-top: 7px;
}

.career__container form input {
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.career__container form input[type="submit"] {
    width: auto;
    outline: none;
    border: none;
    cursor: pointer;
    margin-left: 15px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    font-family: "Montserrat", sans-serif;
}

.career__container form {
    display: flex;
    align-items: center;
}

.career__container .uk-search-default {
    width: 100% !important;
}

.career__job {
    background: var(--primary);
}

.job__adv {
    background: #fff;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    padding: 30px;
    height: 100%;
}

.adv__icon {
    display: flex;
    align-items: center;
}

.adv__icon h3 {
    margin: 0;
    margin-left: 15px;
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
}

.job__adv p {
    font-size: 14px;
    line-height: 1.8;
    font-weight: 600;
}

.job__adv ul {
    margin: 20px 0;
    font-size: 14px;
    line-height: 1.8;
    padding-left: 12px;
}

.job__adv ul li {
    margin-bottom: 4px;
    font-weight: 600;
}

.open__position .heading-wrap h2 {
    color: #fff;
}

.open__position .heading-wrap p {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
}

.job__wrapper i {
    color: var(--primary);
    font-size: 25px;
}

.financial__img img {
    width: 100%;
}

.financial__tabs {
    background: #f2f2f2;
}

.product__single--data {
    background: #f2f2f2;
}

.product__single--data .heading-wrap p {
    font-size: 17px;
    font-weight: 600;
    color: #111;
    margin-top: 7px;
}

.listing__details ul {
    padding: 0;
    margin: 0;
    list-style: none;
    column-count: 2;
    column-gap: 30px;
}

.listing__details ul li {
    background: url("../img/icon-tick.png") left 0 top 6px no-repeat;
    background-size: 18px !important;
    padding-left: 25px;
    color: #444;
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 8px;
}

.featured__img img {
    width: 100%;
    height: 438px;
    object-fit: cover;
}

.type__icon {
    display: flex;
    align-items: flex-start;
}

.type__icon img {
    height: 25px;
    margin-right: 15px;
}

.type__icon h3 {
    font-size: 22px;
    color: #111;
    font-weight: 600;
    margin: 0;
}

.type__icon p {
    margin: 0;
    margin-top: 7px;
    font-size: 15px;
    font-weight: 500;
}

.type__wrapper > div {
    margin-bottom: 30px;
}

.footer__socials > a {
    display: inline-block;
}

.footer__socials > a i {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-right: 3px;
    text-align: center;
    color: #fff;
    border: 1px solid white;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.footer__socials > a:hover i {
    color: var(--primary);
    border: 1px solid var(--primary);
}

.contact__socials > a {
    display: inline-block;
}

.contact__socials > a i {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-right: 3px;
    text-align: center;
    color: #fff;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.contact__socials > a .fa-brands.fa-facebook-f {
    background: #1877f2;
}

.contact__socials > a .fa-brands.fa-instagram {
    background: #d62976;
}

.contact__socials > a .fa-brands.fa-linkedin-in {
    background: #0a66c2;
}

.contact__socials > a .fa-brands.fa-youtube {
    background: #cd201f;
}

.contact__socials > a .fa-brands.fa-tiktok {
    background: #0cb9c5;
}

.contact__socials > a .fa-brands.fa-x-twitter {
    background: #50abf1;
}

.invalid-feedback {
    padding: 3px 9px;
    font-size: 12px;
    margin-top: 5px;
    /* border-radius: 2px; */
    color: red;
    /* background: rgba(255, 0, 0, 0.26); */
    /* -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px; */
}

.pagination {
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
}

.pagination li {
    margin-right: 15px;
    margin-bottom: 12px;
}

.pagination > li.page-item.disabled {
    opacity: 0.8;
}

.pagination li.page-item.active > *,
.pagination li.page-item > button:hover {
    background: var(--primary);
}

.pagination li.page-item > button,
.pagination li.page-item > a,
.pagination li.page-item > span {
    cursor: pointer;
    border: none;
    width: 30px;
    display: block;
    height: 30px;
    line-height: 30px;
    font-family: "Montserrat", sans-serif;
    text-align: center;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    background: var(--secondary);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.small__page__title {
    margin-bottom: 30px;
}

.small__page__title h2 {
    margin: 0;
    font-size: 30px;
    font-weight: 800;
    color: var(--primary);

    text-transform: uppercase;
}

.gallery__items > a {
    display: block;
    width: 100%;
    height: 300px;
}

.gallery__items > a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.annual__reports__section .form__container h3 {
    font-weight: 600;
    margin-bottom: 5px;
}

.annual__reports__section .form__container span {
    font-size: 13px;
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid #ddd;
    font-weight: bold;
    text-transform: uppercase;
}

.annual__reports__section .form__img {
    padding-left: 70px;
}

.annual__reports__section .form__img img {
    width: 50px;
    top: 0;
}

.annual__reports__section .form__tab__content ul li {
    border-bottom: 1px solid #999;
    padding: 0;
    padding-bottom: 30px;
}

.report__search .uk-search-default {
    width: 100%;
}

.report__title {
    text-align: center;
    background: var(--primary);
    color: #fff;
    font-size: 25px;
    font-weight: bold;
    padding: 10px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.floating__icons ul li {
    position: fixed;
    right: -163px;
    z-index: 1;
    background-color: var(--primary);
    /* width: 160px; */
    border-left: 6px solid var(--secondary);
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    transition: right 0.6s;
    -webkit-transition: right 0.6s;
    -moz-transition: right 0.6s;
    -ms-transition: right 0.6s;
    -o-transition: right 0.6s;
}

.floating__icons {
    position: fixed;
    right: 0;
    top: 180px;
    z-index: 1;
}
.floating__icons ul li a img {
    height: 23px;
    width: auto;
}
.floating__icons ul {
    list-style-type: none;
}

.floating__icons ul li:nth-child(1) {
    top: 180px;
}
.floating__icons ul li:nth-child(1):hover {
    right: 0;
}
.floating__icons ul li:nth-child(2) {
    top: 220px;
}
.floating__icons ul li:nth-child(2):hover {
    right: 0;
}
.floating__icons ul li:nth-child(3) {
    top: 260px;
}
.floating__icons ul li:nth-child(3):hover {
    right: 0;
}
.floating__icons ul li:nth-child(4) {
    top: 300px;
}
.floating__icons ul li:nth-child(4):hover {
    right: 0;
}

.floating__icons ul li a {
    font-size: 20px;
    color: #fff;
    display: flex;
    padding: 8px;
}

.floating__icons ul li a div {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    margin-left: 15px;
}

.roadblock {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    z-index: 9999;
    padding: 0;
    background: rgba(0, 0, 0, 0.5);
    -webkit-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -o-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.roadblock-wrap {
    height: 100%;
    width: 100%;
    overflow: auto;
    /* padding-top: 40px;
    padding-bottom: 40px; */
    display: flex;
    justify-content: center;
    place-items: center;
    /* transform: translate(0, 10%); */
}

.skip-ad {
    background: var(--primary);
    text-align: center;
    color: #fff;
    position: relative;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    vertical-align: middle;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
}
.skip-ad:hover {
    color: #fff;
}

.roadblock-remove .roadblock {
    opacity: 0;

    -webkit-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -o-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    visibility: hidden;
}
.aligncenter {
    text-align: center;
}
.roadblock__notice .container {
    width: 100%;
}

.alignright {
    text-align: right;
    margin: 0;
}

.roadblock__notice {
    text-align: center;
    position: relative;
}

.roadblock__notice .alignright {
    position: absolute;
    right: -70px;
    top: 0;
}


.mobile-view {
    display: none;
}

.siteLogo img {
    max-width: 250px;
}


.roadblock__notice > div.desktop-view {
    height: 750px;
    overflow: auto;
}

.roadblock-logo img {
    width: 100px;
    margin-bottom: 25px;
}


.roadblock-1 {
    z-index: 9999999999;
}

.locate__tab {
    background: #ee822538;
    margin: 0;
    padding: 10px;
    display: inline-block;
    list-style: none;
}

.locate__tab > li {
    display: inline-block;
    padding: 5px 10px;
    background-color: #fff;
}

.locate__tab > li > a {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
}

.locate__company {
    background: #ee832518;
}

.site-logo {
    background: #fff;
    /* margin-top: -26px; */
    /* padding: 0 30px; */
}

.mid-header-right {
    align-self: stretch;
    /* background: #fff; */
    /* padding: 0 30px; */
    display: flex;
    padding-left: 0;
    align-items: center;
}

.mid-header-right .btn {
    font-size: 11px;
    margin-right: 10px;
    padding: 10px 12px;
}

.header__search {
    padding: 6px 10px;
    border: 1px solid var(--primary);
    margin-right: 10px;
    color: var(--primary);
    font-size: 14px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

.header__search:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
}

.main-navigation.uk-sticky-fixed .site-logo {
    margin: 0;
}

.main-navigation.uk-sticky-fixed .site-logo img {
    /* width: 128px; */
    width: 200px;
}

.cat-search {
    color: var(--primary);
    font-size: 25px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 32px;
    padding: 0 25px 25px 0;
    margin: 0;
    display: inline-block;
    border: 0;
    position: relative;
    top: 4px;
    z-index: 2;
}

.search-modal input[type="text"] {
    border-radius: 4px;
    height: 50px;
    padding: 0 125px 0 20px;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}

.search-modal input[type="submit"] {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 110px;
    background: var(--primary);
    padding: 0;
    border: none;
    cursor: pointer;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 0 4px 4px 0;
    -webkit-border-radius: 0 4px 4px 0;
    -moz-border-radius: 0 4px 4px 0;
    -ms-border-radius: 0 4px 4px 0;
    -o-border-radius: 0 4px 4px 0;
}

.search-modal {
    position: relative;
}

.branches__network__section .about__links > li > a {
    font-size: 12px;
    padding: 9px 15px;
}

.branches__network__section .about__links > li {
    margin-right: 10px;
}

.branches__items {
    padding: 30px;
    border: 1px solid #ee83256e;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.branches__items h3 {
    margin: 0;
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 6px;
}

.branches__items p {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 6px;
}

.branches__items p a {
    color: #111;
    font-weight: 600;
}

.branches__contact {
    flex: 1;
}

.branches__info {
}

.branches__info > a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #ee83256e;
    color: #ffff;
    text-align: center;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.branches__single__info h3 {
    margin-bottom: 30px;
    font-size: 30px;
    color: var(--primary);
    padding-bottom: 15px;
    border-bottom: 1px solid var(--primary);
}

.branches__single__info p {
    margin: 0;
    margin-bottom: 8px;
    color: #111;
    font-weight: 500;
}

.branches__single__info p strong {
    margin-right: 5px;
}

.branches__single__info p a {
    color: #111;
}

.blog__container {
    height: 100%;
}

.pagination__links {
    padding: 0;
    margin: 0;
    list-style: none;
}
.pagination__links > li > button,
.pagination__links > li > span {
    background: transparent;
    border: none;
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    border-radius: 5px;
}

.pagination__links > li {
    font-size: 11px;
    padding: 10px 15px;
    background: var(--primary);
    color: #fff;
}

.prev__page:hover,
.next__page:hover {
    background: var(--secondary);
}

.pagination__links > li.uk-disabled {
    opacity: 0.5;
}

.pagination__detail {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    margin-top: 15px;
}

.photo__items > iframe {
    width: 100% !important;
    height: 300px;
}

.site-map-title {
    text-align: left;
    font-weight: 800;
    font-size: 20px;
    text-transform: uppercase;
    margin: 0 0 5px 0;
    color: var(--primary);
}

.site-map-sub-title {
    font-size: 16px;
    font-weight: 800;
    /* color: #2d74ffe6; */
    margin: 15px 0 5px;
    /* text-decoration: underline; */
}

.site-map-title a,
.site-map-sub-title a {
    color: var(--primary);
}
.site-map__list--item {
    padding: 25px;
    border: 1px solid #0000001f;
    padding-bottom: 15px;
    margin-top: 30px;
    background: #fff;
}
.site-map__list--item ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
    margin: 0;
    list-style: none;
}
.site-map__list--item ul li {
    padding: 7px 0 0;
}
.site-map__list--item ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.site-map__list--item ul li a {
    font-weight: 500;
    font-size: 15px;
    color: #112233d6;
}

.lang__dropdown .uk-button-default {
    padding: 0 11px;
    font-size: 12px;
    font-weight: bold;
    border: 1px solid var(--primary);
    height: 35px;
    line-height: 35px;
}

.lang__dropdown ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.lang__dropdown ul li a {
    font-size: 14px;
    font-weight: bold;
    display: block;
    margin-bottom: 12px;
    border-bottom: 1px solid #11111140;
    padding-bottom: 12px;
    color: #111;
}

.lang__dropdown ul li:last-child a {
    border: none;
    padding: 0;
    margin: 0;
}

.lang__dropdown img {
    width: 16px;
    margin-bottom: 2px;
}

.lang__dropdown ul li a img {
    width: 15px;
    margin-right: 5px;
}

.career__listing ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.career__listing ul li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    font-size: 15px;
    border-bottom: 1px solid #00000030;
    display: flex;
}

.career__listing ul li strong {
    color: #111;
    margin-right: 15px;
    flex: 1;
}

.career__listing ul li span,
.career__listing ul li input {
    flex: 6;
    font-weight: 500;
}

.badge {
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 10px;
}

.badge-danger {
    background-color: #dc3545 !important;
}

.download__btn {
    color: var(--primary);
}

.form-wrapper input[type="file"] {
    height: 50px;
    width: 100%;
    color: #000;
    padding: 10px 20px;
    border-radius: 7px;
    background: #fafafa;
    border: 1px solid #11111130;
    font-size: 14px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    margin-top: 5px;
    cursor: pointer;
    outline: none;
}

* + .uk-progress {
    margin-top: 20px !important;
}

.btn-disabled {
    cursor: no-drop !important;
}

.calculator__container h3 {
    font-size: 18px;
    font-weight: 700;
}

/* .premium__calculator__sidebar  */

.premium__calculator__list img {
    background: var(--primary);
    height: 50px;
    width: 50px;
    object-fit: contain;
    padding: 10px;
    border-radius: 10px;
    margin-right: 5px;
}

.calculate__button {
    border: none;
    padding: 12px 22px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    display: inline-block;
    background: var(--primary);
}

.calculation__result {
    display: none;
}

.calculation__result__third__party {
    display: none;
}

.all__calculation__form .uk-button {
    background: var(--primary);
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 14px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.all__calculation__form .uk-form-label,
.all__calculation__form label {
    font-size: 13px;
    display: block;
    font-weight: 600;
    margin-bottom: 3px;
}

.all__calculation__form label {
    display: inline-block;
    margin-right: 5px;
}

.all__calculation__form input {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 14px;
}

.premium__calculator__list .uk-nav-sub li {
    margin-bottom: 12px;
}

.premium__calculator__list .uk-nav-sub li.uk-active a {
    /* padding: 5px;
    background: #ee82252b;
    border-radius: 5px; */
    color: var(--primary);
    font-weight: 700;
}

.premium__calculator__sidebar li.uk-active a {
    /* padding: 5px;
    background: #ee82252b;
    border-radius: 5px; */
    color: var(--primary);
    font-weight: 700;
}

.premium__calculator__list .uk-nav-sub li a,
.premium__calculator__sidebar li a {
    font-weight: 600;
    font-size: 14px;
    color: #111;
}

.calculation__result h4,
.calculation__result__third__party h4 {
    margin-top: 15px;
    font-size: 20px;
    color: #111;
    text-transform: uppercase;
    font-weight: 800;
}

.uk-checkbox:checked,
.uk-checkbox:indeterminate,
.uk-radio:checked {
    background-color: var(--primary);
    border-color: transparent;
}

.uk-checkbox:checked:focus,
.uk-checkbox:indeterminate:focus,
.uk-radio:checked:focus {
    background-color: var(--primary);
}

.calculation__result table tr td,
.calculation__result table tr th,
.calculation__result__third__party table tr td,
.calculation__result__third__party table tr th {
    padding: 8px 6px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    font-size: 12px;
    font-weight: 600;
    color: #222;
    transition: 0.3s ease;
}

.calculation__result table tr th,
.calculation__result__third__party table tr th {
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
}
.calculation__result table,
.calculation__result__third__party table {
    margin-bottom: 25px;
}

.calculation__result table tbody tr:nth-child(odd),
.calculation__result__third__party table tbody tr:nth-child(odd) {
    background: #fffc;
}
.calculation__result table tr:hover,
.calculation__result__third__party table tr:hover {
    background: #fff;
    transition: 0.3s ease;
}
.calculation__result table tr,
.calculation__result__third__party table tr {
    transition: 0.3s ease;
}
.calculation__result table,
.calculation__result__third__party table {
    border-collapse: collapse;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #f1f1f1;
    width: 100%;
    margin-top: 30px;
}

.site-map--data > ul {
    margin-left: 0;
    padding-left: 0;
}

.site-map--data > ul {
    /* display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px; */
    /* background: #ee822514; */
    /* padding: 30px; */
}

.site-map--data > ul > li {
    /* flex: 1 0 30.7%; */
    list-style: none;
    margin-bottom: 10px;
    /* background: #ee822514;
    padding: 30px; */
}

.site-map--data ul li a {
    font-weight: 500;
    color: #111;
}

.site-map--data ul li a:hover {
    color: var(--primary);
}

.site-map--data > ul > li > a {
    /* font-size: 20px; */
    font-weight: bold;
    /* text-transform: uppercase; */
    color: var(--primary);
    margin-bottom: 12px;
    /* display: block; */
}

.site-map--data > ul > li > ul li {
    margin-bottom: 7px;
}

.site-map--data > ul > li > ul li::marker {
    color: var(--primary);
}

.site-map--data .second_site_map > li {
    list-style: disc;
}

.site-map--data .second_site_map > li > a {
    /* display: block; */
    /* font-size: 18px;
    font-weight: 700; */
    margin-bottom: 12px;
}

.calculation__result table .text-bold td,
.calculation__result__third__party table .text-bold td {
    font-weight: bold !important;
}

.uk-form-icon {
    height: 40px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    white-space: nowrap;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    width: 60px !important;
}

.uk-form-icon:not(.uk-form-icon-flip) ~ .uk-input {
    padding-left: 70px !important;
}

.uk-form-icon ~ .uk-input {
    padding-right: 70px !important;
}

.uk-radio {
    margin-right: 5px;
}

.category {
    font-size: 13px;
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid #ddd;
    font-weight: bold;
    text-transform: uppercase;
}

.footer__sticky {
    display: none;
    position: sticky;
    background: #fef3ea;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #fff;
    padding: 15px 10px;
    z-index: 999;
}

.footer__sticky a {
    font-size: 16px;
    display: block;
    text-transform: none;
    font-weight: 600;
    color: var(--primary);
}

.footer__sticky > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer__sticky > div > div {
    font-size: 12px;
    margin-right: 20px;
    text-transform: uppercase;
    color: var(--secondary);
    position: relative;
    font-weight: bold;
}

.footer__sticky .btn {
    padding: 10px 15px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    background: var(--primary);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.footer__sticky svg,
.footer__sticky img {
    width: 32px;
    height: 32px;
    position: absolute;
    left: 0;
    top: 3px;
}

.single__error__img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.branches__card {
    padding: 15px;
    background: #fef3ea;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}
.branches__card > a {
    display: block;
    text-align: center;
}

.branches__card > a img {
    height: 250px;
    object-fit: contain;
    transition: 1s ease-in-out;
}

.branches__card > a img:hover {
    transform: scale(1.05);
    transition: 1s ease-in-out;
}

.branches__card > a h3 {
    margin-top: 8px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.branches__card > a h3:hover {
    color: var(--primary);
}

.insurance__product__description h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--primary);
    line-height: 1.4;
    margin-top: 0;
    font-weight: 600;
}

.insurance__product__description img {
    width: 100%;
}

.insurance__product__description p {
    font-size: 14px;
    color: #000;
    font-weight: 600;
    text-align: justify;
    line-height: 1.8;
    margin-top: 10px;
}

.insurance__product__description p em {
    color: #000;
}

.insurance__product__description ul, .insurance__product__description ol {
    font-size: 14px;
    color: #000;
    font-weight: 600;
    padding-left: 3rem;
}

.insurance__product__description ul li {
    font-size: 14px;
    color: #000;
    font-weight: 600;
    margin-bottom: 0.75rem;
    list-style-type: none;
    position: relative;
    color: #000;
}

.insurance__product__description ul li p, .insurance__product__description ol li p{
    font-size: 14px;
    color: #000;
    font-weight: 600;
    text-align: justify;
    line-height: 1.8;
    margin-top: 10px;
}

.insurance__product__description ul li::after {
    content: "";
    display: block;
    width: 0.6rem;
    height: 0.6rem;
    background: var(--primary);
    position: absolute;
    top: 0.5rem;
    left: -1.25rem;
}

::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

::-webkit-scrollbar
{
	width: 13px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb
{
	background-color: var(--primary);
	border-radius:10px;
	border:solid 1px #ccc;
}

.team__image{
    width: 100%;
}

.team__image img{
    /* height: 600px; */
    object-fit: cover;
    object-position: center;
}

.province__manager img {
    height: 300px;
    width: auto;
    object-fit: cover;
    object-position: center;
}
