@font-face {
    font-family: 'allerbold';
    src: url('../fonts/aller_bd-webfont.eot');
    src: url('../fonts/aller_bd-webfont.eot?#iefix') format('embedded-opentype'),
        url('../fonts/aller_bd-webfont.woff2') format('woff2'),
        url('../fonts/aller_bd-webfont.woff') format('woff'),
        url('../fonts/aller_bd-webfont.ttf') format('truetype'),
        url('../fonts/aller_bd-webfont.svg#allerbold') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'allerregular';
    src: url('../fonts/aller_rg-webfont.eot');
    src: url('../fonts/aller_rg-webfont.eot?#iefix') format('embedded-opentype'),
        url('../fonts/aller_rg-webfont.woff2') format('woff2'),
        url('../fonts/aller_rg-webfont.woff') format('woff'),
        url('../fonts/aller_rg-webfont.ttf') format('truetype'),
        url('../fonts/aller_rg-webfont.svg#allerregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'aller_displayregular';
    src: url('../fonts/allerdisplay-webfont.eot');
    src: url('../fonts/allerdisplay-webfont.eot?#iefix') format('embedded-opentype'),
        url('../fonts/allerdisplay-webfont.woff2') format('woff2'),
        url('../fonts/allerdisplay-webfont.woff') format('woff'),
        url('../fonts/allerdisplay-webfont.ttf') format('truetype'),
        url('../fonts/allerdisplay-webfont.svg#aller_displayregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'beastformerregular';
    src: url('../fonts/beastformer-webfont.eot');
    src: url('../fonts/beastformer-webfont.eot?#iefix') format('embedded-opentype'),
        url('../fonts/beastformer-webfont.woff2') format('woff2'),
        url('../fonts/beastformer-webfont.woff') format('woff'),
        url('../fonts/beastformer-webfont.ttf') format('truetype'),
        url('../fonts/beastformer-webfont.svg#beastformerregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

:root {
    --color-magenta-red: #4C0F32;
    --color-yellowish-orange: #D7B56D;
    --color-white: #ffffff;
    --color-default: #444;
}

body {
    font-family: 'allerregular';
    color: var(--color-magenta-red);
    font-size: 16px;
    line-height: 26px;
}

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

video {
    width: 100%;
}

p {
    color: var(--color-default);
    margin: 0 0 20px 0;
}

p:last-child {
    margin-bottom: 0;
}

h2 {
    font-size: 22px;
    font-family: 'allerbold';
    margin: 0 0 20px 0;
}

h3 {
    font-size: 19px;
    font-family: 'allerbold';
    margin: 0 0 20px 0;
}

.container {
    max-width: 1130px;
}

header {
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 3;
    background-color: var(--color-magenta-red);
    /* box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.25); */
}

.navbar-expand-lg .navbar-nav .nav-item {
    margin: 0 16px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    color: var(--color-white);
    font-size: 16px;
    text-transform: uppercase;
    padding: 0;
    position: relative;
}

.navbar-expand-lg .navbar-nav .nav-link::after {
    width: 0;
    height: 2px;
    bottom: 0;
    content: "";
    background-color: var(--color-yellowish-orange);
    position: absolute;
    left: 0;
    transition: 0.5s;
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;
}

.navbar-expand-lg .navbar-nav .nav-link.active::after,
.navbar-expand-lg .navbar-nav .nav-link:hover::after {
    width: 100%;
}

.btn-warning {
    background-color: var(--color-white);
    border-color: var(--color-white);
    color: var(--color-magenta-red);
    padding: 7px 34px;
    font-size: 16px;
}

.btn-check:checked+.btn-warning,
.btn-warning.active,
.btn-warning.show,
.btn-warning:first-child:active,
:not(.btn-warning-check)+.btn-warning:active,
.btn-warning:hover {
    background-color: var(--color-yellowish-orange);
    border-color: var(--color-yellowish-orange);
    color: var(--color-magenta-red);
}

.hero-banner {
    position: relative;
}

.hero-banner-content {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    text-align: right;
}

.hero-banner-content h2 {
    margin: 0;
    text-align: center;
    font-size: 50px;
    font-family: 'aller_displayregular';
    background: #f9ea6c;
    background: -moz-linear-gradient(left, #f9ea6c 0%, #ac751f 100%);
    background: -webkit-linear-gradient(left, #f9ea6c 0%, #ac751f 100%);
    background: linear-gradient(to right, #f9ea6c 0%, #ac751f 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9ea6c', endColorstr='#ac751f', GradientType=1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    transition: 1s;
    -moz-transition: 1s;
    -webkit-transition: 1s;
    float: right;
    transform: scale(0);
}

.hero-banner .active h2 {
    transform: scale(1);
}

.hero-banner-content h1 {
    margin: 0;
    text-align: center;
    font-size: 50px;
    font-family: 'aller_displayregular';
    background: #f9ea6c;
    background: -moz-linear-gradient(left, #f9ea6c 0%, #ac751f 100%);
    background: -webkit-linear-gradient(left, #f9ea6c 0%, #ac751f 100%);
    background: linear-gradient(to right, #f9ea6c 0%, #ac751f 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9ea6c', endColorstr='#ac751f', GradientType=1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    transition: 1s;
    -moz-transition: 1s;
    -webkit-transition: 1s;
    float: right;
    transform: scale(0);
}

.hero-banner .active h1 {
    transform: scale(1);
}

.about-section {
    padding: 65px 0;
}

.why-money-ratnam {
    padding: 0 0 65px 0;
}

.why-money-box {
    border: 1px solid var(--color-magenta-red);
    padding: 0 20px 25px;
    height: 100%;
}

.why-money-box img {
    margin: 0 0 25px 0;
}

.why-money-box h3 {
    margin: 0 0 10px 0;
}

.why-money-ratnam .col-lg-6 {
    margin-bottom: 30px;
}

.border-yellow {
    padding-bottom: 4px;
    border-bottom: 2px solid var(--color-yellowish-orange);
}

.why-money-ratnam .row {
    margin-top: 40px;
}

.yellow-section {
    padding: 65px 0;
    background: var(--color-yellowish-orange);
}

.border-magenta {
    padding-bottom: 4px;
    border-bottom: 2px solid var(--color-magenta-red);
}

.rounded {
    border-radius: 10px !important;
}

.yellow-section h2 {
    margin: 0 0 45px 0;
}

.yellow-section h3 {
    margin: 0 0 8px 0;
}

.yellow-section p {
    color: var(--color-magenta-red);
}

.our-products {
    padding: 65px 0;
}

.price {
    color: var(--color-magenta-red);
    font-size: 26px;
    margin: 0 0 10px 0;
    font-family: 'allerbold';
}

.our-product-box p {
    color: var(--color-magenta-red);
}

.our-product-box h3 {
    margin-bottom: 15px;
}

.our-product-box {
    border: 1px solid var(--color-magenta-red);
    padding: 30px 20px 20px;
    position: relative;
}

.our-product-box::after {
    background-color: var(--color-yellowish-orange);
    position: absolute;
    left: 0;
    width: 100%;
    height: 60%;
    content: "";
    bottom: 0;
    z-index: -1;
    border-bottom-left-radius: 9px;
    border-bottom-right-radius: 9px;
}

.our-product-box .btn {
    font-size: 18px;
}

.btn-danger {
    background-color: var(--color-magenta-red);
    border-color: var(--color-magenta-red);
    color: var(--color-white);
    padding: 7px 34px;
    font-size: 16px;
}

.btn-danger:hover,
:not(.btn-check)+.btn:active {
    background-color: var(--color-white);
    border-color: var(--color-white);
    color: var(--color-magenta-red);
}

.our-products h2 {
    margin-bottom: 45px;
}

.benefits {
    padding: 0 0 35px 0;
    overflow: hidden;
}

ul.benefits-list {
    margin: 0;
    padding: 20px 0 0 0;
    columns: 2;
    -moz-columns: 2;
    -webkit-columns: 2;
    gap: 34px;
}

ul.benefits-list li {
    margin: 0 0 34px 0;
    padding: 0;
    list-style: none;
}

.benefits-box {
    padding: 30px 30px 30px 100px;
    border-radius: 10px;
    height: 80px;
    display: flex;
    line-height: 24px;
    align-items: center;
    position: relative;
    border: 1px solid var(--color-magenta-red);
    border-radius: 10px;
}

.benefits-box .benefit-number {
    border-radius: 10px;
    font-size: 22px;
    width: 73px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 10px;
    font-family: 'beastformerregular';
    background-color: var(--color-yellowish-orange);
    color: var(--color-magenta-red);
}

.need-to-do {
    padding: 65px 0;
    background: var(--color-yellowish-orange);
}

.magenta-box {
    background: var(--color-magenta-red);
    padding: 15px 50px 15px 15px;

}

.magenta-box h3,
.magenta-box p {
    margin: 0 0 5px 0;
    color: var(--color-white);
}

.magenta-box h3 {
    line-height: 34px;
}

.need-to-do .col-lg-6,
.need-to-do .col-lg-12 {
    margin: 28px 0 0 0;
}

.need-to-do h2 {
    margin: 0 0 5px 0;
}

.magenta-box-last .d-flex {
    min-height: 114px;
}

.testimonials {
    padding: 65px 0;
}

.testimonial {
    margin: 0 -16px;
}

.testimonial-pic {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-box {
    border: 1px solid var(--color-magenta-red);
    padding: 35px;
    min-height: 288px;
}

.testimonial-box h3 {
    margin: 0 0 0px 0;
}

.testimonial-box p {
    color: var(--color-magenta-red);
}

.testimonials h2 {
    margin: 0 0 45px 0;
}

.testimonials .slick-slide {
    padding: 0 16px;
}

.testimonial .slick-arrow {
    width: 36px;
    height: 36px;
    background: #fff url("../images/arrow.svg") no-repeat center;
    border: none;
    font-size: 0px;
    padding: 0;
    top: 40%;
    margin-top: -18px;
    position: absolute;
    left: -40px;
    z-index: 1;
}

.testimonial .slick-arrow.slick-next {
    left: auto;
    right: -40px;
    transform: rotate(180deg);
}

.slick-dots {
    text-align: center;
    margin: 40px 0 0 0;
    padding: 0;
    list-style: none;
}

.slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(68, 68, 68, 0.25);
    font-size: 0px;
}

.slick-dots li.slick-active button {
    background: rgba(68, 68, 68, 0.50);
    ;
}

.footer-top {
    padding: 65px 0;
    background: var(--color-magenta-red);
}

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

footer ul li {
    margin: 0 0 10px 0;
    color: var(--color-white);
}

footer ul li a {
    color: inherit;
    text-decoration: none;
    opacity: 0.6;
}

footer ul li a:hover {
    opacity: 1;
}

.foo-logo {
    margin: 0 0 50px 0;
}

.foo1 ul {
    padding: 0 0 0 18px;
    list-style: disc;
}

footer h3 {
    margin: 0 0 15px 0;
    font-size: 24px;
    color: var(--color-white);
}

footer p {
    color: var(--color-white);
    opacity: 0.6;
}

footer a {
    color: var(--color-white);
    text-decoration: none;
    opacity: 0.6;
}

footer a:hover {
    text-decoration: underline;
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    color: var(--color-magenta-red);
    background: var(--color-yellowish-orange);
    padding: 12px 0;
}

.magenta-box .me-4 {
    flex: none;
}

.page-banner-area {
    background: var(--color-yellowish-orange);
    opacity: 0.92;
    content: "";
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
    z-index: 1;
}

.page-banner-content {
    text-align: center;
}

.page-banner-content.max-width {
    max-width: 855px;
    margin: auto;
}

.page-banner-content.max-width h2 {
    line-height: 1.5;
}

.page-banner-content h2,
.page-banner-content h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--color-magenta-red);
}

.page-banner-content ul {
    padding-left: 0;
    margin-bottom: 0;
}

.page-banner-content ul li {
    display: inline-block;
    list-style-type: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-magenta-red);
    position: relative;
    margin-left: 25px;
}

.page-banner-content ul li::before {
    content: "";
    position: absolute;
    left: -18px;
    top: 12px;
    height: 1px;
    width: 10px;
    background: var(--color-magenta-red);
    opacity: 0.5;
}

.page-banner-content ul li:first-child {
    margin-left: 0;
}

.page-banner-content ul li:first-child::before {
    display: none;
}

.page-banner-content ul li a {
    display: block;
    color: var(--color-magenta-red);
    text-decoration: underline;
}


.buy-area {
    padding: 50px 0;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group .form-control {
    display: block;
    width: 100%;
    height: 60px;
    outline: 0;
    border-radius: 5px;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 15px;
    font-size: 15px;
}

.default-btn {
    border: none;
    position: relative;
    display: inline-block;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    color: var(--color-white);
    background-color: var(--color-magenta-red);
    -webkit-transition: 0.6s;
    transition: 0.6s;
    border-radius: 5px;
    padding: 15px 50px 15px 25px;
    font-weight: 500;
    font-size: 15px;
    margin-bottom: -5px;
}

.hidden {
    display: none;
}

.default-btn i {
    position: absolute;
    right: 25px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 15px;
}

.contact-form .form-group textarea.form-control {
    height: auto;
    padding: 15px;
    line-height: 1.5rem;
}

.contact-form h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.buynow-section .mb-5.text-center.border.p-3 img {
    max-height: 150px;
}

.buynow-section .table .text-success {
    font-family: 'Poppins', sans-serif;
}

.section-pages {
    padding: 50px 0;
}

.section-pages p:last-child {
    margin-bottom: 0;
}

.navbar-toggler {
    border-color: var(--color-white);
}

.navbar-toggler-icon {
    filter: invert(1);
}


.blogs a {
    color: var(--color-magenta-red);
    text-decoration: none;
}

.blogs a:hover {
    text-decoration: underline;
}

.blogs .default-btn {
    border: none;
    position: relative;
    display: inline-block;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    color: var(--color-white);
    text-decoration: none;
    padding: 10px 50px 10px 25px;
    background-color: var(--color-magenta-red);
    -webkit-transition: 0.6s;
    transition: 0.6s;
    border-radius: 5px;
    font-weight: 500;
    font-size: 15px;
    margin-bottom: -5px;
}

.blogs a.default-btn:hover {
    text-decoration: none;
}

.blogs h3 {
    color: var(--color-magenta-red);
}

#cta {
    display: none;
    position: fixed;
    left: 0;
    bottom: 0px;
    z-index: 99;
    width: 250px;
}

#cta img {
    width: 100%;
    height: auto;
}

.blogs ol li,
.blogs ul li {
    margin-bottom: 25px;
}

.top-info {
    background: var(--color-yellowish-orange);
    font-size: 20px;
    padding: 10px 0;
    text-decoration: none;
}

.top-info a {
    text-decoration: none;
    color: var(--color-magenta-red);
}

/* Responsive CSS */

@media (max-width: 1365px) {
    .testimonial .slick-arrow {
        left: -20px;
    }

    .testimonial .slick-arrow.slick-next {
        right: -20px;
    }
}

@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }

    .testimonial {
        margin: 0 -15px;
    }
}

@media (max-width: 767px) {
    .top-info {
        font-size: 16px;
    }

    .hero-banner-content h2 {
        font-size: 16px;
    }

    header .navbar-brand img {
        max-width: 150px;
    }

    .navbar-expand-lg .navbar-nav .nav-item {
        margin: 0;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 10px 0;
    }

    header .btn {
        width: 100%;
    }

    .testimonial .slick-arrow {
        left: 20px;
    }

    .testimonial .slick-arrow.slick-next {
        right: 20px;
    }

    .footer-top .col-lg-3.ps-5 {
        padding-left: calc(var(--bs-gutter-x) * .5) !important;
    }

    footer h3 {
        margin: 20px 0 15px;
    }

    .footer-top {
        padding: 30px 0;
    }

    ul.benefits-list {
        columns: 1;
        -moz-columns: 1;
        -webkit-columns: 1;
        gap: 0;
    }

    .magenta-box {
        text-align: center;
        padding: 25px 15px 15px;
    }

    .magenta-box .d-flex {
        display: block !important;
    }

    .magenta-box .me-4 {
        margin: 0 0 15px 0 !important;
    }

    .testimonial {
        margin: 0;
    }

    .about-section {
        padding: 20px 0 30px 0;
    }

    .about-section video {
        margin: 0 0 25px 0;
    }

    .why-money-ratnam .row {
        margin-top: 20px;
    }

    .why-money-ratnam {
        padding: 0 0 30px 0;
    }

    .yellow-section {
        padding: 30px 0;
    }

    .yellow-section img {
        margin: 0 0 20px 0;
    }

    .yellow-section h2,
    .our-products h2 {
        margin: 0 0 30px 0;
    }

    .yellow-section .row.mb-5 {
        margin-bottom: 25px !important;
    }

    .our-products {
        padding: 30px 0 0 0;
    }

    .our-products .col-lg-4 {
        margin-bottom: 30px;
    }

    ul.benefits-list li {
        margin-bottom: 20px;
    }

    .benefits {
        padding: 0 0 15px 0;
    }

    .need-to-do,
    .testimonials {
        padding: 30px 0;
    }

    .testimonials h2 {
        margin: 0 0 30px 0;
    }

    .testimonial-box {
        min-height: auto;
    }

    .slick-dots {
        margin: 20px 0 0 0;
    }
}