body {
    background: var(--bg-white);
    font-size: 16px;
    line-height: 1.5;
}
:root {
    --text-black: #000;
    --text-gray: #9fa5a7;
    --text-white: #ffffff;
    --text-light-white: #ffffffbf;
    --text-rusty: #b7312c;
    --bg-white: #ffffff;
    --bg-blue: #0f2472;
    --bg-dark-blue: #214c8c;
    --bg-black: #000;
    --br-gray: #9fa5a7;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Bold.woff2') format('woff2'), url('../fonts/Roboto-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Italic.woff2') format('woff2'), url('../fonts/Roboto-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.woff2') format('woff2'), url('../fonts/Roboto-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Thin.woff2') format('woff2'), url('../fonts/Roboto-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Light.woff2') format('woff2'), url('../fonts/Roboto-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Medium.woff2') format('woff2'), url('../fonts/Roboto-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-black);
    line-height: 1.3;
    font-family: 'Roboto';
    color: var(--text-white);
}
p {
    color: var(--text-white);
}
a {
    color: var(--text-black);
    font-family: 'Roboto';
    transition: all 0.5s ease;
    text-decoration: none;
}
.pb-10 {
    padding-bottom: 75px;
}
.p-10 {
    padding: 80px 0;
}

/*header-css*/

header .nav-link:focus,
header .nav-link:hover {
    color: var(--text-black);
}
header .nav-link {
    color: var(--text-black);
}
nav.navbar ul.navbar-nav li a {
    padding: 0px 20px !important;
}
ul.navbar-nav li.nav-item a.active {
    color: var(--text-rusty);
    position: relative;
    font-weight: 500;
}
ul.navbar-nav li.nav-item a.active::before {
    position: absolute;
    content: '';
    width: 100%;
    max-width: 100%;
    background: var(--text-rusty);
    left: 0px;
    right: 0px;
    bottom: -5px;
    height: 1.5px;
}
nav.navbar ul.navbar-nav li > a {
    position: relative;
}
nav.navbar ul.navbar-nav li > a.nav-link:hover:before {
    transition: all 0.5s ease;
    max-width: 100%;
}
nav.navbar ul.navbar-nav li > a.nav-link:before {
    position: absolute;
    content: '';
    width: 100%;
    background: var(--text-rusty);
    margin: auto;
    left: 0px;
    right: 0px;
    bottom: -5px;
    height: 1.5px;
    transition: all 0.5s ease;
    max-width: 0;
}

header > nav.navbar {
    padding-left: 0px !important;
    padding-right: 5px;
    padding-top: 0 !important;
    padding-bottom: 0px !important;
}
.navbar-brand {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-left: -3px;
}

.navbar-nav{
    padding-top: 15px;
    padding-bottom: 15px;
}

header a.navbar-brand img {
    width: 100%;
    max-width: 600px;
}
@media(max-width: 1375px){
    header a.navbar-brand img{
        max-width: 420px;
    }
}
@media(max-width: 1200px){
    header a.navbar-brand img{
        max-width: 600px;
    }
    .navbar>.container{
        margin-left: 0px !important;
    }
}
@media (max-width: 767px) {
    header a.navbar-brand img {
        max-width: 600px;
    }
    .navbar>.container{
        flex-wrap: nowrap;
    }
}

span.search-area {
    line-height: 0;
    padding-left: 36px;
    transform: translateY(-2px);
    display: inline-block;
}
span.search-area img {
    width: 100%;
    max-width: 25px;
    cursor: pointer;
}
.navbar-nav a.dropdown-toggle::after {
    border: none;
    background: url(../images/chevron-right-solid.png) no-repeat;
    background-size: contain;
    width: 10px;
    height: 10px;
    left: 0px;
    transform: translateY(6px);
}
ul.navbar-nav ul.dropdown-menu {
    padding: 0px 0;
    border: none;
    box-shadow: 0px 2px 5px 2px rgb(0 0 0 / 24%);
    border-radius: 0;
    transition: all 0.5s ease;
}
ul.navbar-nav ul.dropdown-menu.show {
    transform: translateY(15px);
    transition: all 0.5s ease;
}
ul.navbar-nav ul.dropdown-menu li a {
    padding: 5px 12px !important;
    font-size: 15px;
}
ul.navbar-nav ul.dropdown-menu li a:hover {
    background: var(--bg-dark-blue);
    color: var(--text-white);
}

/*header-css*/

section.sn-hero-slider {
    background: rgb(15, 36, 114);
    background: linear-gradient(179deg, rgba(15, 36, 114, 1) 0%, rgba(35, 83, 144, 1) 71%);
    padding: 70px 0 145px;
    position: relative;
    margin-bottom: 15px;
}
section.sn-hero-slider::before {
    position: absolute;
    content: '';
    background-color: #fcfdfe;
    clip-path: ellipse(70% 22% at 50% 108%);
    width: 100%;
    height: 100%;
    bottom: -10px;
    z-index: 0;
}

section.sn-news-hero::before {
    z-index: 11;
}
.swiper-grid-ct {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
    width: 100%;
    max-width: 865px;
    margin: auto;
}
.swiper-grid-ct .thumb-wrap img {
    width: 100%;
}
.swiper-grid-ct .head-text-wrap h1 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 20px;
}
.swiper-grid-ct .head-text-wrap p {
    color: var(--text-light-white);
}
a.btn {
    padding: 12px 0;
    border-radius: 25px 0px 25px 0px;
    border: 1px solid var(--text-light-white);
    background: transparent;
    margin-top: 10px;
    color: var(--text-white);
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.5px;
}
a.btn:focus {
    box-shadow: none;
    outline: none;
}
a.btn:hover {
    background: var(--bg-white);
    color: var(--text-black);
    border-color: var(--bg-white);
    transition: all 0.5s ease;
}
section.sn-hero-slider .swiper-button-next::after,
section.sn-hero-slider .swiper-button-prev::after {
    color: var(--text-light-white);
}
.whole-head-title h2 {
    color: var(--text-rusty);
    padding: 0;
    margin: 0;
    font-size: 42px;
    font-weight: 400;
}
.articles_title h2 {
    color: #214c8c;
}
.articles_title hr {
    background: #214c8c;
}
.whole-head-title hr {
    margin: 10px 0 0;
    background: var(--text-rusty);
    height: 1.3px;
    opacity: 0.7;
}
.cart-wrap h3 {
    color: var(--text-black);
    margin: 20px 0 25px;
}
.cart-wrap .thumb-wrap {
    overflow: hidden;
}
.cart-wrap .thumb-wrap img {
    height: 200px;
    object-fit: cover;
    transition: all 0.5s ease;
}
.cart-wrap:hover .thumb-wrap img {
    transform: scale(1.1);
    transition: all 0.5s ease;
}
.cart-wrap p {
    color: var(--text-black);
    margin: 10px 0 15px;
}
.cart-wrap a.btn {
    padding: 12px 0;
    border-radius: 25px 0px 25px 0px;
    border: 1px solid var(--br-gray);
    background: transparent;
    margin-top: 10px;
    color: var(--text-gray);
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.5px;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
}
.cart-wrap:hover a.btn {
    background: var(--bg-dark-blue);
    color: var(--text-white);
    border-color: var(--bg-dark-blue);
    opacity: 1;
}
.paragraph-wrap p {
    color: var(--text-white);
}
section.sn-about-us {
    background: #98a4ae;
    position: relative;
    z-index: 0;
}
section.sn-about-us::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: url(../images/vector_smart_object.png) no-repeat;
    background-position: center center;
    background-size: contain;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: -1;
}
section.sn-about-us .whole-head-title h2 {
    color: var(--text-white);
}
section.sn-about-us .whole-head-title hr {
    background: var(--text-white);
}
footer {
    background: var(--bg-dark-blue);
}
.ft-colume ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.ft-colume ul li {
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 10px;
    color: var(--text-white);
}
.ft-colume ul li:last-child {
    margin: 0;
}
.ft-colume ul li a {
    color: var(--text-white);
    text-decoration: none;
    opacity: 0.8;
}
.ft-colume ul li span {
    opacity: 0.8;
}
.ft-colume ul li:first-child img {
    margin-top: 6px;
}
.ft-colume ul li img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}
ul.social-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}
ul.social-footer a{
    font-size: 24px;
}
footer hr{
    background: #FFFFFF;
}
footer a{
    color: #FFFFFF;
}
footer a:hover{
    color: #B7312C;
}
p.copy-title {
    margin: 0;
}
.ft-colume ul li a:hover {
    opacity: 1;
}
section.sn-watch-tereauba .nav.nav-pills .nav-link {
    text-align: center;
    padding: 18px 0;
    border-radius: 0;
    font-size: 23px;
    color: #fff;
    margin-bottom: 15px;
    background: rgb(15, 36, 114);
    background: linear-gradient(179deg, rgba(15, 36, 114, 1) 0%, rgba(35, 83, 144, 1) 71%);
}
section.sn-watch-tereauba .nav.nav-pills .nav-link:hover{
    background: #B7312C;
    background: linear-gradient(179deg, rgba(183, 49, 44, 1) 0%, rgba(144, 35, 31, 1) 71%);
}
section.sn-watch-tereauba .tab-content .tab-pane img {
    max-width: 650px;
    margin: auto;
    display: block;
}
section.sn-watch-tereauba {
    padding-bottom: 35px;
}
section.sn-hero-slider .swiper-pagination {
    display: none;
}
section.sn-news-hero .swiper-slide > img {
    height: 535px;
    object-fit: cover;
}
section.sn-hero-slider .pagination-wrap {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    max-width: 1150px;
    margin: auto;
    transform: translateY(-50%);
    z-index: 111;
}
section.sn-blog-single .blog-content-text > p {
    color: var(--text-black);
    line-height: 30px;
    margin-top: 25px;
}
section.sn-blog-single .blog-content-text img {
    width: 100%;
    margin: 30px 0;
}
.accordion-boot-wrap .accordion-item {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
}
.accordion-boot-wrap button.accordion-button {
    padding-left: 0;
    padding-right: 0;
    font-weight: 400;
    font-size: 26px;
    color: var(--text-rusty);
}
.accordion-boot-wrap button.accordion-button.collapsed {
    color: #214c8c;
}
.accordion-boot-wrap button.accordion-button:focus,
.accordion-boot-wrap button.accordion-button:hover {
    box-shadow: none;
    outline: none;
    background: none !important;
}
.accordion-boot-wrap .accordion-item:focus {
    box-shadow: none;
    outline: none;
}
.accordion-boot-wrap .accordion-button:not(.collapsed) {
    background: none !important;
    box-shadow: none !important;
    border-bottom: 1px solid #ddd;
}
.accordion-boot-wrap button.accordion-button img {
    margin-right: 25px;
    width: 25px;
}
.accordion-boot-wrap .accordion-body p {
    color: #214c8c;
    margin: 0 0px 15px;
}
.accordion-boot-wrap .accordion-body a {
    display: inline-block;
    margin-bottom: 15px;
    color: #214c8c;
    text-decoration: none;
}
.accordion-boot-wrap .accordion-item:first-child {
    border-top: 0;
}
.accordion-boot-wrap .accordion-item:last-child {
    border-bottom: 0;
}
.accordion-boot-wrap .accordion-item:first-child button.accordion-button {
    padding-top: 0;
}
.form-wrap-main {
    position: absolute;
    top: 175px;
    z-index: 111;
    right: 0;
    left: 0;
}
form.form-search {
    box-shadow: 0px 5px 25px 0px rgb(0 0 0 / 18%);
    padding: 2rem 2rem;
    border-radius: 16px;
    background: #fff;
    max-width: 400px;
    position: absolute;
    z-index: 111;
    right: 0px;
    transition: all 0.5s ease;
    transform: translateY(-30px);
    width: 100%;
    opacity: 0;
    visibility: hidden;
}
form.form-search.active {
    transition: all 0.5s ease;
    transform: translateY(-10px);
    width: 100%;
    opacity: 1;
    visibility: visible;
}
form.form-search .close-btn-form {
    position: absolute;
    z-index: 0;
    top: 12px;
    right: 12px;
    line-height: 0;
    cursor: pointer;
}
form.form-search .search-input input:focus {
    outline: none;
    box-shadow: none;
}
form.form-search .close-btn-form svg {
    width: 20px;
}
form.form-search lable {
    font-weight: 500;
    font-family: 'Roboto';
    color: var(--text-black);
}
form.form-search .search-input {
    position: relative;
    border: 1px solid #ddd;
    padding: 11px 10px;
    border-radius: 5px;
    margin-top: 10px;
}
form.form-search .search-input input {
    border: none;
    box-shadow: none;
    padding: 0 0;
    font-family: 'Roboto';
}
form.form-search .search-input button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    padding: 5px 12px;
    background: var(--bg-blue);
    color: var(--text-white);
    border: 1px solid var(--bg-blue);
    font-weight: 500;
    font-family: 'Roboto';
}
section.header-sn-main .product-info-head ul li.search-icon {
    cursor: pointer;
}

.sn-lates-news .cart-wrap h3{
    font-size: 22px;
}
.sn-lates-news .cart-wrap p{
    text-align: left;
}

@media(max-width: 1199px) {
    button.navbar-toggler,
    button.navbar-toggler:focus,
    button.navbar-toggler:hover {
        box-shadow: none;
        outline: none;
        border: none;
    }
    span.navbar-toggler-icon img.close_icon {
        display: none;
        width: 100%;
    }
    span.navbar-toggler-icon.active img.toggle_icon {
        display: none;
    }
    span.navbar-toggler-icon.active img.close_icon {
        display: block;
    }
    header .navbar-collapse {
        position: fixed;
        z-index: 11111;
        top: 0;
        background: #fff;
        width: 100%;
        height: 100%;
        left: 0;
        max-width: 290px;
        padding: 35px 0;
        transform: translateX(-100%) !important;
        transition: transform .50s ease, -webkit-transform .50s ease;
    }
    header .navbar-collapse.active {
        transform: translateX(-0%) !important;
    }
    nav.navbar ul.navbar-nav > li {
        width: 100%;
        padding: 8px 0;
    }
    .navbar-nav a.dropdown-toggle::after {
        right: 30px;
        position: absolute;
        left: inherit;
    }
    ul.navbar-nav ul.dropdown-menu {
        transition: all 0.5s ease;
        transform: translateY(5px) !important;
        box-shadow: none;
        padding: 0 22px;
    }
    nav.navbar ul.navbar-nav li > a.nav-link:before {
        display: none;
    }
}
@media(max-width: 1025px) {
    .swiper-grid-ct {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
    .p-10 {
        padding: 40px 0;
    }
    section.sn-hero-slider::before {
        clip-path: ellipse(85% 11% at 50% 108%);
        bottom: -5px;
    }
    section.sn-hero-slider {
        padding: 70px 0 80px;
    }
    section.sn-news-hero .swiper-pagination {
        display: none !important;
    }
    form.form-search {
        right: 15px;
        max-width: 340px;
        padding: 2rem 1rem;
    }
    span.search-area {
        padding-left: 21px;
    }
}

.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1420px;
}

@media (max-width: 1375px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1250px;
    }
}
@media (max-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1140px;
    }
}

@media(max-width: 991px) {
    .container,
    .container-md,
    .container-sm {
        max-width: 100%;
        padding-left: 25px;
        padding-right: 25px;
    }
    section.sn-lates-news .cart-wrap {
        margin-bottom: 35px;
        height: auto !important;
    }
    .form-wrap-main {
        position: fixed;
        top: 160px;
        z-index: 11111;
    }
    span.search-area {
        padding-left: 20px;
    }
    /* small-articel-menu-css */
    .mobile-article-menu {
        position: absolute;
        z-index: 111;
        background: var(--bg-dark-blue);
        top: 155px;
        text-align: center;
        padding-top: 10px;
        right: 0;
    }
    .mobile-article-menu a {
        text-decoration: none;
        display: block;
    }
    .mobile-article-menu a p {
        background: var(--text-rusty);
        margin: 10px 0 0 0;
        padding: 2px 8px;
    }
    /* small-articel-menu-css */
    /*    article-css-popup*/
    .mobile-article-popup {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1111;
        background: #fff;
        height: 100%;
        padding: 15px 15px;
        overflow: scroll;
        transform: translateX(-100%) !important;
        transition: transform .50s ease, -webkit-transform .50s ease;
        padding-top: 65px;
        width: 100%;
        max-width: 350px;
    }
    .mobile-article-popup.active {
        transform: translateX(-0%) !important;
    }
    .mobile-article-popup img.close_icon {
        width: 22px;
        position: absolute;
        top: 15px;
        right: 15px;
    }
    /*    article-css-popup*/
}
@media(max-width: 768px) {
    .swiper-grid-ct {
        grid-template-columns: 1fr;
    }
    .cart-wrap h3 {
        margin: 25px 0 15px;
        font-weight: 400;
    }
    .ft-colume ul li {
        margin-bottom: 25px;
    }
    .ft-colume ul li span,
    .ft-colume ul li a {
        opacity: 1;
        font-size: 18px;
    }
    .swiper-grid-ct .head-text-wrap {
        order: 2 !important;
    }
    section.sn-news-hero .swiper-slide > img {
        height: 320px;
    }
    section.sn-news-hero::before {
        clip-path: ellipse(85% 30% at 50% 108%);
        bottom: -5px;
    }
}
@media(max-width: 550px) {
    section.sn-lates-news .cart-wrap {
        margin-bottom: 35px;
        border-bottom: 2px solid var(--text-rusty);
        height: auto !important;
        padding-bottom: 45px;
    }
    .cart-wrap a.btn {
        position: inherit;
    }
    section.sn-lates-news .col-xl-4:last-child .cart-wrap {
        border: none;
        padding-bottom: 0;
    }
    p.copy-title {
        text-align: center;
    }
    ul.social-footer {
        justify-content: center;
        padding: 0 0 20px;
        border-bottom: 1px solid #dddddd6e;
        margin-bottom: 15px;
        gap: 35px;
    }
    section.sn-hero-slider .swiper-pagination span.swiper-pagination-bullet {
        border: 1px solid #fff;
        width: 13px;
        height: 13px;
        background: none;
    }
    section.sn-hero-slider .swiper-pagination {
        top: inherit;
        display: block;
        bottom: 170px;
    }
    section.sn-hero-slider .swiper-pagination .swiper-pagination-bullet-active {
        background: #fff !important;
    }
    section.sn-hero-slider {
        padding: 50px 0px;
        padding-bottom: 70px;
    }
    section.sn-hero-slider .swiper-button-next,
    section.sn-hero-slider .swiper-button-prev {
        display: none;
    }
    .whole-head-title h2 {
        font-size: 38px;
    }
    section.sn-about-us::before {
        background-position: top;
        top: 5px;
        left: -15px;
    }
    header .navbar-collapse {
        top: 101px;
        max-width: 100%;
        height: 100vh;
    }
    header .navbar-collapse ul.navbar-nav {
        text-align: center;
    }
    header .navbar-collapse ul.navbar-nav ul.dropdown-menu {
        text-align: center;
    }
    header .navbar-collapse ul.navbar-nav > li.nav-item {
        padding: 15px 0;
        border-top: 1px solid #ddd;
    }
    header .navbar-collapse ul.navbar-nav > li.nav-item.dropdown ul.dropdown-menu li {
        padding: 5px 0;
    }
    header .navbar-collapse ul.navbar-nav > li.nav-item.dropdown ul.dropdown-menu {
        padding-top: 10px;
    }
    header.fixed {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1111;
        background: #fff;
        transition: position 10s;
        animation: smoothScroll 1s forwards;
    }
    @keyframes smoothScroll {
        0% {
            transform: translateY(-40px);
        }
        100% {
            transform: translateY(0px);
        }
    }
    span.search-area {
        padding-left: 0;
    }
}
@media(max-width: 413px) {
    section.sn-hero-slider .swiper-pagination {
        bottom: 190px;
    }
}

a.active{
    color: var(--text-rusty) !important;
}

/* Sticky Bar  */
.sticky-bar{
    position: fixed;
    top: 20%;
    left: 0;
    z-index: 11;
    width: 50px;
    display: flex;
    flex-wrap: wrap;
    cursor: pointer;
    transition: left 0.5s ease-in 0.5s;
}
.sticky-bar-minimize{
    left: -30px;
}
.sticky-bar .social-links{
    width: 49px;
    display: grid;
    list-style: none;
    padding: 11px 11px;
    text-align: center;
    background-color: #B7312C;
}
.sticky-bar .social-links a{
    font-size: 24px;
    color: #FFFFFF;
}

.sticky-bar.sticky-bar-minimize .social-links a,
.sticky-bar.sticky-bar-minimize ul a,
.sticky-bar.sticky-bar-minimize ul li{
    border: none;
    visibility: hidden;
} 

.sticky-bar .social-links a:hover{
    color: #214C8C;
}
.sticky-bar ul{
    background: gray;
    gap: 8px;
    margin-left: 22px;
    margin-top: 180px;
    display: flex;
    list-style: none;
    padding: 15px 10px;
    transform-origin: left;
    transform: rotate(-90deg);
}
.sticky-bar ul a{
    color: #FFFFFF;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
}
.sticky-bar ul a:hover{
    color: #214C8C;
}
.sticky-bar ul li{
    text-transform: uppercase;
    border-left: 1px solid #fff;
    padding-left: 5px;
}
.sticky-bar ul li:first-child,
.sticky-bar ul li:nth-child(2){
    border: none;
}
.sticky-bar ul li:first-child{
    padding-left: 0;
}

.page-header h1{
    position: absolute;
    left: 50%;
    z-index: 9;
    transform: translate(-50%, -50%);
    top: 45%;
    font-size: 48px;
    color: #ffffff;
}


.google-map iframe{
    width:100%; 
    height: 500px;
    margin-bottom: -10px;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px 25px;
    padding: 0 !important;
    max-width: 100%
}

.form-container .form-group {
    margin: 0px;
    padding: 0px;
    position: relative
}

.grid-1x3 {
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-gap: 15px 25px;
    padding: 0 !important;
    max-width: 100%
}

.grid-2x3 {
    display: grid;
    grid-template-columns: 2fr 3fr;
    grid-gap: 15px 25px;
    padding: 0 !important;
    max-width: 100%
}

@media(max-width: 767px) {
    .form-container {
        grid-template-columns:minmax(100%,1fr);
        grid-gap: 25px 25px
    }
}

.form-container .full-width {
    grid-column: 1 / -1
}

.grid-full-width {
    grid-column: 1 / -1
}

.grid {
    display: grid
}

.form-error {
    color: red;
    font-size: 14px;
    line-height: inherit;
    display: block
}
.form-control{
    border-radius: 0px;
}
.form-control:focus {
    border: 1.3px solid #214C8C;
    outline: none;
    box-shadow: none;
}

.btn-primary{
    #214C8C
}

.btn-primary {
    color: #fff;
    background-color: #214C8C;
    border-color: #214C8C;
    border-radius: 0px;
}

.btn-primary:active,
.btn-primary.active,
.btn-primary:focus,
.btn-primary:hover{
    color: #fff;
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.required::after {
    content: '*';
    margin-left: 4px;
    color: #e60000 !important;
}

.search-page{
    margin-bottom: 15px;
}
.search-page p {
    color: var(--text-black);
}
.search-page h2{
    color: var(--text-black);
}



@media (max-width: 768px) {
    .swiper-grid-ct{
        grid-gap: 0;
    }
    section.sn-hero-slider .swiper-pagination{
        bottom: 25px;
    }
    section.sn-hero-slider{
        padding: 0px 0px;
    }
    section.sn-hero-slider .container{
        padding-left: 10px;
        padding-right: 10px;
    }
    .heroSwiper .swiper-slide {
        padding: 20px;
    }
    .heroSwiper a.btn{
        margin-bottom: 40px;
    }
    .swiper-grid-ct .thumb-wrap img{
        aspect-ratio: 480/360;
        object-fit: cover;
    }
}

.modal{
    z-index: 9999;
}

.accordion-boot-wrap .accordion-body{
    padding-left: 25px;
}

/* Base link appearance (block so the whole row is clickable) */
.accordion-boot-wrap .accordion-body a.link {
  display: block;
  position: relative;
  padding-left: 30px;       /* space for the bullet */
  margin: 6px 0;            /* spacing between items */
  line-height: 1.35;
  color: #222;              /* default text color */
  text-decoration: none;
  transition: color .18s ease;
  word-wrap: break-word;
}

/* The pseudo bullet */
.accordion-boot-wrap .accordion-body a.link::before {
  content: "";                            /* empty block bullet (use glyph variant below if you prefer) */
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #214c8c;                    /* bullet color */
  box-shadow: 0 0 0 2px rgba(0,0,0,0.03); /* optional subtle ring */
  transition: transform .18s ease, background .18s ease, opacity .18s ease;
  opacity: 1;
}

/* Hover/focus — highlight link and scale bullet a bit */
.accordion-boot-wrap .accordion-body a.link:hover,
.accordion-boot-wrap .accordion-body a.link:focus {
  color: #b7312c;
}
.accordion-boot-wrap .accordion-body a.link:hover::before,
.accordion-boot-wrap .accordion-body a.link:focus::before {
  transform: translateY(-50%) scale(1.15);
  background: #b7312c;
}

/* Active/current item (example: you already have .active on the anchor) */
.accordion-boot-wrap .accordion-body a.link.active {
  font-weight: 600;
  color: #b7312c;
}
.accordion-boot-wrap .accordion-body a.link.active::before {
  background: #b7312c;
  transform: translateY(-50%) scale(1.25);
}

/* Smaller screens: reduce padding if needed */
@media (max-width: 480px) {
  .accordion-boot-wrap .accordion-body a.link {
    padding-left: 26px;
    margin: 4px 0;
  }
  .accordion-boot-wrap .accordion-body a.link::before {
    width: 7px;
    height: 7px;
  }
}

/* START: Channel | Popup + PiP */
#channel-popup{
    width: 100%;
    z-index: 999;
    position: fixed;
}
#channel-popup .modal-header{
    border: none;
    color: #FFFFFF;
    background-color: #214C8C;
    border-radius: 0px !important;
}
#channel-popup .modal-content{
    border: none;
    background-color: #B7312C;
    border-radius: 0px !important;
}
#channel-popup.channel-pip-disabled{
    top: 50%;
    left: 50%;
    max-width: 512px;
    transform: translate(-50%, -50%);
}
#channel-popup.channel-pip-disabled .channel-pip-exit,
#channel-popup.channel-pip-enabled .channel-pip-enter{
    display: none;
}
#channel-popup.channel-pip-enabled{
    right: 15px;
    bottom: 0px;
    max-width: 300px;
}
#channel-popup.channel-pip-enabled .modal-content{
    background-color: transparent;
}
/* END: Channel | Popup + PiP */