@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@100;200;300;400;500&display=swap');

/*---------- color Variable CSS ----------*/

:root {
    --white: #fff;
    --blue: #263788;
    --deep_blue: #072040;
    --sky: #3FBFEF;
    --dark: #000;
    --para_color: #727A84;
    --logo_org: #F6852F;
    --main_font: 'Lato', sans-serif;
    --extra_font: 'Fira Sans', sans-serif;
}


/*---------- color Variable CSS ----------*/

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: var(--main_font);
    color: var(--para_color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1;
    margin-bottom: 0;
}

h2 {
    font-size: 3.2rem;
    font-family: var(--extra_font);
}

p {
    margin-bottom: 0;
    color: var(--para_color);
    font-size: 1.6rem;
    line-height: 2.6rem;
}

a:hover {
    text-decoration: none;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

li {
    list-style: none;
}

button:focus,
a.btn:focus {
    outline: none;
    border: 0;
    box-shadow: none;
}

.container {
    max-width: 1200px;
}

.navbar-toggler {
    background: #fff;
    outline: none;
    border: 0;
}

.scroll {
    z-index: 9999999;
    position: fixed;
    top: -65px;
    right: 20px;
    font-size: 2rem;
    color: var(--white);
    width: 50px;
    height: 50px;
    background: var(--logo_org);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.5s;
}

.scroll:hover {
    color: #fff;
}

.scroll.down {
    top: 85vh;
}

#back_button {
    background: #000;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
}

.custom_btn {
    padding: 1.5rem 3.4rem;
    line-height: 2.2rem;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    color: var(--white);
    transition: 0.5s;
    display: inline-flex;
    align-items: center;
    text-transform: capitalize;
    background-color: var(--sky);
    border-radius: 0rem;
    position: relative;
    border-radius: 3.3rem;
    z-index: 99;
    border: 0.2rem solid transparent;
}

.custom_btn:hover i {
    transform: translateX(1rem);
    color: var(--white);
}

.custom_btn:hover {
    color: var(--sky);
    background: var(--white);
    border: 0.2rem solid var(--sky);
}

.custom_heading {
    margin-bottom: 4.5rem;
}

.custom_heading h2 {
    font-size: 4.4rem;
    font-weight: 500;
    line-height: 5.3rem;
    text-transform: capitalize;
    font-family: var(--extra_font);
    color: var(--blue);
}

.custom_heading h5 {
    color: var(--sky);
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 2.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.custom_heading p {
    margin-top: 2rem;
}

section {
    padding: 10rem 0rem;
}


/*============= top_ bar  ===================*/

section.top_bar {
    padding: 0rem;
    position: absolute;
    z-index: 999;
    width: 100%;
}

.main_top_bar {
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #072040;
}

.address_bar ul {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.address_bar ul li,
.address_bar ul li a {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.6rem;
}

.address_bar ul li span,
.address_bar ul li a span {
    color: var(--white);
}

.address_bar ul li p,
.address_bar ul li a p {
    color: #AFC0D6;
}

.social_bar ul {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social_bar ul li a {
    font-size: 1.6rem;
    color: var(--deep_blue);
    height: 3rem;
    width: 3rem;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
}


/*============= top_ bar end ===================*/


/*---------------------- header ----------------------*/

.header {
    /* padding: 2rem 0; */
    position: absolute;
    top: 10rem;
    width: 100%;
    z-index: 999;
    transition: .5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    clip-path: inherit;
    z-index: 999;
    /* padding: 2rem; */
    transition: padding 0.5s;
    /* background: #fff; */
}

.header.sticky .navbar-brand img {
    width: 50%;
}

.header.sticky .navbar {
    box-shadow: 0px 5px 13px 8px #26378824;
}

.call_btn {
    display: none;
}

.header .navbar {
    padding: 2.5rem;
    display: flex;
    background: #fff;
    position: relative;
}

div#collapsibleNavbar {
    justify-content: end;
    align-items: center;
    margin-left: 18rem;
}

.header .navbar .navbar-nav {
    gap: 2rem;
}

.header .nav-item {
    position: relative;
}

.header .nav-item .nav-link {
    padding: 0rem;
    position: relative;
    text-transform: capitalize;
    font-size: 1.8rem;
    color: var(--blue);
    position: relative;
    font-weight: 500;
    line-height: 2.7rem;
}

.header.sticky .nav-item .nav-link {
    color: var(--dark);
}

.header.sticky .nav-item .nav-link::after {
    background: var(--logo_org);
}

.header.sticky .navbar-dark .navbar-nav .nav-link.active,
.header.sticky .navbar-dark .navbar-nav .nav-link:hover {
    color: var(--logo_org);
}

#home .nav-link.home,
#about .nav-link.about,
#services .nav-link.services,
#pricing .nav-link.pricing,
#contact .nav-link.contact {
    color: var(--logo_org);
}

.header .nav-item .nav-link::after {
    position: absolute;
    content: "";
    background: var(--deep_blue);
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    transform: scale(0);
    transform-origin: center;
    transition: transform 0.3s;
}

.header .nav-item .nav-link:hover::after {
    transform: scale(1);
}

.navbar-dark .navbar-nav .nav-link.active {
    color: var(--logo_org);
}

.header .nav-item .nav-link:hover {
    color: var(--blue);
}

.navbar-dark .navbar-brand {
    width: 18rem;
    transition: .5s cubic-bezier(0.075, 0.82, 0.165, 1);
    position: absolute;
    top: 0;
    left: -1px;
    background: var(--blue);
    clip-path: polygon(0 0, 100% 0%, 80% 100%, 0% 100%);
    padding: 0;
    margin: 0;
    height: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-dark .navbar-brand img {
    transition: .5s cubic-bezier(0.075, 0.82, 0.165, 1);
    width: 11rem;
    margin: 1rem 6rem 1rem 3.3rem;
}

.submenu {
    position: absolute;
    right: 0;
    z-index: 9999;
    background: #fff;
    border-radius: .5rem;
    top: 100%;
    box-shadow: 0px 5px 10px rgb(0 0 0 / 12%);
    max-height: 0;
    transition: max-height .5s ease-out;
    overflow: hidden;
    width: 30rem;
}

.submenu ul {
    padding: 2rem;
}

.header .nav-item:hover .submenu {
    max-height: 100vh;
    transition: max-height .5s ease-in;
}

.submenu li a {
    font-size: 1.8rem;
    margin-bottom: 10px;
    display: block;
    color: var(--dark);
    transition: .5s cubic-bezier(0.075, 0.82, 0.165, 1);
    position: relative;
    padding-left: 2rem;
}

.submenu li a::after {
    content: '\f105';
    position: absolute;
    left: 0;
    top: 0;
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
}

.submenu li a:hover {
    color: var(--dark);
    transform: translateX(10px);
}

.submenu.big-menu {
    width: 75vw;
    display: flex;
    justify-content: space-between;
    left: 0px;
    transform: translateX(-72%);
}

a.header_btn {
    background: var(--logo_org);
    color: var(--white);
    height: 4.7rem;
    width: 17.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    gap: 1rem;
}


/*---------------------- header ----------------------*/


/*---------------------- banner  ----------------------*/

section.banner_sec_slider {
    position: relative;
    top: 0;
    padding: 0;
}

.banner_img {
    height: 75rem;
    width: 100%;
}

.banner_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner_overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: #00000096;
    display: flex;
    align-items: center;
}

.banner_caption {
    position: relative;
    top: 30%;
}

.banner_caption h1 {
    font-size: 7.5rem;
    line-height: 8.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3rem;
    position: relative;
    z-index: 99;
}

.banner_caption h4 {
    font-size: 3.5rem;
    line-height: 4rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 99;
    font-family: var(--extra_font);
}

.banner_sec_slider.owl-carousel .owl-nav {
    position: absolute;
    bottom: 10rem;
    display: grid;
    justify-content: end;
    right: 5rem;
    gap: 3rem;
}

.banner_sec_slider.owl-carousel .owl-nav button.owl-next,
.banner_sec_slider.owl-carousel .owl-nav button.owl-prev {
    width: 5.3rem;
    height: 5.3rem;
    border: .2rem solid #fff;
}


/*---------------------- banner end ----------------------*/


/*---------------------- small_services_box ----------------------*/

section.small_services_sec {
    padding: 0rem 0rem 0rem;
    margin-top: -7rem;
    position: relative;
    z-index: 1;
}

.small_services_box {
    padding: 2.8rem;
    background: #fff;
    box-shadow: 0rem 1rem 4rem rgba(6, 22, 58, 0.1);
    border-radius: 1rem;
    transition: 0.5s;
}

.small_services_box:hover {
    background: var(--blue);
}

.small_services_box:hover .small_icon img {
    filter: invert(1);
}

.small_services_box:hover .small_content p {
    color: var(--white);
}

.small_services_box:hover span.number {
    -webkit-text-stroke: 1px var(--sky);
    color: var(--blue);
}

.small_icon {
    position: relative;
}

span.number {
    line-height: 2.2rem;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 6rem;
    -webkit-text-stroke: 1px black;
    color: #fff;
    font-weight: 400;
    font-family: var(--extra_font);
}

.small_content {
    margin-top: 3.5rem;
}

.small_content p {
    color: var(--blue);
    font-weight: 500;
    font-size: 2rem;
    line-height: 2.4rem;
    font-family: var(--extra_font);
}


/*---------------------- small_services_box ----------------------*/


/*============================ about us ===============================*/

.about_us_area {
    margin-right: 4.2rem;
}

.about_us_area .custom_heading {
    margin-bottom: 2rem;
}

.about_us_content p:nth-child(2) {
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.about_us_content p span {
    color: var(--blue);
}

.extra_content {
    display: flex;
    align-items: center;
    gap: 3.3rem;
    margin-top: 3.3rem;
    position: relative;
}

.extra_content::after {
    content: "";
    position: absolute;
    background: #727A84;
    width: 100%;
    height: 0.1rem;
    top: -2.1rem;
    left: 0;
}

.extra_content_text h3 {
    font-style: italic;
    font-weight: 500;
    font-size: 2.2rem;
    line-height: 3.4rem;
    color: var(--blue);
    font-family: var(--extra_font);
    width: 96%;
}

.about_us_btn {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-top: 6.3rem;
}

a.btn.numb_btn {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0rem;
    transition: 0.3s;
}

a.btn.numb_btn span.icon {
    font-size: 2rem;
    background: #EEF3F7;
    height: 5rem;
    width: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

a.btn.numb_btn:hover span.icon {
    background-color: var(--sky);
    color: var(--white);
}

a.btn.numb_btn span.text h5 {
    font-weight: 600;
    font-size: 2rem;
    line-height: 2.6rem;
    color: var(--blue);
    font-family: var(--extra_font);
}

span.text {
    text-align: left;
}

a.btn.numb_btn span.text p {
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 2.4rem;
    margin-bottom: 0.6rem;
}

.about_us_content_img {
    max-width: 57rem;
    height: 57rem;
    border-radius: 1.9rem;
    overflow: hidden;
}

.about_us_content_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}


/*============================ about us end ===============================*/


/*============================ our services ===============================*/

section.our_services_sec {
    background-image: url(../images/our_services_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 16rem;
}

.our_service_heading {
    width: 84%;
    margin: 0rem auto 5rem;
}

.services_area {
    position: relative;
    z-index: 1;
    transition: 0.5s;
    background: #fff;
    padding-bottom: 3rem;
    height: 100%;
    margin-top: 3rem;
}

.services_area:hover span.secvice_icon {
    background: var(--logo_org);
}

.services_area:hover span.secvice_icon img {
    filter: invert(1);
}

.services_area:hover a.btn.arrow_btn {
    background: var(--logo_org);
    color: var(--white);
}

.service_img {
    max-width: 32.8rem;
    height: 21.8rem;
    display: table;
    margin: auto;
    position: relative;
    top: -3.5rem;
}

.service_img .ser_img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

span.secvice_icon {
    height: 10rem;
    width: 10rem;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
    display: flex;
    position: absolute;
    bottom: -5rem;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}

span.secvice_icon img {
    width: 5.5rem;
}

.services_item {
    text-align: center;
    padding: 4rem 4rem 0rem;
    position: relative;
}

.service_content h5 {
    font-family: var(--extra_font);
    font-weight: 600;
    font-size: 2rem;
    line-height: 2.6rem;
    color: var(--blue);
    margin-bottom: 1.2rem;
}

a.btn.arrow_btn {
    position: absolute;
    height: 6.3rem;
    width: 6.3rem;
    background: var(--sky);
    border-radius: 50%;
    bottom: -3.2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}


/*============================ our services end ===============================*/


/*=========================== Our Work Process =================================*/

.work_row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10rem;
}

.work_item {
    text-align: center;
    position: relative;
    z-index: 0;
}

.work_item:nth-child(1)::after {
    background-image: url(../images/left_angle.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.work_item:nth-child(2)::after {
    background-image: url(../images/right_angle.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.work_item::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -11rem;
    z-index: 1;
    width: 11.8rem;
    height: 2.2rem;
    transform: translateY(-50%);
}

.work_item:last-child::after {
    display: none;
}

.work_icon {
    margin-bottom: 2rem;
    position: relative;
}

.work_icon span.icon {
    height: 12rem;
    width: 12rem;
    background: #FFFFFF;
    box-shadow: 0px 10px 40px rgba(6, 22, 58, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.work_icon span.point {
    height: 4rem;
    width: 4rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--sky);
    font-weight: 500;
    font-size: 2.1rem;
    line-height: 2.4rem;
    font-family: var(--extra_font);
    color: var(--white);
    position: absolute;
    top: 0;
    right: 6.5rem;
    letter-spacing: 0.2rem;
}

.work_content h5 {
    font-family: var(--extra_font);
    font-weight: 600;
    font-size: 2rem;
    line-height: 2.6rem;
    color: var(--blue);
    text-transform: capitalize;
}

.work_content p {
    margin-top: 1.5rem;
}


/*=========================== Our Work Process end =================================*/

section.work_tab_sec {
    position: relative;
}

section.work_tab_sec .custom_heading p {
    color: var(--white);
}

section.work_tab_sec::after {
    content: "";
    position: absolute;
    height: 60%;
    width: 100%;
    background: var(--sky);
    top: 0rem;
    left: 0rem;
    z-index: -1;
}

.work_slider .owl-dots {
    display: flex;
    gap: .5rem;
    justify-content: center;
    margin: 4rem 0rem 0rem;
}

.work_slider .owl-dots .owl-dot {
    background: #ccc;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin: 0 .2rem;
}

.work_slider .owl-dots .owl-dot.active {
    background-color: var(--blue);
}


/*----------  Container menu iso-gallery  ----------*/

.container_menu_iso {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    margin: 0rem 0rem 5rem;
}

.menu_iso {
    display: flex;
    gap: 1.6rem;
}

.container_menu_iso .menu_iso li a {
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 2.2rem;
    color: var(--blue);
    padding: .9rem 1.5rem;
    background: var(--white);
    transition: 0.5s;
    border-radius: .5rem;
    cursor: pointer;
    display: inline-block;
    text-transform: capitalize;
}

.container_menu_iso .menu_iso li a:hover {
    color: var(--white);
    background: var(--blue);
}

.container_menu_iso .menu_iso li a.is-checked {
    color: var(--white);
    background: var(--blue);
}

.isotop_content {
    position: relative;
    width: 100%;
    height: 25rem;
    overflow: hidden;
    border-radius: 1rem;
}

.isotop_content img {
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    object-fit: cover;
}

.isotop_overlay {
    position: absolute;
    top: 3rem;
    left: 3rem;
    color: var(--white);
    z-index: 1;
}

.primium_service_card_overly {
    position: absolute;
    top: 0rem;
    left: 0rem;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(0.98deg, #263788 2.59%, rgba(196, 196, 196, 0) 93.51%);
    padding: 3rem 2rem 1.5rem;
}

.primium_service_card_info_cnt {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.owl-carousel .owl-item .primium_service_card_icon img {
    width: 3.9rem;
}

.primium_service_card_info h4 {
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 2.1rem;
    color: var(--white);
}

.isotop_overlay p {
    font-family: var(--extra_font);
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 2.2rem;
    color: var(--white);
    text-transform: capitalize;
    margin-top: 1rem;
}

.btn.plus_btn {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    height: 5rem;
    width: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    z-index: 1;
    padding: 0;
}


/*========================= lets_help_sec =====================================*/

.lets_help_area .custom_heading p {
    width: 80%;
}

.panel-heading {
    padding: 0;
    border: 0;
}

.panel-body {
    padding: 1rem;
    background: #f3f7fc4d;
}

.lets_help_area .custom_heading {
    margin-bottom: 3.6rem;
}

div#accordion {
    display: grid;
    gap: 2.3rem;
}

.panel-title>a,
.panel-title>a:active {
    display: block;
    padding: 1.7rem 2.2rem;
}

.panel-heading a {
    position: relative;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 3.2rem;
    color: var(--blue);
    cursor: pointer;
    background: #F3F7FC;
    border-radius: 6px;
    text-transform: capitalize;
}

.panel-heading a::after {
    content: "";
    position: absolute;
    background-image: url(../images/down-arrow.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 1.5rem;
    width: 1.5rem;
    right: 2.4rem;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.5s;
}

.panel-heading.active a::after {
    transform: rotate(180deg) translateY(1rem);
}


/*========================= lets_help_sec end =====================================*/


/* puches_section  */

.puches_section {
    background-image: url(../images/purches_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 6rem 0;
}

.purches_area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: wrap;
}

.purches_content.custom_heading {
    margin: 0rem;
}

.purches_btn .custom_btn {
    background: #fff;
    color: var(--blue);
}

.purches_btn .custom_btn:hover {
    background: transparent;
    color: #fff;
    border-color: var(--white);
}

.purches_content h2,
.unique_heading h2 {
    color: var(--white);
}


/* puches_section  */


/* testimonial  */

.testimonial {
    background-image: linear-gradient(to top, rgb(223 220 220 / 87%), rgb(228 230 231 / 85%)), url(../images/wave-pattern.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 6rem;
    position: relative;
}

img.vert-move {
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
    position: absolute;
    top: 10rem;
    left: 2rem;
}

img.vert-move {
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
}

.right_shape {
    -webkit-animation: mover 1.5s infinite alternate;
    animation: mover 1.5s infinite alternate;
}

@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

.right_shape {
    right: 38px;
    position: absolute;
    top: 57px;
}

.testimonial_slider {
    position: relative;
}

.tm_card {
    background: var(--white);
    padding: 5rem 4.7rem;
    border-radius: .4rem;
    max-width: 1041px;
    min-height: 24rem;
    margin: auto;
    box-shadow: 0 1rem 4rem rgba(6, 22, 58, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.testimonial .owl-carousel .owl-nav button.owl-next,
.testimonial .owl-carousel .owl-nav button.owl-prev {
    width: 4rem;
    height: 4rem;
    background: var(--blue);
    border-radius: 50%;
    color: var(--white);
    font-size: 2rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: .5s;
}

.testimonial .owl-carousel .owl-nav button.owl-prev {
    left: 0rem;
}

.testimonial .owl-carousel .owl-nav button.owl-next {
    right: 0rem;
}

.icon_quote {
    position: absolute;
    top: -2.2rem;
    left: 50%;
    transform: translateX(-50%);
    background: #2db7ff;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #ffff;
    border-radius: 50%;
}

.tm_card p {
    text-align: center;
    color: #263788;
    width: 100%;
    margin: auto;
}

.reating ul {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

.reating ul li {
    font-size: 2rem;
    color: #ffcb05;
}

.author_des {
    margin-top: 2rem;
}

.author_des h4 {
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 2.2rem;
    text-align: center;
    text-transform: capitalize;
    color: #263788;
}

.testimonial_slider.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    padding: 4rem 0rem;
}


/* testimonial  */


/* request_form  */

.callback_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
}

.callback_content {
    background-image: linear-gradient(to left, rgba(38, 55, 135, .9), rgba(38, 55, 135, .9)), url(../images/cont_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 5.5rem 4.2rem;
    border-radius: 1rem 0rem 0rem 1rem;
}

.callback_content .custom_heading {
    margin-bottom: 2.5rem;
}

.callback_content .custom_heading h2 {
    color: var(--white);
}

.callback_content .custom_heading p {
    margin-top: 1.5rem;
    color: #A0ABDC;
}

.callback_content>p {
    font-style: normal;
    font-weight: 400;
    color: #A0ABDC;
    margin-bottom: 2.5rem;
}

.callback_content .cl_list ul li {
    margin-bottom: 1.5rem;
}

.callback_content .cl_list ul li:last-child {
    margin-bottom: 0;
}

.callback_content .cl_list ul li p {
    font-family: var(--extra_font);
    font-style: normal;
    font-weight: 400;
    font-size: 2rem;
    line-height: 2.6rem;
    color: #FFFFFF;
    margin-bottom: .8rem;
}

.callback_content .cl_list ul li h5 {
    font-family: 'Fira Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 2.6rem;
    /* or 130% */
    color: #2DB7FF;
}

.callback_content .cl_list ul li h5 a {
    color: #2DB7FF;
}

.callback_form {
    padding: 1rem;
    background: #fff;
    box-shadow: 0px 10px 40px rgba(6, 22, 58, 0.1);
    border-radius: 0px 10px 10px 0px;
}

img.yelp-img {
    margin-top: 30px;
    border-radius: 5px;
}

.callback_form .form_group {
    margin-bottom: 3rem;
}

.callback_form .form_group label {
    font-family: 'Fira Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 2.6rem;
    color: #263788;
}

.callback_form .form_group input {
    height: 5.2rem;
    background: #FFFFFF;
    border: 0.1rem solid #E5E5E5;
    border-radius: 5rem;
    font-style: normal;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 6.2rem;
    color: #8C89A2;
    padding: 0rem 2rem;
}

input.form-control:focus {
    box-shadow: none;
}

.submit_btn {
    margin: auto;
    display: table;
}

.submit_btn button {
    outline: none;
    padding: 1.5rem 6rem;
}


/* request_form  */


/*======================================= about us page  =================================================*/

.inner_banner {
    padding: 0;
    height: 50rem;
    position: relative;
}

.inner_banner::after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 60%);
    left: 0;
    top: 0;
    position: absolute;
}

.inner_banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inner_heading {
    position: absolute;
    top: 64%;
    z-index: 99;
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 100%;
    left: 0rem;
}

.inner_heading h1 {
    font-size: 4rem;
    color: #fff;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 2rem;
}

.inner_heading .breadcrumb {
    background: transparent;
}

.breadcrumb_list li {
    display: inline-block;
}

.breadcrumb_list li a {
    color: var(--white);
    display: block;
    font-size: 2rem;
    padding: 0 1.5rem;
    position: relative;
    text-transform: capitalize;
}

.breadcrumb_list li.active a {
    color: var(--logo_org);
}

.breadcrumb_list li a::after {
    position: absolute;
    content: '/';
    right: -5px;
}

.breadcrumb_list li:last-child a:after {
    display: none;
}


/*-====================== inner banner end  =============================*/


/* our_about us sec */

.our_about_us_content {
    margin-right: 3rem;
}

.our_about_us_sec .custom_heading {
    margin-bottom: 3rem;
}

.our_about_us_content ul {
    display: grid;
    gap: 3rem;
}

.our_about_us_image {
    position: relative;
}

.our_about_us_image::after {
    z-index: -1;
    position: absolute;
    content: "";
    height: 100%;
    background: transparent;
    width: 100%;
    border: 0.5rem solid var(--blue);
    top: 5rem;
    left: 5rem;
    box-shadow: 3px 4px 20px 0px #0e1b5830;
}


/* our_about us sec end */


/*================== about_car_sec ====================*/

.service_card {
    margin-top: 8rem;
}

.box_row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5rem;
}

.car_box {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    border-radius: 1rem;
    box-shadow: 3px 4px 20px 0px #0e1b5830;
}

.car_box::after {
    content: "";
    position: absolute;
    height: 27rem;
    width: 32rem;
    border-radius: 5rem;
    border: 0.8rem solid var(--white);
    top: 145%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
    z-index: 0;
}

.car_box_img {
    height: 25rem;
    width: 100%;
}

.car_box_img img {
    transition: 0.5s;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.car_box:hover .car_box_img img {
    transform: scale(1.1);
}

.box_overley {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(359deg, black, transparent);
    width: 100%;
    height: 100%;
    color: #fff;
}

.text_head {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
}

.text_head h3 {
    font-family: var(--extra_font);
    font-weight: 600;
    font-size: 2rem;
    line-height: 2.6rem;
    color: var(--white);
    margin-bottom: 1.2rem;
}


/*============================ about us page end  ==========================================*/


/*============== service page============= */

.service_content h3 {
    font-size: 30px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--blue);
    font-family: var(--extra_font);
    margin-bottom: 2rem;
}

.service_page_section .row {
    align-items: center;
    margin-bottom: 5rem;
}

.service_page_section .row:nth-child(odd) {
    flex-direction: row-reverse;
}

.service_page_section .row:nth-child(odd) .service_content {
    padding-right: 5rem;
    padding-left: 0rem;
}

.service_page_section .row:last-child {
    margin-bottom: 0rem;
}

.service_img_area {
    height: 30rem;
}

.service_img_area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2rem;
}


/*============== service page============= */


/*============== contact page============= */

.contact_us {
    background-color: #f1f1f1;
}

.contact_inner {
    background-color: #fff;
    position: relative;
    box-shadow: 2rem 2.2rem 4.4rem #cccc;
    border-radius: 2.5rem;
    overflow: hidden;
}

.contact_field {
    padding: 5rem;
    padding-bottom: 0rem;
}

.right_conatct_social_icon {
    height: 100%;
}

.contact_field .form-control::placeholder {
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
}

.contact_info_sec {
    background-color: var(--blue);
    width: 100%;
    padding: 4rem;
    border-radius: 2.5rem 0rem 0rem 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact_info_sec h4 {
    letter-spacing: 0.1rem;
    padding-bottom: 1.6rem;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
}

.info_single {
    margin: 3rem 0rem;
}

.from_title {
    font-size: 20px;
    color: #f6852f;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.info_single i {
    margin-right: 1.5rem;
    font-size: 4rem;
    color: var(--logo_org);
}

.info_single span {
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
    color: #fff;
}

.info_single a {
    font-size: 2rem;
    letter-spacing: 0.1rem;
    font-weight: 800;
    color: #fff;
}

.map_sec {
    padding: 5rem 0rem;
}

.map_inner h4,
.map_inner p {
    color: #000;
    text-align: center
}

.map_inner.custom_heading h2 {
    text-align: center;
}

.map_bind {
    margin-top: 5rem;
}

.map_bind iframe {
    display: block;
    height: 350px;
}

.map_inner.custom_heading {
    margin-bottom: 0rem;
}


/*============== contact page============= */


/*=============== pricing page  =============================*/


/*=========================== our pricing sec ======================================*/

section.our_pricing_sec {
    background: #F0F2F7;
}

.our_all_packages {
    display: grid;
    grid-template-columns: 40rem 1fr 1fr;
    margin-bottom: 5rem;
}

.our_all_packages:last-child {
    margin-bottom: 0rem;
}

.main_packages_heading {
    margin-top: 3rem;
    margin-left: 4rem;
}

.package_box {
    background: var(--blue);
    padding: 3rem;
    box-shadow: 4px 0px 9px rgb(0 0 0 / 25%);
    position: relative;
    z-index: 10;
}

.package_box .offer_poster {
    display: flex;
    justify-content: space-around;
    align-items: center;
    direction: rtl;
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgb(246 133 47) 0%, rgb(255 31 0) 100%);
    top: 0;
    position: absolute;
    flex-direction: column;
    z-index: 100;
    left: 2rem;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
    box-shadow: 1px 11px 12px 3px #0000001c;
    padding: 2rem;
}

.offer_poster.guarantee {
    left: auto;
    right: 1.5rem;
    bottom: 0;
    top: auto;
    border-top-right-radius: 50%;
    border-top-left-radius: 50%;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    box-shadow: 1px -11px 12px 3px #0000001c;
    padding: 3rem 2rem 1rem 2rem;
}

.package_box .offer_poster .first_title,
.package_box .offer_poster .second_title,
.package_box .offer_poster .last_title {
    margin-top: .5rem;
    margin-bottom: .5rem;
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
}

.package_box .offer_poster .first_title {
    font-size: 2rem;
}

.package_box .offer_poster .second_title {
    font-size: 1.8rem;
    line-height: 2.5rem;
}

.package_box .offer_poster .time {
    width: 6rem !important;
    height: 6rem !important;
    font-size: 1.8rem !important;
}

.package_box .offer_poster .last_title {
    color: #fff;
    font-size: 2.5rem;
    width: 5.8rem;
    height: 5.8rem;
    display: flex;
    border: 2px dotted #fff;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: .5rem 0;
    cursor: pointer;
    animation: bounce 0.5s;
    animation-direction: alternate;
    animation-timing-function: cubic-bezier(.5, 0.05, 1, .5);
    animation-iteration-count: infinite;
}

@keyframes bounce {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(0, 5px, 0);
    }
}

.first_box {
    position: relative;
    z-index: 9;
}

.second_box {
    position: relative;
    z-index: 5;
}

.package_box_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.package_box_content h2 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 4.5rem;
    color: var(--white);
    margin-bottom: 3rem;
    text-transform: capitalize;
    letter-spacing: 0.1rem;
}

.main_packages {
    padding: 3rem;
    background: #fff;
    border-right: 1px solid #c7c5c6;
    transition: 0.5s;
}

.main_packages:hover {
    box-shadow: 4px 0px 9px rgb(0 0 0 / 25%);
}

.main_packages.second_box:last-child {
    border-right: 0;
}

.main_packages h3 {
    margin-bottom: 1.2rem;
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 3.4rem;
    color: #f6852f;
}

.main_packages_heading h4 {
    font-size: 2rem;
    margin-bottom: 2.4rem;
    font-weight: 400;
    color: var(--blue);
}

.main_packages_heading span {
    font-size: 4rem;
    font-weight: 700;
}

.main_packages_list ul {
    display: grid;
}

.main_packages_list ul li {
    display: flex;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--para_color);
    border-bottom: 1px dashed #C7C5C5;
    padding: 1.8rem;
    text-transform: capitalize;
}

.main_packages_list ul li:last-child {
    border: none;
}

.main_packages_list ul li span {
    margin-right: 2rem;
}

.main_packages_list .btn.custom_btn.tab_btn {
    color: #fff;
    background: var(--blue);
    margin-top: 3rem;
    text-transform: uppercase;
    padding: 2rem 4.4rem;
}

.main_packages_list .btn.custom_btn.tab_btn:hover {
    color: var(--theme_sky_blue);
    background: #fff;
}

.bottom_text .custom_heading {
    margin-bottom: 0rem;
}

.bottom_text .custom_heading h2 span {
    color: var(--logo_org);
}


/*=========================== our pricing sec end ======================================*/


/*========================= footer start ===========================*/

.footer {
    background-image: url(../images/footer_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10rem 0rem;
}

.footer .ftr_item h4 {
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 3rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    text-transform: capitalize;
}

.footer .ftr_item p,
.footer .ftr_item a,
.footer .ftr_item li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.6rem;
    font-weight: 400;
    text-transform: capitalize;
}

.ftr_item.ftr_addr ul li {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    margin-bottom: 3.5rem;
}

.ftr_item.ftr_addr ul li:last-child {
    margin-bottom: 0rem;
    align-items: flex-start;
}

.ftr_item.ftr_addr ul li a {
    color: var(--blue);
    font-size: 1.6rem;
    line-height: 1;
    height: 4rem;
    width: 4rem;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ftr_item.ftr_addr ul li i {
    color: var(--blue);
    font-size: 2rem;
}

.ftr_item.ftr_addr ul li:last-child i {
    margin-top: .8rem;
}

.ftr_item .quick_link {
    display: flex;
    gap: 8rem;
}

.quick_link ul {
    display: grid;
    gap: 2.5rem;
}

.ftr_item .quick_link li {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ftr_item .quick_link li i {
    color: var(--white);
    font-size: 1.4rem;
}

.ftr_item .quick_link a {
    line-height: 1;
    transition: .5s;
    transform: translateX(0);
}

.ftr_item .quick_link a:hover {
    color: var(--logo_org);
    transform: translateX(1rem);
}

.ftr_item.opening_hour {
    display: table;
    margin-left: auto;
}

.ftr_item.opening_hour ul {
    display: grid;
    gap: 1.5rem;
}

ul.cont_list li:last-child img {
    width: 2.5rem;
    margin-top: 0.6rem;
}

ul.cont_list li {
    display: flex;
    align-items: flex-start !important;
    gap: 0.5rem;
}

.ftr_item.opening_hour ul li {
    line-height: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ftr_item.opening_hour ul li p,
.ftr_item.opening_hour ul li span {
    line-height: 2.5rem;
}

.ftr_item.opening_hour ul li span {
    margin-left: 5rem;
}

.copyright {
    padding: 2.6rem 0rem;
    background: var(--logo_org);
}

.copyright p {
    color: var(--white);
}

.copyright p a {
    color: var(--white);
    display: inline-block;
    margin: 0rem 0.5rem;
    transition: 0.3s;
}

.copyright p a:hover {
    color: #000;
}

.ftr_item.ftr_addr {
    width: auto;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.ftr_item.ftr_addr>p {
    font-size: 15px;
    line-height: 26px;
    margin-top: 30px;
}

.ftr_social_items {
    display: grid;
    gap: 2rem;
    align-items: center;
    margin-top: 3.5rem;
}

.ftr_social_items h4 {
    margin-bottom: 0rem !important;
}

.ftr_social_items ul {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.ftr_social_items ul li {
    margin-bottom: 0 !important;
}

.ftr_social_items ul li a:hover {
    color: var(--white);
}

.ftr_social_items ul li a i {
    margin-top: 0 !important;
}


/*========================= footer end ===========================*/

.header .nav-item .nav-link {
    padding: 0rem;
    position: relative;
    text-transform: capitalize;
    font-size: 1.8rem;
    color: var(--blue);
    position: relative;
    font-weight: 500;
    line-height: 2.7rem;
}

.bootm-social {
    display: none;
}

.bootm-social ul {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 2rem;
}

.bootm-social ul li a {
    color: var(--blue);
    font-size: 1.6rem;
    line-height: 1;
    height: 4rem;
    width: 4rem;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.red_color {
    margin-top: 20px;
}

.red_color span {
    color: var(--logo_org);
}

.ribbon {
    font-size: 16px !important;
    width: 70%;
    position: relative;
    color: #fff;
    text-align: center;
    padding: 0;
    margin: 30px auto 60px;
    z-index: 99;
}

.ribbon:before,
.ribbon:after {
    content: "";
    position: absolute;
    display: block;
    bottom: -16px;
    border: 25px solid #93a5fd;
    z-index: -1;
}

.ribbon:before {
    left: -33px;
    border-right-width: 25px;
    border-left-color: transparent;
}

.ribbon:after {
    right: -33px;
    border-left-width: 25px;
    border-right-color: transparent;
}

.ribbon-content {
    width: 100%;
    background: #263788;
    display: block;
    position: relative;
    z-index: 9;
    font-size: 35px;
    color: white;
    padding: 16px;
    box-shadow: 0px 5px 10px rgb(0 0 0 / 12%);
    text-transform: uppercase;
}

.ribbon .ribbon-content:before,
.ribbon .ribbon-content:after {
    content: "";
    position: absolute;
    display: block;
    border-style: solid;
    border-color: #0000002b transparent transparent transparent;
    bottom: -16px;
}

.ribbon .ribbon-content:before {
    left: 0;
    border-width: 16px 0 0 18px;
}

.ribbon .ribbon-content:after {
    right: 0;
    border-width: 16px 17px 0 0;
}

.ribbon span {
    color: #f6852f;
    font-weight: 800;
}

.vertical-text {
  transform: rotate(-90deg);
}
.contact-info {
  position: fixed;
  top: 40%;
  z-index: 99999;
  right: -140px;
}
.banner-info {
  box-shadow: 0px 0px 30px #555;
  font-weight: bold;
  background-color: #f64a4a;
  color: #fff;
  padding: 8px 15px;
  text-align: center;
  cursor: default;
  font-size: 20px;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 4px;
  height: 40px;
}

.banner-info:hover {
  text-decoration: none;
  color: #fff;
  background: #101010;
}


/******************** Package CSS ********************/

.package_item {
    border-radius: 10px;
    padding: 30px;
    background: #fff;
    box-shadow: 0px 10px 40px 0px rgba(6, 22, 58, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    min-height: 100%;
    isolation: isolate;
}

.pricing_list {
    margin-top: 50px;
}
.package_item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 190px;
    top: 0px;
    left: 0px;
    background-color: rgb(147 165 253 / 50%);
    border-radius: 10px 10px 50% 50%;
    z-index: -1;
}
.price_containe {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.package_title {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 35px;
    text-align: center;
    color: #f6852f;
}

.price h4 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 65px;
    display: inline-block;
    position: relative;
    font-family: "PT Serif", serif;
    color: #263788;
}

.price h4 span {
    color: #5e6980;
    font-weight: 400;
    line-height: 1;
    font-size: 14px;
}

.price h4 span,
.pricing_list li {
    font-size: 14px;
    text-transform: capitalize;
}

.price h4 span {
    color: #5e6980;
    font-weight: 400;
    line-height: 1.3;
    font-family: "Prompt", sans-serif;
}

.pricing_list li {
    margin-bottom: 20px;
    position: relative;
    display: flex;
    gap: 10px;
    align-items: center;
}

.pricing_list li svg path {
    stroke: #f6852f;
}

.package_btn.custom_btn {
    display: table;
    padding: 20px 60px;
    text-align: center;
    margin: 70px auto 0;
    color: #fff !important;
    border-radius: 3rem 0.5rem;
    box-shadow: 0 5px 15px 0 #62953280;
}

.promo-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            /* padding: 2rem 1rem; */
            background: #263788;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid #263788;
        }

        .promo-card {
            width: 100%;
            overflow: hidden;
        }

        .promo-header {
            background: #fffefe;
            border-radius: 0 0 50% 50% / 0 0 40px 40px;
            padding: 2rem 1.5rem 5rem;
            text-align: center;
        }

        .promo-label {
            margin: 0 0 0.5rem;
            font-size: 30px;
            font-weight: 500;
            color: #ea6b1a;
        }

        .promo-title {
            margin: 0 0 0rem;
            font-size: 45px;
            font-weight: 600;
            color: #000;
            line-height: 1.2;
        }

        .promo-header h3 {
            margin: 5px 0 12px;
            font-size: 80px;
            text-transform: uppercase;
            color: #EA6B1A;
            font-weight: 800;
        }

        .promo-code-badge {
            background: #f6852f;
            display: inline-block;
            border-radius: 6px;
            padding: 0.4rem 1.2rem;
            color: #fff;
        }

        .promo-code-text {
            font-size: 20px;
            font-weight: 500;
            color: #fff;
            letter-spacing: 0.05em;
        }

        .promo-body {
            padding: 4.5rem 1.5rem 4.75rem;
        }

        .promo-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            justify-content: center;
        }

        .promo-check-circle {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 2px solid #EA6B1A;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .promo-feature-text {
            font-size: 20px;
            color: #fff;
        }