@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap"); @import url("all.css"); @import url("swiper.css"); @import url("fancybox.css"); :root {
    --primary-color: #ce1243;
    --secondary-color: #121c22;
}

html {
    overflow-x: hidden;
}

#preloader {
    position: fixed;
    inset: 0px;
    background-color: rgb(255, 255, 255);
    z-index: 999999;
    transition: opacity 0.3s;
    text-align: center;
    width: 100%;
    height: 100%;
}

#preloader::before {
    content: "";
    width: 80px;
    height: 80px;
    border: 3px solid rgb(206, 18, 67);
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation-name: LoaderCicle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

#preloader::after {
    content: "";
    width: 80px;
    height: 80px;
    border: 3px solid rgb(206, 18, 67);
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation-name: LoaderCicle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-delay: 1s;
}

@keyframes LoaderCicle {
    0% {
        width: 0px;
        height: 0px;
        opacity: 0;
    }

    10% {
        width: 10px;
        height: 10px;
        opacity: 1;
    }

    80% {
        width: 60px;
        height: 60px;
        opacity: 0.1;
    }

    100% {
        width: 70px;
        height: 70px;
        opacity: 0;
    }
}

#quoteModal .modal-content {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 20px 60px;
}

#quoteModal .modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #a30d35 100%);
    padding: 1.5rem 2rem;
    border: none;
}

#quoteModal .modal-title {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: rgb(255, 255, 255);
}

#quoteModal .modal-body {
    padding: 2rem;
    background: rgb(255, 255, 255);
}

#quoteModal .form-label {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 14px;
    letter-spacing: 0px;
}

#quoteModal .form-control, #quoteModal .form-select {
    border: 2px solid rgb(233, 236, 239);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: 0.3s;
    background: rgb(255, 255, 255);
}

#quoteModal .form-control:focus, #quoteModal .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: rgba(206, 18, 67, 0.15) 0px 0px 0px 0.2rem;
    transform: translateY(-1px);
}

#quoteModal .form-control-lg, #quoteModal .form-select-lg {
    padding: 0px 15px;
    border-radius: 10px;
    height: 45px;
    font-size: 16px;
    min-height: 45px;
}

#quoteModal .invalid-feedback {
    display: block;
    font-size: 0.875rem;
    color: rgb(220, 53, 69);
    margin-top: 0.25rem;
}

#quoteModal .form-check-input {
    width: 1.2em;
    height: 1.2em;
    border: 2px solid rgb(222, 226, 230);
    border-radius: 4px;
}

#quoteModal .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

#quoteModal .form-check-label {
    font-size: 0.9rem;
    color: rgb(108, 117, 125);
    margin-left: 0.5rem;
    line-height: 1.4;
}

#quoteModal .modal-footer {
    background: rgb(248, 249, 250);
    padding: 1.5rem 2rem;
    border: none;
}

#quoteModal .btn-primary {
    background: rgb(206, 18, 67);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: 0.3s;
    font-size: 16px;
}

#quoteModal .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: rgba(206, 18, 67, 0.4) 0px 8px 25px;
}

#quoteModal .btn-outline-secondary {
    border: 2px solid rgb(222, 226, 230);
    color: rgb(108, 117, 125);
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: 0.3s;
}

#quoteModal .btn-outline-secondary:hover {
    background: rgb(108, 117, 125);
    border-color: rgb(108, 117, 125);
    transform: translateY(-1px);
    color: rgb(255, 255, 255);
}

#quoteModal .text-primary {
    color: var(--primary-color) !important;
}

#quoteModal .text-primary:hover {
    text-decoration: underline;
    color: rgb(163, 13, 53) !important;
}

#quoteModal.fade .modal-dialog {
    transition: transform 0.4s ease-out;
    transform: translate(0px, -50px) scale(0.95);
}

#quoteModal.show .modal-dialog {
    transform: translate(0px, 0px) scale(1);
}

@media (max-width: 768px) {
    #quoteModal .modal-body {
        padding: 1.5rem;
    }

    #quoteModal .modal-footer {
        padding: 1rem 1.5rem;
        flex-direction: column;
        align-items: stretch;
    }

    #quoteModal .modal-footer .d-flex {
        flex-direction: column;
        gap: 1rem;
    }

    #quoteModal .modal-footer .text-muted {
        text-align: center;
        margin-bottom: 0px;
    }

    #quoteModal .modal-footer div:last-child {
        display: flex;
        gap: 0.5rem;
    }
}

#quoteModal .form-control::placeholder {
    color: rgb(173, 181, 189);
}

#quoteModal textarea.form-control {
    min-height: 120px;
    resize: none;
}

#quoteModal .fa-solid {
    font-size: 0.9rem;
}

.modal_ins_bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 190px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.modal_ins_bg::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 50%;
    background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}

.modal_ins_bg h3 {
    color: rgb(255, 255, 255);
    margin: 0px;
    position: relative;
    z-index: 2;
    font-weight: 600;
    font-size: 26px;
}

.modal_ins_bg button {
    position: absolute;
    right: 20px;
    top: 20px;
}

.quote-success-message {
    background: linear-gradient(135deg, rgb(40, 167, 69) 0%, rgb(32, 201, 151) 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin: 1rem 0px;
}

.quote-success-message i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

a:hover, a:active {
    text-decoration: none;
}

.primary-overlay[data-overlay-dark]::before {
    background: rgb(206, 18, 67);
}

.secondary-overlay[data-overlay-dark]::before {
    background: rgb(206, 18, 67);
    mix-blend-mode: multiply;
    opacity: 1;
}

.left-overlay-secondary[data-overlay-dark]::before {
    background: linear-gradient(-90deg, transparent, rgb(18, 28, 34) 65%);
}

.left-overlay-secondary[data-overlay-dark]::after {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    width: 50%;
    height: 100%;
    background: linear-gradient(-90deg, transparent, rgba(17, 20, 32, 0.55) 65%);
    transform: rotate(180deg);
}

.text-primary, .text-primary-hover:hover {
    color: rgb(206, 18, 67) !important;
}

.bg-primary {
    background-color: rgb(206, 18, 67) !important;
}

.text-secondary, .text-secondary-hover:hover {
    color: rgb(18, 28, 34) !important;
}

.bg-secondary {
    background-color: rgb(18, 28, 34) !important;
}

.text-dark, .text-dark-hover:hover {
    color: rgb(18, 28, 34) !important;
}

.form-control {
    border-radius: 3px;
}

.text-white-hover:hover {
    color: rgb(255, 255, 255) !important;
}

.text-white-hover-light:hover {
    color: rgba(255, 255, 255, 0.65) !important;
}

.min-vh-100 {
    min-height: 100vh;
}

.common-hover-img img {
    transition: 500ms;
}

.common-hover-img:hover img {
    transform: scale(1.1);
}

.bg-gradient-black-dark-orange::before {
    opacity: 0.7;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
    content: "";
    background: linear-gradient(to right top, rgb(53, 51, 50), rgb(49, 43, 40), rgb(21, 17, 15), rgb(74, 50, 41), rgb(90, 38, 17)) rgba(0, 0, 0, 0.76);
}

.cd-headline.clip .cd-words-wrapper::after {
    content: none;
}

.ani-top-bottom {
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-name: TopBottom;
    animation-timing-function: ease-in-out;
}

@keyframes TopBottom {
    0% {
        transform: translate(0px, 0px);
    }

    65% {
        transform: translate(0px, 30px);
    }

    100% {
        transform: translate(0px, 0px);
    }
}

.scroll-top-percentage {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    position: fixed;
    bottom: 40px;
    color: rgb(255, 255, 255);
    right: 50px;
    transform: scale(0);
    display: grid;
    place-items: center;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    z-index: 100;
}

.scroll-top-percentage.active {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
    animation: 500ms ease-in-out 0s 1 normal none running scrollToTop;
    transition: 0.3s;
}

@media screen and (max-width: 1199px) {
    .scroll-top-percentage {
        right: 30px;
        bottom: 20px;
    }
}

#scroll-value {
    height: calc(100% - 6px);
    width: calc(100% - 6px);
    color: var(--rr-common-white);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 16px;
    font-weight: 600;
}

#scroll-value i {
    font-size: 20px;
}

@-webkit-keyframes scrollToTop {
    0% {
        transform: translate3d(0px, 80%, 0px);
        visibility: visible;
    }

    100% {
        transform: translateZ(0px);
    }
}

@keyframes scrollToTop {
    0% {
        transform: translate3d(0px, 80%, 0px);
        visibility: visible;
    }

    100% {
        transform: translateZ(0px);
    }
}

.list-style1 li {
    font-weight: 600;
    position: relative;
    padding: 0px 0px 0px 45px;
    margin-bottom: 14px;
}

.list-style1 li:last-child {
    margin-bottom: 0px;
}

.list-style1 li::before {
    content: "";
    font-family: themify;
    color: rgb(206, 18, 67);
    font-size: 12px;
    background: rgba(252, 82, 32, 0.1);
    position: absolute;
    left: 0px;
    top: 2px;
    width: 24px;
    height: 24px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.list-style2 {
    list-style: none;
    padding-left: 0px;
}

.list-style2 li {
    line-height: 32px;
    padding-left: 30px;
    position: relative;
    margin-bottom: 8px;
}

.list-style2 li:last-child {
    margin-bottom: 0px;
}

.list-style2 li::before {
    content: "";
    font-family: themify;
    font-size: 18px;
    position: absolute;
    top: 0px;
    left: 0px;
    font-weight: 700;
    line-height: 35px;
    color: rgb(206, 18, 67);
}

.btn-style1 {
    cursor: pointer;
    display: inline-flex;
    position: relative;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    color: rgb(255, 255, 255);
    background: rgb(206, 18, 67);
    border-radius: 0.25rem;
    z-index: 1;
    text-transform: uppercase;
    transition: 0.4s ease-in-out;
    padding: 13px 24px !important;
}

.btn-style1:hover {
    background: rgb(18, 28, 34);
}

.btn-style1 span {
    position: relative;
    z-index: 9;
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-style1.secondary {
    background: rgb(18, 28, 34);
}

.btn-style1.secondary:hover {
    background: rgb(206, 18, 67);
}

.btn-style1.white-hover:hover, .btn-style1.white-hover:active, .btn-style1.white-hover:focus {
    background: rgb(255, 255, 255);
    transition: 0.4s ease-in-out;
}

.btn-style1.white-hover:hover span, .btn-style1.white-hover:active span, .btn-style1.white-hover:focus span {
    color: rgb(18, 28, 34);
    transition: 0.4s ease-in-out;
}

.btn-style1.white-border::before {
    border-color: rgb(255, 255, 255);
}

.btn-style1.border-primary {
    border: 1px solid rgb(206, 18, 67) !important;
}

.btn-style1.border-primary:hover {
    border: 1px solid rgb(255, 255, 255) !important;
}

.btn-style1.medium {
    padding: 12px 36px !important;
}

.btn-style1.small {
    font-size: 14px;
    padding: 9px 27px !important;
}

.header-style1 .attr-nav > ul > li > a.btn-style1 span {
    transition: 0.3s !important;
}

@media screen and (min-width: 992px) {
    .header-style1.scrollHeader .attr-nav > ul > li > a.btn-style1 {
        color: rgb(206, 18, 67);
        border: 1px solid rgb(206, 18, 67);
    }

    .header-style1.scrollHeader .attr-nav > ul > li > a.btn-style1 span {
        color: rgb(206, 18, 67) !important;
    }

    .header-style1.scrollHeader .attr-nav > ul > li > a.btn-style1:hover {
        background-color: rgb(206, 18, 67) !important;
    }

    .header-style1.scrollHeader .attr-nav > ul > li > a.btn-style1:hover span {
        color: rgb(255, 255, 255) !important;
    }

    .header-style1.scrollHeader .attr-nav > ul > li > a.btn-style1:hover, .header-style1.scrollHeader .attr-nav > ul > li > a.btn-style1:active, .header-style1.scrollHeader .attr-nav > ul > li > a.btn-style1:focus {
        color: rgb(206, 18, 67);
        border: 1px solid rgb(206, 18, 67);
    }

    .header-style3.scrollHeader .attr-nav > ul > li > a.btn-style1 {
        color: rgb(255, 255, 255);
        border: 1px solid transparent;
    }

    .header-style3.scrollHeader .attr-nav > ul > li > a.btn-style1:hover, .header-style3.scrollHeader .attr-nav > ul > li > a.btn-style1:active, .header-style3.scrollHeader .attr-nav > ul > li > a.btn-style1:focus {
        color: rgb(206, 18, 67);
        border: 1px solid rgb(206, 18, 67);
    }
}

.btn-style2 {
    background-color: rgb(206, 18, 67);
    color: rgb(255, 255, 255);
    padding: 10px 25px;
    border-radius: 6px;
    display: inline-block;
    font-size: 16px;
}

.btn-style2:active, .btn-style2:hover {
    background: rgb(35, 35, 35);
    color: rgb(255, 255, 255);
}

.btn-style2 > span {
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.btn-style2:active .btn-small, .btn-style2:hover .btn-small {
    transform: translateY(-200%);
}

.btn-style2 .btn-small {
    transition: opacity 0.65s cubic-bezier(0.15, 0.85, 0.31, 1), transform 0.85s;
}

.btn-style2:active .btn-small::before, .btn-style2:hover .btn-small::before {
    transform: translate(-50%, 150%);
    opacity: 1;
}

.btn-style2 .btn-small::before {
    content: attr(data-text);
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    top: 50%;
    opacity: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    transition: opacity 0.5s cubic-bezier(0.15, 0.85, 0.31, 1), transform 0.8s;
}

.top-bar-info {
    display: inline-block;
    vertical-align: middle;
}

.top-bar-info ul {
    margin-bottom: 0px;
}

.top-bar-info li {
    font-weight: 500;
    color: rgb(255, 255, 255);
    list-style-type: none;
    font-size: 14px;
    padding: 0px 5px;
    display: inline-block;
    margin-bottom: 0px;
}

.top-bar {
    display: block;
    position: relative;
    z-index: 999;
    padding: 7px 0px;
}

.top-bar-info li i {
    font-size: 16px;
    color: rgb(255, 255, 255);
    margin-right: 8px;
    margin-top: 0px;
    display: inline-block;
    vertical-align: text-bottom;
}

.top-social-icon {
    padding: 0px;
    float: right;
    margin: 0px;
}

.top-social-icon li {
    font-size: 14px;
    list-style-type: none;
    float: left;
    text-align: center;
    margin: 0px;
    padding: 0px 7px;
}

.top-social-icon li:last-child {
    padding-right: 0px;
}

.top-social-icon li:last-child a {
    padding-right: 0px;
}

.top-social-icon li a {
    color: rgb(255, 255, 255);
    line-height: 28px;
    transition-duration: 0.3s;
    padding: 0px 3px;
}

.top-social-icon li a:hover {
    color: rgba(255, 255, 255, 0.65);
}

.navbar-nav > li.current > a, .navbar-nav > li.active > a {
    opacity: 0.5;
    text-decoration: line-through;
}

.attr-nav > ul > li > a.butn {
    color: rgb(255, 255, 255);
}

.navbar > ul > li.current > a::after {
    opacity: 0.5;
    border-color: transparent rgb(255, 255, 255) rgb(255, 255, 255) transparent !important;
}

.menu_area-light .navbar-nav li.current > a, .menu_area-light .navbar-nav li.active > a {
}

.menu_area-light .navbar > ul > li.current > a::after {
    border-color: transparent rgb(206, 18, 67) rgb(206, 18, 67) transparent;
}

.menu_area-light.scrollHeader .navbar-nav li.current > a {
    color: rgb(206, 18, 67);
}

.menu_area-light.scrollHeader .navbar-nav li.current > a:hover {
    color: rgb(206, 18, 67);
}

.menu_area-light.scrollHeader .navbar-nav li.active > a {
}

.menu_area-light.scrollHeader .navbar > ul > li.current > a::after {
    border-color: transparent rgb(206, 18, 67) rgb(206, 18, 67) transparent;
}

@media screen and (min-width: 992px) {
    .menu_area-light .navbar ul > ul li.active > a, .menu_area-light .navbar-nav > li:hover > a, .menu_area-light .navbar-nav > li.has-sub > a:hover {
        color: rgb(206, 18, 67);
    }

    .menu_area-light .navbar > ul > li.has-sub:hover > a::after {
        border-color: rgb(206, 18, 67);
    }

    .menu_area-light.scrollHeader .navbar-nav > li.has-sub > a:hover {
        color: rgb(206, 18, 67);
    }

    .header-style2.scrollHeader .navbar-nav > li.has-sub > a:hover {
        color: rgb(206, 18, 67);
    }

    .header-style2.scrollHeader .navbar-nav > li.has-sub > a:hover::after {
        border-color: transparent rgb(206, 18, 67) rgb(206, 18, 67) transparent;
    }

    .header-style2 .navbar > ul > li.has-sub.current > a:hover::after {
        border-color: transparent rgb(206, 18, 67) rgb(206, 18, 67) transparent;
    }

    .header-style2.scrollHeader .navbar-nav li.current > a {
        color: rgb(206, 18, 67);
    }

    .header-style2.scrollHeader .navbar-nav li.current > a:hover {
        color: rgb(206, 18, 67);
    }

    .header-style2.scrollHeader .navbar > ul > li.current > a::after {
        border-color: transparent rgb(206, 18, 67) rgb(206, 18, 67) transparent;
    }

    .header-style2 .navbar ul ul li.active > a {
        color: rgb(206, 18, 67);
    }

    .header-style2 .navbar-nav li.has-sub a:hover, .header-style2 .navbar-nav li.has-sub a:active, .header-style2 .navbar-nav li.has-sub a:focus {
        color: rgb(206, 18, 67);
    }

    .header-style2 .navbar-nav li.current > a, .header-style2 .navbar-nav li.active > a {
        color: rgb(206, 18, 67);
    }

    .header-style2 .navbar > ul > li.has-sub > a:hover::after, .header-style2 .navbar > ul > li.has-sub > a:active::after, .header-style2 .navbar > ul > li.has-sub > a:focus::after {
        border-color: transparent rgb(206, 18, 67) rgb(206, 18, 67) transparent;
    }
}

@media screen and (max-width: 991px) {
    .header-style1 .navbar-toggler {
        background: rgb(206, 18, 67);
    }

    .header-style1 .navbar-toggler::after {
        border-top: 2px solid rgb(255, 255, 255);
        border-bottom: 2px solid rgb(255, 255, 255);
    }

    .header-style1 .navbar-toggler::before {
        background: rgb(255, 255, 255);
    }

    .header-style1 .navbar-toggler.menu-opened::after, .header-style1 .navbar-toggler.menu-opened::before {
        background: rgb(255, 255, 255);
    }
}

.header-style2 .navbar-nav li.current > a {
    color: rgb(206, 18, 67);
}

.header-style2 .navbar > ul > li.current > a::after {
    border-color: transparent rgb(206, 18, 67) rgb(206, 18, 67) transparent;
}

.header-style2.scrollHeader .navbar-nav li.current > a {
    color: rgb(206, 18, 67);
}

.header-style2.scrollHeader .navbar-nav li.current > a:hover {
    color: rgb(206, 18, 67);
}

.header-style2.scrollHeader .navbar > ul > li.current > a::after {
    border-color: transparent rgb(206, 18, 67) rgb(206, 18, 67) transparent;
}

@media screen and (min-width: 992px) {
    .header-style2 .navbar ul ul li.active > a {
        color: rgb(206, 18, 67);
    }

    .header-style2 .butn.secondary::before {
        background: rgb(255, 255, 255);
    }

    .header-style2 .butn.secondary:hover, .header-style2 .butn.secondary:focus, .header-style2 .butn.secondary:active {
        color: rgb(18, 28, 34) !important;
    }

    .header-style2.scrollHeader .butn.secondary::before {
        background: rgb(206, 18, 67);
    }

    .header-style2.scrollHeader .butn.secondary:hover, .header-style2.scrollHeader .butn.secondary:focus, .header-style2.scrollHeader .butn.secondary:active {
        color: rgb(255, 255, 255) !important;
    }
}

.header-style3 .navbar-nav li.current > a, .header-style3 .navbar-nav li.active > a {
    color: rgb(206, 18, 67);
}

@media screen and (min-width: 992px) {
    .header-style3 .navbar-nav li.active > a {
        color: rgb(206, 18, 67);
    }

    .header-style3 .navbar-nav > li > a:hover, .header-style3 .navbar-nav > li > a:active, .header-style3 .navbar-nav > li > a:focus {
        color: rgb(206, 18, 67);
    }

    .header-style3 .navbar ul ul li.active > a {
        color: rgb(206, 18, 67);
    }

    .header-style3 .navbar-nav li.has-sub a:hover, .header-style3 .navbar-nav li.current > a {
        color: rgb(206, 18, 67);
    }

    .header-style3 .navbar-nav > li.has-sub > a:hover {
        color: rgb(206, 18, 67);
    }

    .header-style3 .navbar > ul > li.has-sub > a:hover::after, .header-style3 .navbar > ul > li.current > a::after {
        border-color: transparent rgb(206, 18, 67) rgb(206, 18, 67) transparent;
    }

    .header-style3.scrollHeader .navbar-nav > li.has-sub > a:hover {
        color: rgb(206, 18, 67);
    }

    .header-style3.scrollHeader .navbar > ul > li.has-sub > a:hover::after {
        border-color: transparent rgb(206, 18, 67) rgb(206, 18, 67) transparent;
    }

    .header-style3.scrollHeader .navbar-nav > li.active > a {
        color: rgb(206, 18, 67);
    }

    .header-style3.scrollHeader .navbar-nav li.current > a {
        color: rgb(206, 18, 67);
    }

    .header-style3.scrollHeader .navbar-nav li.current > a:hover {
        color: rgb(206, 18, 67);
    }

    .header-style3.scrollHeader .navbar > ul > li.current > a::after {
        border-color: transparent rgb(206, 18, 67) rgb(206, 18, 67) transparent;
    }
}

@media screen and (max-width: 991px) {
    .header-style3 .navbar-toggler {
        background: rgb(206, 18, 67);
    }

    .header-style3 .navbar-toggler::after {
        border-top: 2px solid rgb(255, 255, 255);
        border-bottom: 2px solid rgb(255, 255, 255);
    }

    .header-style3 .navbar-toggler::before {
        background: rgb(255, 255, 255);
    }

    .header-style3 .navbar-toggler.menu-opened::after, .header-style3 .navbar-toggler.menu-opened::before {
        background: rgb(255, 255, 255);
    }
}

.banner-style01 .banner-btn a i {
    font-size: 109px;
    position: absolute;
    color: rgb(255, 255, 255);
}

.banner-style01 .banner-contact {
    position: absolute;
    right: 0px;
    bottom: 0px;
    padding: 55px 70px;
    min-width: 500px;
    z-index: 99;
    background-color: rgb(18, 28, 34);
}

.banner-style02 .banner-button {
    flex-flow: wrap;
    justify-content: flex-start;
    text-align: left;
    display: flex;
    position: relative;
    z-index: 1;
    -webkit-box-align: center !important;
    align-items: center !important;
}

.banner-style02 .banner-button .button-arrow {
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    margin-right: 15px;
    width: 65px;
    height: 65px;
    background-color: rgb(206, 18, 67);
    border-radius: 50%;
}

.banner-style02 .banner-button .button-arrow i {
    font-size: 18px;
    color: rgb(255, 255, 255);
    position: relative;
    z-index: 1;
    transition: 0.4s cubic-bezier(0.12, 0, 0.39, 0);
    font-weight: 700;
}

.banner-style02 .banner-button .button-text a {
    font-size: 19px;
}

.banner-style02 .left-text {
    position: absolute;
    transform: rotate(-90deg) translate(-50%, 50%);
    transform-origin: 0px 50%;
    top: 50%;
    left: 50px;
    z-index: 9;
    transition: 1s cubic-bezier(0.7, 0, 0.3, 1) !important;
}

.banner-style02 .left-text span {
    font-size: 16px;
    color: rgb(255, 255, 255);
}

.banner-style02 .left-text span i {
    font-size: 18px;
    margin-right: 10px;
    display: inline-block;
}

@media screen and (max-width: 1599px) {
    .banner-style02 .left-text {
        left: 10px;
    }
}

@media screen and (max-width: 1200px) {
    .banner-style02 .left-text {
        left: 0px;
    }
}

@media screen and (max-width: 767px) {
    .banner-style02 .banner-button .button-arrow {
        width: 50px;
        height: 50px;
    }

    .banner-style02 .banner-button .button-arrow i {
        font-size: 14px;
    }

    .banner-style02 .banner-button .button-text a {
        font-size: 16px;
    }
}

.slider-fade1 .owl-item {
    position: relative;
}

.slider-fade1 h1 {
    margin-bottom: 25px;
    animation-delay: 0.8s;
}

.slider-fade1 h1 span {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px rgb(255, 255, 255);
}

.slider-fade1 p {
    animation-delay: 1.2s;
}

.slider-fade1 a {
    animation-delay: 1.6s;
}

.slider-fade1.owl-theme .owl-nav [class*="owl-"] {
    position: absolute;
    right: inherit;
    top: 0px;
    bottom: 0px;
    width: 60px;
    height: 60px;
    border: none;
    background: rgb(206, 18, 67);
    border-radius: 60px;
    line-height: 65px;
    transition-duration: 500ms;
    left: 15px;
    text-align: center;
    margin: auto;
    opacity: 0.3;
}

.slider-fade1.owl-theme .owl-nav .owl-next {
    top: 0px;
    bottom: 0px;
    left: inherit;
    right: 15px;
}

.slider-fade1 .owl-nav i {
    font-weight: 600;
    color: rgb(255, 255, 255);
    transition-duration: 500ms;
    font-size: 20px;
}

.slider-fade1.owl-theme .owl-nav .owl-prev:hover, .slider-fade1.owl-theme .owl-nav .owl-next:hover {
    opacity: 1;
    background: rgb(206, 18, 67);
}

.title-sm {
    font-weight: 400;
    position: relative;
    z-index: 2;
    display: inline-block;
}

.title-sm::before {
    content: "";
    background: rgb(206, 18, 67);
    height: 8px;
    width: 100%;
    position: absolute;
    bottom: 8px;
    z-index: -1;
}

.title-sm.banner::before {
    bottom: 15px;
}

@media screen and (max-width: 991px) {
    .title-sm.banner::before {
        bottom: 7px;
    }

    .title-sm::before {
        bottom: 3px;
    }
}

.section-title-01 span::before {
    position: absolute;
    bottom: 4px;
    left: 2px;
    width: 2px;
    height: 2px;
    background-color: rgb(206, 18, 67);
}

.page-title-section {
    padding: 180px 0px 90px;
}

.page-title-section.style1 {
    padding: 150px 0px;
}

.page-title-section h1 {
    font-size: 64px;
    line-height: 1;
    text-shadow: rgba(0, 0, 0, 0.2) 0px 0px 3px;
    color: rgb(255, 255, 255);
    margin-bottom: 10px;
    position: relative;
    z-index: 9;
    overflow-wrap: break-word;
    font-weight: 500;
}

.page-title-section ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
    display: inline-block;
    line-height: 1.2;
}

.page-title-section ul li {
    display: inline-block;
}

.page-title-section ul li:last-child {
    color: rgb(255, 255, 255);
    opacity: 0.6;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.page-title-section ul li:last-child a {
    color: rgb(255, 255, 255);
    opacity: 0.8;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.page-title-section ul li::after {
    content: "";
    font-weight: 700;
    vertical-align: middle;
    background-color: rgb(206, 18, 67);
    width: 10px;
    padding: 0px 5px 0px 10px;
    height: 2px;
    display: inline-block;
    margin: 0px 15px;
}

.page-title-section ul li:last-child::after {
    content: none;
}

.page-title-section ul li a {
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.page-title-section .shape-1 {
    padding: 20px;
    background: rgb(255, 255, 255);
    z-index: 3;
    bottom: 73px;
    left: 52px;
}

@media screen and (max-width: 1199px) {
    .page-title-section {
        padding: 170px 0px 80px;
    }

    .page-title-section h1 {
        font-size: 52px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 991px) {
    .page-title-section {
        padding: 150px 0px 80px;
    }

    .page-title-section.style1 {
        padding: 130px 0px;
    }

    .page-title-section h1 {
        font-size: 48px;
    }
}

@media screen and (max-width: 575px) {
    .page-title-section {
        padding: 130px 0px 70px;
    }

    .page-title-section.style1 {
        padding: 100px 0px;
    }

    .page-title-section h1 {
        font-size: 36px;
    }
}

.card-style01 img {
    transition: 500ms;
}

.card-style01 .card-body {
    box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 20px 0px;
    border-radius: 0px 0px 0.375rem 0.375rem;
    transition: 0.4s;
    padding: 0px;
    margin-bottom: 20px;
}

.card-style01:hover img {
    transform: scale(1.1);
}

.card-style01:hover .card-body {
    background-color: rgb(206, 18, 67);
}

.card-style01 .card-body h3 a {
    padding: 20px 15px;
    color: rgb(18, 28, 34);
    display: block;
}

.card-style01:hover .card-body h3 a {
    color: rgb(255, 255, 255);
}

.card-style02 .card-body ul li {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.card-style02 .card-body ul li:last-child {
    margin-bottom: 0px;
}

.card-style02.second {
    border: 1px solid rgba(252, 82, 32, 0.3);
}

.card-style02 .card-one {
    font-size: 100px;
    font-weight: 700;
    text-shadow: rgb(206, 18, 67) 1px 1px 0px, rgb(206, 18, 67) -1px -1px 0px, rgb(206, 18, 67) 1px -1px 0px, rgb(206, 18, 67) -1px 1px 0px, rgb(206, 18, 67) 1px 1px 0px;
    vertical-align: top;
    color: rgb(255, 255, 255);
    line-height: 0.75em;
    letter-spacing: -0.03em;
    margin-right: 8px;
}

.card-style02 .card-two {
    font-size: 60px;
    margin-right: 8px;
}

.card-style02 .card-number {
    font-size: 16px;
    font-weight: 500;
    color: rgb(206, 18, 67);
}

@media screen and (max-width: 1199px) {
    .card-style02 .card-one {
        font-size: 75px;
    }

    .card-style02 .card-two {
        font-size: 46px;
    }
}

.card-style03 {
    padding: 0px 30px 30px;
    border-radius: 0px;
    background-color: rgb(248, 249, 250);
    border: none;
    position: relative;
    transition: 0.3s ease-out;
}

.card-style03:hover {
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 60px;
}

.card-style03 .card-icon {
    position: relative;
    margin-top: -50px;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s ease-out;
    margin-bottom: 30px;
}

.card-style03:hover .card-icon {
    background-color: rgb(206, 18, 67);
}

.card-style03 .card-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(18, 74, 47, 0.1);
    font-size: 35px;
    transition: 0.3s ease-out;
    position: relative;
}

.card-style03 .card-btn i {
    position: absolute;
    bottom: -9px;
    left: -7px;
}

.card-style03:hover .card-btn {
    background-color: rgb(206, 18, 67);
}

.card-style03 .hover-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.card-style03:hover .hover-icon {
    opacity: 1;
}

.card-style03:hover .main-icon {
    opacity: 0;
}

.card-style04 {
    border: none;
    box-shadow: rgba(9, 19, 32, 0.03) 0px 3px 20px;
}

.card-style04 .card-body {
    box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 20px 0px;
}

.card-style04 .blog-img img {
    will-change: transform;
    transition: 0.5s;
    transform: scale(1.01, 1.01);
}

.card-style04 .post-date {
    position: absolute;
    right: 30px;
    top: -42px;
    background: rgb(206, 18, 67);
    color: rgb(255, 255, 255);
    border-radius: 3px;
    line-height: normal;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    padding: 14px 15px;
}

.card-style04 .read-more {
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 14px;
    color: rgb(78, 134, 255);
}

.card-style04 .blog-tag::before {
    content: "";
    margin: 0px 0.75em;
    width: 3px;
    height: 3px;
    background-color: rgb(142, 145, 157);
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
}

.card-style04 .read-more:hover {
    color: rgb(51, 214, 135);
}

.card-style04:hover .blog-img img {
}

.card-style05 {
    position: relative;
    z-index: 1;
    line-height: 1;
    transition: 0.3s;
    border: none;
}

.card-style05 .card-img {
    position: relative;
    overflow: hidden;
}

.card-style05 .card-img::before {
    content: "";
    left: 0px;
    top: 0px;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.65);
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

.card-style05:hover .card-img::before {
    opacity: 1;
    visibility: visible;
}

.card-style05 .card-body {
    position: absolute;
    left: 30px;
    bottom: 30px;
    right: 30px;
    z-index: 2;
    background-color: rgb(255, 255, 255);
    padding: 40px 58px 40px 40px;
    transition: 0.3s;
}

.card-style05:hover .card-body {
    background-color: rgb(206, 18, 67);
}

.card-style05:hover .card-body p {
    color: rgb(255, 255, 255);
}

.card-style05:hover .card-body h4 {
    color: rgb(255, 255, 255);
}

.card-style05:hover .card-body h4 a {
    color: rgb(255, 255, 255);
}

.card-style05:hover .card-body .card-icon {
    opacity: 1;
    visibility: visible;
    height: 50px;
    margin-top: 25px;
}

.card-style05 .card-body .card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 0px;
    opacity: 0;
    visibility: hidden;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    transition: 0.3s;
}

@media screen and (max-width: 1199px) {
    .card-style05 .card-body {
        left: 25px;
        right: 25px;
        bottom: 25px;
        padding: 35px 53px 35px 35px;
    }
}

@media screen and (max-width: 767px) {
    .card-style05 .card-body {
        left: 15px;
        right: 15px;
        bottom: 15px;
        padding: 25px 35px 25px 25px;
    }
}

.card-style06 .card-img-text {
    position: absolute;
    top: 25px;
    left: 25px;
}

.card-style06 .card-img-text a {
    padding: 9px 16px;
    transition: 0.3s;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 0px;
    background-color: rgb(255, 255, 255);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.card-style06 .card-body .blog-tag::after {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    flex-shrink: 0;
    margin-inline-start: 1.36364em; border-radius: 50em;
    background-color: currentcolor;
    vertical-align: middle;
    opacity: 0.35;
}

.card-style07 {
    position: relative;
    z-index: 1;
    padding: 0px;
    background: rgb(255, 255, 255);
    box-shadow: rgba(41, 45, 194, 0.08) 0px 3px 10px 0px;
    transition: 0.3s;
    height: 100%;
}

.card-style07:hover .team-before-hover .team-img img {
    transform: scale(1.1);
}

.card-style07 .team-before-hover {
    position: relative;
}

.card-style07 .team-before-hover .team-img {
    overflow: hidden;
    position: relative;
}

.card-style07 .team-before-hover .team-img img {
    transition: 500ms;
}

.card-style07 .team-before-hover:hover::before {
    opacity: 1;
}

.card-style07 .team-social {
    position: absolute;
    top: -22px;
    transition: 0.5s ease-in-out;
    right: 20px;
}

.card-style07 .icon-share {
    border-radius: 0px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    width: 40px;
    height: 40px;
    text-align: center;
    color: rgb(255, 255, 255);
    background: rgb(206, 18, 67);
    outline: none;
    z-index: 100000;
    transition: 0.3s;
}

.card-style07 .team-social .icons-social {
    opacity: 0;
    transition: 0.5s 0.1s;
    visibility: hidden;
    border-radius: 0px;
    position: absolute;
    margin: 0px;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transform: rotate(-180deg);
    bottom: 40px;
    right: 0px;
}

.card-style07:hover .team-social .icons-social {
    opacity: 1;
    visibility: visible;
    display: block;
}

.card-style07 .icons-social ul {
    position: relative;
    list-style: none;
    margin: 0px;
    padding: 0px;
    z-index: -1;
}

.card-style07 .icons-social ul li {
    margin-top: 10px;
    position: relative;
    transition: 0.5s;
    opacity: 1;
    z-index: 4;
}

.card-style07 .icons-social ul li a {
    transform: rotate(180deg);
    display: inline-block;
    color: rgb(255, 255, 255);
    font-size: 16px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgb(206, 18, 67);
    transition: 0.3s;
}

.card-style07 .icons-social ul li a i {
    transition: none;
}

.card-style07 .icons-social ul li a:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(18, 28, 34);
}

.card-style07 .icons-social ul li:nth-of-type(1) {
    transition-delay: 0s;
    z-index: 4;
}

.card-style07 .icons-social ul li:nth-of-type(2) {
    transition-delay: 0.2s;
    z-index: 3;
}

.card-style07 .icons-social ul li:nth-of-type(3) {
    transition-delay: 0.3s;
    z-index: 2;
}

.card-style07 .icons-social ul li:nth-of-type(4) {
    transition-delay: 0.4s;
    z-index: 1;
}

.card-style07 .card-body {
    padding: 25px 0px 21px;
    transition: 0.4s;
    text-align: center;
}

.video_btn {
    position: relative;
    height: 80px;
    width: 80px;
    background: rgb(206, 18, 67);
    text-align: center;
    display: inline-block;
    line-height: 80px;
    color: rgb(255, 255, 255);
    border-radius: 50%;
    transition-duration: 0s;
}

.video_btn:hover i, .video_btn:focus i {
    color: rgb(255, 255, 255);
}

.video_btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    height: 80px;
    width: 80px;
    border: 2px solid rgb(206, 18, 67);
    border-radius: 50%;
    transform: translateX(-50%) translateY(-50%);
    opacity: 0.3;
    animation: 1500ms ease-out 0s infinite normal none running pulse-border;
}

.video_btn::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    height: 95px;
    width: 95px;
    border: 2px solid rgb(206, 18, 67);
    border-radius: 50%;
    transform: translateX(-50%) translateY(-50%);
    opacity: 0.3;
    animation: 1500ms ease-out 0s infinite normal none running pulse-border;
}

.video_btn.small {
    width: 55px;
    height: 55px;
    line-height: 55px;
}

.video_btn.small::after {
    height: 50px;
    width: 50px;
}

.video_btn.small::before {
    height: 65px;
    width: 65px;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0px) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0px) scale(1.5);
        opacity: 0;
    }
}

@media screen and (max-width: 1199px) {
    .video_btn {
        height: 75px;
        width: 75px;
        line-height: 75px;
    }

    .video_btn::after {
        height: 75px;
        width: 75px;
    }

    .video_btn::before {
        height: 90px;
        width: 90px;
    }
}

@media screen and (max-width: 991px) {
    .video_btn {
        height: 70px;
        width: 70px;
        line-height: 70px;
    }

    .video_btn::after {
        height: 70px;
        width: 70px;
    }

    .video_btn::before {
        height: 85px;
        width: 85px;
    }

    @keyframes pulse-border {
        0% {
            transform: translateX(-50%) translateY(-50%) translateZ(0px) scale(1);
        }

        100% {
            transform: translateX(-50%) translateY(-50%) translateZ(0px) scale(1.2);
        }
    }
}

@media screen and (max-width: 767px) {
    .video_btn {
        height: 60px;
        width: 60px;
        line-height: 60px;
    }

    .video_btn::after {
        height: 60px;
        width: 60px;
    }

    .video_btn::before {
        height: 75px;
        width: 75px;
    }
}

.portfolio-style-01::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    transition: 0.3s ease-in-out;
    border-radius: 0.375rem;
    z-index: 9;
    background: rgb(98 98 98);
    mix-blend-mode: hard-light;
}

.portfolio-style-01:hover::before {
}

.portfolio-style-01 .content {
    padding: 45px 40px 0px;
    transition: 0.3s;
}

.portfolio-style-01 .portfolio-btn {
    padding: 15px 42px 23px;
    margin-top: 15px;
}

.portfolio-style-01 .portfolio-body {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 9;
    background: #000;
    background: linear-gradient(0deg, rgb(0 0 0 / 51%) 0%, rgba(255, 217, 0, 0) 100%);
}

.portfolio-style-01 .content h3 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    margin-bottom: 0;
    font-weight: 800;
    font-size: 36px;
}

.portfolio-style-01 .content h3 span{
    display: block;
    font-size: 50%;
    font-weight: 600;
}

.portfolio-style-01:hover .content p, .portfolio-style-01:hover .content .icon {
    opacity: 1;
    visibility: visible;
}

.portfolio-style-01 .portfolio-btn a {
    color: rgb(255, 255, 255);
}

.portfolio-style-01 .content .title a {
    color: rgb(255, 255, 255);
    position: relative;
}

.portfolio-style-01 .content p {
    color: rgb(224, 227, 229);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}

.portfolio-style-01:hover .portfolio-btn {
}

.portfolio-style-01 img {
    transition: 500ms;
    height: 500px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.portfolio-style-01:hover img {
    transform: scale(1.1);
}

.portfolio-style-01:hover::before {
    background-color: rgb(57 57 57);
    mix-blend-mode: hard-light;
}

@media screen and (max-width: 1399px) {
    .portfolio-style-01 .portfolio-btn {
        margin-top: 15px;
    }
}

@media screen and (max-width: 767px) {
    .portfolio-style-01 .content {
        padding: 25px 0px 15px 25px;
    }

    .portfolio-style-01 .portfolio-btn {
        padding: 15px 42px 23px 25px;
    }
}

.lg-backdrop {
    z-index: 99999;
}

.lg-outer {
    z-index: 999999;
}

.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
    border-color: rgb(206, 18, 67);
}

.lg-progress-bar .lg-progress {
    background-color: rgb(206, 18, 67);
}

.lg-backdrop.in {
    opacity: 0.85;
}

.pagination {
    border-radius: 0px;
    padding: 0px;
    margin-left: auto;
    margin-right: auto;
}

.pagination ul {
    display: inline-block;
    margin: 0px auto;
    padding: 0px;
}

.pagination li {
    display: inline;
    margin-right: 10px;
}

.pagination li:last-child {
    margin-right: 0px;
}

.pagination a {
    background: transparent;
    font-weight: 700;
    text-align: center;
    padding: 12px 16px;
    color: rgb(66, 84, 94);
    border: 1px solid rgb(221, 221, 221);
    line-height: 25px;
}

.pagination a:hover, .pagination a:active, .pagination a:focus {
    background-color: rgb(18, 28, 34);
    color: rgb(255, 255, 255);
    box-shadow: none;
}

.pagination .active a {
    background-color: rgb(247, 247, 247);
    color: rgb(0, 33, 71);
    border: 1px solid rgb(219, 219, 219);
    cursor: default;
}

@media screen and (max-width: 575px) {
    .pagination li {
        margin-right: 8px;
    }
}

.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 40px;
}

.owl-theme .owl-dots .owl-dot span {
    border-radius: 0px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background-color: rgb(206, 18, 67);
}

.owl-carousel .owl-item img {
    width: auto;
    display: inline-block;
}

.owl-thumbs {
    z-index: 9;
    position: relative;
}

.owl-thumbs button {
    border: none;
}

.owl-thumbs button .title {
    transition: 0.5s;
    opacity: 0;
    text-align: center;
    visibility: hidden;
    margin: 20px -100px 0px;
}

.owl-thumbs button.active .title {
    opacity: 1;
    visibility: visible;
}

.owl-thumbs button img {
    opacity: 0.5;
}

.owl-thumbs button.active img {
    opacity: 1;
}

.owl-theme .owl-nav {
    margin-top: 0px;
}

.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 30px;
}

.owl-theme .owl-nav span {
    width: 45px;
    height: 45px;
    line-height: 36px;
    font-size: 40px;
    background: rgb(39, 44, 73);
    color: rgb(255, 255, 255);
    border-radius: 4px;
    display: inline-block;
}

.owl-carousel .owl-nav button.owl-prev {
    left: -100px;
    position: absolute;
    top: 39%;
}

.owl-carousel .owl-nav button.owl-next {
    right: -100px;
    position: absolute;
    top: 39%;
}

.testimonial-carousel1.owl-theme .owl-nav.disabled + .owl-dots {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: end;
    background-color: rgb(206, 18, 67);
    right: 0px;
    bottom: -106px;
    padding: 29px 80px 29px 70px;
    margin-top: 0px;
    border-radius: 0px 0px 0.375rem 0.375rem;
}

.testimonial-carousel1.owl-theme .owl-dots .owl-dot span {
    border-radius: 50%;
    width: 8px;
    height: 8px;
    margin: 20px;
    background-color: rgb(255, 255, 255);
}

.testimonial-carousel1.owl-theme .owl-dots .owl-dot.active span, .testimonial-carousel1.owl-theme .owl-dots .owl-dot:hover span {
    background-color: transparent;
    border: 1px solid rgb(255, 255, 255);
}

.testimonial-carousel2.owl-theme .owl-nav [class*="owl-"] {
    position: absolute;
    right: inherit;
    top: 0px;
    bottom: 0px;
    width: 45px;
    height: 45px;
    border: 2px solid rgb(130, 131, 131);
    border-radius: 50%;
    line-height: 42px;
    transition-duration: 500ms;
    left: -90px;
    text-align: center;
    margin: auto;
}

.testimonial-carousel2.owl-theme .owl-nav .owl-next {
    top: 0px;
    bottom: 0px;
    left: inherit;
    right: -90px;
}

.testimonial-carousel2.owl-theme .owl-nav .owl-next:hover {
    background: rgb(255, 255, 255);
    border: 2px solid rgb(255, 255, 255);
}

.testimonial-carousel2.owl-theme .owl-nav .owl-prev:hover {
    background: rgb(255, 255, 255);
    border: 2px solid rgb(255, 255, 255);
}

.testimonial-carousel2 .owl-nav i, .testimonial-carousel2 .owl-nav span {
    font-weight: 600;
    color: rgb(255, 255, 255);
    transition-duration: 500ms;
    font-size: 14px;
}

.testimonial-carousel2 .owl-nav .owl-next:hover i, .testimonial-carousel2 .owl-nav .owl-prev:hover i {
    color: rgb(35, 35, 35);
}

.services-carousel-one {
    margin-bottom: -85px;
}

.services-carousel-one.owl-carousel .owl-nav button.owl-prev, .services-carousel-one.owl-carousel .owl-nav button.owl-next {
    width: 57px;
    height: 57px;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    line-height: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-carousel-one.owl-theme .owl-nav [class*="owl-"] i {
    transition: 0.4s;
}

.services-carousel-one.owl-theme .owl-nav [class*="owl-"]:hover {
    background: rgb(206, 18, 67);
    transition: 0.4s;
}

.services-carousel-one.owl-theme .owl-nav [class*="owl-"]:hover i {
    color: rgb(255, 255, 255);
}

@media screen and (max-width: 1599px) {
    .services-carousel-one.owl-carousel .owl-nav button.owl-prev {
        left: 0px;
    }

    .services-carousel-one.owl-carousel .owl-nav button.owl-next {
        right: 0px;
    }
}

@media screen and (max-width: 1199px) {
    .services-carousel-one.owl-carousel .owl-nav button.owl-prev, .services-carousel-one.owl-carousel .owl-nav button.owl-next {
        width: 47px;
        height: 47px;
        line-height: 48px;
    }
}

.clients-carousel-one .client-img img {
    opacity: 0.2;
    transition: 0.4s;
}

.clients-carousel-one .client-img:hover img {
    opacity: 1;
}

ul.resp-tabs-list {
    margin-bottom: 15px;
    padding: 0px;
}

.resp-tabs-list li {
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    padding: 12px 20px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 0px 70px;
    margin: 0px 4px 0px 0px;
    list-style: none;
    cursor: pointer;
    background: rgb(255, 255, 255);
    color: rgb(206, 18, 67);
    text-align: left;
    border-radius: 0px;
}

.resp-tabs-list li:last-child {
    margin-right: 0px;
}

.resp-tabs-list li i {
    font-size: 24px;
    padding-right: 10px;
    vertical-align: text-bottom;
}

.resp-tabs-container {
    padding: 0px;
    clear: left;
}

.resp-tab-content {
    display: none;
    padding: 40px;
}

.resp-tabs-list li.resp-tab-active {
    margin-bottom: -1px;
    background-color: rgb(206, 18, 67);
    color: rgb(255, 255, 255);
}

.resp-content-active, .resp-accordion-active {
    display: block;
}

.resp-tab-content {
    border: none;
    float: left;
    width: 100%;
    box-shadow: none;
    border-radius: 4px;
    background: transparent;
}

h2.resp-accordion {
    cursor: pointer;
    display: none;
    font-size: 18px;
    color: rgb(255, 255, 255);
    border-top: 0px solid rgb(193, 193, 193);
    margin-bottom: 5px;
    padding: 14px 15px;
    float: left;
    width: 100%;
    border-radius: 0px;
    background: rgb(18, 28, 34) !important;
}

h2.resp-tab-active {
    color: rgb(255, 255, 255);
    margin-bottom: 0px;
    border-radius: 0px;
    border-bottom: 0px solid rgb(193, 193, 193) !important;
    background-color: rgb(206, 18, 67) !important;
}

h2.resp-tab-title:last-child {
    background: blue;
    border-bottom: 12px solid rgb(193, 193, 193) !important;
}

.resp-vtabs.style1 ul.resp-tabs-list {
    margin-top: -80px;
}

.resp-vtabs ul.resp-tabs-list {
    float: left;
    width: 100%;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 70px 0px;
    padding: 40px;
    margin-bottom: 0px;
}

.resp-vtabs .resp-tabs-list li {
    display: block;
    margin: 0px 0px 25px;
    cursor: pointer;
    float: none;
    font-size: 18px;
    background: rgba(18, 28, 34, 0.1);
    color: rgb(18, 28, 34);
    border-radius: 0px;
    padding: 18px 20px !important;
}

.resp-vtabs .resp-tabs-list li:last-child {
    margin-bottom: 0px;
}

.resp-vtabs .resp-tabs-container {
    padding: 0px;
    background-color: rgb(255, 255, 255);
    float: left;
    width: 100%;
    clear: none;
    border-radius: 0px 8px 8px 0px;
}

.resp-vtabs .resp-tab-content {
    overflow-wrap: break-word;
    border-radius: 0px 8px 8px 0px;
    padding: 0px;
}

.resp-vtabs li.resp-tab-active {
    position: relative;
    z-index: 1;
    background-color: rgb(206, 18, 67);
    color: rgb(255, 255, 255);
    margin-right: -1px !important;
    padding: 18px 20px !important;
}

.resp-arrow {
    border-color: transparent rgb(255, 255, 255) rgb(255, 255, 255) transparent;
    border-style: solid;
    border-width: 0px 2px 2px 0px;
    float: right;
    display: block;
    height: 8px;
    transform: rotate(45deg);
    width: 8px;
    margin-top: 7px;
}

h2.resp-tab-active span.resp-arrow {
    border-color: rgb(255, 255, 255) transparent transparent rgb(255, 255, 255);
    border-style: solid;
    border-width: 2px 0px 0px 2px;
    float: right;
    display: block;
    height: 8px;
    transform: rotate(45deg);
    width: 8px;
    margin-top: 10px;
}

.resp-easy-accordion h2.resp-accordion {
    display: block;
}

.resp-easy-accordion .resp-tab-content {
    border: 1px solid rgb(193, 193, 193);
}

.resp-easy-accordion .resp-tab-content:last-child {
    border-bottom: 1px solid rgb(193, 193, 193);
}

.resp-jfit {
    width: 100%;
    margin: 0px;
}

.resp-tab-content-active {
    display: block;
    border-color: rgb(232, 232, 232) !important;
}

h2.resp-accordion.resp-tab-active {
    border-color: rgb(232, 232, 232) !important;
}

@media screen and (max-width: 991px) {
    ul.resp-tabs-list {
        display: none;
    }

    h2.resp-accordion {
        display: block;
    }

    h2.resp-accordion i {
        margin-right: 8px;
        font-size: 20px;
        color: rgb(255, 255, 255);
        vertical-align: text-bottom;
    }

    .resp-vtabs .resp-tab-content {
        margin-bottom: 5px;
        padding: 30px;
    }

    .resp-vtabs .resp-tab-content:last-child {
        margin-bottom: 0px;
    }

    .resp-vtabs .resp-tabs-container {
        float: left;
        width: 100%;
        min-height: 100px;
        clear: none;
        background: none;
        border: none !important;
    }

    .resp-accordion-closed {
        display: none !important;
    }

    .resp-tab-content {
        background-color: rgb(255, 255, 255);
        border-radius: 0px;
        border: 1px solid rgb(238, 238, 238);
        margin-bottom: 5px;
        padding: 30px;
    }

    .resp-tab-content:last-child {
        margin-bottom: 0px;
    }
}

@media screen and (max-width: 575px) {
    .resp-vtabs .resp-tab-content, .resp-tab-content {
        padding: 20px;
    }
}

.accordion-style .card {
    background: transparent;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 60px 0px;
    border: none;
    border-radius: 0px;
    margin-top: 0px !important;
}

.accordion-style .card-header {
    border-top: 0px;
    border-right: 0px;
    border-left: 0px;
    border-image: initial;
    padding: 0px;
    border-bottom: none;
    background: none;
}

.accordion-style .btn-link {
    color: rgb(206, 18, 67);
    line-height: 26px;
    position: relative;
    border: none;
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
    border-radius: 0px;
    padding: 20px 45px 20px 18px;
    font-weight: 700;
    text-decoration: none;
    background-color: rgb(255, 255, 255);
}

.accordion-style .btn-link.collapsed {
    color: rgb(66, 84, 94);
    line-height: 26px;
    position: relative;
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
    border: none;
    padding: 20px 45px 20px 18px;
    font-weight: 700;
    text-decoration: none;
    background-color: rgb(255, 255, 255);
}

.accordion-style .btn-link:hover, .accordion-style .btn-link:active, .accordion-style .btn-link:focus {
    text-decoration: none;
    color: rgb(206, 18, 67);
}

.accordion-style .btn-link.collapsed::after {
    content: "+";
    right: 17px;
    left: inherit;
    font-size: 20px;
    transform: none;
    top: 22px;
    position: absolute;
    color: rgb(33, 33, 33);
    background-color: transparent;
    border-radius: 0.3rem;
    line-height: 20px;
    width: 25px;
    height: 25px;
    text-align: center;
}

.accordion-style .btn-link::after {
    content: "-";
    right: 17px;
    left: inherit;
    font-size: 20px;
    transform: none;
    top: 20px;
    position: absolute;
    color: rgb(206, 18, 67);
    background-color: transparent;
    border-radius: 0.3rem;
    line-height: 22px;
    width: 25px;
    height: 25px;
    text-align: center;
}

.accordion-style .card-body {
    padding: 0px 30px 25px 26px;
    line-height: 24px;
    text-align: left;
    border: none;
    background: rgb(255, 255, 255);
}

@media screen and (max-width: 991px) {
    .accordion-style .card-body {
        padding: 10px 25px 30px;
    }
}

.accordion .card {
    background: transparent;
    box-shadow: none;
    margin-bottom: 20px;
    border: 0px;
    border-radius: 0px;
}

.accordion .card:last-child {
    margin-bottom: 0px;
}

.accordion .card-header {
    border: 0px;
    padding: 0px;
    background: none;
}

.accordion .accordion-collapse {
    border: none;
}

.accordion .accordion-button {
    color: rgb(255, 255, 255);
    font-size: 18px;
    position: relative;
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
    box-shadow: none;
    font-weight: 500;
    padding: 20px 60px 20px 20px;
    text-decoration: none;
    background: rgb(206, 18, 67);
    border: 1px solid transparent;
}

.accordion .accordion-button:hover {
    text-decoration: none;
}

.accordion .accordion-button.collapsed {
    background: rgb(255, 255, 255);
    color: rgb(40, 43, 45);
    border: 1px solid rgb(237, 237, 237);
}

.accordion .accordion-button.collapsed::after {
    background: rgb(18, 28, 34);
    border: none;
    content: "+";
    right: 20px;
    left: inherit;
    font-size: 18px;
    transform: none;
    width: 25px;
    height: 25px;
    line-height: 25px;
    top: 18px;
    border-radius: 5px;
    text-align: center;
    color: rgb(255, 255, 255);
}

.accordion .accordion-button::after {
    background: rgb(18, 28, 34);
    content: "-";
    right: 20px;
    border-radius: 5px;
    left: inherit;
    font-size: 18px;
    border: 1px solid rgb(18, 28, 34);
    transform: none;
    width: 25px;
    height: 25px;
    line-height: 21px;
    top: 18px;
    position: absolute;
    color: rgb(255, 255, 255);
    text-align: center;
}

.accordion .card-body {
    font-size: 16px;
    padding: 20px 25px;
    line-height: 28px;
    text-align: left;
    border-width: 0px 1px 1px;
    border-top-style: initial;
    border-top-color: initial;
    border-bottom-style: solid;
    border-bottom-color: rgb(237, 237, 237);
    border-left-style: solid;
    border-left-color: rgb(237, 237, 237);
    border-right-style: solid;
    border-right-color: rgb(237, 237, 237);
}

@media screen and (max-width: 991px) {
    .accordion .accordion-button {
        padding: 15px 50px 15px 15px;
        font-size: 16px;
    }

    .accordion .accordion-button.collapsed::after, .accordion .accordion-button::after {
        right: 15px;
        font-size: 16px;
        height: 22px;
        line-height: 19px;
        width: 22px;
        top: 13px;
    }

    .accordion .card-body {
        padding: 20px 15px;
    }
}

@media screen and (max-width: 575px) {
    .accordion .accordion-button {
        padding: 15px 50px 15px 15px;
    }
}

.blog-sidebar .widget {
    padding: 30px 25px;
    border-radius: 0.375rem;
}

.blog-sidebar .widget .category-list li {
    margin-bottom: 1rem;
}

.blog-sidebar .widget .category-list li:last-child {
    margin-bottom: 0px;
}

.blog-sidebar .widget .category-list li a {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px 15px 30px;
    border-radius: 0.375rem;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgb(255, 255, 255);
}

.blog-sidebar .widget .category-list li a::after {
    content: "";
    font-family: themify;
    font-size: 12px;
}

.blog-sidebar .widget .category-list li a:hover, .blog-sidebar .widget .category-list li a:active, .blog-sidebar .widget .category-list li a:focus {
    background: white;
    color: rgb(206, 18, 67);
}

.blog-sidebar .widget .category-list li.active a::after, .blog-sidebar .widget .category-list li:hover a::after {
    margin-left: 10px;
    opacity: 1;
    transition: 0.3s ease-in-out;
}

.blog-tags a {
    background-color: rgb(206, 18, 67);
    padding: 7px 12px;
    color: rgb(255, 255, 255);
    font-size: 14px;
    line-height: 20px;
    margin: 0.6rem 5px 0px 0px;
    display: inline-block;
    vertical-align: top;
    border: 1px solid rgb(206, 18, 67);
}

.blog-tags a:hover, .blog-tags a:active, .blog-tags a:focus {
    background-color: rgb(255, 255, 255);
    color: rgb(206, 18, 67);
}

.comment-reply-link {
    color: rgb(18, 28, 34);
    background: rgba(18, 28, 34, 0.1);
    padding: 5px 18px;
    font-weight: 500;
    border-radius: 4px;
    font-size: 14px;
}

.comment-reply-link:hover, .comment-reply-link:active, .comment-reply-link:focus {
    color: rgb(255, 255, 255);
    background: rgb(18, 28, 34);
}

.service-sidebar .cetegory li {
    margin-bottom: 12px;
}

.service-sidebar .cetegory li a {
    background-color: rgb(255, 255, 255);
    padding: 15px 20px 15px 30px;
    border-radius: 0.375rem;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-sidebar .cetegory li:hover a, .service-sidebar .cetegory li.active a {
    background-color: rgb(18, 28, 34);
    color: rgb(255, 255, 255);
}

.service-sidebar .widget-brochure {
    margin-bottom: 0px;
    padding: 0px;
    list-style: none;
}

.service-sidebar .widget-brochure li {
    margin-bottom: 12px;
    border: 1px solid rgb(237, 237, 237);
    border-radius: 0.375rem;
    background: rgb(255, 255, 255);
}

.service-sidebar .widget-brochure li:last-child {
    margin-bottom: 0px;
}

.service-sidebar .widget-brochure li a {
    position: relative;
    display: block;
    padding: 16px 15px 16px 75px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.service-sidebar .widget-brochure li a i {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 60px;
    height: 100%;
    text-align: center;
    font-size: 20px;
    background: rgb(18, 28, 34);
    color: rgb(255, 255, 255);
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-sidebar .banner-wrapper .icon-boxs {
    position: absolute;
    top: -43px;
    text-align: center;
    left: 0px;
    right: 0px;
    margin: auto;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-details-social {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin-top: 30px;
    padding-top: 35px;
    border-top: 1px solid rgb(237, 237, 237);
}

.team-details-social ul {
    margin-left: 30px;
    padding-left: 0px;
    margin-bottom: 0px;
}

.team-details-social ul li {
    display: inline-block;
    list-style: none;
    margin-right: 10px;
}

.team-details-social ul li:last-child {
    margin: 0px;
}

.team-details-social ul li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(237, 237, 237);
    color: rgb(52, 58, 64);
    transition: 0.4s ease-out;
}

.team-details-social ul li a:hover {
    color: rgb(255, 255, 255);
    border-color: rgb(206, 18, 67);
    background: rgb(206, 18, 67);
}

.countdown {
    padding: 0px;
}

.countdown li {
    background: rgb(18, 28, 34);
    display: inline-block;
    text-align: center;
    min-width: 130px;
    padding: 25px;
    border: 1px solid rgb(237, 237, 237);
    margin: 0px 5px;
    border-radius: 10px;
}

.countdown li span {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    line-height: normal;
    position: relative;
    color: rgb(255, 255, 255);
}

.countdown li span::before {
    content: "";
    height: 1px;
    position: absolute;
    width: 100%;
}

.countdown li p.timeRefDays, .countdown li p.timeRefHours, .countdown li p.timeRefMinutes, .countdown li p.timeRefSeconds {
    font-size: 16px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    margin: 0px;
    padding: 0px;
    text-transform: capitalize;
}

.coming-soon > .bg-img {
    content: "";
    width: 65%;
    height: 100vh;
    top: 0px;
    right: 0px;
    background-position: right center;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute !important;
}

@media screen and (max-width: 1199px) {
    .countdown li {
        min-width: 115px;
        padding: 20px;
    }

    .countdown li span {
        font-size: 35px;
    }
}

@media screen and (max-width: 767px) {
    .countdown li {
        min-width: 98px;
        padding: 15px;
        margin: 10px 5px;
    }

    .countdown li span {
        font-size: 30px;
    }

    .coming-soon::before {
        width: 100%;
    }
}

.coming-soon-style1 .countdown li {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.375rem;
}

.about-style-01 .about-img-one img {
    border-radius: 99% 1% 0% 100% / 50% 0% 100% 50%;
}

.about-style-01 .about-img-two img {
    border-radius: 0% 100% 100% 0% / 0% 50% 50% 0%;
}

.about-style-02 .about-image .about-img-one {
    position: absolute;
    bottom: 0px;
    left: -40px;
    border-radius: 20px;
    overflow: hidden;
}

.about-style-02 .about-img-text {
    position: absolute;
    top: 40px;
    left: 43px;
}

.about-style-02 .about-img-text p {
    font-size: 90px;
    line-height: 90px;
    font-weight: 700;
    color: rgb(18, 28, 34);
}

.about-style-02 .about-img-text span {
    color: rgba(33, 37, 41, 0.75);
    font-size: 15px;
    text-transform: uppercase;
}

@media screen and (max-width: 991px) {
    .about-style-02 .about-img-text {
        top: 10px;
        left: 93px;
    }

    .about-style-02 .about-image .about-img-one {
        bottom: 10px;
        left: 10px;
    }
}

.service-style01 .service-item {
    padding: 53px;
    height: 100%;
}

.service-style01 .service-item.last {
    padding-right: 54px;
}

.service-style01 .service-item .number {
    font-weight: bold;
    font-size: 200px;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgb(191, 191, 191);
    margin-bottom: 15px;
    transition: 0.3s;
}

.service-style01 .service-item:hover .sv-btn {
    color: rgb(206, 18, 67);
}

.service-style01 .service-item:hover .number {
    -webkit-text-stroke-color: rgb(206, 18, 67);
}

.service-style01 .service-item .sv-btn {
    color: rgb(191, 191, 191);
    letter-spacing: 2px;
    font-size: 16px;
    text-transform: uppercase;
    margin-top: 20px;
    font-weight: 700;
}

@media screen and (max-width: 1399px) {
    .service-style01 .service-item {
        padding: 26px;
    }

    .service-style01 .service-item .number {
        font-size: 145px;
    }

    .service-style01 .service-item.last {
        padding-right: 27px;
    }
}

.extra-style01 .right-content .right-icon {
    width: 110px;
    height: 110px;
    background-color: rgb(206, 18, 67);
    border-radius: 50%;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 1199px) {
    .extra-style01 .right-content .right-icon {
        width: 85px;
        height: 85px;
    }
}

.extra-style02 .extra-counter-box {
    background-color: rgb(206, 18, 67);
    padding: 25px 34px;
}

@media screen and (max-width: 1199px) {
    .extra-style02 .extra-counter-box {
        padding: 25px 29px;
    }
}

.faq-style01 {
    background-color: rgb(244, 245, 246);
    padding-top: 250px;
    margin-top: -130px;
}

.faq-style01 .video_btn {
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 0px 0px 0px 0.375rem;
}

.faq-style01 .video_btn::before, .faq-style01 .video_btn::after {
    content: none;
}

@media screen and (max-width: 1199px) {
    .faq-style01 {
        padding-top: 220px;
    }
}

@media screen and (max-width: 991px) {
    .faq-style01 {
        padding-top: 200px;
    }
}

.client-style01 .client-logo {
    opacity: 1;
    transition: 0.4s cubic-bezier(0.2, 0, 0.3, 1);
}

.client-style01:hover .client-logo {
    filter: blur(2px);
    opacity: 0.6;
}

.client-style01 .client-logo:hover {
    opacity: 1;
    filter: blur(0px);
}

.counter-lg-title {
    position: relative;
    display: block;
    text-align: center;
}

.counter-lg-title .big-text {
    position: relative;
    display: block;
    font-size: 247px;
    line-height: 1.4;
    letter-spacing: -12.7px;
    background-image: url("../img/content/counter.jpg");
    color: transparent;
    background-position: center center;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 9;
    white-space: nowrap;
}

.counter-lg-title .big-text .special-text {
    -webkit-text-stroke: 1px rgb(247, 198, 0);
    position: absolute;
    left: 7px;
    right: 0px;
    top: -5px;
}

@media screen and (max-width: 1199px) {
    .counter-lg-title .big-text {
        font-size: 200px;
    }
}

@media screen and (max-width: 991px) {
    .counter-lg-title .big-text {
        font-size: 157px;
    }
}

@media screen and (max-width: 767px) {
    .counter-lg-title .big-text {
        font-size: 120px;
    }
}

@media screen and (max-width: 575px) {
    .counter-lg-title .big-text {
        letter-spacing: 0.5px;
        font-size: 55px;
    }

    .counter-lg-title .big-text .special-text {
        left: 5px;
        top: -1px;
    }
}

.contact-style01::before {
    content: "";
    width: 50%;
    height: 100%;
    position: absolute;
    background: rgb(206, 18, 67);
    left: 0px;
    top: 0px;
}

@media screen and (max-width: 767px) {
    .contact-style01::before {
        display: none;
    }
}

.contact-style02 {
    background-position: center bottom;
    background-repeat: no-repeat;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    background-size: auto !important;
}

.contact-style02 .contact-text {
    -webkit-text-stroke: 1px rgb(206, 18, 67);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 120px;
    font-weight: 700;
    line-height: 0.8em;
    letter-spacing: -3.6px;
}

@media screen and (max-width: 1399px) {
    .contact-style02 .contact-text {
        font-size: 100px;
    }
}

@media screen and (max-width: 1199px) {
    .contact-style02 .contact-text {
        font-size: 90px;
    }
}

@media screen and (max-width: 575px) {
    .contact-style02 .contact-text {
        font-size: 64px;
    }
}

.error-text {
    font-size: 180px;
    line-height: 1;
}

@media screen and (max-width: 767px) {
    .error-text {
        font-size: 130px;
    }
}

@media screen and (max-width: 575px) {
    .error-text {
        font-size: 100px;
    }
}

.progress-style1 .progress {
    height: 8px;
}

.progress-style1 .progress .progress-bar {
    background-color: rgb(206, 18, 67);
}

.process-style01 .process-box .process-no {
    -webkit-text-stroke: 1px rgba(37, 205, 199, 0);
    margin: -8% 0% 0% 25%;
    color: rgba(252, 82, 32, 0.1);
    position: absolute;
    display: block;
    inset: 0px;
    font-weight: 700;
    font-size: 144px;
    letter-spacing: 0px;
    line-height: 0;
    transition: 0.4s;
    max-width: 100%;
    height: fit-content;
    pointer-events: none;
}

.process-style01 .process-box:hover .process-no {
    color: rgba(37, 205, 199, 0);
    -webkit-text-stroke-color: rgb(206, 18, 67);
}

.contact-map {
    width: 100%;
    height: 524px;
}

.history-timeline {
    position: relative;
}

.history-timeline::before {
    position: absolute;
    content: "";
    left: 0px;
    top: 4px;
    width: 100%;
    height: 1px;
    background: rgb(35, 35, 35);
    opacity: 0.2;
}

.timeline-flag {
    background: rgb(206, 18, 67);
    width: 10px;
    height: 25px;
    margin-bottom: 25px;
    position: relative;
    transform: rotate(180deg);
}

.timeline-flag::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 0px;
    height: 0px;
    border-top: 5px solid rgb(255, 255, 255);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
}

.history-year {
    position: absolute;
    background-color: rgb(206, 18, 67);
    color: rgb(255, 255, 255);
    padding: 4px 20px;
    left: 50%;
    transform: translateX(-67%);
    border-radius: 0px 0px 0.375rem 0.375rem;
}

@media screen and (max-width: 767px) {
    .history-year {
        transform: translateX(-50%);
    }
}

.contact-us {
    padding: 60px;
    background-color: rgb(246, 246, 246);
}

.contact-us .contacts-icon img {
    padding: 16px;
}

.contact-us .contact-details {
    padding: 30px 50px 40px;
    border-radius: 5px;
    margin-left: 20px;
    background-color: rgb(18, 28, 34);
}

.contact-us .contact-info {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0px 0px 25px;
    margin-bottom: 22px;
}

.contact-us .contacts-icon {
    float: left;
    margin-right: 20px;
    width: 55px;
    height: 55px;
    line-height: 55px;
    background-color: rgba(255, 255, 255, 0.518);
    text-align: center;
    display: inline-block;
    transition: 0.5s;
}

.contact-us .contacts-icon i {
    color: rgb(255, 255, 255);
    font-size: 22px;
    transition: 0.5s;
}

.contact-us .contacts-title h6 {
    font-size: 14px;
    line-height: 23px;
    opacity: 0.702;
    margin-top: 5px;
}

.contact-us .contact-info:hover .contacts-icon {
    transform: rotateY(180deg);
    background: rgb(206, 18, 67);
}

.contact-us .contact-info.upper2 {
    border-bottom: none;
    margin-bottom: 0px;
}

.contact-us .contact-details .follow-company-icon2 a {
    font-size: 14px;
    display: inline-block;
    color: rgb(255, 255, 255);
    margin-right: 7px;
    transition: 0.5s;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.2);
    text-align: center;
}

.contact-us .follow-company-icon2 a:hover {
    background: rgb(206, 18, 67);
}

@media screen and (max-width: 1199px) {
    .contact-us {
        padding: 40px;
    }

    .contact-us .contact-details {
        padding: 30px 31px;
        margin-left: 7px;
    }
}

@media screen and (max-width: 575px) {
    .contact-us {
        padding: 30px 19px 31px;
    }

    .contact-us .contact-info {
        padding: 0px 0px 18px;
        margin-bottom: 21px;
    }

    .contact-us .contacts-icon {
        margin-right: 13px;
        width: 48px;
        height: 48px;
        line-height: 48px;
    }

    .contact-us .contact-details {
        padding: 19px;
        margin-left: 7px;
    }

    .contact-us .contacts-title h6 {
        font-size: 13px;
        line-height: 21px;
    }
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    margin-bottom: 0.5rem;
}

.form-control:focus {
    border-color: rgb(206, 18, 67);
}

.form-check-input:checked {
    border-color: rgb(18, 28, 34);
    background-color: rgb(18, 28, 34);
}

.quform-input {
    position: relative;
    border: 1px solid transparent;
    background-color: rgba(255, 255, 255, 0.2);
    height: 50px;
    color: rgb(255, 255, 255);
}

footer .quform-input {
    padding: 10px 4rem 0.5rem 1rem;
}

.quform-input .quform-errors-wrap {
    position: absolute;
    right: 8px;
    top: 0px;
    line-height: normal;
    z-index: 1;
}

.quform .quform-elements {
    position: relative;
}

.quform-element > label {
    padding-bottom: 5px;
    margin-bottom: 0px;
    color: rgb(66, 84, 94);
    font-weight: 500;
    font-size: 15px;
}

.quform-element > label .quform-required {
    color: rgb(204, 1, 1);
    font-size: 10px;
}

.quform-inner input {
    width: 100%;
}

.quform-elements .quform-element textarea {
    margin-bottom: 0px;
    padding: 8px 15px;
    vertical-align: top;
}

.quform-elements .quform-element select {
    margin-bottom: 0px;
    padding: 8px 35px 8px 15px;
}

.quform-errors {
    padding: 0px;
    margin: 0px;
    line-height: normal;
}

.quform-errors > .quform-error {
    padding: 0px;
    background: none;
    border: none;
    float: none;
    color: rgb(245, 84, 63);
    font-size: 11px;
    line-height: normal;
    letter-spacing: normal;
}

.quform-outer-no-js .quform-error {
    padding: 0px;
    background: none;
    border: none;
    float: none;
    color: rgb(206, 18, 67);
    font-size: 11px;
    line-height: normal;
    letter-spacing: normal;
}

.quform-outer-no-js .quform-success-message {
    padding: 0.75rem 1.25rem 0.75rem 3rem;
}

.quform-has-error input, .quform-has-error textarea, .quform-has-error select, .quform-has-error input[type="file"], .quform-has-error .custom-file-label {
    border-color: rgb(245, 84, 63) !important;
}

.quform-success-message {
    padding: 0.75rem 1.25rem 0.75rem 3rem;
}

.quform-submit-inner {
    float: none;
}

.quform-loading-wrap {
    float: none;
}

.quform-loading-wrap .quform-loading {
    display: inline-block;
}

.quform-element {
    margin-bottom: 1rem;
}

.newsletter-form .quform-elements {
    position: relative;
    border-radius: 10px;
}

.newsletter-form .quform-submit-inner {
    position: absolute;
    right: 1px;
    top: 1px;
    width: auto;
    background: transparent;
    height: 48px;
}

.newsletter-form .quform-submit-inner .btn {
    padding: 0.5rem 1.15rem;
}

.newsletter-form .quform-submit-inner .btn:focus, .newsletter-form .quform-submit-inner .btn:active {
    border: 1px solid transparent;
}

.newsletter-form .quform-loading-wrap {
    margin-top: 15px;
    margin-bottom: 0px;
    margin-left: 0px;
}

.newsletter-form input {
    border: 1px solid transparent;
    background-color: rgba(255, 255, 255, 0.2);
    height: 50px;
    padding: 0.5rem 4rem 0.5rem 1rem;
    color: rgb(255, 255, 255);
}

.newsletter-form .form-control:focus, .newsletter-form .form-control:active {
    background-color: rgba(255, 255, 255, 0.2);
    color: rgb(255, 255, 255);
}

.newsletter-form .quform-has-error input, .newsletter-form .quform-has-error textarea, .newsletter-form .quform-has-error select {
    border-color: rgb(206, 18, 67);
}

.newsletter-form .quform-input .quform-errors-wrap {
    right: 15px;
}

.newsletter-form i {
    font-size: 1.2rem;
    line-height: 2rem;
}

.newsletter-one .form-control {
    padding: 16px 34px;
    border: 0px;
}

.newsletter-one .btn-style01 {
    padding: 16px 34px !important;
}

.newsletter-two .form-control:focus, .form-control:active {
    background-color: rgb(255, 255, 255);
}

.newsletter-three .form-control {
    background: transparent;
    border-width: 0px 0px 1px;
    padding: 0.375rem 50px 0.375rem 0px;
    color: rgb(255, 255, 255);
    outline: none;
    box-shadow: none;
}

.newsletter-three .quform-submit-inner {
    position: absolute;
    top: 10px;
    right: 20px;
    width: unset;
}

.newsletter-form01 {
    position: relative;
}

.newsletter-form01 input {
    border: 1px solid rgba(18, 28, 34, 0.2);
    background-color: rgb(255, 255, 255);
    height: 60px;
    padding: 0.5rem 4rem 0.5rem 1rem;
    color: rgb(0, 0, 0);
}

.newsletter-form01 .quform-submit-inner .btn {
    padding: 0.5rem 1.15rem;
    position: absolute;
    top: 0px;
    right: 0px;
    border-radius: 0px;
    height: 59px;
    width: 59px;
    color: rgb(255, 255, 255);
    font-size: 18px;
    background-color: rgb(206, 18, 67);
}

.social-icon-style1 {
    margin-bottom: 0px;
    display: inline-block;
    padding-left: 0px;
    list-style: none;
}

.social-icon-style1 li {
    vertical-align: middle;
    display: inline-block;
    margin-right: 5px;
}

.social-icon-style1 li a {
    display: inline-block;
    font-size: 14px;
    text-align: center;
    color: rgb(255, 255, 255);
    background: rgba(255, 255, 255, 0.1);
    height: 41px;
    line-height: 41px;
    width: 41px;
}

.social-icon-style1 li a:hover {
    background: rgb(206, 18, 67);
}

.social-icon-style1 li:last-child {
    margin-right: 0px;
}

.social-icon-style2 {
    margin-bottom: 0px;
    display: inline-block;
    padding-left: 10px;
    list-style: none;
}

.social-icon-style2 li {
    vertical-align: middle;
    display: inline-block;
    margin-right: 5px;
}

.social-icon-style2 li a {
    display: inline-block;
    font-size: 14px;
    text-align: center;
    color: rgb(206, 18, 67);
    background: rgb(255, 255, 255);
    height: 41px;
    line-height: 42px;
    width: 41px;
}

.social-icon-style2 li a:hover {
    background: rgb(206, 18, 67);
    color: rgb(255, 255, 255);
}

.social-icon-style2 li:last-child {
    margin-right: 0px;
}

.social-icon-style2 li a.small {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 11px;
}

.social-icon-style2.small li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
}

@media screen and (max-width: 991px) {
    .social-icon-style2.small li a {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
}

.social-icon-style3 {
    margin-bottom: 0px;
    display: inline-block;
}

.social-icon-style3 li {
    vertical-align: middle;
    display: inline-block;
    margin-right: 10px;
}

.social-icon-style3 li a {
    display: inline-block;
    font-size: 14px;
    text-align: center;
    color: rgb(255, 255, 255);
    background: rgb(206, 18, 67);
    height: 40px;
    line-height: 40px;
    width: 40px;
    border-radius: 50%;
}

.social-icon-style3 li a:hover {
    background: rgb(255, 255, 255);
    color: rgb(206, 18, 67);
}

.social-icon-style3 li:last-child {
    margin-right: 0px;
}

.social-icon-style4 li {
    display: inline-block;
    margin: 0px 20px 0px 0px;
}

.social-icon-style4 li a {
    font-size: 15px;
    display: inline-block;
    text-align: center;
    color: rgb(255, 255, 255);
    transition: 0.25s ease-in-out;
}

.social-icon-style4 li a:hover {
    color: rgba(255, 255, 255, 0.6);
}

.social-icon-style5 a {
    font-size: 14px;
    display: inline-block;
    color: rgb(255, 255, 255);
    margin-right: 7px;
    transition: 0.5s;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    text-align: center;
}

.social-icon-style5 a:hover {
    background: rgb(206, 18, 67);
}

.search-form_input {
    color: rgb(206, 18, 67);
}

.search-frame h4 a:hover {
    color: rgb(206, 18, 67);
}

.search-frame .search_list .match {
    color: rgb(206, 18, 67);
}

.search-frame .search_list li::before {
    color: rgb(206, 18, 67);
}

.search-frame .search_list li + li {
    border-top: 3px solid rgb(206, 18, 67);
}

.search-frame .search {
    color: rgb(206, 18, 67);
}

.page-navigation {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 60px 0px;
    border-radius: 0.375rem;
}

.prev-page, .next-page {
    position: relative;
    width: 50%;
    max-width: 350px;
    margin: 10px;
}

.prev-page::before, .next-page::before {
    content: "";
    position: absolute;
    inset: 0px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0);
    box-shadow: rgba(34, 35, 40, 0) 0px 0px 0px 0px;
    transform: scale(1.04, 1.12);
    transition: 0.3s ease-in-out;
    pointer-events: none;
}

.prev-page .page-info > a, .next-page .page-info > a {
    display: flex;
    align-items: center;
    position: relative;
    padding: 16px 20px;
    min-height: 110px;
    transition: 0.8s;
}

.prev-page .page-info .image-prev, .prev-page .page-info .image-next {
    position: relative;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    vertical-align: middle;
    transition: inherit;
    overflow: hidden;
}

.next-page .page-info .image-prev, .next-page .page-info .image-next {
    position: relative;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    vertical-align: middle;
    transition: inherit;
    overflow: hidden;
}

.prev-page .page-info .prev-title, .prev-page .page-info .next-title {
    display: inline-block;
    position: relative;
    max-width: 220px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
    overflow-wrap: break-word;
    vertical-align: middle;
    transition: 0.45s;
}

.next-page .page-info .prev-title, .next-page .page-info .next-title {
    display: inline-block;
    position: relative;
    max-width: 220px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
    overflow-wrap: break-word;
    vertical-align: middle;
    transition: 0.45s;
}

.prev-page .page-info .prev-title:empty, .prev-page .page-info .next-title:empty {
    display: none;
}

.next-page .page-info .prev-title:empty, .next-page .page-info .next-title:empty {
    display: none;
}

.prev-page:hover::before, .next-page:hover::before {
    background-color: white;
    transform: scale(1);
    box-shadow: rgba(34, 35, 40, 0.1) 0px 10px 30px 0px;
}

.prev-page a {
    justify-content: flex-start;
    text-align: left;
}

.prev-page a:hover .image-prev::after {
    visibility: visible;
    opacity: 1;
}

.prev-page a:hover .image-prev::before {
    visibility: visible;
    opacity: 1;
    margin-left: 0px;
}

.prev-page .image-prev {
    margin-right: 20px;
}

.prev-page .image-prev::after {
    background-color: rgb(206, 18, 67);
}

.next-page .image-next::after {
    background-color: rgb(206, 18, 67);
}

.prev-page .image-prev::before {
    display: block;
    position: absolute;
    z-index: 2;
    left: 0px;
    right: 0px;
    margin-left: 20px;
    content: "";
    font-family: themify;
    font-size: 21px;
    line-height: 70px;
    color: rgb(255, 255, 255);
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}

.prev-page .image-prev::after {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}

.next-page {
    margin-left: auto;
}

.next-page a {
    justify-content: flex-end;
    text-align: right;
}

.next-page a:hover .image-next::after {
    visibility: visible;
    opacity: 1;
}

.next-page a:hover .image-next::before {
    visibility: visible;
    opacity: 1;
    margin-right: 0px;
}

.next-page .image-next {
    margin-left: 20px;
}

.next-page .image-next::before {
    display: block;
    position: absolute;
    z-index: 2;
    left: 0px;
    right: 0px;
    margin-right: 20px;
    content: "";
    font-family: themify;
    font-size: 21px;
    line-height: 70px;
    color: rgb(255, 255, 255);
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
    transform: scaleX(-1);
}

.next-page .image-next::after {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}

.next-page .next-title {
    text-align: right;
}

.prev-link-page-info > span, .next-link-page-info > span {
    display: block;
}

.prev-link-page-info .date-details, .next-link-page-info .date-details {
    font-size: 14px;
    letter-spacing: 0.025em;
    line-height: 20px;
    margin-bottom: -2px;
}

.prev-link-page-info .date-details > div, .prev-link-page-info .date-details > span {
    line-height: inherit;
    transition: 0.45s;
    font-weight: 500;
}

.next-link-page-info .date-details > div, .next-link-page-info .date-details > span {
    line-height: inherit;
    transition: 0.45s;
    font-weight: 500;
}

.prev-link-page-info .date-details:only-child, .next-link-page-info .date-details:only-child {
    margin-top: 0px;
}

@media screen and (max-width: 767px) {
    .prev-page, .next-page {
        width: calc(100% - 20px);
        max-width: unset;
    }

    .prev-page + .next-page {
        margin-top: 0px;
    }

    .page-navigation {
        flex-direction: column;
    }
}

@media screen and (max-width: 575px) {
    .prev-page .page-info > a, .next-page .page-info > a {
        padding: 10px;
    }

    .prev-page .page-info .prev-title, .prev-page .page-info .next-title {
        max-width: 168px;
    }

    .next-page .page-info .prev-title, .next-page .page-info .next-title {
        max-width: 168px;
    }
}

.footer-logo {
    width: 100%;
    display: inline-block;
}

.footer-logo > a {
    display: inline-block;
}

.footer-bottom-bg {
    background-color: rgb(233, 233, 233);
}

footer .email {
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    display: inline-block;
    padding-bottom: 5px;
}

footer .email a {
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    transition: 0.8s;
}

footer .email a:hover::after, footer .email a:active::after, footer .email a:focus::after {
    width: 100%;
}

footer .email a:hover, footer .email a:active, footer .email a:focus {
    color: rgb(206, 18, 67);
}

footer .email a::after {
    border-bottom: 1px solid rgb(255, 255, 255);
    transition: 0.8s;
    content: "";
    display: inline-block;
    position: absolute;
    bottom: -10px;
    right: 0px;
    width: 0px;
}

footer .phone {
    padding-bottom: 0px;
    margin-bottom: 0px;
}

footer .phone a {
    padding-bottom: 0px;
    color: rgb(255, 255, 255);
}

footer .phone a:hover, footer .phone a:active, footer .phone a:focus {
    color: rgb(206, 18, 67);
}

@media screen and (max-width: 767px) {
    footer {
        padding-top: 60px;
    }
}

.footer-style01 .links-wrap li {
    margin-bottom: 15px;
}

.footer-style01 .links-wrap li a {
    position: relative;
    display: inline-block;
    font-size: 17px;
    transition: 0.3s;
    padding-bottom: 2px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-style01 .links-wrap li:hover a::after {
    width: 100%;
    left: 0px;
}

.footer-style01 .links-wrap li a::after {
    content: "";
    width: 0px;
    height: 2px;
    position: absolute;
    right: 0px;
    bottom: 0px;
    background-color: rgb(206, 18, 67);
    transition: width 0.5s cubic-bezier(0.35, 0.7, 0.35, 1);
}

.footer-style01 .links-wrap li a:hover {
    color: rgb(255, 255, 255);
}

.footer-style01 .links-wrap li:last-child {
    margin-bottom: 0px;
}

header .attr-nav > ul > li > a {
    background-color: transparent;
    border: 1px solid rgb(255, 255, 255);
}

.n_item_txt {
    padding: 30px 120px 30px 30px;
}

.cddx_04 {
    min-height: 80vh;
    display: flex;
    align-items: flex-end;
    position: relative;
    border-radius: 20px 0px 0px 20px;
}

.cddx_04::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgb(18, 28, 34);
    mix-blend-mode: color;
}

.cddx_04 .container {
    position: relative;
    z-index: 2;
}

.codex98 > div > i ,
.codex98 > div > a > i {
    color: rgb(255, 255, 255);
    font-size: 40px;
    margin: 0px 0px 30px;
}

.codex98 {
    position: relative;
    border-radius: 20px 20px 0px 0px !important;
}

.codex98 > a {
    position: absolute;
    top: 100%;
    left: 0px;
    width: 100%;
    height: 70px;
    background-color: rgb(206, 18, 67);
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    padding: 0px 3.5rem;
    font-weight: 600;
    justify-content: space-between;
    border-radius: 0px 0px 20px 20px;
}

.mt-special70 {
    margin-top: 70px;
}

.stats_section184 {
    padding: 80px 0px;
}

.stats_section184 .counter_title {
    row-gap: 30px;
    justify-content: space-between;
}

.stats_section184 .counter_title h2 {
    font-weight: 700;
    font-size: 40px;
    margin: 0px;
}

.stats_section184 .ia_counter strong {
    font-weight: 900;
    margin: 0px 0px 10px;
    font-size: 30px;
}

.stats_section184 .ia_counter i {
    display: block;
    font-size: 40px;
    margin: 0px 0px 10px;
    color: rgb(206, 18, 67);
}

.stats_section184 .ia_counter strong::after {
    content: attr(data-after);
}

.stats_section184 .ia_counter p {
    font-weight: 500;
    font-size: 15px;
    color: rgb(99, 99, 113);
}

.banner-button > a {
    transition: 1s !important;
}

.banner-button:hover > a {
    transform: rotate(360deg);
}

.banner-button a:hover {
    color: rgb(255, 255, 255) !important;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 0px;
}

.bcbx_04 {
    position: relative;
}

.bcbx_04 > div {
    width: max-content;
    margin-left: auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.bcbx_04 > div::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgb(206, 18, 67);
    mix-blend-mode: hue;
}

.contact-info {
    display: flex;
}

.contacts-title {
    width: calc(100% - 75px);
}

#social_links li {
    font-size: 28px;
}

.paragraph_info {
    position: relative;
    color: rgb(255, 255, 255);
    font-size: 14px;
    width: 500px;
    max-width: 100%;
    margin-top: 15px;
}

.paragraph_info i {
    position: absolute;
    left: 0px;
    top: 7px;
}

.content-detail {
    font-size: 1rem;
    line-height: 1.6;
    color: rgb(51, 51, 51);
    overflow-wrap: break-word;
}

.content-detail h1, .content-detail h2, .content-detail h3, .content-detail h4, .content-detail h5, .content-detail h6 {
    font-weight: bold;
    margin: 1em 0px 0.5em;
    line-height: 1.3;
}

.content-detail h1 {
    font-size: 2em;
}

.content-detail h2 {
    font-size: 1.75em;
}

.content-detail h3 {
    font-size: 1.5em;
}

.content-detail h4 {
    font-size: 1.25em;
}

.content-detail h5 {
    font-size: 1.1em;
}

.content-detail h6 {
    font-size: 1em;
}

.content-detail p {
    margin: 1em 0px;
}

.content-detail ul {
    list-style-type: disc;
    margin: 1em 0px;
    padding-left: 2em;
}

.content-detail ol {
    list-style-type: decimal;
    margin: 1em 0px;
    padding-left: 2em;
}

.content-detail ul ul, .content-detail ol ul, .content-detail ul ol, .content-detail ol ol {
    list-style-type: circle;
    margin-left: 1em;
}

.content-detail li {
    margin-bottom: 0.5em;
    list-style: inherit;
}

.content-detail a {
    color: rgb(51, 51, 51);
    text-decoration: underline;
    transition: color 0.2s;
}

.content-detail a:hover {
    color: rgb(0, 64, 128);
}

.content-detail b, .content-detail strong {
    font-weight: bold;
}

.content-detail i, .content-detail em {
    font-style: italic;
}

.content-detail u {
    text-decoration: underline;
}

.content-detail blockquote {
    border-left: 4px solid rgb(204, 204, 204);
    margin: 1em 0px;
    padding: 1em;
    color: rgb(102, 102, 102);
    font-style: italic;
    background-color: rgb(249, 249, 249);
}

.content-detail code {
    font-family: monospace;
    background-color: rgb(244, 244, 244);
    padding: 0.2em 0.4em;
    border-radius: 4px;
}

.content-detail pre {
    font-family: monospace;
    background-color: rgb(244, 244, 244);
    padding: 1em;
    border-radius: 4px;
    overflow-x: auto;
    margin: 1em 0px;
    white-space: pre-wrap;
}

.content-detail table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0px;
    border: 1px solid rgb(221, 221, 221);
}

.content-detail th, .content-detail td {
    border: 1px solid rgb(221, 221, 221);
    padding: 0.75em;
    text-align: left;
}

.content-detail th {
    background-color: rgb(245, 245, 245);
    font-weight: bold;
}

.content-detail img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1em 0px;
}

.content-detail dl {
    margin: 1em 0px;
}

.content-detail dt {
    font-weight: bold;
    margin-top: 1em;
}

.content-detail dd {
    margin-left: 1em;
}

.content-detail hr {
    border-right: none;
    border-bottom: none;
    border-left: none;
    border-image: initial;
    border-top: 1px solid rgb(221, 221, 221);
    margin: 1.5em 0px;
}

.content-detail input, .content-detail select, .content-detail textarea, .content-detail button {
    font: inherit;
    padding: 0.5em;
    margin: 0.5em 0px;
    border: 1px solid rgb(204, 204, 204);
    border-radius: 4px;
    box-sizing: border-box;
}

.content-detail button {
    background-color: rgb(0, 102, 204);
    color: white;
    cursor: pointer;
    transition: background-color 0.2s;
}

.content-detail button:hover {
    background-color: rgb(0, 64, 128);
}

.content-detail sub, .content-detail sup {
    font-size: 0.8em;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

.content-detail sup {
    top: -0.5em;
}

.content-detail sub {
    bottom: -0.25em;
}

.content-detail iframe, .content-detail video {
    max-width: 100%;
    height: auto;
    margin: 1em 0px;
    border: none;
}

.content-detail figure {
    margin: 1em 0px;
    text-align: center;
}

.content-detail figcaption {
    font-size: 0.9em;
    color: rgb(102, 102, 102);
}

.content-detail mark {
    background-color: rgb(255, 255, 0);
    color: rgb(51, 51, 51);
}

.content-detail aside {
    background-color: rgb(249, 249, 249);
    padding: 1em;
    margin: 1em 0px;
    border-left: 4px solid rgb(204, 204, 204);
    font-size: 0.9em;
    color: rgb(85, 85, 85);
}

.content-detail .pull-quote {
    font-size: 1.2em;
    font-style: italic;
    text-align: center;
    margin: 1em 0px;
    color: rgb(68, 68, 68);
}

.content-detail abbr[title] {
    border-bottom: 1px dotted rgb(51, 51, 51);
    cursor: help;
}

.portfolio-style-01 {
    display: block;
    border-radius: 20px !important;
}

.product_img1 {
    position: relative;
    width: 1000px;
    max-width: 100%;
    margin: 0px auto;
}

.product_img1 img {
    width: 100%;
    user-select: none;
    pointer-events: none;
    border-radius: 30px;
    border: 1px solid rgb(234, 234, 234);
}

.tooltip-btn {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: rgb(255, 255, 255);
    font-weight: 800;
    background: rgb(206, 18, 67);
    font-size: 14px;
    cursor: pointer;
    position: absolute;
    z-index: 3;
}

.tooltip-btn::after {
    content: attr(data-title);
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    padding: 5px;
    border-radius: 5px;
    font-size: 11px;
    white-space: nowrap;
    margin-left: 10px;
    opacity: 0;
    pointer-events: none;
}

.tooltip-btn:hover::after {
    opacity: 1;
}

.pulse::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    height: 100%;
    width: 100%;
    background: rgb(206, 18, 67);
    z-index: -1;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: 1500ms ease-out 0s infinite normal none running pulse-border;
    opacity: 0.5;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0px) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0px) scale(1.5);
        opacity: 0;
    }
}

@-webkit-keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0px) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0px) scale(1.5);
        opacity: 0;
    }
}

.pvt_tooltips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 40px 0px 0px;
    list-style: none;
    counter-reset: list-counter 0;
    padding: 0px;
}

.pvt_tooltips li {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgb(51, 51, 51);
    color: rgb(255, 255, 255);
    border-radius: 30px;
    padding: 5px 10px 5px 5px;
    letter-spacing: 0px;
    font-size: 14px;
    font-weight: 600;
}

.pvt_tooltips li::before {
    content: counter(list-counter);
    counter-increment: list-counter 1;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgb(206, 18, 67);
    color: rgb(255, 255, 255);
}

.detail_top {
    width: 1000px;
    max-width: 100%;
    margin: 0px auto 60px;
}

.detail_top h2 {
    margin: 0px;
    font-size: 32px;
    letter-spacing: 0px;
    font-weight: 600;
}

.detail_top h2 strong {
    display: block;
    font-size: 200%;
    font-weight: 900;
}

.detail_table_xx {
    margin-top: 50px;
}

.detail_table_xx table {
    width: 100%;
}

.detail_table_xx table td, .detail_table_xx table th {
    padding: 5px 10px;
    font-size: 14px;
    color: rgb(29 29 29);
    line-height: 1.4;
}

.detail_table_xx table tr:nth-child(2n) th, .detail_table_xx table tr:nth-child(2n) td {
    background: rgb(244, 244, 244);
}

.detail_table_xx h3 {
    margin: 0px 0px 30px;
    font-size: 24px;
    letter-spacing: 0px;
}

.detail_table_xx > div:nth-child(1) {
    padding-right: 40px;
}

.detail_table_xx > div:nth-child(3) {
}

.detail_table_xx {
    row-gap: 60px;
}

.detail_swiper {
    position: relative;
}

.detail_swiper::before {
    content: "";
    position: absolute;
    right: 100%;
    width: 100vw;
    background-color: rgb(255, 255, 255);
    height: 100%;
    z-index: 2;
}

.detail_swiper img {
    width: 100%;
}

.detail_swiper a {
    position: relative;
}

.detail_swiper .swiper-slide {
    height: auto;
}

.detail_swiper .swiper-slide img {
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.ds_hover a {
    position: relative;
    display: block;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
}

.ds_hover a::before {
    content: "";
    position: absolute;
    inset: 0px;
    background-color: rgb(206, 18, 67);
    border-radius: 5px;
    opacity: 0;
    transition: 0.3s;
    mix-blend-mode: darken;
}

.ds_hover a i {
    position: absolute;
    right: 50%;
    top: 50%;
    color: rgb(255, 255, 255);
    z-index: 2;
    font-size: 52px;
    opacity: 0;
    transition: 0.3s;
    transform: translateY(-50%) translateX(50%);
    font-style: normal;
}

@media (min-width: 992px) {
    .ds_hover a:hover::before, .ds_hover a:hover i {
        opacity: 1;
        pointer-events: none;
    }
}

.view_others {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.view_others a {
    border-radius: 30px;
    background: rgb(206, 18, 67);
    border: 1px solid rgb(206, 18, 67);
    padding: 0.75rem 2rem;
    font-weight: 800;
    transition: 0.3s;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.view_others a:hover {
    background: rgb(255, 255, 255);
    color: rgb(206, 18, 67);
    border-color: rgb(206, 18, 67);
}

.sidemenu119 .CategorySubjects {
    color: rgb(51, 51, 51);
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 30px;
    display: flex;
}

.sidemenu119 .CategorySubjects i {
    content: "";
    margin-right: 15px;
    width: 40px;
    height: 40px;
    background-image: url("../img/karpen-icon.png");
    display: flex;
}

.sidemenu119 .wbx_1 + .wbx_1 {
    margin-top: 30px;
}

.sidemenu119 .sub_menu ul li a {
    font-size: 18px;
    color: rgb(72, 72, 72);
    padding: 16px 0px;
    font-weight: 700;
    display: flex;
    border-right: 1px solid rgba(206, 18, 67, 0.3);
    transition: 0.3s;
    position: relative;
    cursor: pointer;
}

.sidemenu119 .sub_menu ul li:not(:last-child) a {
    border-bottom: 1px solid rgb(234, 234, 234);
}

.sidemenu119 .sub_menu ul li a.active {
    color: rgb(206, 18, 67);
}

.sidemenu119 .sub_menu ul li a::before {
    content: "";
    position: absolute;
    right: -2px;
    top: 0px;
    bottom: 0px;
    width: 3px;
    background-color: rgb(206, 18, 67);
    opacity: 0;
    transition: 0.3s;
}

.sidemenu119 .sub_menu ul li a.active::before {
    opacity: 1;
}

.sidemenu119 .sub_menu ul li a.active::before {
    opacity: 1;
}

@media (min-width: 1200px) {
    .sidemenu119 .sub_menu ul li a:hover::before {
        opacity: 1;
    }

    .sidemenu119 .sub_menu ul li a:hover::before {
        opacity: 1;
    }

    .sidemenu119 .sub_menu ul li a:hover {
        color: rgb(206, 18, 67);
    }
}

.sidemenu119 #latest_news li a {
    height: auto;
    font-size: 22px;
    padding: 10px 0px;
    line-height: 1.4;
}

.sidemenu119 #latest_news li a span {
    font-size: 12px;
    display: block;
}

.sidemenu119 #latest_news li a::before {
    display: none;
}

.sidemenu119 .rn_list {
    display: flex;
    flex-direction: column;
}

.sidemenu119 .rn_list li a {
    display: flex;
    align-items: center;
}

.sidemenu119 .rn_list li + li {
    margin-top: 12px;
    padding-top: 12px;
}

.sidemenu119 .rn_list li a > div:first-child {
    width: 110px;
}

.sidemenu119 .rn_list li a > div:first-child img {
    width: 100%;
}

.sidemenu119 .rn_list li a > div:last-child {
    flex: 1 1 0%;
    padding-left: 10px;
}

.sidemenu119 .rn_list li a > div:last-child h3 {
    font-size: 14px;
    font-weight: 500;
    margin: 0px;
    color: rgb(0, 0, 0);
    line-height: 1.3;
}

.sidemenu119 .lister_sidebar {
    background-color: rgb(255, 255, 255);
    padding: 0px 24px 24px 0px;
}

.lister_sidebar ul {
    padding: 0px;
    margin: 0px;
}

.lister_sidebar ul li {
    list-style: none;
}

.sidemenu119 .bigNews img {
    width: auto;
}

.sidemenu119 .bigNews > a.no_btn789 {
    font-size: 20px;
    color: rgb(0, 0, 0);
    line-height: 1.2;
    margin: 15px 0px;
    display: flex;
}

.sidemenu119 .bigNews p {
    font-size: 16px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
}

.sidemenu119 .bigNews > a.donate_link789 {
    display: inline-flex;
    height: 46px;
    border: 1px solid rgb(206, 18, 67);
    padding: 0px 30px;
    align-items: center;
    color: rgb(206, 18, 67);
    margin-top: 24px;
    font-weight: 600;
    transition: 0.3s;
}

.sidemenu119 .bigNews > a.donate_link789:hover {
    background-color: rgb(206, 18, 67);
    color: rgb(255, 255, 255);
}

.content-detail > :first-child {
    margin-top: 10px;
}

#cert_page75 img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

#gt_float_wrapper {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    height: 44px !important;
    border-radius: 4px !important;
}

.gt_float_switcher .gt_options {
    width: calc(100% - 10px);
    padding: 4px 0px;
    position: absolute !important;
    top: 100% !important;
    background-color: rgb(255, 255, 255) !important;
    border-radius: 0px 0px 4px 4px !important;
    margin-top: -5px !important;
}

.gt_float_switcher {
    border-radius: 0.25rem !important;
    margin-left: 10px !important;
}

.gt_float_switcher .gt-selected .gt-current-lang {
    padding: 0px 15px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
}

.gt_float_switcher .gt_options a {
    width: 74px;
    overflow: hidden;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px !important;
    padding: 5px 18px !important;
    display: flex !important;
    align-items: center !important;
}

.gt_float_switcher .gt_options a:hover {
    background-color: transparent !important;
    color: rgb(51, 51, 51) !important;
}

.gt_float_switcher img {
    height: 21px !important;
}

.gt_float_switcher .gt-selected .gt-current-lang span.gt-lang-code {
    font-size: 16px !important;
    margin-right: 0px !important;
}

.gt_float_switcher .gt-selected .gt-current-lang span.gt_float_switcher-arrow, .VIpgJd-ZVi9od-aZ2wEe-wOHMyf.VIpgJd-ZVi9od-aZ2wEe-wOHMyf-ti6hGc {
    display: none !important;
}

#mould_page img {
    height: 400px;
}

#mould_page .content, #mould_page .portfolio-btn {
    pointer-events: none;
}

.vemedya_sign {
    margin-left: 15px;
    width: 25px;
}

.vemedya_sign img {
    height: 25px;
}

.vms_overlay {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blue_table {
    border: 2px solid rgb(0, 64, 128);
    border-radius: 20px;
    padding: 20px;
}

.blue_table + .blue_table {
    margin-top: 30px;
}

.blue_table > h3 {
    background-color: rgb(0, 64, 128);
    color: rgb(255, 255, 255);
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 18px;
    margin: 0px 0px 20px;
    text-align: center;
    font-weight: 900;
}

.blue_table h3 span {
    margin-right: 15px;
    font-weight: 500;
}

.blue_table th {
    font-weight: 800;
}

.blue_table tr th:first-child, .blue_table tr td:first-child {
    border-radius: 30px 0px 0px 30px;
}

.blue_table tr td:last-child {
    border-radius: 0px 30px 30px 0px;
}

.blue_table .content-detail p {
    font-size: 14px;
}

.detail_top > a {
    border: none;
    font-weight: 700;
    color: rgb(206, 18, 67);
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    font-size: 18px;
    gap: 5px;
}

#product_lister .portfolio-style-01 img{
    height: 500px;
}
#molds img{
    border-radius: 30px;
}

article.card-style04 img{
    height: 270px;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 1600px) {
    .navbar-brand img {
        max-height: 45px;
    }

    .btn-style1.small {
        padding: 9px 10px !important;
    }
}

@media (max-width: 992px) {
    .gt_float_switcher .gt-selected .gt-current-lang {
        height: 35px !important;
    }

    .corporate_page {
        flex-direction: column-reverse;
        row-gap: 30px;
    }

    .sidemenu119 .lister_sidebar {
        padding-right: 0px;
    }

    .content-detail > :first-child {
        margin-top: 0px;
    }

    section.p-0.bg-img.cover-background.full-screen.video-banner.banner-style02.top-position1.secondary-overlay.jarallax {
        display: flex;
        align-items: flex-end;
        min-height: auto !important;
        height: 600px !important;
        padding-bottom: 40px !important;
    }

    .row.align-items-center.min-vh-100 {
        height: auto !important;
        min-height: auto !important;
    }

    #gt_float_wrapper {
        top: -6px !important;
        height: 35px !important;
    }

    .gt_float_switcher {
        border-radius: 0px !important;
    }

    .vms_overlay ul {
        display: flex;
        align-items: center;
        text-align: left;
    }

    .vms_overlay {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .blue_table + .blue_table {
        margin-top: 15px;
    }

    .blue_table > h3 {
        font-size: 16px;
    }

    .detail_top {
        margin-bottom: 40px;
    }

    .vms_overlay ul li {
        padding-right: 5px !important;
        margin-right: 5px !important;
    }

    .vms_overlay ul li a {
        line-height: 1.2;
    }

    #gt_float_wrapper {
        top: -3px !important;
    }

    .gt_float_switcher .gt_options {
        width: 100% !important;
    }

    .gt_float_switcher .gt_options a {
        width: 68px;
        padding: 5px 13px !important;
    }

    .gt_float_switcher {
        margin-left: 0px !important;
    }

    .gt_float_switcher .gt-selected .gt-current-lang {
        padding: 0px 10px !important;
    }

    .navbar-brand img {
        height: 40px !important;
    }

    .pvt_tooltips {
        justify-content: flex-start;
    }

    .pvt_tooltips li {
        width: 100%;
        font-size: 16px;
        gap: 15px;
    }

    .tooltip-btn {
        width: 18px;
        height: 18px;
        font-size: 11px;
    }

    .footer-logo {
        max-width: 180px;
    }

    .detail_top h2 {
        font-size: 24px;
    }

    .detail_table_xx {
        row-gap: 15px;
    }

    .detail_table_xx > div:nth-child(1) {
        padding-right: 15px;
        margin-bottom: 20px;
    }

    .detail_table_xx > div:nth-child(3) {
        padding-left: 15px;
    }

    #pvvc_x1 {
        margin-bottom: 0px !important;
    }

    .stats_section184 .ia_counter p {
        margin-bottom: 0px;
    }

    .pt-12, .py-12 {
        padding-top: 60px;
    }

    .codex98 > a {
        padding: 0px 1.5rem;
    }

    a.display-27.text-dark.font-weight-700 {
        font-size: 16px !important;
    }

    .bcbx_04 > div {
        width: 100%;
    }

    .stats_section184 {
        padding: 40px 0px;
    }

    .stats_section184 .counter_title {
        margin-bottom: 40px;
    }

    .stats_section184 .counter_title h2 {
        font-size: 24px;
        margin: 0px;
    }

    .stats_section184 .counter_title h2 br {
        display: none;
    }
}

@media (max-width: 570px) {
    .vms_overlay ul li a {
        white-space: nowrap;
    }
}