@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-family: 'Aptos';
    src: url(../fonts/aptos-regular.ttf);
}


:root {
    --light: #F5F5F5;
    --dark: #202020;
    --primary: #ee1d23;
    --primary-hover: #e43b20;
    --secondary: #4f5253;
    --blue: #415266;
    --orenge: #eb7d3d;
    --yellow: #ffda4d;
    --white: #fff;
    --black: #000;
    --back: #333333;
    --gray: #b8b8b8;
    --gray_text: #828282;
    --light_gray_text: #c5c5c5;
    --near-black: #282b2d;
    --dark-back: #4b4b4b;

    --main-color: 172, 41, 29;
    --second-color: 65, 82, 102;
    --font-awesome: "Font Awesome 6 free";
    --transition-05s: all ease-in-out .5s;
    --transition-08s: all ease-in-out .8s;
}

body {
    background-color: var(--white);
    font-family: "Poppins", serif;
    font-size: 16px;
    color: var(--black);
    line-height: 1.2;
}

main {
    min-height: 80vh;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

ul,
ol {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;
    font-family: 'Aptos';
}

p {
    font-family: "Poppins", serif;
    margin-bottom: 0;
}

img {
    object-fit: cover;
}

svg:focus {
    outline: 0;
    border: 0;
}

.spaceing_box {
    padding-top: 80px;
    padding-bottom: 80px;
}

.btn {
    display: inline-block;
    font-weight: 600;
    padding: 18px 40px;
    border-radius: 8px;
    line-height: 1;
}

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




/* COMMON CSS */


/* .common_sub_title {
    font-size: 25px;
    line-height: 25px;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 30px;
    display: block;
} */

.common_title {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--blue);
    text-align: left;
    line-height: 1.2;
    margin-bottom: 15px;
}

.common_title span {
    font-weight: 700;
}

.common_para {
    font-size: 16px;
    line-height: 22px;
    color: var(--dark);
    margin-bottom: 8px;
}

.common_para:last-child {
    margin-bottom: 20px;
}

.btn+.btn {
    margin-left: 10px;
}

@media(max-width: 1199px) {
    .common_sub_title {
        font-size: 22px;
        line-height: 22px;
    }

    .common_title {
        font-size: 32px;
        line-height: 34px;
    }

    .common_title span {
        font-size: 32px;
        line-height: 34px;
    }
}



@media(max-width: 991px) {
    .common_sub_title {
        font-size: 20px;
        line-height: 20px;
    }

    .common_title {
        font-size: 30px;
        line-height: 32px;
    }

    .common_title span {
        font-size: 30px;
        line-height: 32px;
    }

}

@media(max-width: 767px) {
    .common_sub_title {
        font-size: 18px;
        line-height: 18px;
    }

    .common_title {
        font-size: 28px;
        line-height: 30px;
    }

    .common_title span {
        font-size: 28px;
        line-height: 30px;
    }

}

@media(max-width: 575px) {
    .common_sub_title {
        font-size: 18px;
        line-height: 18px;
    }

    .common_title {
        font-size: 26px;
        line-height: 28px;
    }

    .common_title span {
        font-size: 26px;
        line-height: 28px;
    }

    .common_para {
        font-size: 14px;
        line-height: 20px;
    }

    .btn+.btn {
        margin-left: 0;
    }
}



/* HEADER */
header {
    position: sticky;
    top: 0;
    z-index: 99;
}

.topbar {
    background: #ac291d;
    padding: 12px 0;
}

.topbar .social_nav {
    display: flex;
    justify-content: end;
    align-items: center;
    margin-left: 35px;
}

.topbar .social_nav .social_link {
    padding: 0 10px;
    font-size: 15px;
    color: var(--white);
}

.topbar .social_nav .social_item:first-child .social_link {
    padding-left: 0;
}

.topbar_news p {
    color: var(--white);
    font-size: 15px;
    line-height: 1.4;
}

.topbar_item {
    display: flex !important;
}

.left_icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
    color: var(--white);
    font-size: 10px;
    gap: 2px;
}

nav.navbar {
    background: var(--white) !important;
    box-shadow: 0 0 12px rgb(115 115 115 / 40%);
}

nav.navbar .navbar-brand {
    margin: 12px 0;
}

.nav_btn {
    background: var(--primary);
    color: var(--white);
    /* border: 2px solid var(--blue); */
    font-size: 16px;
    font-weight: 500;
    border-radius: 30px;
    padding: 10px 30px;
    margin-left: 30px;
}

.nav_btn:hover {
    background: var(--blue);
    color: var(--white);
}

.navbar .navbar-nav .nav-item .nav-link {
    color: var(--black);
    font-weight: 400;
    padding: 0 15px;
    font-family: "Poppins", serif;
}

.navbar .navbar-nav .nav-item:last-child .nav-link {
    padding-right: 0;
}


@media(max-width: 1399px) {

    .navbar .navbar-nav .nav-item .nav-link {
        padding: 0 12px;
    }
}

/* BANNER */


.banner_slider video {
    aspect-ratio: 12 / 8;
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 60vh;
}

.banner_slider {
    height: 60vh;
    position: relative;
    margin-top: 0;
    margin-bottom: 0 !important;
}

.banner_slider .banner_box {
    /* border-radius: 20px; */
    position: relative;
}

.banner_slider .banner_box img {
    /* border-radius: 20px; */
    aspect-ratio: 12 / 8;
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 60vh;
}

.banner_slider .left_nav.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    z-index: 1;
    padding: 8px 10px;
    background: var(--light_gray_text);
    height: 60px;
    opacity: 0.5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner_slider .right_nav.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    z-index: 1;
    padding: 8px 10px;
    background: var(--light_gray_text);
    height: 60px;
    opacity: 0.5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner_slider .left_nav.slick-arrow:hover {
    background: var(--light_gray_text);
    opacity: 1;
}

.banner_slider .right_nav.slick-arrow:hover {
    background: var(--light_gray_text);
    opacity: 1;
}

.banner_slider .slick-dots {
    bottom: 15px;
    z-index: 1;
    left: 45px;
    text-align: start;
    width: auto;
}

.banner_slider .slick-dots li {
    width: 12px;
    height: 12px;
}

.banner_slider .slick-dots li button {
    width: 12px;
    height: 12px;
    background: var(--white);
    border: 1px solid var(--blue);
    border-radius: 50%;
}

.banner_slider .slick-dots li:hover button,
.banner_slider .slick-dots li.slick-active button {
    background: var(--blue);
}

.banner_slider .slick-dots li button:before {
    font-size: 0;
    width: 0;
    height: 0;
}

.banner_text {
    position: absolute;
    bottom: 60px;
    left: 80px;
    width: 50%;
    background: var(--white);
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 4px 2px 12px rgb(132 132 132 / 40%);
}

.banner_text h2 {
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--blue);
    text-align: left;
    line-height: 1.2;
    margin-bottom: 20px;
}

.banner_text h2 span {
    font-size: 30px;
    font-weight: 700;
}

.banner_btn {
    background: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
    font-size: 16px;
    font-weight: 500;
    border-radius: 30px;
    padding: 10px 30px;
}

.banner_btn:hover {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

/* Cta section */
.common-section.cta-section {
    padding: 40px 0px;
    background: #ac291d;
}

.CTAInner-section {
    width: 100%;
    margin: auto;
}

.common-box.cta-box .common-title {
    padding: 0px;
    margin-bottom: 6px;
    color: #fff;
    font-size: 24px;
}

.common-box.cta-box .common-para {
    color: #fff;
}

.cta-ImgTxt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.cta-form {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    overflow: hidden;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
}

.cta-form .form-control,
.cta-form .form-control:hover,
.cta-form .form-control:focus {
    height: 100%;
    padding: 9px 15px;
    border: none;
    border-radius: 0px;
    font-size: 14px;
    background: rgba(var(--black-color), 0);
    color: #fff;
}

.cta-form .form-control::placeholder {
    color: #ffff;
}

.cta-form .cta-btn,
.cta-form .btn,
.cta-form button {
    white-space: nowrap;
    border: none;
    height: 100%;
    border-radius: 0px;
    background: rgba(var(--black-color), 0);
    color: #fff;
    padding: 10px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

.cta-form .cta-btn i,
.cta-form .btn i,
.cta-form button i {
    color: #fff;
}

/* ABOUT */


.about {
    position: relative;
}

.about_text h2 {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--blue);
    text-align: left;
    line-height: 1.2;
    margin-bottom: 30px;
    position: relative;
}

.about_text h2 span {
    font-weight: 700;
}

.about_text h2::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    background: linear-gradient(to right, var(--primary-hover), var(--white));
    width: 50%;
    height: 4px;
    border-radius: 2px;
}

.about_text {
    margin-right: 25px;
}

.about_text p {
    font-size: 17px;
    line-height: 22px;
    margin-bottom: 12px;
}

.about_text p:last-child {
    margin-bottom: 20px;
}

.about_text .btn {
    margin-top: 10px;
}

.about_image {
    position: relative;
}

.about_image .about_img1 {
    padding-left: 120px;
    width: 100%;
    max-height: 540px;
    object-fit: cover;
    object-position: bottom;
}

.about_image .about_img2 {
    position: absolute;
    left: 0;
    top: 0;
    width: 65%;
    border-right: 10px solid var(--white);
    border-bottom: 10px solid var(--white);
}

.about_image .about_img3 {
    /* padding-left: 120px; */
    width: 100%;
    max-height: 540px;
    object-fit: cover;
    object-position: bottom;
}


/* testimonial start */
.testimonial-section {
    background: #ededed;
}

.testimonial-section h2 {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--blue);
    text-align: center;
    line-height: 1.2;
    margin-bottom: 15px;
    position: relative;
    width: auto;
    display: inline-block;
}

.testimonial-section h2 span {
    font-weight: 700;
}

.testimonial-section h2::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    background: linear-gradient(to right, var(--primary-hover), var(--white));
    width: 60%;
    height: 4px;
    border-radius: 2px;
}

.testimonial-section>*>* {
    justify-content: center;
}

.common-box.testimonial-TitleBox {
    text-align: center;
    margin-bottom: 60px;
}

/* .testimonial-Slider::before,
.testimonial-Slider:after {
    content: "";
    position: absolute;
    top: 0px;
    --elr-tsba: 0px;
    display: inline-block;
    height: 100%;
    width: 33%;
    z-index: 1;
}

.testimonial-Slider::before {
    left: var(--elr-tsba);
    background: linear-gradient(-90deg, transparent, #F2FCF4);
}

.testimonial-Slider:after {
    right: var(--elr-tsba);
    background: linear-gradient(90deg, transparent, #F2FCF4);
} */

.testimonial-Slider .item {
    margin: 10px 10px 30px 10px;
}

.testimonial-Slider .center .testimonial-box {
    box-shadow: 0px 19px 18px 0px rgba(0, 0, 0, 0.09);
}

/* .testimonial-Slider.owl-carousel::before,
.testimonial-Slider.owl-carousel:after {
    content: "";
    position: absolute;
    top: 0px;
    --elr-tsba: 0px;
    display: inline-block;
    height: 100%;
    width: 33%;
    z-index: 1;
}

.testimonial-Slider.owl-carousel::before {
    left: var(--elr-tsba);
    background: linear-gradient(-90deg, transparent, #ededed);
}

.testimonial-Slider.owl-carousel:after {
    right: var(--elr-tsba);
    background: linear-gradient(90deg, transparent, #ededed);
} */

.testimonial-Slider .item {
    margin: 10px 10px 30px 10px;
}

.testimonial-Slider .center .testimonial-box {
    box-shadow: 0px 19px 18px 0px rgba(0, 0, 0, 0.09);
}

.testimonial-Slider .left_nav,
.testimonial-Slider .right_nav {
    width: calc(var(--ehw-owl-btn));
    height: calc(var(--ehw-owl-btn));
    transition: all ease-in-out 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--light);
    color: var(--primary);
    border: 1px solid var(--light_gray_text);
    position: absolute;
    top: 45%;
    --elr-tspn: -60px;
    --ehw-owl-btn: 50px;
    font-size: 24px;
}

.testimonial-Slider .left_nav:hover,
.testimonial-Slider .right_nav:hover {
    color: var(--primary-hover);
    background: transparent;
    border-color: var(--light_gray_text);
}

.testimonial-Slider .left_nav.disabled,
.testimonial-Slider .right_nav.disabled {
    color: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 0, 0, 0.5);
    background: transparent;
    cursor: default;
}

.testimonial-Slider .left_nav {
    left: var(--elr-tspn);
}

.testimonial-Slider .right_nav {
    right: var(--elr-tspn);
}

.testimonial-box {
    text-align: left;
    background: var(--white);
    padding: 30px 30px;
    min-height: 280px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 15px;
    transition: all ease-in-out 0.5s;
}

.testimonial-box .tu-para {
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    text-overflow: ellipsis;
    overflow: hidden;
}

.testimonial-box .tu-para p {
    margin-bottom: 0px;
    color: var(--black);
    line-height: 1.6;
    font-weight: 200;
    font-size: 17px;
}

.testimonial-box .tu-img-dtl {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 30px;
}

.testimonial-box .tu-img {
    --ehw-tui: 70px;
    width: var(--ehw-tui);
    height: var(--ehw-tui);
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-box .tu-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.testimonial-box .tu-dtl {
    color: var(--back);
}

.testimonial-box .tu-name,
.testimonial-box .tu-dtl h4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
    overflow: hidden;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 10px;
    font-size: 25px;
}

.testimonial-box .tu-des,
.testimonial-box .tu-dtl p {
    margin-bottom: 0px;
    line-height: 1;
    font-size: 18px;
}

.testimonial-box .tu-rate {
    color: #EECD2A;
    font-size: 18px;
}

.testimonial-videobox {
    overflow: hidden;
    height: 313px;
    border-radius: 23px;
    box-shadow: 0px 19px 18px 0px rgba(0, 0, 0, 0.09);
    position: relative;
}

.testimonial-videobox .overly {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: rgba(255, 255, 255, 0.6);
    padding: 15px 25px 10px;
    z-index: 1;
}

.testimonial-videobox .tu-img-dtl {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 0;
}

.testimonial-videobox .tu-img {
    --ehw-tui: 70px;
    width: var(--ehw-tui);
    height: var(--ehw-tui);
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-videobox .tu-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.testimonial-videobox .tu-dtl {
    color: var(--back);
}

.testimonial-videobox .tu-name,
.testimonial-videobox .tu-dtl h4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
    overflow: hidden;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 10px;
    font-size: 25px;
}

.testimonial-videobox .tu-des,
.testimonial-videobox .tu-dtl p {
    margin-bottom: 0px;
    line-height: 1;
    font-size: 18px;
}






/* testimonial end */


/* FAQs start */
.common-section.FAQs-section>*>* {
    justify-content: start;
}

ul#pills-tab {
    justify-content: center;
}

ul#pills-tab .nav-link.active {
    background: transparent;
    color: #ee1d23;
    font-weight: 600;
    border-bottom: 2px solid #ee1d23;
    border-radius: 0;
    font-family: 18px;
}

ul#pills-tab .nav-link {
    color: #415266;
    font-weight: 500;
}

.FAQs-section h2 {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--blue);
    text-align: left;
    line-height: 1.2;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    width: auto;
    display: inline-block;
}

.FAQs-section h2 span {
    font-weight: 700;
}

.FAQs-section h2::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    background: linear-gradient(to right, var(--primary-hover), var(--white));
    width: 60%;
    height: 4px;
    border-radius: 2px;
}

.common-box.FAQs-TitleBox {
    text-align: center;
}

.CommonFAQ {
    margin-top: 20px;
}

.CommonFAQ .accordion-item {
    margin-bottom: 0px;
    border-radius: 0px !important;
    overflow: hidden;
    border: 1px solid #CFE8D4;
    background: #ededed;
    margin-bottom: 20px;
    padding: 30px 40px;
}

.CommonFAQ .accordion-body ul {
    list-style: disc;
    padding-left: 30px;
}

.CommonFAQ .accordion-body ul li {
    margin-bottom: 8px;
}

.CommonFAQ .accordion-body ul li:last-child {
    margin-bottom: 0;
}

.CommonFAQ .accordion-item h2.accordion-header {
    display: block;
    position: initial;
    margin-bottom: 0;
}

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

.CommonFAQ .accordion-item .accordion-button {
    box-shadow: none !important;
    background: transparent;
    border-radius: 0px !important;
    font-size: 17px;
    font-weight: 600;
    /* text-transform: capitalize; */
    line-height: 1;
    padding: 0px 0px;
    padding-right: 28px;
    color: var(--black);
}


.CommonFAQ .accordion-item .accordion-button:not(.collapsed) {
    color: var(--black);
    background: transparent;
    box-shadow: none !important;
}

.CommonFAQ .accordion-item .accordion-button::after {
    --ehw-faca: 30px;
    width: var(--ehw-faca);
    height: var(--ehw-faca);
    background-image: none;
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Font Awesome 6 free";
    font-weight: 600;
    transform: rotate(0deg);
    color: #000;
    border: 2px solid var(--primary);
    border-radius: 50%;
    margin-top: -2px;
    position: absolute;
    right: 0;
}

.CommonFAQ .accordion-item .accordion-button:not(.collapsed)::after {
    background-image: none;
    content: "\f068";
    transform: rotate(0deg);
}

.CommonFAQ .accordion-body {
    border-top: 1px solid #C5C5C5;
    padding: 20px 10px 0px;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.3;
}

.CommonFAQ .accordion-body a,
.CommonFAQ .accordion-body a:visited,
.CommonFAQ .accordion-body a:focus {
    color: var(--primary);
    transition: all ease-in-out 0.5s;
}

.CommonFAQ .accordion-body a:hover,
.CommonFAQ .accordion-body a:visited:hover,
.CommonFAQ .accordion-body a:focus:hover {
    color: var(--blue);
}

.CommonFAQ .accordion-body p:not(:last-child) {
    margin-bottom: 10px;
}

.CommonFAQ .accordion-body p:last-child {
    margin-bottom: 0px;
}

/* FAQs end */




/* FOOTER CSS */

footer {
    background: #e6e6e6;
}

.foot_top {
    padding: 50px 0 30px;
}

/* .foot_logo {
    display: flex;
    justify-content: center;
    align-items: center;
} */

.foot_logo img {
    width: 140px;
}

/* .con_list{
    margin: 30px auto;
} */

.con_item {
    margin-bottom: 20px;
}

.con_item:last-child {
    margin-bottom: 0;
}

.con_link {
    font-size: 15px;
    color: var(--white);
    display: block;
    text-align: left;
}

.con_link span {
    display: block;
    margin-top: 6px;
}

.con_link i {
    font-size: 16px;
    color: var(--white);
    margin-right: 10px;
}

.foot_bottom .social_nav {
    display: flex;
    justify-content: end;
    align-items: center;
    margin-left: 35px;
}

.foot_bottom .social_nav .social_link {
    padding: 0 12px;
    font-size: 15px;
    color: var(--dark-back);
    /* background: var(--white); */
}

.foot_bottom .social_nav .social_item:first-child .social_link {
    padding-left: 0;
}

.nav_list {
    display: flex;
    justify-content: end;
    align-items: center;
}

.nav_item {
    margin-right: 20px;
}

.nav_item:last-child {
    margin-right: 0;
}

.nav_link {
    font-size: 15px;
    color: var(--black);
    display: block;
    text-align: left;
}

.foot_bottom {
    padding: 15px 0;
    border-top: 1px solid var(--light_gray_text);
}

.foot_bottom .copy-text {
    font-size: 15px;
    color: var(--dark-back);
    display: block;
    text-align: left;
}

.video-container {
    position: relative;
    /* width: 580px; */
    max-width: 100%;
}

.video-container video {
    width: 565px;
    height: 100%;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
}


/* inner banner page  */
.banner-section.banner-inner-page {
    --banner-hvh: 35vh;
    position: relative;
    z-index: 9;
}

.banner-section>*:first-child,
.banner-slider>*:first-child>*,
.banner-slider>*:first-child>*>*,
.banner-slider>*:first-child>*>*>*,
.banner-slider>*:first-child>*>*>*>* {
    min-height: var(--banner-hvh);
}

.banner-inner-section {
    background: #000 no-repeat center center / cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    padding-bottom: 50px;
}

.banner-inner-section>* {
    z-index: 2;
}

.banner-section.banner-inner-page .banner-inner-section.head-pt {
    background-position: center top;
    padding-bottom: 70px;
    padding-top: 70px;
}

.banner-section.banner-inner-page .banner-inner-section .row {
    text-align: center;
}

.banner-inner-section>*>* {
    justify-content: center;
}

.banner-bg,
.banner-section.banner-inner-page .banner-bg::before {
    position: absolute;
    display: block;
    inset: 0px;
    width: 100%;
    height: 100%;
}

.banner-section.banner-inner-page .banner-bg::before {
    content: '';
    background: #00000078;
}

.banner-section.banner-inner-page .banner-title span,
.banner-section.banner-inner-page .banner-box h1 span {
    display: inline-block;
}

.banner-inner-page .banner-inner-section .banner-title,
.banner-inner-page .banner-inner-section .banner-box h1 {
    margin-bottom: 0px;
    font-size: 50px;
    font-weight: 600;
    color: #fff;
}

/* Contact page start */

.ctaForm-box .row {
    --bs-gutter-x: 1rem;
    gap: 16px 0px;
}

.iframe-box {
    width: 100%;
    height: 460px;
    overflow: hidden;
}

.iframe-box iframe {
    width: 100%;
    height: 100%;
}

.ctaForm-box {
    margin-top: 30px;
}

.cont-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 15px;
    border: 0px solid rgba(var(--main-color), 0.5);
    border-radius: 8px;
    min-height: 190px;
    background-color: #e6e6e6;
    box-shadow: 0 6px 12px rgba(30, 10, 58, .04);
}

.cont-icon {
    font-size: 45px;
    color: rgba(var(--main-color), 1);
    line-height: 1;
    margin-bottom: 16px;
}

.cont-text h5 {
    font-size: 18px;
    font-weight: 600;
    color: rgba(var(--second-color), 1);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.cont-text span,
.cont-text a {
    font-size: 14px;
    line-height: 1;
    color: rgba(var(--main-color), 1);
    transition: var(--transition-05s);
}

.cont-text>a:hover {
    color: rgba(var(--main-color), 1);
}

.cont-SocialList {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}


.ctaForm-box .select-box,
.ctaForm-box .form-control,
.ctaForm-box .select-box:hover,
.ctaForm-box .form-control:hover,
.ctaForm-box .select-box:focus,
.ctaForm-box .form-control:focus {
    position: relative;
    background: transparent;
    color: rgba(var(--main-color), 1);
}

.ctaForm-box .form-control {
    border: 1px solid #CBCBCB;
    border-radius: 0px;
    padding: 12px 10px;
    font-size: 14px;
}

.ctaForm-box .form-control:focus {
    border: 1px solid rgba(var(--main-color), 1);
    outline: 0;
    box-shadow: none;
}

/* Contact page end */

.moretext {
    display: none;
}

.counter-section {
    background-color: rgba(var(--main-color), 1);
    background-size: contain;
    background-repeat: repeat;
    background-position: center;
    z-index: 10;
}

.rs-counter .counter-top-area .counter-list .counter-text .count-number.counter-value:before {
    content: 'k';
    position: absolute;
    right: -2px;
}

.rs-counter .counter-top-area .counter-list .counter-text .count-number {
    color: #fff;
    font-size: 48px;
    font-weight: 900;
    position: relative;
    display: inline-block;
    padding-right: 30px !important;
}

.rs-counter .counter-top-area .counter-list .counter-text .count-number {
    margin-bottom: 7px;
}

.rs-counter .counter-top-area .counter-list .counter-text .title {
    font-size: 18px;
    line-height: normal;
    color: #fff;
    font-weight: 600;
    margin: 0;
}

.rs-counter .counter-top-area .counter-list .counter-text .count-number.counter-value.counter-plus:before {
    content: '+';
    position: absolute;
    right: 1px;
}

.banner-bg img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}


/* about page css */
.personbox img,
.owl-carousel .owl-item .personbox img {
    height: 450px;
    width: 450px;
    border-radius: 50%;
    border: 4px solid rgba(var(--main-color), 1);
    padding: 5px;
}

.more_text {
    display: none;
}

.nav.nav-tabs {
    margin-bottom: 50px;
    gap: 10px;
    border-bottom: 0;
}

.nav-tabs .nav-item .nav-link {
    padding: 14px 40px;
    color: var(--black);
    font-size: 18px;
    font-weight: 500;
    background: #f2f2f2;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background: var(--primary);
    color: var(--white);
}


/* .about_slider .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 0;
}

.about_slider.owl-theme .owl-dots .owl-dot span {
    width: 11px;
    height: 11px;
    margin: 2px 5px;
}

.about_slider.owl-theme .owl-dots .owl-dot.active span, .about_slider.owl-theme .owl-dots .owl-dot:hover span {
    background: #ac291d;
} */

.personbox {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.about_trust {
    background: #ededed;
}

.persondetailsbox h3 {
    font-size: 25px;
    font-weight: 700;
    color: rgba(var(--main-color), 1);
    margin-bottom: 1rem;
}

.persondetailsbox p {
    font-size: 17px;
    line-height: 22px;
    margin-bottom: 12px;
    color: rgba(var(--second-color), 1);
}

.persondetailsbox {
    /* margin-top: 1rem; */
    text-align: left;
}

.persondetailsbox .moreless-button {
    margin-top: 10px;
}

.persondetailsbox ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.persondetailsbox ul li {
    color: rgba(var(--second-color), 1);
    font-size: 15px;
}

.backcolorsec {
    background-color: #e6e6e6;
}

.mainstep {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: #e6e6e6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circlebox {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 0px;
    align-items: center;
    justify-content: center;
}

.mainstep:nth-child(odd) {
    border-top: 9px solid rgba(var(--main-color), 1);
}

.mainstep:nth-child(even) {
    border-bottom: 9px solid rgba(var(--main-color), 1);
}

.icon {
    font-size: 30px;
    font-weight: 600;
    color: rgba(var(--main-color), 0.5);
}

.mainstep-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 20px;
    text-align: center;
}

.mainstep-box p {
    font-size: 13px;
    margin-bottom: 1px;
}

.mainstep-box h6 {
    font-size: 15px;
    font-weight: 800;
    color: rgba(var(--second-color), 1);
}

.sportsec .testimonial-box {
    background-color: #e6e6e6;
}

.sportsec .row {
    gap: 20px 0px;
}


.video_model .modal-dialog {
    max-width: max-content;
}

.video_model .modal-dialog .video_body {
    max-width: 700px;
    height: auto;
    object-fit: cover;
}




.result .accordion-item {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    margin-bottom: 20px;
    border-top: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}

.result button.accordion-button {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    background: transparent;
    color: #000;
    font-size: 20px;
    font-weight: 600;
    padding: 26px 20px;
}

.result .accordion-button:focus {
    border: 0;
    outline: 0;
    box-shadow: none;
}

.result .accordion-button:not(.collapsed) {
    background: #ececec;
    color: #aa291d;
}

.result h2 {
    font-size: 26px;
    /* text-transform: uppercase; */
    font-weight: 400;
    color: var(--blue);
    line-height: 1.2;
    margin-bottom: 14px;
    position: relative;
    text-align: center;
}

.result h2 span {
    font-weight: 700;
}

.result h3 {
    font-size: 30px;
    /* text-transform: uppercase; */
    font-weight: 400;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 14px;
    position: relative;
    text-align: center;
}

.result h3 span {
    font-weight: 700;
}

.result P {
    font-size: 17px;
    line-height: 22px;
    margin-bottom: 30px;
    text-align: center;
}

.result table>tbody tr th,
.result table>tbody tr td {
    padding: 18px 8px !important;
}

.result table>tbody tr th,
.result table>tbody tr td {
    vertical-align: middle;
}

.result h2.accordion-header {
    margin-bottom: 0;
}




.college_sec h3 {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--blue);
    text-align: left;
    line-height: 1.2;
    margin-bottom: 30px;
    position: relative;
}

.college_sec h3::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    background: linear-gradient(to right, var(--primary-hover), var(--white));
    width: 50%;
    height: 4px;
    border-radius: 2px;
}

.college_sec h4 {
    font-size: 24px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 1rem;
}

.college_box {
    margin-bottom: 20px;
    border-bottom: 1px solid #dddddd;
}

.college_box:last-child {
    margin-bottom: 0;
    border-bottom: 0;
}

.college_box ul {
    margin-bottom: 20px;
}

.college_sec ul li {
    font-size: 16px;
    font-weight: 400;
    color: var(--back);
    margin-bottom: 16px;
}

.college_sec ul li:last-child {
    margin-bottom: 0;
}

.application_text h2 {
    font-size: 26px;
    font-weight: 400;
    color: var(--blue);
    line-height: 1.2;
    margin-bottom: 14px;
    position: relative;
    text-align: center;
}

.application_text h2 span {
    font-weight: 700;
}

.application_text h3 {
    font-size: 30px;
    font-weight: 400;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 14px;
    position: relative;
    text-align: center;
}

.application_text h3 span {
    font-weight: 700;
}

.application_text P {
    font-size: 17px;
    line-height: 22px;
    margin-bottom: 30px;
    text-align: center;
}

.application_form h4 {
    font-size: 24px;
    font-weight: 600;
    color: #aa291d;
    line-height: 1;
    margin-bottom: 20px;
    position: relative;
    text-align: center;
}

.application_form .form-control,
.application_form .form-select {
    min-height: 50px;
    padding: 12px 15px;
    background: #e8e8e8;
    border: 0;
    border-radius: 5px;
    color: var(--black);
}

.application_form .form-control::placeholder {
    color: var(--back);
}

.application_form .form-check-full {
    display: flex;
    gap: 20px;
    align-items: center;
}

.application_form .form-check {
    display: flex;
    gap: 10px;
    align-items: center;
}

.application_form .form-check label {
    line-height: 1;
}

.application_form label.col-form-label {
    font-size: 16px;
    display: block;
    padding: 0;
    padding-bottom: 15px;
    color: var(--black);
    font-weight: 500;
}

.application_form label.col-form-label span {
    color: var(--primary);
}

.application_form .form-control[type=file] {
    padding: 0 12px;
    line-height: 50px;
}



.login_form p {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 0;
    text-align: left;
}

.login_form a {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 0;
    text-align: left;
    color: var(--primary);
}

.login_form .form-control,
.login_form .form-select {
    min-height: 50px;
    padding: 12px 15px;
    background: #e8e8e8;
    border: 0;
    border-radius: 5px;
    color: var(--black);
}

.login_form .form-control::placeholder {
    color: var(--back);
}

.login_form .form-check-full {
    display: flex;
    gap: 20px;
    align-items: center;
}

.login_form .form-check {
    display: flex;
    gap: 10px;
    align-items: center;
}

.login_form .form-check label {
    line-height: 1;
}

.login_form label.col-form-label {
    font-size: 16px;
    display: block;
    padding: 0;
    padding-bottom: 15px;
    color: var(--black);
    font-weight: 500;
}

.login_form label.col-form-label span {
    color: var(--primary);
}

.login_form .form-control[type=file] {
    padding: 0 12px;
    line-height: 50px;
}

.login_form ul {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 8px;
}

.login_form ul li {
    font-size: 16px;
    line-height: 1;
    color: var(--back);
}

.login_form ul li a {
    color: var(--primary);
}

.form-box label {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.headbox {
    display: block;
    padding: 10px 10px;
    background: #e6e6e6;
    border: 1px dashed var(--blue);
    border-radius: 0px;
    box-shadow: 0 6px 12px rgba(30, 10, 58, 0.144);
}

.headbox h3 {
    font-size: 18px;
    color: var(--blue);
    font-weight: 700;
    margin-bottom: 0;
    text-transform: uppercase;
}

.headbox2 h3 {
    font-weight: 700;
    color: rgba(var(--main-color), 1);
    font-size: 16px;
    margin-bottom: 0.3rem;
    margin-top: 0.3rem;
    text-transform: uppercase;
}

@media(max-width: 768px) {

    .headbox h3 {
        font-size: 15px;
        line-height: 22px;
    }

    .headbox1 h3 {
        font-size: 14px;
        line-height: 22px;
    }

    .form-box label {
        font-size: 13px;
    }

    .spaceing_box {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.applibox ol {
    list-style: upper-roman;
    padding-left: revert;
}

.applibox ol li {
    font-size: 20px;
    font-weight: 600;
    color: rgba(var(--main-color), 1);
    margin-bottom: 1rem;
}

.applitext {
    margin-bottom: 1rem;
}

.applitext p {
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 0.6rem;
}

.applitext p a {
    color: rgba(var(--main-color), 1);
}

.applitext ol {
    list-style: decimal;
    padding-left: 13px;
    margin-top: 0.5rem;
}

.applitext ol li {
    font-size: 16px;
    font-weight: 600;
    color: var(--blue);
}

.innercontentboxsec {
    margin-bottom: 1rem;
}

.innercontentboxsec p {
    color: var(--black);
    font-weight: 400;
}

.numberlist {
    padding: 1rem;
    padding-left: 2rem;
}


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

.datebox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    margin-top: 0rem;
    padding: 2rem;
    border-top: 0px solid var(--blue);
    border-bottom: 0px solid var(--blue);
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    border: 0px solid;

}

.datebox h3 {
    font-weight: 600;
    color: rgba(var(--main-color), 1);
    font-size: 20px;
    margin-bottom: 0;
}

.applybtn {
    position: relative;
    padding: 10px 20px;
    font-size: 15px;
    color: #fff;
    background-color: rgba(var(--main-color), 1);
    border: none;
    border-radius: 0px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.applybtn:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.applybtn:hover {
    background-color: rgba(var(--main-color), 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.applybtn:hover:before {
    width: 300px;
    height: 300px;
}

.applybtn:active {
    transform: scale(0.95);
}

.loginbox.about_text h2 {
    text-align: center;
    display: inline-block;
}

.card {
    max-width: auto;
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    border: 0px solid;
}

.card-body {
    padding: 2rem;
}

.subbtn {
    background-color: rgba(var(--main-color), 1);
    font-size: 15px;
    padding: 10px 20px;
    font-weight: 400;
    color: var(--white);
    border-radius: 0;
    width: 100%;
    transition: var(--transition-05s);
}

.subbtn:hover {
    border: 1px solid rgba(var(--main-color), 1);
    transition: var(--transition-05s);
    color: rgba(var(--main-color), 1);
    background-color: rgba(var(--main-color), 0);
}

.card-title {
    font-size: 18px !important;
    margin-bottom: 0;
}

.application_form h4.stmain {
    font-weight: 400;
    color: var(--black);
}

.floating_btn {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 140px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    margin-bottom: 2rem;
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}

.contact_icon {
    background-color: rgba(var(--main-color), 1);
    color: #fff;
    width: 45px;
    height: 45px;
    font-size: 20px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 rgba(var(--main-color), 0.9);
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
}


.text_icon {
    margin-top: 1rem;
    color: #ac291d;
    font-size: 15px;
    text-align: center;
}

.floating_btn2 {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 140px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}

.contact_icon2 {
    background-color: rgba(var(--main-color), 1);
    color: #fff;
    width: 45px;
    height: 45px;
    font-size: 20px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 rgba(var(--main-color), 0.9);
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
}

.myoffcanvas.offcanvas {
    background-color: var(--blue);
    transition: transform 0.3s ease-in-out;
}

.myoffcanvas .offcanvas-header {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: space-between;
}

.myoffcanvas .offcanvas-title {
    color: #FFD700;
    font-weight: bold;
    font-size: 2rem;
}

.myoffcanvas .offcanvas-body {
    padding: 1.5rem;
}

.myoffcanvas.offcanvas .nav-link {
    color: #FFFFFF !important;
    font-size: 1.2rem;
    padding: 1rem 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.myoffcanvas.offcanvas .nav-link:hover {
    color: rgba(var(--main-color), 1) !important;
    transform: translateX(10px);
}

.myoffcanvas.offcanvas .nav-link i {
    margin-right: 1rem;
    font-size: 1.4rem;
}

.myoffcanvas.offcanvas .btn-see-more {
    margin-top: 2rem;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
}



.menu-icon {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.menu-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #FFFFFF;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-icon span:nth-child(1) {
    top: 0px;
}

.menu-icon span:nth-child(2) {
    top: 8px;
}

.menu-icon span:nth-child(3) {
    top: 16px;
}

.menu-icon.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
}

.menu-icon.active span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

.menu-icon.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 8px;
}

.logosec img {
    height: 40px;
}

.hex,
.sechexbox {
    width: 20%;
}

.sechexbox>.hex {
    width: 100%;
}

.hex {
    font-size: 315px;

}

.hex i {
    width: 340px;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mainhexa {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hex1.hex {
    transform: rotate(30deg);
    position: relative;
    z-index: 8;
}

.hex1.hex i {
    color: #ccddea;
}

.afterarrw {
    position: absolute;
    z-index: 99;
}

.hex1.hex .afterarrw {
    top: 2%;
    left: 83%;
    transform: rotate(-60deg);
}

.afterarrw i {
    font-size: 60px;
    width: 60px;
    height: 60px;
    color: var(--primary);
}

.hex2.hex {
    transform: rotate(30deg);
    position: relative;
    z-index: 7;
}

.hex2.hex i {
    color: #f3e5c3;
}

.hex2.hex .afterarrw {
    bottom: 1%;
    left: 83%;
    transform: rotate(60deg);
}

.hex3.hex {
    transform: rotate(30deg);
    margin-top: -35px;
    position: relative;
    z-index: 6;
}

.hex3.hex i {
    color: #d9bfbd;
}

.hex3.hex .afterarrw {
    top: 3%;
    left: 85%;
    transform: rotate(-60deg);
}

.hex4.hex {
    transform: rotate(30deg);
    position: relative;
    z-index: 5;
}

.hex4.hex i {
    color: #D7eae2;
}

.hex4.hex .afterarrw {
    top: 3%;
    left: 85%;
    transform: rotate(-60deg);
}

.hex5.hex {
    transform: rotate(30deg);
    position: relative;
    z-index: 4;
}

.hex5.hex i {
    color: #Fcdfc5;
}

.hex5.hex .afterarrw {
    bottom: 1%;
    left: 83%;
    transform: rotate(60deg);
}

.hex6.hex {
    transform: rotate(30deg);
    margin-top: -35px;
    position: relative;
    z-index: 3;
}

.hex6.hex i {
    color: #F0e193;
}

.hex6.hex .afterarrw {
    top: 3%;
    left: 85%;
    transform: rotate(-60deg);
}

.hex7.hex {
    transform: rotate(30deg);
    position: relative;
    z-index: 2;
}

.hex7.hex i {
    color: #ebe2e0;
}

.innertexsec {
    position: absolute;
    color: rgb(0, 0, 0);
    transform: rotate(-31deg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.innertexsec h3 {
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 700;
    text-align: center;
    font-style: normal;
}

.iconbox {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iconbox img {
    height: 50px;
}

.numbersec {
    position: absolute;
    color: rgb(0, 0, 0);
    transform: rotate(-31deg);
    left: 17%;
    bottom: 52%;

}

.numbersec h4 {
    color: #000;
    margin-bottom: 0;
    font-weight: 900;
    font-size: 60px;
    opacity: 0.5;
    font-style: normal;
    text-shadow:
        1px 1px #fff,
        -1px 1px #fff,
        1px -1px #fff,
        -1px -1px #fff,
        1px 1px 5px #555;
}

@media (max-width:1440px) {
    .hex i {
        width: 300px;
        height: 335px;
    }
}