
:root {
    --default: #2A2A2A;
    --primary: #001E61;
    --secondary: #ffdb76;
    --secondary-light: #FFF0BC;
    --swiper-theme-color: #e40e16;
    --gray: #C8C8C8;
    --lightgray: #f9f8f7;
    --font-primary: 'Segoe UI', Arial, Helvetica, sans-serif;
    --font-secondary: 'Poppins', Arial, Helvetica, sans-serif;
}

html,
body {
    height: 100%;
}

body {
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
    font-smoothing: antialiased;
    color: var(--default);
    font-size: 0.9rem;

}

img {
    max-width: 100%;
    height: auto;
}

strong,
b,
.bold {
    font-weight: 700;
}

.medium {
    font-weight: 600 !important;
}

.bolder {
    font-weight: 900 !important;
}

a,
button,
input[type=submit] {
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

a,
.btn-link,
.text-red {
    color: var(--secondary);
}

a:hover,
a:focus {
    color: var(--primary);
}

a:hover,
a:focus,
button,
.btn {
    text-decoration: none;
}

a.text-primary:focus,
a.text-primary:hover {
    color: var(--secondary)!important;
}

label {
    font-weight: normal;
}

iframe {
    width: 100% !important;
}

small,
.small {
    font-weight: inherit;
    font-size: 75%;
}

sub,
sup {
    font-size: 50%;
}

hr {
    border-width: 2px;
    border-color: rgba(0, 0, 0, 0.1) !important;
}

.row-gap {
    margin: 0 -5px;
}

.row-gap [class*="col-"],
.row-gap .col {
    padding: 0 5px;
}

.form-control,
.form-control-lg,
.input-group>.input-group-prepend>.btn {
    box-shadow: none !important;
    color: var(--black);
    font-size: 0.9rem;
    height: 40px;
    font-weight: 400;
    padding: .375rem 1rem;
    border-radius: 0;

    border-color: var(--secondary-light);
}

.form-control-lg {
    font-size: 0.9rem;
    height: 45px;
}

.form-control-sm {
    font-size: 0.725rem;
    height: 36px;
}

.form-control:focus {
    border-color: var(--secondary);
    background-color: var(--white);
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
    background-color: var(--white);
    border-color: var(--secondary-light);
    opacity: 1;
    color: #696969;
}

.form-control.non-editable {
    color: #aaa !important;
    cursor: not-allowed
}

.form-control::placeholder {
    color: var(--black);
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: var(--black);
}

.form-control::-ms-input-placeholder {
    color: var(--black);
}

textarea.form-control {
    min-height: 80px;
    padding: .7rem 1rem;
}

textarea.h-large {
    min-height: 150px;
}

.input-group-lg>.form-control {
    height: 45px;
    border-radius: 0;
    font-size: 0.9rem;
}

.border-secondary { 
    border-color: var(--secondary-light)  !important;
    border-radius: 0;
}

.input-group>.input-group-append>.input-group-text,
.input-group-lg>.input-group-prepend>.input-group-text {
    background: none;
    border: none;
    padding: 0 1rem;
    height: 40px;
    font-size: 1rem;
}

.bg-secondary-light .bootstrap-select>.btn,
.bg-secondary-light .form-control {
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.3);
}

.bg-secondary-light .form-control:focus {
    border-color: var(--secondary);
    background-color: var(--white);
}

.input-group>.input-group-prepend>.btn {
    border-color: var(--white);
    border-width: 1px;
    line-height: 38px;
    padding: 0 1rem;
}

.input-group-lg>.input-group-prepend>.btn {
    height: 45px;
}

select.form-control,
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(../images/down-arrow.svg);
    background-size: 13px;
    background-repeat: no-repeat;
    background-position: calc(100% - 5px) center;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    padding-right: 30px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    outline: 0 !important;
}

select:focus,
option:focus {
    outline: 0 !important;
}

select[multiple].form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    padding-right: 25px;
    height: auto;
}

select::-ms-expand {
    display: none;
}

select.select-primary:focus,
select.select-primary {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    background-image: url(../images/caret-white.svg);
}

.form-group {
    margin-bottom: 1.2rem;
}

.btn {
    border-radius: 40px;
    font-size: 0.9rem;
    padding: 0 20px;
    overflow: hidden;
    box-shadow: none !important;
    font-weight: 600;
    height: 40px;
    border-width: 2px;
    line-height: 35px;
}

.btn-lg {
    font-size: 1rem;
    height: 45px;
    line-height: 41px;
}

.btn-sm {
    font-size: 0.725rem;
    height: 26px;
    line-height: 22px;
}

.btn .fa {
    font-size: 1rem;
}

.btn.rounded-circle {
    width: 40px;
    height: 40px;
    padding: 0;
    line-height: 40px;
}

.btn-link {
    border-radius: 0;
    font-weight: 600;
    text-decoration: underline
}

.btn-link:hover,
.btn-link:focus,
.btn-link:active {
    color: var(--primary);
}

.btn-outline-default,
.bootstrap-select>.btn.btn-outline-default,
.btn-default.disabled,
.btn-default:disabled {
    border-color: var(--black);
    color: var(--black);
}

.btn-outline-default:hover,
.btn-outline-default:focus,
.btn-outline-default:active,
.btn-outline-default:not(:disabled):not(.disabled):active,
.btn-outline-default:not(:disabled):not(.disabled).active,
.show>.btn-outline-default.dropdown-toggle {
    background-color: var(--black);
    border-color: var(--black);
    color: var(--white);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show>.btn-primary.dropdown-toggle,
.bootstrap-select.show>.dropdown-toggle.btn-outline-primary.bs-placeholder,
.bootstrap-select>.dropdown-toggle.btn-outline-primary.bs-placeholder:active,
.bootstrap-select>.dropdown-toggle.btn-outline-primary.bs-placeholder:focus,
.bootstrap-select>.dropdown-toggle.btn-outline-primary.bs-placeholder:hover,
.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.show>.btn-outline-primary.dropdown-toggle {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.btn-outline-primary,
.bootstrap-select>.btn.btn-outline-primary,
.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.show>.btn-outline-primary.dropdown-toggle {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.btn-outline-secondary,
.bootstrap-select>.btn.btn-outline-secondary,
.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
    border-color: var(--secondary);
    color: var(--default);
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus,
.btn-outline-secondary:active,
.btn-outline-secondary:not(:disabled):not(.disabled):active,
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.show>.btn-outline-secondary.dropdown-toggle {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.btn-secondary,
.btn-secondary.disabled,
.btn-secondary:disabled {
    background-color: var(--secondary);
    border-color: var(--secondary)
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active,
.show>.btn-secondary.dropdown-toggle {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.btn-default,
.btn-default.disabled,
.btn-default:disabled {
    background-color: var(--gray);
    border-color: var(--gray)
}

.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default:not(:disabled):not(.disabled):active,
.btn-default:not(:disabled):not(.disabled).active,
.show>.btn-default.dropdown-toggle {
    background-color: var(--black);
    border-color: var(--black);
    color: var(--white);
}

.border-light {
    border-color: #ccc !important;
}

.text-muted {
    color: #a2a2a2 !important;
}

.section {
    padding: 60px 0;
}

.section-sm {
    padding: 40px 0;
}

.regular {
    font-weight: 400 !important;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    font-family: var(--font-secondary);
}

.h1,
h1 {
    font-size: 2.5rem;
}

.h2,
h2 {
    font-size: 2rem;
}

.h3,
h3 {
    font-size: 1.6rem;
}

.h4,
h4 {
    font-size: 1.4rem;
}

.h5,
h5 {
    font-size: 1.2rem;
}

hr {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    border-color: #eee;
}

.bg-default {
    background-color: var(--default);
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.bg-secondary-light {
    background-color: var(--secondary-light) !important;
}

.bg-secondary-lighter {
    background-color: rgba(255, 240, 188, 0.3) !important;
}

.bg-dark {
    background-color: var(--primary) !important;
}

.bg-gray {
    background-color: var(--lightgray) !important;
}

.bg-lightgray {
    background-color: #f8f8f8 !important;
}

.text-primary,
.blue {
    color: var(--primary) !important
}

.text-secondary {
    color: var(--secondary) !important
}

.text-secondary-light {
    color: var(--secondary-light) !important
}

.red {
    color: red !important
}

.text-default {
    color: var(--default) !important
}

.text-black {
    color: var(--default) !important
}

.text-large {
    font-size: 1rem;
}

.font-primary {
    font-family: var(--font-primary) !important
}

.font-secondary {
    font-family: var(--font-secondary) !important
}

@-webkit-keyframes autofill {
    to {
        background: transparent;
    }
}

input:-webkit-autofill {
    -webkit-animation-name: autofill;
    -webkit-animation-fill-mode: both;
}

.relative {
    position: relative;
}


/** Fonts **/

@font-face {
    font-family: 'Segoe UI';
    src: url('../fonts/SegoeUI.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Segoe UI';
    src: url('../fonts/SegoeUI-Semibold.woff2') format('woff2'), url('../fonts/SegoeUI-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Segoe UI';
    src: url('../fonts/SegoeUI-Bold.woff2') format('woff2'), url('../fonts/SegoeUI-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


/** Fonts **/

.btn-light,
.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show>.btn-light.dropdown-toggle {
    color: var(--default);
    background-color: var(--white);
    border-color: var(--white);
}

.btn-light:hover {
    background-color: var(--secondary-light);
    border-color: var(--secondary);
}

.bootstrap-select>.btn {
    background-color: #FFFBEE;
    border: 1px solid var(--secondary-light);
    box-shadow: none !important;
    color: var(--black) !important;
    text-transform: none;
    font-weight: 400;
    border-radius: 0;
    padding-left: 1rem;
    padding-right: 30px;
    font-size: 0.9rem;
    height: 40px;
    line-height: 38px;
}

.bootstrap-select>.btn:focus,
.bootstrap-select>.btn:active,
.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show>.btn-light.dropdown-toggle {
    border-color: var(--secondary);
}

.bootstrap-select.border-0>.btn {
    border: none;
    background: #fff;
}

.dropdown .dropdown-toggle:after {
    content: '\f107';
    font-family: 'FontAwesome';
    border: none;
    line-height: normal;
    font-size: 18px;
    margin-top: -15px;
    margin-left: 1rem;
}

.dropup .dropdown-toggle:after {
    content: '\f106';
}

.bootstrap-select .no-results {
    padding: 1rem;
    margin: 0;
    font-size: .85rem;
    background: var(--white);
    color: var(--default);
}

.bootstrap-select>.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary {
    color: var(--white);
}

.bootstrap-select>.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary {
    color: var(--white);
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
    outline: 0 !important;
}

.bootstrap-select>.dropdown-toggle.bs-placeholder,
.bootstrap-select>.dropdown-toggle.bs-placeholder:active,
.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,
.bootstrap-select>.dropdown-toggle.bs-placeholder:hover {
    color: #777;
}

.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.dropdown-menu {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    border: none;
    padding: 0.2rem 0;
    margin: 0;
}

.dropdown-item-text {
    color: var(--primary);
    padding: .5rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
}

.dropdown-item,
.dropdown-menu a {
    color: var(--default);
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    white-space: inherit;
    display: block;
}

.dropdown-item.active,
.dropdown-item.active:hover {
    background: none;
    font-weight: 600;
    color: var(--primary);
}

.bootstrap-select .dropdown-header {
    color: var(--default);
    font-weight: 500;
}

.bs-actionsbox,
.bs-donebutton,
.bs-searchbox {
    padding: 10px;
}

.bootstrap-select.form-control-lg .dropdown-toggle {
    height: 45px;
}

.bootstrap-select.form-control-lg .dropdown-toggle .filter-option-inner-inner {
    padding: 3px 0;
}

.bootstrap-select.form-control-lg .dropdown-toggle::after {
    width: auto;
    margin-top: -18px;
}

.rounded {
    border-radius: 1rem!important;
}

.rounded-top {
    border-top-left-radius: 1rem!important;
    border-top-right-radius: 1rem!important;
}

.rounded-bottom {
    border-bottom-right-radius: 1rem!important;
    border-bottom-left-radius: 1rem!important;
}

.rounded-left {
    border-top-left-radius: 1rem!important;
    border-bottom-left-radius: 1rem!important;
}

.rounded-right {
    border-top-right-radius: 1rem!important;
    border-bottom-right-radius: 1rem!important;
}

.dropdown-item:focus,
.dropdown-item:hover {
    background-color: var(--secondary-light);
    color: var(--default);
}

.btn-radio input[type="radio"]+label,
.btn-checkbox input[type="checkbox"]+label {
    position: relative;
    padding: 0 0 0 25px;
    margin: 0;
    cursor: pointer;
    display: inline-block;
    color: var(--default);
    font-weight: normal;
    min-height: 20px;
}

.btn-radio input[type="radio"],
.btn-checkbox input[type="checkbox"] {
    display: none;
}

.btn-checkbox input[type="checkbox"]+label:before {
    border: 2px solid var(--secondary);
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    left: 0;
    position: absolute;
    top: 2px;
    background: transparent;
}

.btn-checkbox input[type="checkbox"]:checked+label:before {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn-checkbox input[type="checkbox"]+label:after {
    content: '';
    position: absolute;
    top: 7px;
    left: 4px;
    width: 10px;
    height: 5px;
    border: solid transparent;
    border-width: 0 0 2px 2px;
    line-height: 0;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -ms-transform: rotate(-45deg) scale(2);
    -webkit-transform: rotate(-45deg) scale(2);
    transform: rotate(-70deg) scale(2);
}

.btn-checkbox input[type="checkbox"]:checked+label:after {
    -ms-transform: rotate(-45deg) scale(1);
    -webkit-transform: rotate(-45deg) scale(1);
    transform: rotate(-45deg) scale(1);
    border-color: var(--white);
}

.btn-radio input[type="radio"]+label:before {
    border: 2px solid var(--secondary);
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    left: 0;
    position: absolute;
    top: 2px;
    border-radius: 50%;
}

.btn-radio input[type="radio"]:checked+label:before {
    border-color: var(--secondary);
}

.btn-radio input[type="radio"]+label:after {
    width: 10px;
    height: 10px;
    display: inline-block;
    position: absolute;
    top: 6px;
    left: 4px;
    line-height: 0;
    background: var(--secondary);
    content: '';
    border-radius: 50%;
    -ms-transition-duration: 0.2s;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
}

.btn-radio input[type="radio"]:checked+label:after {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
}

.btn-radio input[type="radio"]:disabled+label,
.btn-checkbox input[type="checkbox"]:disabled+label {
    opacity: 0.5;
}

.checkbox-inline,
.radio-inline {
    padding: 0 20px 15px 0;
}

.checkbox-inline+.checkbox-inline,
.radio-inline+.radio-inline {
    margin-top: 0;
    margin-left: 0;
}

.radio-group {
    padding-top: 8px;
}

.radio-group.lg {
    padding-top: 12px;
}

.icon-span-filestyle {
    display: none;
}

.group-span-filestyle {
    background: #050708;
}

.group-span-filestyle .btn,
.group-span-filestyle .btn-default:active:focus,
.group-span-filestyle .btn-default:active:hover {
    color: #fff;
    background: none;
    border: none;
}

.group-span-filestyle .btn:before {
    display: none;
}

.ui-datepicker .ui-datepicker-title select {
    height: auto;
}

.input-group {
    z-index: 0;
}

.title-head .title {
    margin: 0;
}

.title-head p {
    margin: 10px 0 0;
}

.hero-img {
    position: relative;
    overflow: hidden;
    background-color: var(--secondary-light);
}

.cover-img {
    position: relative;
    overflow: hidden;
    padding-bottom: 60%;
    height: 100px;
    background-color: var(--secondary-light);
    display: block;
}

.cover-img.square {
    padding-bottom: 85%;
}

.cover-img.pb-100 {
    padding-bottom: 100%;
}

.cover-img.type-video {
    padding-bottom: 55%;
}

.cover-img.type-video:before {
    content: '';
    width: 100%;
    height: 100%;
    background: url(../images/play-icon.svg) no-repeat center rgba(0, 0, 0, 0.2);
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    background-size: 80px;
    transition-duration: 0.3s;
}

.cover-img.type-video:hover:before {
    background-size: 90px;
    background-color: rgba(0, 0, 0, 0.4)
}

.hero-img img,
.hp-swiper img,
.img-cover,
.cover-img img,
.hero-banner-img img,
.author-avtar-img img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: left center;
    width: 100%;
    height: 100%;
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 0;
}

.swiper-pagination.static {
    position: static;
    margin: 15px 0 0;
}

.swiper-pagination-bullet {
    padding: 20px 0;
    width: 40px;
    height: 4px;
    background: none;
    position: relative;
    opacity: 1;
}

.swiper-pagination-bullet:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.swiper-pagination-bullet-active:before {
    background: var(--secondary);
}


/** Header **/

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, .1);
    z-index: 100;
    height: 125px;
    transition-duration: 0.6s;
    background: var(--white);
}

.is-fixed #header {
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, .1);
    -webkit-transform: translate(0, -35px);
    transform: translate(0, -35px);
    height: 113px;
}

.header-primary {
    padding: 20px 40px;
    transition-duration: 0.6s;
}

.is-fixed #header .header-primary {
    padding: 15px 40px;
}

.header-secondary {
    padding: 0 40px;
}

#step_1,#step_2 {
    display:none;
}
#step_1.is-active,#step_2.is-active {
    display:block;
}

.invalid-feedback {
     display: block;
}

.header-secondary .nav-link {
    color: var(--white);
    font-size: 0.8rem;
    opacity: 0.7
}

.header-secondary .nav-link:hover {
    opacity: 1
}

.navbar-brand {
    padding: 0;
    margin: 0;
    max-width: 220px;
}

#navbar .nav-item {
    margin-right: 1.8rem;
    position: relative;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.77rem;
}

#navbar .nav-link,
.scrollspy-nav .nav-link {
    color: var(--black);
    position: relative;
}

#navbar .nav-link:after,
.scrollspy-nav .nav-link:after {
    position: absolute;
    content: '';
    width: 0;
    transition-duration: 0.4s;
    left: 0;
    bottom: 0;
    height: 3px;
    background-color: var(--secondary);
}

#navbar .navbar-nav .nav-item:hover .nav-link:after,
#navbar .nav-link:hover:after,
#navbar .nav-item.active .nav-link:after,
.scrollspy-nav .nav-link:hover:after,
.scrollspy-nav .nav-link.active:after {
    width: 100%;
}

#navbar .nav-item .menu-icon {
    min-width: 30px;
    display: inline-block;
}

#navbar .nav-item .menu-icon img {
    max-height: 18px;
    width: auto;
}

.nav-user-img {
    width: 50px;
    height: 50px;
    overflow: hidden;
    position: relative;
    border: solid 1px var(--secondary);
}

.nav-user-img.lg {
    width: 120px;
    height: 120px;
}

.nav-user-title {
    max-width: 80px;
}


/** Header **/


/** Footer **/

.vertical-line {
    background: rgba(79, 42, 111, 0.35);
    width: 1px;
}

.footer {
    color: rgba(255, 240, 188, 0.5);
    position: relative;
    overflow: hidden;
}

.footer .container {
    position: relative;
    z-index: 2;
}


.social-connect li a {
    color: var(--white);
    display: inline-block;
    padding: 0.5rem 0.7rem;
    font-size: 1.4rem;
}

.social-connect li a:hover {
    opacity: 0.4;
}

.footer-nav li a {
    padding: 0.3rem 0;
    color: var(--default);
    opacity: 0.6;
}

.footer-nav li a:hover {
    opacity: 1;
}

.footer-info-block {
    background: rgba(0, 24, 75, 0.7);
}

.back-to-top {
    padding: 0 1rem;
}


/** Footer **/

.service-tiles .card-tile {
    padding: 1.5rem 1.5rem;
    color: var(--default);
}

.service-tiles .card-tile:hover {
    background-color: var(--secondary-light);
}

.service-tiles .card-tile {
    border-right: solid 1px var(--gray);
}

.service-tiles .card-tile:nth-child(4n),
.service-tiles .card-tile:nth-child(5n), 
.service-tiles .card-tile:nth-child(7n), 
.service-tiles .card-tile:nth-child(6n) {
    border-top: solid 1px var(--gray);
    
}

.rate-value .h1 {
    font-size: 3rem;
}

.rate-value .h1,
.rate-value .h3 {
    line-height: 0.8;
}

.intr-rate .rate-value {
    border-right: solid 1px rgba(79, 42, 111, 0.3);
    padding-right: 10px;
}

.rate-extn {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.rate-extn .sup {
    font-size: 100%;
    line-height: 1.2
}

.rate-extn .sub {
    font-size: 50%;
}

.sec-brocker {
    position: relative;
    overflow: hidden;
}

.sec-brocker:before {
    content: '';
    width: 30%;
    height: 100%;
    background: url(../images/icon-white.svg) no-repeat -150px -20px;
    position: absolute;
    top: 0;
    left: 0;
    background-size: 100%;
}


.vector-left,
.sec-rate {
    position: relative;
    overflow: hidden;
}

.vector-left .container {
    position: relative;
    z-index: 2;
}

.vector-left:before {
    content: '';
    width: 48%;
    height: 100%;
    background: url(../images/icon-white.svg) no-repeat 0 -30px;
    position: absolute;
    top: 0;
    left: -30%;
    background-size: 100%;
}

.hp-hero-slider {
  position: relative;
}

.hp-hero-slider .list{ margin: 0px; padding: 0px;}

.hp-hero-slider .list li{
   color: #fff;
   list-style: none;
   padding: 4px;
   font-size: 15px;
 
}

.hp-hero-slider:before {
    content: '';
    background: rgb(2, 0, 36);
    opacity: 0.4;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}



#breadcrumb,
.container-lg {
    padding: 0 40px;
}

.breadcrumb {
    padding: 10px 0;
    border-bottom: solid 1px var(--gray);
    background: none;
    border-radius: 0
}

.icon-sm {
    height: 54px;
    width: auto;
}

.icon-xs {
    height: 50px;
    width: auto;
}

.customer-says .rich-text {
    line-height: 1.4;
}

.customer-says .cover-img {
    padding-bottom: 100%;
}

.counter-list h3 {
    color: var(--primary);
    font-weight: bold;
    position: relative;
}

.counter-list {
    counter-reset: list;
}

.counter-list [class*="col-"] h3:before {
    counter-increment: list;
    content: "0" counter(list);
    display: block;
    font-size: 4.5rem;
    opacity: 0.05;
    position: relative;
    top: 35px;
}

.sec-video {
    position: relative;
    overflow: hidden;
}

.sec-video:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url(../images/icon-white.svg) no-repeat 240% -30px var(--secondary-light);
    background-size: 70%;
}

.accordion .card {
    border: none;
}

.accordion .card-body {
    padding: 1.25rem 0;
}

.accordion .card-header {
    border: none;
    padding: 0;
    background: none;
}

.accordion .card-header .btn {
    padding: 1rem 1.6rem 1rem 0;
    height: auto;
    white-space: normal;
    line-height: 1.2;
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--black);
    position: relative;
    text-decoration: none;
    border: none;
}

.accordion .card-header .btn:after {
    content: '\f107';
    font-family: 'FontAwesome';
    position: absolute;
    right: 0;
    top: 1rem;
    transform: rotate(180deg);
    transition-duration: 0.4s;
}

.accordion .card-header .btn.collapsed:after {
    transform: rotate(0deg);
}

.accordion .card-header .btn:hover {
    color: var(--secondary);
}


.flex-column.nav-pills .nav-link.active {
    background: var(--secondary-light);
    font-weight: 600;
    border-left-color: var(--secondary);
}

.tab-search .form-control {
    background: url(../images/search-icon.svg) no-repeat 10px center transparent;
    border: none;
    padding-left: 40px;
    background-size: 18px;
}

.tab-search .form-control:focus {
    background-color: transparent;
}

.tab-content h2,
.tab-content h3,
.tab-content h4,
.tab-content h5 {
    color: var(--primary);
    font-weight: bold;
    margin: 1.5rem 0 1rem;
}

.flex-column.nav-pills .nav-link { border-radius: 0; color: var(--black); padding: 1rem 1rem; border-left: solid 4px transparent; }
.flex-column.nav-pills .nav-link.active { background: var(--secondary-light); font-weight: 600; border-left-color: var(--secondary);}
.tab-search .form-control { background: url(images/search-icon.svg) no-repeat 10px center transparent; border:none; padding-left: 40px; background-size:18px; }
.tab-search .form-control:focus { background-color: transparent;}

.tab-content h2, .tab-content h3, .tab-content h4, .tab-content h5 { color: var(--primary); font-weight: bold; margin: 1.5rem 0 1rem;} 
.separator-left { border-left: solid 2px var(--gray);}

.vertical-content { width: 100%; float:left;}
.vertical-content ul li {
    float: left;
    display: block;
    padding: 5px;
    width: 33%;
    padding: 0 0 1.5rem 2.5rem;
    position: relative;
    background: url(../images/sign-icon.svg) no-repeat 0 0;
    background-size: 24px;
}

.separator-left {
    border-left: solid 2px var(--gray);
}

.nav-tabs {
    border: none;
}

.nav-tabs .nav-item {
    margin-right: 2rem;
}

.nav-tabs .nav-link,
.nav-tabs .nav-link.active {
    background: none;
    padding: 0.5rem 0;
    color: var(--default);
    border: none;
    position: relative;
    font-size: 1rem;
}

.nav-tabs .nav-link:before {
    content: '';
    width: 0;
    height: 3px;
    background: var(--secondary);
    transition-duration: 0.4s;
    position: absolute;
    bottom: 0;
    left: 0;
}

.nav-tabs .nav-link.active {
    color: var(--black);
}

.nav-tabs .nav-link.active:before {
    width: 100%;
}

.step-nav {
    border-bottom: solid 1px var(--secondary-light);
}

.step-nav li {
    margin-right: 1.5rem;
    position: relative;
    padding: 0 0 1rem;
}

.step-nav li a {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
}

.step-nav .text {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    padding-left: 0.7rem;
    display: none;
}

.step-nav .text small {
    display: block;
    font-size: 80%;
}

.step-nav .icon {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-light);
    border-radius: 100%;
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    position: relative;
}

.step-nav .icon svg {
    height: 24px;
    opacity: 0.2
}

.step-nav li.is-active:before {
    content: '';
    height: 3px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--secondary);
}

.step-nav li.is-active .text {
    display: block;
}

.step-nav li.is-active .icon {
    background-color: var(--secondary);
}

.step-nav li.is-active .icon svg {
    opacity: 1;
}

.step-nav li.is-active .icon svg path,
.step-nav li.is-active .icon svg line,
.step-nav li.is-active .icon svg circle,
.step-nav li.is-active .icon svg ellipse,
.step-nav li.is-active .icon svg rect {
    stroke: var(--white);
}

.step-nav li.is-complete .icon svg {
    opacity: 1;
}

.step-nav li.is-complete .icon:before {
    content: '';
    width: 20px;
    height: 20px;
    background-color: #5EBD00;
    position: absolute;
    top: -5px;
    right: -5px;
    border-radius: 100%;
}

.step-nav li.is-complete .icon:after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    position: absolute;
    top: -1px;
    right: 2px;
    transform: rotate(45deg)
}

.form-list-group h4 {
    font-size: 1rem;
    line-height: 1.6;
}

.form-list-group .list-group-item.head {
    position: sticky;
    top: 125px;
    z-index: 10;
}

.is-fixed .form-list-group .list-group-item.head {
    top: 78px;
}

.form-list-group .arrow-icon {
    min-width: 25px;
}

.form-list-group .nav-pills .nav-link {
    padding: 1rem 1.5rem;
}

.form-list-group .nav-pills .nav-link.active {
    background-color: rgba(255, 255, 255, 0.4)
}

.list-group-flush .list-group-item {
    margin-bottom: 0;
}

.nav-column .nav-link {
    padding-left: 0;
    color: var(--default);
}

.nav-column .nav-link:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.enquire-card {
    overflow: hidden;
}

.enquire-card:before {
    content: '';
    width: 42%;
    height: 100%;
    background: url(../images/icon-white.svg) no-repeat 0 -20px;
    position: absolute;
    top: 0;
    left: -25%;
    background-size: 100%;
}

.enquire-card:after {
    content: '';
    width: 35%;
    height: 100%;
    background: url(../images/icon-white.svg) no-repeat 0 0;
    position: absolute;
    top: 10%;
    right: -28%;
    background-size: 100%;
}

.drop-file {
    position: relative;
    background: #FFFBEE;
    border-radius: 0;
    border: dashed 2px var(--secondary);
    cursor: pointer;
    min-height: 140px;
    padding: 0 1rem;
    text-align: center;
}

.drop-file .custom-file-label {
    border-radius: 0;
    border: none;
    height: auto;
    padding: 0;
    margin: 0;
    color: var(--secondary);
    font-weight: 500;
    background: none;
    text-decoration: underline;
    text-align: center;
    position: static;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.drop-file .custom-file-label:focus,
.drop-file .custom-file-label:active {
    outline: none;
    box-shadow: none;
}

.drop-file .custom-file-label:after {
    display: none;
}

.drop-file input {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 2;
}

.custom-file-input:focus~.custom-file-label {
    box-shadow: none;
}

.external-link {
    color: #3F12F8;
    font-weight: 600;
    display: inline-block;
    padding-right: 24px;
    background: url(../images/external-icon.svg) no-repeat 100% 3px;
    background-size: 16px;
}

.card {
    border-radius: 0;
}

.scrollspy-nav {
    padding: 0 40px;
    transition-duration: 0.4s;
    background: var(--white);
    position: sticky;
    top: 125px;
    z-index: 10;
}

.is-fixed .scrollspy-nav {
    top: 75px;
}

.scrollspy-nav.is-fixed {
    background: #f9f9f9;
}

.scrollspy-nav .nav-item {
    margin: 0 2rem 0 0;
    transition-duration: 0.4s;
}

.scrollspy-nav .nav-link {
    padding: 1rem 0;
}

.scrollspy-nav .nav-link.btn {
    padding: 0 1rem;
}

.scrollspy-nav .nav-link.btn:hover,
.scrollspy-nav .nav-link.btn:focus {
    background: var(--secondary);
    color: var(--white);
}

.scrollspy-nav .nav-item.last {
    margin-top: 8px;
}

.scrollspy-nav .nav-link.btn:after {
    display: none;
}

.card-link:hover,
.card-link.active {
    background-color: var(--secondary-light);
}

.underline {
    border-bottom: solid 2px var(--secondary);
    padding-bottom: 0.5rem;
}

.content-block p,
.content-block ul,
.content-block ul,
.content-block h2,
.content-block h3,
.content-block h4,
.accordion .card-body p,
.accordion .card-body ul,
.accordion .card-body ol,
.accordion .card-body h2,
.accordion .card-body h3,
.accordion .card-body h4,
.accordion .card-body h5 {
    margin: 0 0 1.5rem;
}

.content-block ul,
.accordion .card-body ul {
    list-style: none;
    padding: 0;
}

.content-block ul li,
.accordion .card-body ul li {
    padding: 0 0 1.5rem 2.5rem;
    position: relative;
    background: url(../images/sign-icon.svg) no-repeat 0 0;
    background-size: 24px
}

.false-block ul li {
    background: url(../images/wrong-icon.svg) no-repeat 0 0;
    background-size: 24px
}

.faq-accordion .card-header .btn {
    padding: 1.4rem 1.6rem;
    background-color: var(--secondary-light);
}

.faq-accordion .card-header .btn.collapsed {
    background-color: transparent
}

.faq-accordion .card-header .btn:after {
    right: 1.6rem;
    top: 1.3rem
}

.faq-accordion .card-body {
    padding: 1.2rem 1.6rem;
}

.faq-accordion .card+.card {
    border-top: solid 1px #ddd;
}

.payment-plan-row .payment-plan-item {
    margin-right: 2rem;
}

.payment-plan-row .payment-plan-item:last-child {
    margin-right: 0;
}

.payment-plan-row .payment-plan-item:last-child .value {
    padding-right: 0;
    border-right: none
}

.payment-plan-row .payment-plan-item .value {
    border-right: solid 1px rgba(79, 42, 111, 0.35);
    padding-right: 2rem;
}

.payment-plan-row .payment-plan-item .h1 {
    font-size: 3rem;
    line-height: 1
}

.info-icon {
    cursor: pointer;
    background: url(../images/info-icon.svg) no-repeat center;
    background-size: 20px;
    width: 20px;
    height: 20px;
    display: inline-block;
}

.input-group-lg.input-with-label>.input-group-prepend>.input-group-text.label-extn {
    line-height: 1;
    padding-top: 8px;
}

.label-extn small {
    font-size: 60%;
}

.input-group.input-with-label>.input-group-prepend {
    border: none;
    position: absolute;
    right: 0;
    z-index: 10;
}

.input-group.input-with-label>.input-group-append {
    border: none;
    position: absolute;
    left: 0;
    z-index: 10;
}

.input-group.input-with-label>.custom-select:not(:last-child),
.input-group.input-with-label>.form-control:not(:last-child) {
    padding-right: 50px;
}

.input-group.input-with-label>.custom-select:not(:first-child),
.input-group.input-with-label>.form-control:not(:first-child) {
    padding-left: 50px;
}

.rates-swiper .swiper-slide {
    min-height: 100%;
    height: auto
}

.card-resource,
.card-resource .card-body {
    height: 100%;
    border: none;
    background: none;
}

.card-resource .card-header,
.card-resource .card-footer,
.card-resource .card-body {
    padding: 0;
    background: none;
    border: none;
}

.resource-row:before,
.resource-row:after,
.tsmnl-row:before {
    content: '';
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--white);
    z-index: 2
}

.resource-row:after {
    width: 100%;
    height: 1px;
    top: inherit;
    bottom: 0;
}

.resource-row .col-item {
    border: solid var(--gray);
    border-width: 0 0 1px 1px;
}

.resource-row .col-item:hover {
    background-color: var(--secondary-light);
}

.input-qty .btn {
    background-color: rgba(255, 255, 255, 0.3);
    border: solid 1px var(--white);
    border-radius: 0;
    padding: 0 1.2rem;
    height: auto;
}

.input-group-lg.input-qty .btn {
    font-size: 1.2rem;
    line-height: 43px;
}

.input-group-lg.input-qty .qty-minus {
    border-right: 0;
}

.input-group-lg.input-qty .qty-plus {
    border-left: 0;
}

.switch-radio .btn-radio {
    width: 100%;
}

.switch-radio .btn-radio input[type="radio"]+label:before,
.switch-radio .btn-radio input[type="radio"]+label:after {
    display: none
}

.switch-radio .btn-radio input[type="radio"]+label {
    background-color: rgba(255, 255, 255, 0.3);
    border: solid 1px var(--white);
    line-height: 43px;
    padding: 0 1.2rem;
    display: block;
    text-align: center;
}

.switch-radio .btn-radio input[type="radio"]:checked+label {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.result-plan-row .result-plan-item {
    border-right: solid 1px rgba(79, 42, 111, 0.35)
}

.result-plan-row .result-plan-item:last-child {
    border-right: none
}

.result-card .h1 {
    font-size: 2.8rem;
}

.result-card h5,
.result-card .h5 {
    font-size: 0.85rem;
}

.calc-swiper .swiper-slide {
    min-height: 100%;
    height: auto
}

.table td,
.table th {
    padding: 0.5rem 1.5rem;
}

.bg-secondary-light .table tbody {
    background: rgba(255, 255, 255, 0.2);
}

.bg-secondary-light .table tbody td {
    color: var(--primary);
    border-color: rgba(0, 0, 0, 0.05)
}

.bg-secondary-light .table thead {
    background: rgba(255, 255, 255, 0.5);
}

.bg-secondary-light .table thead th {
    border: none;
}

.bg-secondary-light .table tr:hover {
    background: rgba(255, 255, 255, 1);
}

.separate-left {
    border-left: solid 1px rgba(79, 42, 111, 0.35);
}

.bg-secondary-light .bg-light {
    background: rgba(255, 255, 255, 0.2) !important;
}

.collapse-head {
    border: none;
    z-index: 2;
    position: relative;
}

.btn-collapse {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    border-radius: 0;
    background: none;
}

.btn-collapse:before,
.btn-collapse:after {
    content: '';
    width: 12px;
    height: 2px;
    background: var(--default);
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0px 0 0 -6px;
    transition-duration: 0.4s;
}

.btn-collapse:after {
    opacity: 0;
}

.btn-collapse.collapsed:after {
    opacity: 1;
    transform: rotate(90deg);
}

.btn-collapse:after {
    transform: rotate(0deg);
}

.collapse-head h3 {
    font-size: 1.4rem;
    border-bottom: none;
}

.chart-label .circle {
    width: 8px;
    height: 8px;
    border-radius: 100%;
    margin-right: 1rem;
}

.chart-label .circle.blue {
    background: #000093;
}

.chart-label .circle.red {
    background: #f00;
}

.rating-board {
    width: 300px;
    height: 300px;
    position: relative;
    display: block;
    background: url(../images/rating-board.png) no-repeat center;
}

.rating-board .label {
    position: absolute;
    top: 50%;
    width: 68%;
    left: 45px;
}

.rating-stick {
    width: 159px;
    height: 36px;
    background: url(../images/rating-stick.png) no-repeat 60px 0;
    position: absolute;
    top: 42%;
    left: 25%;
    transform: rotate(0deg);
    transition-duration: 0.4s;
}

.rating-stick.is-no {
    transform: rotate(-154deg);
}

.rating-stick.is-low {
    transform: rotate(-118deg);
}

.rating-stick.is-med {
    transform: rotate(-82deg);
}

.rating-stick.is-high {
    transform: rotate(-42deg);
}

.rating-stick.is-max {
    transform: rotate(0deg);
}

.time-group strong {
    min-width: 70px;
    display: inline-block;
}

.tsmnl-row {
    position: relative;
}

.tsmnl-row:before {
    content: '';
}

.tsmnl-items {
    border: solid var(--gray);
    border-width: 0 0 1px 1px;
}

.floated-label {
    position: relative;
    margin-bottom: 30px
}

.floated-label .control-label {
    font-size: 1rem;
    pointer-events: none;
    position: absolute;
    transform: translate3d(15px, 12px, 0) scale(1);
    transform-origin: left top;
    transition: 240ms;
}

.floated-label.active .control-label,
.floated-label.focused .control-label {
    transform: scale(.7) translate3d(20px, 6px, 0)
}

.floated-label .form-control {
    align-self: flex-end;
    text-overflow: ellipsis;
    height: 50px;
    padding: 20px 15px 10px;
    font-weight: 600;
    color: var(--black);
    font-size: 1rem;
}

.floated-label .form-control::-webkit-input-placeholder {
    color: transparent;
    transition: 240ms
}

.floated-label .form-control:focus::-webkit-input-placeholder {
    transition: none
}

.floated-label .form-group.focused .form-control::-webkit-input-placeholder {
    color: #bbb
}

.table thead th {
    background: var(--secondary-light);
    border: none;
    font-family: var(--font-secondary);
    color: var(--black);
}

.table tbody td {
    border: solid rgba(0, 0, 0, 0.05);
    border-width: 0 0 1px;
}

.table.align-middle tbody td {
    vertical-align: middle
}

.table.table-hover tbody tr:hover {
    background-color: #FFFCF1;
}

.table-striped tbody td {
    border: none;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: var(--white);
}

.table-striped tbody tr:nth-of-type(even) {
    background-color: rgba(255, 240, 188, 0.5)
}

.table-bordered tbody td {
    border: solid var(--secondary-light);
    border-width: 0 1px 1px 0;
}

.table-bordered {
    border: solid var(--secondary-light);
    border-width: 1px 0 0 1px;
}

.log-table .btn {
    opacity: 0;
}

.log-table tbody tr:hover .btn {
    opacity: 1;
}

.article-list .list-group-item:first-child {
    border-top: 0;
}

.sec-compare {
    overflow: hidden;
}

.sec-compare .container {
    position: relative;
    z-index: 2;
}

.sec-compare:before {
    content: '';
    width: 50%;
    height: 100%;
    background: var(--secondary-light);
    position: absolute;
    top: 0;
    left: 0;
}

.sec-compare:after {
    content: '';
    width: 50%;
    height: 100%;
    background: url(../images/icon-white.svg) no-repeat center;
    position: absolute;
    top: 15%;
    left: -15%;
    opacity: 0.2;
    background-size: 70%;
}

.author-avtar-img {
    width: 52px;
    height: 52px;
    position: relative;
    overflow: hidden;
}

.author-avtar-img .avtar-name {
    line-height: 52px;
    display: block;
}

.reply-text a {
    text-decoration: underline;
}

.input-group-text {
    background-color: #fff0bc;
    border: 1px solid #ffde7f;
}
.custom-file-label::after {
    background-color: #fff0bc;
}
.attach-link {
    max-width: 220px;
    position: relative;
    display: inline-block;
    padding: 0 20px 0 40px;
    background: url(../images/download-icon.svg) no-repeat right center;
    color: var(--black);
    text-decoration: none !important;
    line-height: 1.2;
    margin: 0 20px 15px 0;
}

.attach-link:before {
    content: '';
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
}

.attach-link[href$=".doc"]:before,
.attach-link[href$=".docx"]:before {
    background: url(../images/doc-icon.png) no-repeat 0 0;
}

.attach-link[href$=".pdf"]:before {
    background: url(../images/pdf-icon.png) no-repeat 0 0;
}

.attach-link[href$=".txt"]:before {
    background: url(../images/file-icon.png) no-repeat 0 0;
}

.comment-input {
    height: 50px;
    padding: 0 0 0 10px;
}

.comment-box .btn-submit {
    min-width: 140px;
}

.attach-btn {
    min-width: 45px;
    position: relative;
}

.attach-btn input {
    width: 0;
    height: 0;
}

.attach-btn label {
    cursor: pointer;
}

.table-form thead th {
    padding: 1rem;
}

.table-form tbody td {
    padding: 0;
}

.custom-upload .btn {
    position: relative;
    overflow: hidden;
}

.custom-upload input {
    position: absolute;
    font-size: 50px;
    opacity: 0;
    right: 0;
    top: 0;
}


/* NEWS AND MEDIA CSS */

.nav-breadcrumb {
    padding: 20px 40px;
}

.nav-breadcrumb .breadcrumb {
    padding-top: 0;
}

.breadcrumb-item {
    font-size: 16px;
    color: var(--black);
}

.breadcrumb-item a {
    color: var(--black);
    text-decoration: underline;
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
    padding: 0 1rem;
}

.mb-50 {
    margin-bottom: 50px;
}

.main-news-head {
    margin-bottom: 20px;
}

.main-news-head .top-head {
    margin-right: 25px;
    display: flex;
    align-items: center;
}

.main-news-head .top-head span {
    margin-left: 10px;
    color: var(--primary);
    font-weight: 600;
}

.main-news-head .date img {
    height: auto;
}

.category span {
    background: #b6510d;
    border-radius: 40px;
    padding: 2px 10px;
    color: #fff !important;
    font-weight: 100 !important;
}

.news-content h3 {
    width: 510px;
    color: #001e61;
    margin-bottom: 20px;
}

.news-content p {
    font-size: 16px;
    width: 82%;
    line-height: 30px;
}

.read-more {
    color: var(--secondary);
    text-decoration: underline;
    font-weight: 700;
    text-transform: capitalize;
}

.relative-post {
    padding: 40px 0;
}

.relative-post .relative-post-head {
    margin-bottom: 30px;
}

.relative-post .card {
    border: none;
    margin-bottom: 20px;
}

.relative-post .card-body {
    padding-left: 0;
}

.relative-post .card-body .card-title {
    font-size: 25px;
    color: var(--primary);
}

.relative-post .card-body .card-text {
    font-size: 16px;
    line-height: 26px;
}

.newsCarousel {
    margin-bottom: 50px;
}

.newsCarousel .carousel-indicators {
    bottom: -60px;
}

.carousel-indicators li {
    background-color: var(--primary);
    width: 40px;
}

.carousel-indicators .active {
    background-color: var(--secondary);
}

.more-articles .btn {
    border-color: var(--secondary);
    background-color: transparent;
    color: var(--primary);
    padding: 0 30px;
}

.custom-dropdown .form-control {
    height: auto;
    background-color: transparent;
    border-color: none;
}

.custom-dropdown .bootstrap-select>.btn {
    background-color: #fff0bc;
}

.detailed-news-wrapper .main-img {
    padding: 0 40px;
}

.detail-news-content {
    margin: 40px 0 20px;
}

.detail-news-content h2 {
    font-size: 40px;
}

.main-bar {
    margin: 30px 0;
}

.shareIcon ul {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    margin-bottom: 0;
    margin-left: 20px;
}

.shareIcon ul li {
    margin-right: 10px;
}

.detail-news-content p {
    font-size: 16px;
    color: #5f5f5f;
    line-height: 1.5;
}

.grid-detail {
    margin-top: 50px;
}

.detail-news-lft {
    width: 85%;
}

.detail-news-lft h3 {
    margin-bottom: 30px;
}

.detail-news-content {
    border-bottom: 1px solid #000;
}

.social-connect li a {
    color: var(--primary);
    display: inline-block;
    padding: 0.5rem 0.7rem;
    font-size: 1.4rem;
}

.w-450 {
    width: 450px
}

.m-30 {
    margin: 50px 0;
}

.ms-5 .list-group-item {
    border: none;
}

.ms-6 .table td,
.table th {
    border: 1px solid #dee2e6 !important;
}

.ms-6 .log-table .btn {
    opacity: 1;
    border: none;
    background-color: #fff;
    padding-left: 0;
}

.ms-8 table .wid-30 {
    width: 20%;
}

.ms-8 table .wid-70 {
    width: 70%;
}

.p-15 {
    padding: 0 15px;
}

.refrence-Card {
    margin-bottom: 20px;
}

.f-18 {
    font-size: 18px;
}

.mt-36 {
    margin-top: 36px;
}

.news-swipper img {
    position: inherit;
    /* top: 0; */
    /* left: 0; */
    object-fit: none;
    object-position: initial;
    width: fit-content;
    height: inherit;
}

.news-pagination {
    bottom: 50px !important;
}

.ms-6Input input {
    background: transparent;
    border: none;
    padding: 0;
    font-weight: 400;
    color: #000;
}

.f-16 {
    font-size: 16px;
}

.f-18 {
    font-size: 18px;
}

.f-19 {
    font-size: 19px;
}

.f-20 {
    font-size: 20px !important;
}

.p-30 {
    padding: 30px;
}

.w-150 {
    width: 150px;
}

.table-borderless th {
    border: none !important;
}

.text-blue {
    color: var(--primary);
    font-weight: 700;
    font-size: 24px;
}

.street-homeImg img {
    height: 250px;
}

.starIcon {
    width: 50px;
    margin: 0 auto;
}

.streetawards_ryt h4 {
    font-size: 30px;
}

.text-default {
    color: var(--default);
}

.custom-bottom {
    border-bottom: 2px solid rgba(0, 0, 0, .125);
}

.main-timeline4 {
    overflow: hidden;
    position: relative;
    padding-top: 50px;
}

.main-timeline4:before {
    content: "";
    width: 1px;
    height: 100%;
    background: #e9e9e9;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.main-timeline4 .timeline-content:before,
.main-timeline4 .timeline:before {
    top: 35%;
    transform: translateY(-50%);
    content: "";
}

.main-timeline4 .timeline {
    width: 50%;
    padding-right: 100px;
    /* float: right; */
    float: left;
    position: relative;
}

.main-timeline4 .timeline:before {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #b6510d;
    border: 1px solid #fbfaf0;
    position: absolute;
    right: -10px;
}

.main-timeline4 .timeline-content {
    display: block;
    padding-left: 0;
    position: relative;
}

.main-timeline4 .timeline-content:before {
    width: 90px;
    height: 0;
    border-top: 1px solid #fff0bc;
    position: absolute;
    right: -92px;
}

.timeline4 {
    margin-top: 200px !important;
}

.inner-content .title {
    color: var(--black);
}

.main-timeline4 .inner-content {
    padding: 20px 0;
}

.main-timeline4 .timeline:nth-child(2n) {
    padding: 0 0 0 100px;
}

.main-timeline4 .timeline:nth-child(2n) .timeline-content:before,
.main-timeline4 .timeline:nth-child(2n) .year,
.main-timeline4 .timeline:nth-child(2n):before {
    right: auto;
    left: -10px;
}

.main-timeline4 .timeline:nth-child(2n) .timeline-content {
    padding: 0;
}

.main-timeline4 .timeline:nth-child(2n) .timeline-content:before {
    /* right: -92px */
    left: -92px;
}

.main-timeline4 .timeline:nth-child(2n) .year {
    right: 0;
}

.main-timeline4 .timeline:nth-child(2) {
    margin-top: 250px;
}

.main-timeline4 .timeline:nth-child(odd) {
    margin: -110px 0 0;
}

.main-timeline4 .timeline:nth-child(even) {
    margin-bottom: 0;
}

.main-timeline4 .timeline:first-child,
.main-timeline4 .timeline:last-child:nth-child(even) {
    margin: 0;
}

.timeline-content .inner-content img {
    height: 250px;
    width: 100%;
}

.footer-info-block{ padding:3rem;}

@media only screen and (max-width:990px) {
    .main-timeline4 .timeline {
        padding-left: 75px;
    }
    .main-timeline4 .timeline:nth-child(2n) {
        padding: 0 75px 0 0;
    }
    .main-timeline4 .timeline-content {
        padding-left: 130px;
    }
    .main-timeline4 .timeline:nth-child(2n) .timeline-content {
        padding: 0 130px 0 0;
    }
    .main-timeline4 .timeline-content:before {
        width: 68px;
        left: -68px;
    }
    .main-timeline4 .timeline:nth-child(2n) .timeline-content:before {
        right: -68px;
    }
}

@media only screen and (max-width:767px) {
    .p-5 {
        padding: 2rem !important;
    }
    .vertical-content ul { margin:0px; padding: 0px;} 
    .vertical-content ul li {
        width: 100%;
    }
    .main-timeline4 {
        overflow: visible;
    }
    .main-timeline4:before {
        height: 100%;
        top: 0;
        left: 0;
        transform: translateX(0);
    }
    .main-timeline4 .timeline:before,
    .main-timeline4 .timeline:nth-child(2n):before {
        top: 60px;
        left: -9px;
        transform: translateX(0);
    }
    .main-timeline4 .timeline,
    .main-timeline4 .timeline:nth-child(even),
    .main-timeline4 .timeline:nth-child(odd) {
        width: 100%;
        float: none;
        text-align: center;
        padding: 0;
        margin: 0 0 10px;
    }
    .main-timeline4 .timeline-content,
    .main-timeline4 .timeline:nth-child(2n) .timeline-content {
        padding: 0;
    }
    .main-timeline4 .timeline-content:before,
    .main-timeline4 .timeline:nth-child(2n) .timeline-content:before {
        display: none;
    }
    .main-timeline4 .inner-content {
        padding: 10px;
    }

    .footer-nav li a {
        padding: 0.3rem 1rem;
    }

    .footer-title { padding: 0rem 1rem;}

    .footer-info-block{ padding:10px;}
    
}


/*Responsive Start*/

@media only screen and (max-width:1280px) {}

@media only screen and (min-width:1200px) {
   .pad-left-zero{
       padding-left: 0px;
   }

    .service-menu{ margin-top:3px;}
    
    .container {
        max-width: 1600px;
        padding: 0 100px;
    }
    #header .navbar-nav {
        -ms-flex-direction: row;
        flex-direction: row;
    }
    #navbar .dropdown-menu {
        display: block;
        position: absolute !important;
        opacity: 0;
        margin-top: 20px;
        visibility: hidden;
        transition-duration: 0.4s;
        min-width: 220px;
    }
    #navbar .dropdown-menu.column-2 {
        min-width: 480px;
        padding: 1rem 0.5rem;
    }
    #navbar .nav-item:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        margin-top: 0;
    }
    .dropdown-item {
        border-left: solid 4px transparent;
    }
    .dropdown-item:hover,
    .dropdown-item:focus {
        background: var(--secondary-light);
        border-color: var(--secondary);
    }
}


/* Commercial finance CSS */


/* .section-heading {
    font-size: 2.9rem;
} */

.inner-sub-desc {
    padding-right: 56px;
}

.payment-paln-cf-row .payment-plan-item .h1 {
    font-size: 2.5rem;
    line-height: 1;
}

.customDetail-box {
    border: 1px solid #f7f7f7;
}

.per-field-detail {
    border-top: 1px solid #f7f7f7;
}

.lft-box-details {
    background: #fff2c6;
    padding: 50px 70px;
}

.box-border-right {
    border-right: 1px solid #f7f7f7;
    padding-right: 0;
}

.ryt-box-content {
    padding: 30px 20px 0;
}