@charset "UTF-8";
/*
@File: Renaz Template Styles

* This file contains the styling for the actual template, this
is the file you need to edit to change the look of the
template.

This files table contents are outlined below>>>>>

/*--------------------------------
=========Table Of Contents========

1.  General Styles
2.  Back To Top Button CSS
3.  Preloader CSS
4.  Button & Link CSS
5.  Section Title, Overlay & Shape CSS
6.  Pagination CSS
7.  Breadcrumb CSS
8.  Hero CSS
----------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Outfit:wght@100..900&display=swap");

:root {
    --primaryFont: "Outfit", sans-serif;
    --secondaryFont: "IBM Plex Sans", sans-serif;
    --primaryColor: #1f2c78;
    --secondaryColor: #fdfd0d;
    --optionalColor: #f1f4fe;
    --titleColor: #0f0f0f;
    --linkColor: #565c59;
    --paraColor: rgba(15, 15, 15, 0.72);
    --paraColorTwo: rgba(15, 15, 15, 0.54);
    --paraColorThree: rgba(79, 84, 81, 0.85);
    --grayColor: #f5f5f5;
    --ashColor: #e9eefd;
    --darkColor: #18251b;
    --whiteColor: #fff;
    --offwhiteColor: rgba(255, 255, 255, 0.7);
    --offwhiteColorTwo: rgba(255, 255, 255, 0.8);
    --aztechColor: #111828;
    --codColor: #12131b;
    --charcoalColor: #3c3c3c;
    --mildColor: #222;
    --fontSize: 16px;
    --transition: all ease 0.5s;

    --lead-min-h: 320px;
}

/*---------------------------------
    General Styles
-----------------------------------*/
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:focus,
button:focus,
.btn:focus {
    outline: 0;
    box-shadow: none;
}

.form-control:focus {
    box-shadow: none;
}

a,
button,
input[type="submit"] {
    cursor: pointer;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

/* clears the ‘X’ from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
}

a {
    text-transform: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--titleColor);
}

a:hover,
a :focus {
    text-decoration: none;
    box-shadow: none;
}

a:focus {
    outline: 0 solid;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--secondaryFont);
    font-weight: 700;
    color: var(--titleColor);
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
    color: var(--primaryColor);
}

body {
    color: var(--paraColor);
    font-size: var(--fontSize);
    font-family: var(--primaryFont);
    font-weight: 400;
    line-height: 28px;
}

p {
    color: var(--paraColor);
    letter-spacing: -0.02em;
}

select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-position: calc(100% - 15px) 50%;
    background-repeat: no-repeat;
    background-image: url(../img/down-arrow.png);
    background-size: 14px;
}

.items-center {
    align-items: center;
}

.sledujte-nas {
    background-color: #1877f2;
    color: white;
    width: 100%;
}

.article-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(
        var(--cols, 4),
        1fr
    ); /* max 4, ale priamo nastavíme počtom obrázkov */
    gap: 12px;
}
.article-gallery .gallery-thumb {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}
.article-gallery .gallery-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease;
    will-change: transform;
    cursor: zoom-in;
}
.article-gallery .gallery-thumb:hover img {
    transform: scale(1.02);
}

/* Responzívne zúženie stĺpcov */
@media (max-width: 992px) {
    .article-gallery .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .article-gallery .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .article-gallery .gallery-thumb img {
        height: 180px;
    }
}
@media (max-width: 480px) {
    .article-gallery .gallery-grid {
        grid-template-columns: 1fr;
    }
    .article-gallery .gallery-thumb img {
        height: 200px;
    }
}

.sidebar-reklama {
    padding-left: 0 !important;
}

/* Jednoduchý lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 24px;
}
.lightbox.open {
    display: flex;
}
.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.lightbox .lb-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 40px;
    line-height: 1;
    padding: 8px 12px;
    cursor: pointer;
    opacity: 0.85;
}
.lightbox .lb-prev {
    left: 20px;
}
.lightbox .lb-next {
    right: 20px;
}
.lightbox .lb-close {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 36px;
    cursor: pointer;
    background: transparent;
    border: 0;
    color: #fff;
}

.sledujte-nas:hover {
    background-color: white;
    border: 1px solid #1877f2;
}

.text_primary {
    color: var(--primaryColor) !important;
}

.text_secondary {
    color: var(--secondaryColor) !important;
}

.text-title {
    color: var(--titleColor);
}

.text-optional {
    color: var(--optionalColor);
}

.text-link {
    color: var(--linkColor) !important;
}

.text-link:hover {
    color: var(--primaryColor) !important;
}

.text-offwhite {
    color: var(--offwhiteColor);
}

.text-offwhiteTwo {
    color: var(--offwhiteColorTwo);
}

.text-para {
    color: var(--paraColor);
}

.text-paraTwo {
    color: var(--paraColorTwo);
}

.text-paraThree {
    color: var(--paraColorThree);
}

.font-primary {
    font-family: var(--primaryFont);
}

.font-secondary {
    font-family: var(--secondaryFont);
}

.bg_primary {
    background-color: var(--primaryColor);
}

.bg_secondary {
    background-color: var(--secondaryColor) !important;
}

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

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

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

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

.ls-0 {
    letter-spacing: 0;
}

.ls-4 {
    letter-spacing: -0.04em;
}

.fs-13 {
    font-size: 13px;
    line-height: 24px;
}

.fs-14 {
    font-size: 14px;
}

.fs-15 {
    font-size: 15px;
}

.fs-16 {
    font-size: 16px;
    line-height: 27px;
}

.fs-17 {
    font-size: 17px;
}

.fs-18 {
    font-size: 18px;
    line-height: 27px;
}

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

.fs-22 {
    font-size: 22px;
    line-height: 31px;
}

.fs-24 {
    font-size: 24px;
}

.fs-26 {
    font-size: 26px;
    line-height: 36px;
}

.fs-30 {
    font-size: 26px;
    line-height: 38px;
}

.fs-36 {
    font-size: 36px;
    line-height: 46px;
}

.fs-46 {
    font-size: 46px;
    line-height: 60px;
}

.fs-54 {
    font-size: 54px;
    line-height: 64px;
}

.fs-64 {
    font-size: 54px;
    line-height: 60px;
}

.br-b-1 {
    border-bottom: 1px solid rgba(15, 15, 15, 0.15);
}

.br-one {
    border: 1px solid rgba(15, 15, 15, 0.1);
}

.ls-2 {
    letter-spacing: -0.02em;
}

.ls-3 {
    letter-spacing: -0.03em;
}

.ls-4 {
    letter-spacing: -0.04em;
}

.ls-5 {
    letter-spacing: -0.05em;
}

.tr-15 {
    top: 15px;
    right: 15px;
}

.wh-37 {
    width: 37px;
    height: 37px;
}

.round-4 {
    border-radius: 4px !important;
}

.round-5 {
    border-radius: 5px !important;
}

.round-6 {
    border-radius: 6px;
}

.round-10 {
    border-radius: 10px;
}

.round-15 {
    border-radius: 15px;
}

.round-20 {
    border-radius: 20px;
}

.round-25 {
    border-radius: 25px;
}

.resize-0 {
    resize: none;
}

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

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

.index-2 {
    z-index: 2;
}

.pt-30 {
    padding-top: 30px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-70 {
    padding-top: 70px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-65 {
    padding-bottom: 65px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-75 {
    padding-bottom: 75px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.mr-2 {
    margin-right: 2px;
}

.ml-20 {
    margin-left: 20px;
}

.mt-10 {
    margin-top: 10px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mt-25 {
    margin-top: 25px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mt-35 {
    margin-top: 35px !important;
}

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

.mt-45 {
    margin-top: 40px;
}

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

.xmb-4 {
    margin-bottom: 4px;
}

.xmb-5 {
    margin-bottom: 5px;
}

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

.mb-9 {
    margin-bottom: 9px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-12 {
    margin-bottom: 12px !important;
}

.mb-13 {
    margin-bottom: 13px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

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

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

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

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

.mb-25 {
    margin-bottom: 25px !important;
}

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

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

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

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

.mb-33 {
    margin-bottom: 32px;
}

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

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

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

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

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

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

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

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

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

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

.list-unstyle li {
    list-style: none;
}

.btn {
    position: relative;
    z-index: 1;
    line-height: 15px;
    font-weight: 400;
    padding: 15px 27px;
    overflow: hidden;
    border-radius: 50px;
    border: none;
    transition: var(--transition);
}

.btn:before,
.btn:after {
    position: absolute;
    top: 50%;
    left: 50%;
    content: "";
    width: 100%;
    z-index: -1;
    transition: var(--transition);
    transform: translate(-50%, -50%);
}

.btn img {
    position: relative;
    top: -2px;
    margin-left: 10px;
    opacity: 1;
    transition: var(--transition);
}

.btn:before {
    height: 100%;
}

.btn:after {
    height: 0%;
    visibility: hidden;
    opacity: 0;
}

.btn:hover:after {
    height: 100%;
    visibility: visible;
    opacity: 1;
}

.btn.style-one {
    color: var(--whiteColor);
}

.btn.style-one:before {
    background-color: var(--primaryColor);
}

.btn.style-one:after {
    background-color: var(--titleColor);
}

.btn.style-one:hover {
    color: var(--whiteColor);
}

.btn.style-two {
    color: var(--primaryColor);
    border: 1px solid var(--primaryColor);
    padding-top: 15px;
    padding-bottom: 13px;
}

.btn.style-two:before {
    background-color: transparent;
}

.btn.style-two:after {
    background-color: var(--primaryColor);
}

.btn.style-two:hover {
    color: var(--whiteColor);
    border-color: transparent;
}

.btn.style-two:hover img {
    filter: brightness(0) invert(1);
}

.btn.style-three {
    color: white;
}

.btn.style-three:before {
    background-color: #d83a3a;
}

.btn.style-three:after {
    background-color: var(--titleColor);
}

.btn.style-three:hover {
    color: var(--whiteColor);
}

.btn.style-three:hover img {
    filter: brightness(0) invert(1);
}

.btn.style-four {
    color: var(--whiteColor);
    border: 1px solid var(--whiteColor);
}

.btn.style-four:before {
    background-color: transparent;
}

.btn.style-four:after {
    background-color: var(--primaryColor);
}

.btn.style-four:hover {
    border-color: transparent;
}

.link {
    position: relative;
    padding-bottom: 1px;
    line-height: 1;
    letter-spacing: -0.02em;
    font-family: var(--secondaryFont);
}

.link:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 0;
    height: 1px;
    transition: var(--transition);
}

.link img {
    position: relative;
}

.link i {
    margin-left: 3px;
    font-size: 22px;
    line-height: 0.8;
    position: relative;
    top: 3px;
    transition: var(--transition);
}

.link:hover:after {
    width: 97%;
}

.link:hover i {
    margin-left: 8px;
}

.link.style-one {
    color: var(--titleColor);
}

.link.style-one:after {
    background-color: var(--blueColor);
}

.link.style-two {
    color: var(--whiteColor);
}

.link.style-two:after {
    background-color: var(--whiteColor);
}

.link.style-three {
    color: var(--primaryColor);
}

.link.style-three:after {
    background-color: var(--primaryColor);
}

.link.style-four {
    color: var(--secondaryColor);
}

.link.style-four:after {
    background-color: var(--secondaryColor);
}

.bg-f {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #ddd;
}

.transition {
    transition: all 200ms linear;
}

.social-profile li {
    display: inline-block;
}

.social-profile li a i {
    line-height: 0.8;
}

.social-profile.style-one li {
    margin-right: 10px;
}

.social-profile.style-one li:last-child {
    margin-right: 0;
}

.social-profile.style-two li {
    display: block;
    margin: 0 0 12px 0;
}

.social-profile.style-two li:last-child {
    margin-bottom: 0;
}

.social-profile.style-two li a img {
    filter: brightness(0) invert(0);
    transition: var(--transition);
    max-width: 20px;
}

.social-profile.style-two li a:hover img {
    filter: brightness(1) invert(0);
}

.social-profile.style-three li {
    display: inline-block;
    margin: 0 12px 0 0;
}

.social-profile.style-three li:last-child {
    margin: 0;
}

.social-profile.style-three li a img {
    filter: brightness(0) invert(0);
    transition: var(--transition);
    max-width: 20px;
}

.social-profile.style-three li a:hover img {
    filter: brightness(1) invert(0);
}

.section-title {
    font-size: 35px;
    line-height: 35px;
    letter-spacing: -0.04em;
}

.section-subtitle {
    font-size: 26px;
    line-height: 36px;
    letter-spacing: -0.05em;
}

.fixed-wrap,
.section-title-fixed {
    position: sticky;
    top: 100px;
    left: 0;
    width: 100%;
}

.rating li {
    display: inline-block;
    margin-right: -3px;
}

.rating li i {
    color: #f8b42b;
    font-size: 16px;
    line-height: 0.8;
}

.rating li.rated i {
    color: #f8b42b;
}

.rating li.unrated i {
    color: var(--paraColor);
}

.hover-anim-black,
.hover-anim-blue,
.hover-anim-white {
    position: relative;
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size 0.7s;
}

.hover-anim-black:hover,
.hover-anim-blue:hover,
.hover-anim-white:hover {
    background-size: 100% 2px;
}

.hover-anim-black:hover {
    background-image: linear-gradient(var(--titleColor), var(--titleColor));
}

.hover-anim-blue:hover {
    background-image: linear-gradient(var(--primaryColor), var(--primaryColor));
}

.hover-anim-white:hover {
    background-image: linear-gradient(var(--whiteColor), var(--whiteColor));
}

/*---------------------------------
   Preloader Area CSS
----------------------------------*/
.preloader-area {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    position: fixed;
    text-align: center;
    overflow: hidden;
    background-color: var(--whiteColor);
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 120px;
    height: 120px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #1786ef;
    animation: spin 2s linear infinite;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #0015ff;
    animation: spin 3s linear infinite;
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #1786ef;
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*---------------------------------
    Back To Top CSS
----------------------------------*/
.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.09);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    font-family: remixicon !important;
    content: "\ea76";
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    color: var(--primaryColor);
    left: 0;
    top: 2px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    animation: float 1500ms infinite ease-in-out;
    transition: all 200ms linear;
}

.progress-wrap:hover {
    background-color: var;
}

.progress-wrap:hover::before {
    opacity: 1;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--primaryColor);
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear;
}

/*---------------------------------
     Animation CSS
----------------------------------*/
.rotate {
    animation: rotation 20s infinite linear;
}

.bounce {
    animation: float 1500ms infinite ease-in-out;
}

.moveHorizontal {
    animation: moveHorizontal 3000ms infinite ease-in-out;
}

.moveVertical {
    animation: moveVertical 3000ms infinite ease-in-out;
}

.zoomIn {
    animation: zoom-in 3500ms infinite ease-in-out;
}

.animationFramesTwo {
    animation: animationFramesTwo 20000ms infinite ease-in-out;
}

.animationFramesThree {
    animation: animationFramesThree 20000ms infinite ease-in-out;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 80px, 0);
    }

    to {
        opacity: 1;
        transform: translateZ(0);
    }
}

.reveal-text {
    visibility: hidden;
    max-width: 100%;
}

.reveal-text .letter {
    position: relative;
    display: inline-block;
    will-change: transform;
    transform-style: preserve-3d;
}

.reveal-text .letter div {
    width: 100%;
    font-weight: 600;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.reveal-text .perspective {
    position: relative;
    display: inline-block;
}

.reveal-text .perspective div {
    position: relative;
    display: inline-block;
}

.reveal-text .word {
    display: inline-block;
}

.reveal-text .word div {
    letter-spacing: 1.2px;
    font-weight: 700;
}

@keyframes reveal {
    0% {
        transform: translate(0, 100%);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}

@keyframes zoom-in {
    0% {
        transform: scale(0.8, 0.8);
    }

    50% {
        transform: scale(1.07, 1.07);
    }

    100% {
        transform: scale(0.8, 0.8);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        transform: translateZ(0);
    }
}

@keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
    }
}

@keyframes moveHorizontal {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(-20px);
    }

    100% {
        transform: translateX(0px);
    }
}

@keyframes moveVertical {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes animationFramesTwo {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
    }

    20% {
        -webkit-transform: translate(73px, -1px) rotate(36deg);
    }

    40% {
        -webkit-transform: translate(141px, 72px) rotate(72deg);
    }

    60% {
        -webkit-transform: translate(83px, 122px) rotate(108deg);
    }

    80% {
        -webkit-transform: translate(-40px, 72px) rotate(144deg);
    }

    100% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes ripple {
    70% {
        box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        transform: translateZ(0);
    }
}

/*-------------------------------
    Custom Cursor CSS
-------------------------------*/
.cursor {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 1px solid rgba(23, 72, 234, 0.7);
    transition: all 150ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(calc(-50% + 15px), -50%);
    z-index: 999;
}

.cursor-inner {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: var(--primaryColor);
    opacity: 0.9;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition:
        width 0.3s,
        height 0.3s,
        opacity 0.3s;
    z-index: 999;
}

.hover {
    background-color: rgb(23, 72, 234);
    border-color: transparent;
    opacity: 0.8;
    width: 20px;
    height: 20px;
    z-index: 999;
}

.cursorinnerhover {
    width: 20px;
    height: 20px;
    opacity: 0.5;
}

/*-------------------------------
    Pagination CSS
-------------------------------*/
.page-nav li {
    margin: 0 6px;
    display: inline-block;
}

.page-nav li:first-child a,
.page-nav li:last-child a {
    width: 37px;
    height: 37px;
}

.page-nav li:first-child a:before,
.page-nav li:last-child a:before {
    display: none;
}

.page-nav li:first-child a i,
.page-nav li:last-child a i {
    left: -2px;
}

.page-nav li:last-child a i {
    right: -2px;
}

.page-nav li a {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    background-color: transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(35, 82, 238, 0.29);
    z-index: 1;
    font-size: 16px;
    letter-spacing: -0.02em;
    font-weight: 600;
}

.page-nav li a:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 0;
    height: 100%;
    opacity: 0;
    background: var(--neonGreenColor);
    z-index: -1;
    transition: var(--transition);
}

.page-nav li a i {
    font-size: 18px;
    font-weight: 300;
    line-height: 0.8;
    top: 6px;
    color: var(--titleColor);
    transition: var(--transition);
}

.page-nav li a img {
    transition: var(--transition);
    max-width: 17px;
}

.page-nav li a.active,
.page-nav li a:hover {
    border-color: transparent;
    background-color: var(--primaryColor);
    color: var(--whiteColor);
}

.page-nav li a.active:before,
.page-nav li a:hover:before {
    width: 100%;
    opacity: 1;
}

.page-nav li a.active img,
.page-nav li a:hover img {
    filter: brightness(0) invert(1);
}

.page-nav li a.active i,
.page-nav li a:hover i {
    color: var(--whiteColor);
}

/*-------------------------------
        Breadcrumb CSS
-------------------------------*/
.breadcrumb-wrap {
    padding: 0px 0 0;
}

.breadcrumb-wrap .br-content {
    border-bottom: 1px solid rgba(15, 15, 15, 0.18);
    padding-bottom: 23px;
}

/*-------------------------------
        Hero Section CSS
-------------------------------*/
.hero-wrap.style-one {
    padding-top: 70px;
}

.hero-wrap.style-one .thumb-news-wrapper .thumbnail-news-card {
    margin-bottom: 20px;
}

.hero-wrap.style-one .thumb-news-wrapper .thumbnail-news-card:last-child {
    margin-bottom: 0;
}

.hero-wrap.style-one .thumb-news-wrapper .section-subtitle {
    margin-bottom: 20px;
}

.hero-wrap.style-two {
    margin-top: 40px;
}

.hero-wrap.style-three {
    margin-top: 20px;
}

.hero-news-card {
    height: 686px;
    border-radius: 12px;
}

.hero-news-card.bg-1 {
    background-image: url(../img/hero/hero-slide-1.jpg.png);
}

.hero-news-card.bg-2 {
    background-image: url(../img/hero/hero-slide-2.jpg.png);
}

.hero-news-card.bg-3 {
    background-image: url(../img/hero/hero-slide-3.jpg.png);
}

.hero-news-card .news-info {
    width: calc(100% - 200px);
    position: absolute;
    bottom: -8px;
    left: 50%;
    border-radius: 10px 10px 0 0;
    transform: translateX(-50%);
    padding: 55px 100px 0;
}

.hero-news-card .news-info p {
    padding: 0 50px;
}

.slider-btn .hero-prev,
.slider-btn .hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    z-index: 1;
    border: 1px solid rgba(15, 15, 15, 0.31);
    background-color: var(--whiteColor);
    transition: var(--transition);
}

.slider-btn .hero-prev img,
.slider-btn .hero-next img {
    transition: var(--transition);
}

.slider-btn .hero-prev:hover,
.slider-btn .hero-next:hover {
    background-color: var(--primaryColor);
    border-color: transparent;
}

.slider-btn .hero-prev:hover img,
.slider-btn .hero-next:hover img {
    filter: brightness(0) invert(1);
}

.slider-btn .hero-prev {
    left: -15px;
}

.slider-btn .hero-next {
    right: -15px;
}

/*-------------------------------
        News Card CSS
-------------------------------*/
.main-topics-wrap .news-card-wrap {
    width: calc(100% - 184px);
}

.main-topics-wrap.full .news-card-wrap {
    width: 100%;
}

.main-topics-wrap.full .promo-box {
    width: 0;
    height: 0 !important;
    opacity: 0;
    visibility: hidden;
}

.promo-box {
    transition: var(--transition);
}

.promo-box.style-one:after,
.promo-box.style-two:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 6px;
    display: none
}

.promo-box.style-one {
    width: 160px;
    height: 675px;
}

.promo-box.style-one:after {
    background-color: rgba(0, 0, 0, 0.38);
}

.promo-box.style-one .close-promo-box {
    top: 5px;
    right: 5px;
    width: 19px;
    height: 19px;
    z-index: 2;
    transition: var(--transition);
}

.promo-box.style-one .close-promo-box i {
    transition: var(--transition);
}

.promo-box.style-one .close-promo-box:hover {
    background-color: var(--primaryColor) !important;
}

.promo-box.style-one .close-promo-box:hover i {
    color: var(--whiteColor);
}

.promo-box.style-one h5 {
    position: absolute;
    transform: rotate(-90deg);
    width: 100%;
    bottom: 139px;
    right: 0px;
    min-width: 240px;
}

.promo-box.style-one span {
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 46px);
    border-radius: 50px;
    line-height: 16px;
    padding: 5px 15px;
}

.promo-box.style-two {
    background-image: url(../img/promo-bg-2.jpg.png);
    padding-left: 45px;
    padding-right: 45px;
}

.promo-box.style-two:after {
    background-color: rgba(0, 0, 0, 0.71);
    border-radius: 6px;
}

.promo-box.style-two .promo-img img {
    position: relative;
    bottom: -8px;
}

.promo-box.style-two .close_promo-box {
    top: 10px;
    right: 10px;
    width: 21px;
    height: 21px;
    z-index: 2;
    transition: var(--transition);
}

.promo-box.style-two .close_promo-box i {
    transition: var(--transition);
}

.promo-box.style-two .close_promo-box:hover {
    background-color: var(--primaryColor) !important;
}

.promo-box.style-two .close_promo-box:hover i {
    color: var(--whiteColor);
}

.promo-box.style-two .close_promo-box i {
    line-height: 0.8;
}

.promo-box.style-two .promo-text {
    padding: 56px 0 92px;
}

.promo-box.style-two .promo-text span {
    border-radius: 50px;
    line-height: 16px;
    padding: 5px 18px 5px 15px;
}

.news-card.style-one .circle-text-wrap {
    width: 122px;
    height: 122px;
    top: -53px;
    right: 51px;
}

.news-card.style-one .circle-text-wrap .center-img {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.news-card.style-one .news-info {
    position: absolute;
    bottom: 35px;
    left: 0;
}

.news-card.style-one .news-info .news-metainfo {
    background-color: var(--secondaryColor);
    line-height: 1;
    padding: 5px 19px 6px 41px;
    margin-bottom: 12px;
}

.news-card.style-one .news-info h1 {
    font-size: 42px;
    line-height: 58px;
    padding-right: 30px;
}

.news-card.style-one .news-info h1 a {
    position: relative;
    color: var(--whiteColor);
}

.news-card.style-one .news-info h1 a span {
    display: inline-block;
    background-color: var(--primaryColor);
    padding-left: 41px;
    padding-right: 17px;
}

.news-card.style-one .news-info h1 a span:nth-child(1) {
    margin-bottom: 7px;
}

.news-card.style-three .news-metainfo {
    margin-bottom: 8px;
}

.news-card.style-three .news-info {
    position: absolute;
    bottom: 22px;
    left: 20px;
    padding-right: 20px;
}

.news-card.style-three .news-info > div h3 {
    width: calc(100% - 58px);
    margin-right: auto;
}

.news-card.style-four .news-img {
    width: 350px;
}

.news-card.style-four .news-info {
    width: calc(100% - 370px);
    margin-left: auto;
}

.news-card.style-six .news-img .play-video {
    width: 58px;
    height: 58px;
    position: absolute;
    top: 35px;
    right: 35px;
}

.news-card.style-six .news-img .play-video i {
    font-size: 25px;
}

.news-card.style-six .news-info {
    position: absolute;
    bottom: 20px;
    left: 35px;
    padding-right: 35px;
}

.news-card.style-six .news-info h3 {
    margin-top: 15px;
}

.news-card.style-six .news-info .news-action-wrap .news-action span img {
    filter: brightness(0) invert(1);
    opacity: 1;
}

.news-card.style-six .news-info .news-action-wrap .news-action ul {
    left: -100px;
}

.news-card .news-category {
    padding: 5px 15px 6px;
    line-height: 16px;
    top: 10px;
    left: 10px;
}

.news-card:hover .hover-anim-img > img {
    transform: translate3d(-10px, 0, 0);
}

.feature-news-card {
    padding: 30px 25px 30px;
}

.feature-news-card:hover {
    transform: translateY(-5px);
}

.feature-news-card .news-category {
    line-height: 18px;
    padding: 7px 20px 9px;
    border-radius: 50px;
}

.feature-news-card .news-category:hover {
    background-color: var(--titleColor);
}

.feature-news-card {
    background-color: #f1f4fe;
    transition: 0.3s all;
    height: 100%;
    /* fill row height */
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.test {
    border: 2px dashed #212c78;
    padding: 0.5rem 1rem;
    background: transparent;
    color: black;
    transition:
        background 0.3s,
        transform 0.2s;
}

.test:hover {
    background: white;
    color: #1e2c89;
    transform: rotate(-1deg) scale(1.03);
}

/* ===== FLEXIBLE GRID, EQUAL HEIGHTS PER ROW ===== */
.parent {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    grid-auto-flow: dense;
    /* packs items tightly */
    align-items: stretch;
    /* cards stretch to the row height */
}

/* Each card is a grid item; default = 1 column wide */
.parent > article {
    grid-column: span 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

/* Put this near your grid/card rules */
.feature-news-card.span-2 {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* push all children to the bottom */
    padding: 16px;
    /* match your card spacing */
    height: 100%;
    /* fill row height */
}

/* (Optional) small spacing between bottom elements */
.feature-news-card.span-2 .news-metainfo {
    margin-bottom: 8px;
}

.feature-news-card.span-2 .news-category {
    margin-bottom: 8px;
}

/* Make any card 2 columns wide by adding .span-2 */
.parent > article.span-2 {
    grid-column: span 2;
}

/* Responsive breakpoints */
@media (max-width: 1200px) {
    .parent {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .parent {
        grid-template-columns: 1fr;
    }

    .parent > article.span-2 {
        grid-column: span 1;
    }
}

.card-normal {
    transition: 0.3s all;
    width: 100%;
    max-width: none;
    /* let grid control width */
    border-radius: 8px;
    overflow: hidden;
    box-shadow:
        rgba(14, 63, 126, 0.06) 0px 0px 0px 1px,
        rgba(42, 51, 70, 0.03) 0px 1px 1px -0.5px,
        rgba(42, 51, 70, 0.04) 0px 2px 2px -1px,
        rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px,
        rgba(42, 51, 70, 0.03) 0px 5px 5px -2.5px,
        rgba(42, 51, 70, 0.03) 0px 10px 10px -5px,
        rgba(42, 51, 70, 0.03) 0px 24px 24px -8px;
    font-family: Arial, sans-serif;
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    /* fill row height */
}

.card-normal:hover {
    transform: translateY(-5px);
}

.feature-news-card.slider-card {
    position: relative;
    color: #fff;
    width: 100%;
    padding: 0 !important;
    height: 100%;
    min-height: 300px
    /* fill row height */
    display: flex;
    flex-direction: column;
}

.ad-card {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    min-height: 100%;
    border-radius: 0px;
    transition: 0.3s all;
}

.ad-card:hover {
    transform: scale(1.01);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ad-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.ad-card a {
    height: 100%;
    width: 100%;
}

.ad-card img {
    height: 100%;
    width: 100%;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.slider-dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

.arrow-right {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.arrow-left {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.article-meta {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #1f2c78;
}

.article-category {
    border-radius: 4px;
    background-color: #f1f4fe;
    padding: 2px 6px;
}

.article-title {
    font-size: 18px;
    line-height: 1.4;
    margin: 0;
    font-weight: bold;
    color: rgb(255, 255, 255);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.article-footer {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 14px;
    color: #333;
}

.feature-news-card.slider-card.article-footer {
    color: white !important;
}

/* Consistent image area; text below can grow as needed */
.article-image {
    width: 100%;
    aspect-ratio: 16/9;
    /* consistent image height across cards */
    background-size: cover;
    background-position: center;
    flex: 0 0 auto;
}

.play-video {
    cursor: pointer;
}

.play-video i {
    position: relative;
    left: 1.5px;
    top: 1px;
    line-height: 1;
}

.play-video.style-one {
    width: 50px;
    height: 50px;
}

.play-video.style-one i {
    font-size: 21px;
}

.play-video.style-two {
    width: 72px;
    height: 72px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.play-video.style-two i {
    font-size: 28px;
}

.hover-anim-img > img {
    max-width: none;
    width: calc(100% + 10px);
    transform: translate3d(0, 0, 0);
}

.news-action-wrap .news-action-status ul li {
    display: inline-block;
    width: 27px;
    height: 27px;
    border: 1px solid #dde0de;
    background-color: var(--whiteColor);
    margin-left: -5px;
}

.news-action-wrap .news-action-status ul li:first-child {
    margin-left: 0;
}

.news-action-wrap .news-action-status ul li img {
    max-width: 17px;
}

.news-action-wrap .news-action-status span {
    color: rgba(15, 15, 15, 0.62);
    margin-left: 9px;
}

.news-action-wrap .news-action {
    margin-left: 23px;
}

.news-action-wrap .news-action span {
    position: relative;
    top: -5px;
}

.news-action-wrap .news-action span img {
    opacity: 0.4;
    transition: var(--transition);
}

.news-action-wrap .news-action ul {
    position: absolute;
    top: -55px;
    left: -95px;
    min-width: 225px;
    border-radius: 50px;
    background-color: var(--whiteColor);
    padding: 13px 22px;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
}

.news-action-wrap .news-action ul li {
    margin-right: 5px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(6px);
    transition: var(--transition);
}

.news-action-wrap .news-action ul li:last-child {
    margin-right: 0;
}

.news-action-wrap .news-action ul li img {
    transition: var(--transition);
}

.news-action-wrap .news-action ul li:hover button img {
    transform: scale(0.9);
}

.news-action-wrap .news-action:hover span img {
    opacity: 1;
}

.news-action-wrap .news-action:hover ul {
    visibility: visible;
    opacity: 1;
}

.news-action-wrap .news-action:hover ul li {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.news-action-wrap .news-action:hover ul li:nth-child(1) {
    transition-delay: 0.1s;
}

.news-action-wrap .news-action:hover ul li:nth-child(2) {
    transition-delay: 0.2s;
}

.news-action-wrap .news-action:hover ul li:nth-child(3) {
    transition-delay: 0.3s;
}

.news-action-wrap .news-action:hover ul li:nth-child(4) {
    transition-delay: 0.4s;
}

.news-action-wrap .news-action:hover ul li:nth-child(5) {
    transition-delay: 0.5s;
}

.news-action-wrap.style-two {
    bottom: 20px;
    right: 20px;
}

.news-action-wrap.style-two .news-action span img {
    filter: brightness(0) invert(1);
    opacity: 1;
}

.news-action-wrap.style-two .news-action ul {
    left: auto;
    right: 0;
}

.news-tablist .nav-item {
    margin-right: 10px;
}

.news-tablist .nav-item:last-child {
    margin-right: 0;
}

.news-tablist .nav-item .nav-link {
    border: 1px solid rgba(35, 82, 238, 0.65);
    border-radius: 50px;
    display: inline-block;
    padding: 2px 16px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: rgba(35, 82, 238, 0.65);
}

.news-tablist .nav-item .nav-link.active,
.news-tablist .nav-item .nav-link:hover {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
    border-color: transparent;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(
        180deg,
        rgba(15, 15, 15, 0) 0%,
        rgba(15, 15, 15, 0.9) 94%
    );
}

.overlay.style-two {
    background: linear-gradient(
        180deg,
        rgba(15, 15, 15, 0) 0%,
        rgba(15, 15, 15, 0.58) 100%
    );
}

.overlay.style-three {
    height: 78%;
    background: linear-gradient(
        180deg,
        rgba(15, 15, 15, 0) 0%,
        rgba(15, 15, 15, 0.58) 100%
    );
}

.overlay.style-four {
    height: 78%;
    background: linear-gradient(
        180deg,
        rgba(15, 15, 15, 0) 0%,
        rgba(15, 15, 15, 0.9) 80%
    );
}

.news-metainfo {
    line-height: 16px;
}

.news-metainfo li {
    position: relative;
    display: inline-block;
    margin-right: 7px;
    padding-right: 17px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.news-metainfo li:after {
    position: absolute;
    top: 0px;
    right: 0;
    content: "/";
    color: var(--titleColor);
    font-size: 13px;
}

.news-metainfo li:last-child {
    margin-right: 0;
    padding-right: 0;
}

.news-metainfo li:last-child:after {
    display: none;
}

.news-metainfo li.news-author .author-img {
    width: 35px;
    height: 35px;
    margin-right: 10px;
}

.news-metainfo li.news-author:after {
    top: 10px;
}

.news-metainfo li i {
    font-size: 17px;
    line-height: 0.8;
    color: rgba(15, 15, 15, 0.46);
    position: relative;
    top: 1px;
    margin-right: 4px;
}

.news-metainfo li a {
    color: var(--primaryColor);
    position: relative;
}

.news-metainfo li a:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 0%;
    height: 1px;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
    background-color: var(--primaryColor);
}

.news-metainfo li a:hover:after {
    visibility: visible;
    opacity: 1;
    width: 100%;
}

.news-metainfo.style-one li {
    color: var(--titleColor);
}

.news-metainfo.style-one li:after {
    color: var(--titleColor);
}

.news-metainfo.style-two li {
    color: #565c59;
}

.news-metainfo.style-two li:after {
    color: var(--titleColor);
}

.news-metainfo.style-three li {
    color: var(--whiteColor);
}

.news-metainfo.style-three li i {
    color: rgba(255, 255, 255, 0.46);
}

.news-metainfo.style-three li:after {
    color: var(--whiteColor);
}

.news-metainfo.style-three li a {
    color: var(--secondaryColor);
}

.news-metainfo.style-three li a:after {
    background-color: var(--secondaryColor);
}

.news-metainfo.style-four li {
    color: rgba(255, 255, 255, 0.51);
}

.news-metainfo.style-four li i {
    color: var(--secondaryColor);
}

.news-metainfo.style-four li:after {
    color: rgba(255, 255, 255, 0.51);
}

.news-metainfo.style-four li a {
    color: var(--primaryColor);
}

.news-metainfo.style-four li a:after {
    background-color: var(--primaryColor);
}

.news-metainfo.style-five li {
    font-weight: 400;
    color: var(--linkColor);
}

.news-metainfo.style-five li i {
    color: var(--primaryColor);
}

.news-metainfo.style-five li:after {
    color: rgba(15, 15, 15, 0.29);
}

.news-metainfo.style-five li a {
    color: var(--linkColor);
}

.news-metainfo.style-five li a:after {
    background-color: var(--primaryColor);
}

.news-metainfo.style-five li a:hover {
    color: var(--primaryColor);
}

.news-metainfo.style-six li {
    color: rgba(255, 255, 255, 0.67);
}

.news-metainfo.style-six li i {
    color: var(--secondaryColor);
}

.news-metainfo.style-six li:after {
    color: rgba(255, 255, 255, 0.67);
}

.news-metainfo.style-six li a {
    color: var(--secondaryColor);
}

.news-metainfo.style-six li a:after {
    background-color: var(--secondaryColor);
}

.news-metainfo.style-seven li {
    color: rgba(255, 255, 255, 0.67);
}

.news-metainfo.style-seven li i {
    color: rgb(255, 255, 255);
}

.news-metainfo.style-seven li:after {
    color: rgba(255, 255, 255, 0.67);
}

.news-metainfo.style-seven li a {
    color: var(--whiteColor);
}

.news-metainfo.style-seven li a:after {
    background-color: var(--whiteColor);
}

.thumbnail-news-card.style-one .news-img {
    width: 100px;
    height: 100px;
}

.thumbnail-news-card.style-one .news-info {
    width: calc(100% - 120px);
    margin-left: auto;
}

.thumbnail-news-card.style-one .news-info .news-metainfo {
    margin-bottom: 13px;
}

.thumbnail-news-card.style-two .author-img {
    width: 89px;
    height: 89px;
    position: relative;
    top: 10px;
}

.thumbnail-news-card.style-two .news-info {
    width: calc(100% - 105px);
    margin-left: auto;
}

.thumbnail-news-card.style-three .news-img {
    width: 190px;
}

.thumbnail-news-card.style-three .news-info {
    width: calc(100% - 216px);
    margin-left: auto;
    position: relative;
    top: 2px;
}

.thumbnail-news-card.style-three .news-info .news-metainfo {
    margin-bottom: 13px;
}

.thumbnail-news-card.style-four .news-img {
    width: 134px;
}

.thumbnail-news-card.style-four .news-info {
    width: calc(100% - 150px);
    margin-left: auto;
    position: relative;
    top: 2px;
}

.thumbnail-news-card.style-four .news-info .news-metainfo {
    margin-bottom: 13px;
}

/*-------------------------------
        News Card CSS
-------------------------------*/
.video-wrap {
    background-image: url(../img/video-bg.jpg.png);
}

.video-wrap .video-info {
    position: relative;
    z-index: 2;
    padding-top: 325px;
    padding-bottom: 100px;
}

.video-wrap .video-info .news-metainfo {
    padding: 5px 18.5px;
}

.video-wrap .video-info h3 a {
    position: relative;
    background-position: 0% 100%;
    background-repeat: no-repeat;
    transition: background-size 0.7s;
    background-size: 100% 74px;
    line-height: 78px;
    padding: 0 15px;
    background-image: linear-gradient(var(--primaryColor), var(--primaryColor));
}

.video-wrap .video-info h3 a span {
    padding: 0 15px;
    display: block;
    background-color: var(--primaryColor);
}

.video-wrap .video-info .play-video {
    width: 84px;
    height: 84px;
    margin-bottom: 29px;
    transition: var(--transition);
}

.video-wrap .video-info .play-video i {
    font-size: 35px;
    transition: var(--transition);
}

.video-wrap .video-info .play-video:hover {
    background-color: var(--primaryColor) !important;
}

.video-wrap .video-info .play-video:hover i {
    color: var(--whiteColor);
}

/*-------------------------------
        Subscribe CSS
-------------------------------*/
.subscribe-box.style-one {
    padding: 30px 45px 0 46px;
}

.subscribe-box.style-one:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: calc(100% - 20px);
    background-color: var(--primaryColor);
    z-index: -1;
    border-radius: 5px;
}

.subscribe-box.style-one .subscribe-content {
    margin-top: 22px;
}

.subscribe-box.style-one .subscribe-content .subscribe-form input {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--whiteColor);
    font-size: 15px;
    padding: 0 15px 15px 0;
    letter-spacing: -0.02em;
}

.subscribe-box.style-one
    .subscribe-content
    .subscribe-form
    input::-moz-placeholder {
    color: var(--whiteColor);
    opacity: 1;
}

.subscribe-box.style-one .subscribe-content .subscribe-form input::placeholder {
    color: var(--whiteColor);
    opacity: 1;
}

.subscribe-box.style-one .subscribe-content .subscribe-form button {
    position: absolute;
    bottom: 17px;
    right: 0;
}

.subscribe-box.style-three {
    padding: 40px 30px 45px;
}

.subscribe-box.style-three .subscribe-content .subscribe-form input {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--whiteColor);
    font-size: 15px;
    padding: 0 15px 15px 0;
    letter-spacing: -0.02em;
}

.subscribe-box.style-three
    .subscribe-content
    .subscribe-form
    input::-moz-placeholder {
    color: var(--whiteColor);
    opacity: 1;
}

.subscribe-box.style-three
    .subscribe-content
    .subscribe-form
    input::placeholder {
    color: var(--whiteColor);
    opacity: 1;
}

.subscribe-box.style-three .subscribe-content .subscribe-form button {
    position: absolute;
    bottom: 5px;
    right: 0;
}

.subscribe-box.style-four {
    background-image: url(../img/fb-cta.jpg);
    padding: 69px 50px 75px 50px;
}

.subscribe-box.style-four:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 28%);
    z-index: -1;
    border-radius: 6px;
}

.subscribe-box.style-four .subscribe-form input {
    color: var(--titleColor);
    padding: 12px 20px 12px 20px;
    height: 52px;
}

.subscribe-box.style-four .subscribe-form input::-moz-placeholder {
    color: rgba(15, 15, 15, 0.58);
    opacity: 1;
}

.subscribe-box.style-four .subscribe-form input::placeholder {
    color: rgba(15, 15, 15, 0.58);
    opacity: 1;
}

.subscribe-box.style-four .subscribe-form button {
    top: 0;
    right: 5px;
    padding: 12px;
    height: 100%;
    color: var(--primaryColor);
    letter-spacing: -0.02em;
}

.subscribe-box.style-four .subscribe-form button img {
    position: relative;
    top: -1px;
    margin-left: 5px;
}

/*-------------------------------
        News Details CSS
-------------------------------*/
.terms-wrap p,
.news-details p {
    margin-bottom: 22px;
}

.terms-wrap p strong,
.terms-wrap p b,
.news-details p strong,
.news-details p b {
    color: var(--titleColor);
}

.terms-wrap h1,
.terms-wrap h2,
.terms-wrap h3,
.terms-wrap h4,
.terms-wrap h5,
.terms-wrap h6,
.news-details h1,
.news-details h2,
.news-details h3,
.news-details h4,
.news-details h5,
.news-details h6 {
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.terms-wrap h1,
.news-details h1 {
    font-size: 46px;
    line-height: 60px;
}

.terms-wrap h2,
.news-details h2 {
    font-size: 40px;
}

.terms-wrap h3,
.news-details h3 {
    font-size: 36px;
}

.terms-wrap h4,
.news-details h4 {
    font-size: 32px;
}

.terms-wrap h5,
.news-details h5 {
    font-size: 26px;
}

.terms-wrap h6,
.news-details h6 {
    font-size: 22px;
}

.terms-wrap p:last-child,
.news-details p:last-child {
    margin-bottom: 0;
}

.terms-wrap ol,
.news-details ol {
    margin-top: 20px;
    margin-bottom: 30px;
}

.terms-wrap ol li,
.news-details ol li {
    margin-bottom: 15px;
    color: var(--paraColor);
    padding-left: 3px;
}

.terms-wrap .single-img,
.news-details .single-img {
    position: relative;
    margin-bottom: 30px;
    display: block;
}

.terms-wrap .single-img span,
.news-details .single-img span {
    display: block;
    padding: 13px 20px;
    border-radius: 0 0 6px 6px;
    background-color: #e9eefd;
}

.terms-wrap .blog-metainfo,
.news-details .blog-metainfo {
    margin-bottom: 20px;
}

.terms-wrap .single-para,
.news-details .single-para {
    margin-bottom: 40px;
}

.terms-wrap .single-para:last-child,
.news-details .single-para:last-child {
    margin-bottom: 0;
}

.terms-wrap .feature-list li,
.news-details .feature-list li {
    position: relative;
    margin-bottom: 15px;
    padding-left: 22px;
    color: #343535;
    letter-spacing: -0.02em;
}

.terms-wrap .feature-list li:last-child,
.news-details .feature-list li:last-child {
    margin-bottom: 0;
}

.terms-wrap .feature-list li:before,
.news-details .feature-list li:before {
    position: absolute;
    top: 13px;
    left: 5px;
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #343535;
}

.terms-wrap .wp-blockquote,
.news-details .wp-blockquote {
    background-color: #e9eefd;
    padding: 31px 35px 31px 40px;
    border-radius: 10px;
}

.terms-wrap .wp-blockquote .quote-icon,
.news-details .wp-blockquote .quote-icon {
    width: 81px;
    height: 81px;
}

.terms-wrap .wp-blockquote div,
.news-details .wp-blockquote div {
    width: calc(100% - 117px);
    margin-left: auto;
}

.terms-wrap .wp-blockquote div h6,
.news-details .wp-blockquote div h6 {
    margin-bottom: 8px;
}

.terms-wrap .wp-blockquote div span,
.news-details .wp-blockquote div span {
    color: rgba(86, 92, 89, 0.93);
}

.news-details-area > .social-profile {
    width: 35px;
}

.news-details-area > .social-profile li {
    display: block;
    margin: 0 0 12px;
}

.news-details-area > .social-profile li:last-child {
    margin-bottom: 0;
}

.news-details-area > .social-profile li a img {
    filter: brightness(0) invert(0);
    transition: var(--transition);
    max-width: 20px;
}

.news-details-area > .social-profile li a:hover img {
    filter: brightness(1) invert(0);
}

.news-details-area .news-details-wrap {
    width: calc(100% - 43px);
    margin-left: auto;
    padding-right: 25px;
}

.news-metaoption {
    padding: 45px 0;
    border-bottom: 1px solid rgba(15, 15, 15, 0.18);
}

.news-metaoption .post-share h6,
.news-metaoption .post-tag h6 {
    font-size: 20px;
    line-height: 1;
    letter-spacing: -0.01rem;
    margin-right: 12px;
}

.news-metaoption .post-share .social-profile {
    line-height: 1;
    position: relative;
    top: 2px;
}

.news-metaoption .post-share .social-profile li a i {
    font-size: 18px;
}

.news-metaoption .post-share .social-profile li a:hover i {
    color: var(--primaryColor);
}

.news-pagination {
    padding: 55px 0;
}

.news-pagination:after {
    position: absolute;
    top: 50%;
    left: 50%;
    content: "";
    width: 1px;
    height: 86px;
    transform: translateY(-50%);
    background-color: rgba(15, 15, 15, 0.18);
}

.news-pagination .prev-news,
.news-pagination .next-news {
    width: 48%;
}

.news-pagination .prev-news .thumbnail-news-card .news-img,
.news-pagination .next-news .thumbnail-news-card .news-img {
    width: 128px;
}

.news-pagination .prev-news .thumbnail-news-card .news-img > img,
.news-pagination .next-news .thumbnail-news-card .news-img > img {
    width: 105px;
    height: 105px;
    display: block;
}

.news-pagination .prev-news .thumbnail-news-card .news-img span,
.news-pagination .next-news .thumbnail-news-card .news-img span {
    width: 42px;
    height: 42px;
    position: absolute;
    top: 50%;
    border: 1px solid rgba(15, 15, 15, 0.31);
    transform: translateY(-50%);
    transition: var(--transition);
}

.news-pagination .prev-news .thumbnail-news-card .news-img span img,
.news-pagination .next-news .thumbnail-news-card .news-img span img {
    max-width: 19px;
    transition: var(--transition);
}

.news-pagination .prev-news .thumbnail-news-card .news-img span:hover,
.news-pagination .next-news .thumbnail-news-card .news-img span:hover {
    background-color: var(--primaryColor) !important;
    border-color: transparent;
}

.news-pagination .prev-news .thumbnail-news-card .news-img span:hover img,
.news-pagination .next-news .thumbnail-news-card .news-img span:hover img {
    filter: brightness(0) invert(1);
}

.news-pagination .prev-news .thumbnail-news-card .news-info,
.news-pagination .next-news .thumbnail-news-card .news-info {
    width: calc(100% - 150px);
}

.news-pagination .prev-news .thumbnail-news-card .news-img > img {
    margin-left: auto;
}

.news-pagination .prev-news .thumbnail-news-card .news-img span {
    left: 0;
}

.news-pagination .prev-news .thumbnail-news-card .news-info {
    margin-left: auto;
}

.news-pagination .next-news .thumbnail-news-card .news-img > img {
    margin-right: auto;
}

.news-pagination .next-news .thumbnail-news-card .news-img span {
    right: 0;
}

.news-pagination .next-news .thumbnail-news-card .news-info {
    margin-right: auto;
}

.comment-item-wrap .comment-item {
    position: relative;
    border-bottom: 1px solid rgba(15, 15, 15, 0.18);
    padding-bottom: 30px;
    margin-bottom: 40px;
    border-radius: 0;
}

.comment-item-wrap .comment-item.reply {
    margin-left: 97px;
}

.comment-item-wrap .comment-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.comment-item-wrap .comment-item .comment-author .comment-author-img {
    width: 46px;
    height: 46px;
}

.comment-item-wrap .comment-item .comment-author .comment-author-info {
    width: calc(100% - 57px);
    margin-left: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    top: 4px;
}

.comment-item-wrap .comment-item .comment-author .comment-author-info h5 {
    width: 70%;
    font-size: 20px;
    letter-spacing: -0.01em;
}

.comment-item-wrap .comment-item .comment-author .comment-author-info h5 span {
    color: rgba(86, 92, 89, 0.71);
}

.comment-item-wrap .comment-item .comment-author .comment-author-info a {
    margin-left: auto;
    text-align: right;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    padding: 8.5px 17px;
    color: var(--primaryColor);
    border-radius: 2px;
    background-color: rgba(35, 82, 238, 0.1);
}

.comment-item-wrap .comment-item .comment-author .comment-author-info a:hover {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
}

.comment-item-wrap .comment-item .comment-author .comment-author-info p {
    width: 100%;
    margin: 10px 0 0;
    color: rgba(79, 84, 81, 0.85);
}

.login-form-wrap .form-group input,
.login-form-wrap .form-group select,
.login-form-wrap .form-group textarea,
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea,
.comment-form .form-group input,
.comment-form .form-group select,
.comment-form .form-group textarea {
    width: 100%;
    color: rgba(15, 15, 15, 0.54);
    padding: 14px 20px 14px 20px;
    border: 1px solid rgba(15, 15, 15, 0.1);
    letter-spacing: -0.02em;
}

.login-form-wrap .form-group input::-moz-placeholder,
.login-form-wrap .form-group select::-moz-placeholder,
.login-form-wrap .form-group textarea::-moz-placeholder,
.contact-form .form-group input::-moz-placeholder,
.contact-form .form-group select::-moz-placeholder,
.contact-form .form-group textarea::-moz-placeholder,
.comment-form .form-group input::-moz-placeholder,
.comment-form .form-group select::-moz-placeholder,
.comment-form .form-group textarea::-moz-placeholder {
    color: #858f97;
    opacity: 1;
}

.login-form-wrap .form-group input::placeholder,
.login-form-wrap .form-group select::placeholder,
.login-form-wrap .form-group textarea::placeholder,
.contact-form .form-group input::placeholder,
.contact-form .form-group select::placeholder,
.contact-form .form-group textarea::placeholder,
.comment-form .form-group input::placeholder,
.comment-form .form-group select::placeholder,
.comment-form .form-group textarea::placeholder {
    color: #858f97;
    opacity: 1;
}

.login-form-wrap .form-group input,
.login-form-wrap .form-group select,
.contact-form .form-group input,
.contact-form .form-group select,
.comment-form .form-group input,
.comment-form .form-group select {
    height: 51px;
}

.login-form-wrap .form-group textarea,
.contact-form .form-group textarea,
.comment-form .form-group textarea {
    height: 161px;
    resize: none;
    padding-top: 11px;
}

.login-form-wrap .rating li i,
.contact-form .rating li i,
.comment-form .rating li i {
    font-size: 20px;
}

.contact-form .form-group textarea {
    height: 200px;
}

.checkbox {
    display: block;
}

.checkbox.form-check {
    padding-left: 0;
}

.checkbox input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.checkbox label {
    position: relative;
    cursor: pointer;
    color: var(--paraColorTwo);
    padding-left: 29px;
}

.checkbox label:before {
    content: "";
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
    background-color: var(--grayColor);
    border: 1px solid rgba(15, 15, 15, 0.65);
    width: 17px;
    height: 17px;
    border-radius: 50%;
    position: absolute;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
    position: absolute;
    left: 0;
    top: 6px;
}

.checkbox label a {
    color: var(--primaryColor);
    font-weight: 500;
}

.checkbox input:checked + label:before {
    border-color: transparent;
}

.checkbox input:checked + label:after {
    content: "";
    display: block;
    position: absolute;
    top: 6px;
    left: 0;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    border: none;
    background: var(--primaryColor);
}

.sidebar .sidebar-widget {
    padding-left: 35px;
    padding-bottom: 15px;
    margin-bottom: 45px;
}

.sidebar .sidebar-widget:last-child {
    margin-bottom: 0;
    padding-bottom: 55px;
    border-bottom: none;
}

.sidebar.style-two .sidebar-widget {
    padding-left: 35px;
}

.sidebar.fixed-wrap {
    margin-bottom: 55px;
}

.sidebar.fixed-wrap .sidebar-widget:last-child {
    padding-bottom: 0;
}

.category-list li {
    margin-bottom: 18px;
}

.category-list li:last-child {
    margin-bottom: 0;
}

.category-list li a {
    position: relative;
    padding-left: 24px;
    font-size: 18px;
    letter-spacing: -0.01em;
    color: var(--linkColor);
}

.category-list li a:before {
    position: absolute;
    top: 4.5px;
    left: 0;
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--titleColor);
    transition: var(--transition);
}

.category-list li a.active,
.category-list li a:hover {
    color: var(--primaryColor);
    padding-left: 26px;
}

.category-list li a.active:before,
.category-list li a:hover:before {
    background-color: var(--primaryColor);
    border-color: transparent;
}

.popular-news-widget .thumbnail-news-card {
    margin-bottom: 30px;
}

.popular-news-widget .thumbnail-news-card:last-child {
    margin-bottom: 0;
}

.tag-list {
    margin-top: -15px;
}

.tag-list li {
    display: inline-block;
    margin: 15px 6px 0px 0px;
}

.tag-list li:last-child {
    margin-right: 0;
}

.tag-list li a {
    color: var(--primaryColor);
    padding: 7.5px 16px 7.5px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    background-color: rgba(35, 82, 238, 0.1);
}

.tag-list li a:hover {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
}

.tag-list.style-two li {
    margin: 0 6px 5px 0px;
}

.tag-list.style-two li a {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
}

.tag-list.style-two li a:hover {
    background-color: rgba(35, 82, 238, 0.1);
    color: var(--primaryColor);
}

/*---------------------------------
    Popup Newsletter CSS
-----------------------------------*/
#newsletter-popup .modal-content {
    position: relative;
    border-radius: 5px;
}

#newsletter-popup .modal-content .btn_close {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    background-color: transparent;
    z-index: 1;
    padding: 0;
}

#newsletter-popup .modal-content .btn_close i {
    font-size: 26px;
}

#newsletter-popup .modal-body {
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    text-align: center;
}

#newsletter-popup .modal-body .newsletter-bg {
    width: 38.5%;
    background-image: url(../img/newsletter-bg.webp);
    height: 570px;
    min-height: 100%;
    border-radius: 5px 0 0 5px;
}

#newsletter-popup .modal-body .newsletter-content {
    width: 60%;
    padding: 127px 97px;
    background-color: var(--whiteColor);
    border-radius: 0 5px 5px 0;
}

#newsletter-popup .modal-body .newsletter-content img {
    display: block;
    margin: 0 auto 8px;
}

#newsletter-popup .modal-body .newsletter-content .newsletter-form {
    display: flex;
    flex-wrap: wrap;
    margin: 41px 0 16px;
}

#newsletter-popup .modal-body .newsletter-content .newsletter-form input {
    width: 300px;
    height: 52px;
    padding: 15px 20px;
    border-radius: 5px;
    border: none;
    background-color: var(--grayColor);
    color: var(--paraColor);
    margin-right: 20px;
}

#newsletter-popup
    .modal-body
    .newsletter-content
    .newsletter-form
    input::-moz-placeholder {
    color: var(--paraColor);
    opacity: 1;
}

#newsletter-popup
    .modal-body
    .newsletter-content
    .newsletter-form
    input::placeholder {
    color: var(--paraColor);
    opacity: 1;
}

#newsletter-popup .modal-body .newsletter-content .newsletter-form button {
    width: calc(100% - 320px);
    border-radius: 5px;
    background-color: var(--primaryColor);
    color: var(--whiteColor);
}

#newsletter-popup .modal-body .newsletter-content .newsletter-form button i {
    position: relative;
    top: 2px;
    margin-left: 9px;
    font-size: 15px;
}

/*-------------------------------
    About Us & Contact CSS
-------------------------------*/
.about-wrap .about-img-wrap .exp-content {
    position: absolute;
    top: 0px;
    left: 28px;
}

.about-wrap .about-img-wrap .exp-content span {
    font-size: 60px;
    line-height: 73px;
    letter-spacing: -0.04em;
    display: block;
    margin-bottom: 2px;
}

.about-wrap .about-content .para p {
    margin-bottom: 20px;
}

.about-wrap .about-content .para p:last-child {
    margin-bottom: 0;
}

.about-wrap .about-content .btn {
    margin-top: 39px;
}

.board-card:hover .hover-anim-img > img {
    transform: translate3d(-10px, 0, 0);
}

.comp-card {
    padding: 35px 30px 34px 35px;
}

.comp-card p {
    margin: 15px 0 52px;
}

.comp-card .social-profile li {
    margin-right: 13px;
}

.comp-card .social-profile li:last-child {
    margin-right: 0;
}

.comp-card .social-profile li a img {
    filter: brightness(0) invert(0);
    transition: var(--transition);
}

.comp-card .social-profile li a:hover img {
    filter: brightness(1) invert(0);
}

.wh-content {
    background-color: #f0f4fe;
    padding: 40px 40px 40px;
    position: relative;
    z-index: 1;
    width: calc(100% + 28px);
}

.wh-content h3 {
    margin-bottom: 28px;
}

.wh-content p {
    padding-bottom: 26px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(15, 15, 15, 0.12);
}

.wh-content .features-list {
    padding-left: 21px;
    margin-bottom: 38px;
}

.wh-content .features-list li {
    margin-bottom: 12px;
}

.wh-content .features-list li:last-child {
    margin-bottom: 0;
}

.contact-content h2 {
    margin-bottom: 20px;
}

.contact-content .contact-text {
    padding-bottom: 18px;
    margin-bottom: 19px;
    border-bottom: 1px solid rgba(15, 15, 15, 0.19);
}

.contact-content .social-profile li {
    margin-right: 9px;
}

.contact-content .social-profile li:last-child {
    margin-right: 0;
}

.contact-content .social-profile li a {
    width: 36px;
    height: 36px;
    background-color: var(--grayColor);
    border: 1px solid rgba(15, 15, 15, 0.1);
}

.contact-content .social-profile li a:hover {
    transform: translateY(-5px);
}

.comp-map {
    height: 622px;
    width: 100%;
}

.comp-map iframe {
    width: 100%;
    height: 100%;
}

/*-------------------------------
    FAQ & Error CSS
-------------------------------*/
.accordion-item {
    margin: 0 0 13px;
    background: transparent;
    border: 1px solid rgba(15, 15, 15, 0.1);
    border-top: 1px solid rgba(15, 15, 15, 0.1) !important;
    border-radius: 6px;
    background-color: var(--grayColor);
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-item .accordion-header {
    margin-bottom: 0;
    position: relative;
    z-index: 3;
    border-radius: 0;
}

.accordion-item .accordion-header .accordion-button {
    margin: 0;
    font-size: 18px;
    font-family: var(--secondaryFont);
    line-height: 24px;
    font-weight: 500;
    letter-spacing: -0.01em;
    text-align: left;
    align-items: center;
    color: var(--titleColor);
    padding: 13.5px 40px 13.5px 20px;
    background-color: transparent;
    box-shadow: none;
    transition: var(--transition);
}

.accordion-item .accordion-header .accordion-button:after {
    display: none;
}

.accordion-item .accordion-header .accordion-button:focus {
    outline: none;
    box-shadow: none;
}

.accordion-item .accordion-header .accordion-button span {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    top: 16px;
    right: 15px;
    text-align: center;
}

.accordion-item .accordion-header .accordion-button span i {
    position: absolute;
    top: calc(50% - 1px);
    left: 50%;
    font-size: 21px;
    font-weight: 500;
    line-height: 1;
    color: var(--titleColor);
    display: block;
    margin: 0 auto;
    transform: translate(-50%, -50%);
}

.accordion-item .accordion-header .accordion-button span i.minus {
    visibility: hidden;
    opacity: 0;
}

.accordion-item:not(.collapsed) {
    box-shadow: none;
}

.accordion-item:not(.collapsed) .accordion-button {
    padding-bottom: 13px;
}

.accordion-item .accordion-body {
    border-radius: 0 0 5px 5px;
    border: none;
    margin: 0px 20px 0;
    padding: 10px 0 16px;
    border-top: 1px solid rgba(15, 15, 15, 0.1);
}

.accordion-item .accordion-body p {
    margin: 0;
    font-weight: 400;
}

.accordion-item:not(.collapsed) .accordion-button span .plus {
    visibility: hidden;
    opacity: 0;
}

.accordion-item:not(.collapsed) .accordion-button span .minus {
    visibility: visible !important;
    opacity: 1 !important;
}

.login-form-wrap {
    padding: 35px 35px 37px;
}

.login-form-wrap .or-text {
    margin-bottom: 20px;
}

.login-form-wrap .or-text:after {
    position: absolute;
    top: 50%;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    z-index: -1;
    background-color: rgba(15, 15, 15, 0.15);
}

.login-form-wrap .or-text span {
    padding: 5px 15px;
    background-color: var(--ashColor);
    z-index: 2;
}

.login-form-wrap .btn {
    margin-bottom: 14px;
}

.login-form-wrap .btn.style-five {
    background-color: var(--whiteColor);
    border: 1px solid var(--primaryColor);
    color: var(--primaryColor);
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.login-form-wrap .btn.style-five:hover {
    border-color: transparent;
    color: var(--whiteColor);
    background-color: var(--primaryColor);
}

.login-form-wrap .btn.style-five:hover img {
    filter: brightness(0) invert(1);
}

.login-form-wrap .btn.style-six {
    background-color: var(--whiteColor);
    border: 1px solid #e3422d;
    color: #e3422d;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.login-form-wrap .btn.style-six:hover {
    border-color: transparent;
    color: var(--whiteColor);
    background-color: #e3422d;
}

.login-form-wrap .btn.style-six:hover img {
    filter: brightness(0) invert(1);
}

.error-wrap {
    border-top: 1px solid rgba(29, 29, 29, 0.1);
}

.error-wrap .error-content {
    text-align: center;
}

.error-wrap .error-content img {
    display: block;
    margin: 0 auto 30px;
}

.error-wrap .error-content p {
    margin: 0 auto 30px;
    max-width: 520px;
}

.popup_modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 99;
}

.popup_modal.show-modal {
    display: flex;
}

.popup_modal .modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 600px;
    background: #fff;
}

.popup_modal .modal-content .close-modal {
    position: absolute;
    top: 3px;
    right: 5px;
    cursor: pointer;
}

.popup_modal .modal-content .close-modal i {
    color: var(--whiteColor);
    font-size: 18px;
    line-height: 0.8;
}

.popup_modal .no-scroll {
    overflow: hidden;
}

.popup_modal .video-container {
    width: 100%;
    height: 600px;
}

/*# sourceMappingURL=style.css.map */
