/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Vidaloka&display=swap');

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Open Sans", sans-serif;
    color: #000;
    overflow-x: hidden;
    background-color: #fefffb;
    font-size: 20px;
}

a {
    font-family: "Open Sans", sans-serif;
    text-decoration: none;
}

a:hover {
    color: #fff;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
}

p {
    line-height: 1.5;
    font-weight: 500;
    font-size: 16px;
}

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

.top_slider div.slick-slide {
    background-color: #fff;
}

.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 50px;
    width: 50px;
    border-radius: 0;
    font-size: 0;
    border: 0;
    background-color: #C62828;
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 9;
}

.slick-arrow.slick-prev {
    left: 0;
}

.slick-arrow.slick-prev:before {
    content: "\f104";
    font-size: 20px;
    color: #fff;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.slick-arrow.slick-next {
    right: 0;
}

.slick-arrow.slick-next:before {
    content: "\f105";
    font-size: 20px;
    color: #fff;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.slick-arrow.slick-disabled {
    opacity: 0.2;
}

.slick-slide {
    padding: 0 15px;
}

.slick-dots button {
    font-size: 0;
    padding: 0;
    background-color: transparent;
    width: 10px;
    height: 10px;
    line-height: 0;
    border: none;
    background-color: #000;
    transition: all ease 0.4s;
    position: relative;
}

.slick-dots button:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 2px solid #000;
    transition: all ease 0.4s;
    opacity: 0;
    visibility: hidden;
}

ul.slick-dots {
    display: flex;
    justify-content: center;
}

ul.slick-dots li {
    display: inline-flex;
    width: 30px;
    height: 30px;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.slick-dots .slick-active button::before {
    opacity: 1;
    visibility: visible;
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
    padding: 100px 0;
    overflow: hidden;
}

.btn_bx {
    margin-top: 50px;
}

.section-title h2 {
    margin: 0;
    text-transform: capitalize;
    font-size: 40px;
    color: #000000;
    margin-top: 0;
    margin-bottom: 0;
}


.red-btn {
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    padding: 12px 36px;
    transition: 500ms;
    text-transform: capitalize;
    background-color: #C62828;
    color: #000000;
    position: relative;
    overflow: hidden;
    text-align: center;
    border: 1px solid #C62828;
    letter-spacing: 1px;
}

.red-btn:hover {
    color: #000000;
    background-color: #fff;
    border-color: #000000;
}

.red-btn::before {
    content: "";
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 150%;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    background-color: #C62828;
    transition: 700ms cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.red-btn::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 150%;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    background-color: #ffffff;
    transition-duration: 700ms;
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.red-btn:hover span {
    color: #000000;
}

.red-btn:hover::before {
    top: 100%;
}

.red-btn:hover::after {
    bottom: -50%;
}

.red-btn span {
    position: relative;
    color: #ffffff;
    z-index: 2;
    font-weight: 600;
}




.black-btn {
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    padding: 12px 36px;
    transition: 500ms;
    text-transform: capitalize;
    background-color: #C62828;
    color: #000000;
    position: relative;
    overflow: hidden;
    text-align: center;
    border: 1px solid #C62828;
    letter-spacing: 1px;
}

.black-btn:hover {
    color: #000000;
    background-color: #fff;
    border-color: #000000;
}

.black-btn::before {
    content: "";
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 150%;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    background-color: #000000;
    transition: 700ms cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.black-btn::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 150%;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    background-color: #ffffff;
    transition-duration: 700ms;
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.black-btn:hover span {
    color: #000000;
}

.black-btn:hover::before {
    top: 100%;
}

.black-btn:hover::after {
    bottom: -50%;
}

.black-btn span {
    position: relative;
    color: #ffffff;
    z-index: 2;
    font-weight: 600;
}


/*--------------------------------------------------------------
 # call-buton Css
--------------------------------------------------------------*/
.call-buton .cc-calto-action-ripple {
    z-index: 99999;
    position: fixed;
    left: 1rem;
    bottom: 1rem;
    background: #C62828;
    width: 4rem;
    height: 4rem;
    padding: 0rem;
    box-sizing: border-box;
    color: #ffffff;
    animation: cc-calto-action-ripple 0.6s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.call-buton .cc-calto-action-ripple img {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    max-width: 30px;
    filter: invert(1);
}

.call-buton .cc-calto-action-ripple:hover img {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

@-webkit-keyframes cc-calto-action-ripple {
    0% {
        -webkit-box-shadow: 0 4px 10px rgba(237, 31, 36, 0.2), 0 0 0 0 rgba(237, 31, 36, 0.2), 0 0 0 5px rgba(237, 31, 36, 0.2), 0 0 0 10px rgba(237, 31, 36, 0.2);
        box-shadow: 0 4px 10px rgba(237, 31, 36, 0.2), 0 0 0 0 rgba(237, 31, 36, 0.2), 0 0 0 5px rgba(237, 31, 36, 0.2), 0 0 0 10px rgba(237, 31, 36, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 4px 10px rgba(237, 31, 36, 0.2), 0 0 0 5px rgba(237, 31, 36, 0.2), 0 0 0 10px rgba(237, 31, 36, 0.2), 0 0 0 20px rgba(237, 31, 36, 0);
        box-shadow: 0 4px 10px rgba(236, 24, 24, 0.2), 0 0 0 5px rgba(237, 31, 36, 0.2), 0 0 0 10px rgba(237, 31, 36, 0.2), 0 0 0 20px rgba(237, 31, 36, 0);
    }
}

@keyframes cc-calto-action-ripple {
    0% {
        -webkit-box-shadow: 0 4px 10px rgba(237, 31, 36, 0.2), 0 0 0 0 rgba(237, 31, 36, 0.2), 0 0 0 5px rgba(237, 31, 36, 0.2), 0 0 0 10px rgba(237, 31, 36, 0.2);
        box-shadow: 0 4px 10px rgba(237, 31, 36, 0.2), 0 0 0 0 rgba(237, 31, 36, 0.2), 0 0 0 5px rgba(237, 31, 36, 0.2), 0 0 0 10px rgba(237, 31, 36, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 4px 10px rgba(237, 31, 36, 0.2), 0 0 0 5px rgba(237, 31, 36, 0.2), 0 0 0 10px rgba(237, 31, 36, 0.2), 0 0 0 20px rgba(237, 31, 36, 0);
        box-shadow: 0 4px 10px rgba(237, 31, 36, 0.2), 0 0 0 5px rgba(237, 31, 36, 0.2), 0 0 0 10px rgba(237, 31, 36, 0.2), 0 0 0 20px rgba(237, 31, 36, 0);
    }
}

span.num {
    position: absolute;
    color: #ec8b00;
    left: -30%;
    bottom: -50%;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.top_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-address {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-address a {
    color: #ffffff;
    font-weight: 600;
    margin-right: 25px;
    font-size: 14px;
}

.top-address a i {
    padding-right: 5px;
    color: #C62828;
}

.top-contact ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-contact p {
    margin-bottom: 0;
    font-weight: 600;
    margin-right: 0;
    font-size: 14px;
}

.top-contact ul li a {
    background: transparent;
    width: 35px;
    height: 35px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: 8px;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.top-contact ul li a:hover {
    background: #160201;
    border: 1px solid #160201;
    color: #ffffff;
}

.top_head_sec {
    padding: 0;
    background: #ffc900;
    display: none;
}

.top_head a {
    flex: 0 0 50%;
    text-align: center;
    font-weight: 700;
    color: #000000;
    font-size: 16px;
}

.header.sticky {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    background: #000;
    padding: 0;
    box-shadow: 0 0 11px #1c1a1d3d;
}

.header {
    z-index: 99;
    position: absolute;
    padding: 0;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.5s;
    background: #000;
}

header.header.sticky .top_head_sec {
    display: none;
}

.bottom_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo_bx {
    height: auto;
    text-align: center;
    transition: all 0.5s;
}

a.logo img {
    transition: all 0.5s;
    width: auto;
    max-height: 60px;
}

.right_btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    flex-wrap: wrap;
}

.right_btn a.red-btn,
.right_btn a.border-red-btn {
    padding: 10px 20px;
}

.right_btn a img {
    display: block;
    max-height: 50px;
    margin-inline: auto;
    margin-bottom: 0;
}

.right_btn .border-red-btn span i {
    margin-right: 10px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
    .right-bx {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 25px;
    }
}



a.phone-btn {
    color: #ffffff;
    font-weight: 500;
    font-size: 22px;
}

a.phone-btn img {
    max-width: 40px;
    margin-right: 5px;
    filter: invert(1);
}






/*--------------------------------------------------------------
# top Section
--------------------------------------------------------------*/

.top-section {
    background: #ffc107;
    padding-top: 190px;
}

.top-head h1 {
    font-size: 50px;
}

.grid-images-bx {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.grid-images img {
    height: 100%;
    object-fit: cover;
}

.big-parallax-section {
    padding: 0;
}

/* .big-parallax-section {
    background-image: url('../../assets/images/2148779570.jpg');
    height: 450px;
    background-attachment: fixed;
    background-position: center;
} */
.top-text p {
    font-size: 18px;
    line-height: 1.8;
}

.top-text .btn-bx {
    margin-top: 30px;
}

.top-right-img img {
    height: 450px;
    object-fit: cover;
    border-radius: 5px;
    width: 450px;
    margin-left: auto;
}

.top-right-img {
    text-align: right;
}

.cta-cn {
    text-align: center;
}

.cta-section {
    background: #f5f5f5;
}

.mb_icons .action_btns_group {
    display: flex;
    gap: 12px;
    display: none;
}

.mb_icons .action_btns_group li a {

    background-color: #ffffff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 52px;
    text-align: center;
    position: relative;
    border-radius: 100%;
    justify-content: center;
    font-weight: 600;
}

.mb_icons .action_btns_group li a i {
    color: #000;
}

.mb-logo {
    display: none;
}


.top-cn .elite_log img {
    width: 100px;
    margin-bottom: 14px;
}

/*--------------------------------------------------------------
 # choose-us
--------------------------------------------------------------*/
.choose-us-section {
    position: relative;
}

.choose-us-cn ul li {
    font-size: 18px;
    text-transform: capitalize;
    line-height: 1.4;
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
    font-weight: 600;
}

.choose-us-cn ul li:before {
    content: '';
    background: #C62828;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0px, -50%);
    height: 4px;
    width: 15px;
}

.choose-us-logo {
    text-align: left;
    z-index: 1;
    position: relative;
    margin-bottom: 25px;
}

.choose-us-logo-bx img {
    max-width: 134px;
    text-align: center;
    border-radius: 100%;
}

.choose-us-cn {
    margin-bottom: 25px;
    margin-top: 25px;
}

.choose-us-cn p {
    text-align: left;
    margin-bottom: 15px;
    color: #C62828;
    font-size: 18px;
    line-height: 1.8;
}

.choose-us-head-title .section-title p {
    font-size: 18px;
    line-height: 1.8;
    margin-top: 15px;
}

.choose-us-cn p b {
    color: #C62828;
}

.choose-us-left-content {
    padding-left: 60px;
}

.choose-us-img img {
    height: 600px;
    object-fit: cover;
    max-width: 500px;
    border-radius: 5px;
}

.choose-us-img {
    text-align: right;
}










.newsletter-form {
    position: relative;
    height: 60px;
    z-index: 2;
}

.newsletter-form:after {
    position: absolute;
    content: "";
    left: -2px;
    right: -2px;
    top: -2px;
    bottom: -2px;
    background: #C62828;
    z-index: -1;
}

.newsletter-form input {
    width: 100%;
    height: 100%;
    border: none;
    padding: 30px;
    background: #ffffff;
    color: #000000;
    padding-right: 200px;
}

.newsletter-form input::-webkit-input-placeholder {
    color: #000;
    opacity: 0.6;
}

.newsletter-form input:-ms-input-placeholder {
    color: #000;
    opacity: 0.6;
}

.newsletter-form input::-ms-input-placeholder {
    color: #000;
    opacity: 0.6;
}

.newsletter-form input::placeholder {
    color: #000;
    opacity: 0.6;
}

.newsletter-form button {
    position: absolute;
    top: -2px;
    right: -2px;
    bottom: -2px;
    outline: none;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
}

.newsletter-contact {
    max-width: 650px;
    margin-inline: auto;
    text-align: center;
}

.newsletter-section {
    background: #000000;
    background-image: url('/frontend/homepage/images/2148018587.jpg');
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
}

.newsletter-section:after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    background: #000;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.8;
}

.newsletter-section .container {
    position: relative;
    z-index: 1;
}

.section-title.text-white h2 {
    color: #fff;
}

.newsletter-contact .section-title {
    margin-bottom: 25px;
}

.newsletter-contact .section-title p {
    margin-top: 15px;
}

/*--------------------------------------------------------------
 # Footer
--------------------------------------------------------------*/
.success-section-prallax {
    background: #e6f0ff;
}

.success-cn p {
    margin: 0;
}

.success-head {
    text-align: center;
    margin-bottom: 50px;
}

.btn-bx {
    margin-top: 50px;
}

.success-body {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.success-bx-inner {
    text-align: center;
    padding: 15px;
    flex: 0 0 calc(33.333% - 10px);
    border-right: 1px solid #2a4b7c21;
}

.success-bx-inner:last-child {
    border-right: none;
}

.success-bx-inner h3 {
    font-size: 88px;
    margin: 0;
    font-weight: 400;
    -webkit-text-stroke: 1px #2a4b7c;
    -webkit-text-fill-color: transparent;
    color: #2a4b7c;
}

.success-bx-inner p br {
    display: none;
}

.success-bx-inner h4 {
    color: #C62828;
    margin-bottom: 10px;
    text-transform: capitalize;
    font-family: "Open Sans", sans-serif;
    font-size: 22px;
    font-weight: 600;
}

.success-bx-inner p {
    text-transform: capitalize;
    margin: 0;
    font-weight: 600;
    font-size: 16px;
}









/*--------------------------------------------------------------
 # Footer
--------------------------------------------------------------*/
.footer-section {
    background: #333333;
    padding-top: 20px;
    padding-bottom: 20px;
}

.copyright-text p {
    color: #fff;
    margin: 0;
}

.footer-hours ul {
    display: block;
}

.footer-hours {
    text-align: left;
}

.copyright-text {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ffffff36;
}

.footer-bx {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-logo img {
    max-width: 160px;
}

.footer-btn {
    text-align: center;
}

.footer-hours {
    text-align: left;
}

.footer-hours ul li {
    color: #fff;
    font-size: 16px;
}

.footer-hours h4 {
    text-align: center;
    color: #fff;
    margin-bottom: 15px;
    padding-bottom: 15px;
    position: relative;
    display: inline-block;
    margin-inline: auto;
}

.footer-hours h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: #ffffff;
    left: 0;
}

.right-bx {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
}

.tp_btn {
    display: none;
}

@media only screen and (max-width: 991px) {
    .tp_btn {
        display: block;
    }

    .tp_btn a {
        width: 100%;
    }

    .mb_icons .action_btns_group {
        display: flex !important;
        gap: 0 !important;
    }

    .mb_icons .action_btns_group li:nth-child(1) {
        margin-right: 13px;
    }

    .top_head_sec {
        display: block;
    }

    .top-section {
        padding-top: 208px;
    }


    .right-bx .red-btn {
        display: none;
    }

    .bottom_head {
        justify-content: space-between;
    }

    .top-section .row {
        flex-direction: column-reverse;
    }

    section {
        padding: 50px 0;
    }

    .top-right-img img {
        width: 100%;
        margin-bottom: 30px;
        height: auto;
    }

    .big-parallax-section {
        padding: 50px 15px;
    }

    .grid-images-bx {
        gap: 15px;
        grid-template-columns: repeat(2, 1fr);
    }

    .choose-us-img {
        text-align: center;
    }

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

    .choose-us-left-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .top-head h1 {
        font-size: 38px;
        margin: 30px 0 20px 0;
    }

    .footer-bx {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .footer-hours {
        text-align: center;
    }
}

@media only screen and (max-width: 600px) {
    .top-head h1 {
        font-size: 30px;
    }

    .top_head a {
        padding: 8px 15px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .newsletter-form {
        height: auto;
    }

    .newsletter-form input {
        padding: 15px;
        padding-right: 15px;
    }

    .newsletter-form:after {
        display: none;
    }

    .newsletter-form button {
        position: relative;
        top: 0;
        right: 0;
        bottom: 0;
        outline: none;
        color: #fff;
        font-weight: 500;
        cursor: pointer;
        width: 100%;
        margin-top: 15px;
    }

    a.logo img {
        max-height: 46px;
        width: auto;
    }

    .footer-bx {
        gap: 20px;
        justify-content: center;
    }

    .footer-hours {
        text-align: center;
    }

    .grid-images-bx {
        gap: 15px;
        grid-template-columns: repeat(1, 1fr);
    }

    .top-section {
        padding-top: 176px;
    }


}