:root {
    --color-main: #cc2b10;
    --color-white: #fff;
    --color-black: #000;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Philosopher", sans-serif;
}

html,
body {
    box-sizing: border-box;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.philosopher-regular {
    font-family: "Philosopher", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.philosopher-bold {
    font-family: "Philosopher", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.philosopher-regular-italic {
    font-family: "Philosopher", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.philosopher-bold-italic {
    font-family: "Philosopher", sans-serif;
    font-weight: 700;
    font-style: italic;
}

a {
    cursor: pointer;
    border: none;
    outline: none;
    user-select: none;
    background: none;
    box-shadow: none;
    text-decoration: none !important;
}


.pt-100 {
    padding: 75px 0px;
}

button,
input {
    border: 0;
    background: 0;
    margin: 0;
    padding: 0;
}

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


header {
    background: #000;
    position: relative;
    padding: 12px 0px;
    position: fixed;
    z-index: 2;
    left: 0;
    right: 0;
    top: 0;
    border-bottom: 1px solid #ffffff30;
}

header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0px auto;
    height: 100%;
    transition: 0.3s;
}

header .container .logo {
    position: relative;
}

.logo span img {
    width: 101px;
}

header .container .logo span:nth-of-type(1) {
    font-size: 25px;
    font-weight: 600;
}

header .container .mobile_nav {
    margin: 1px 5px 0;
    display: none;
}

header .container .mobile_nav .burger {
    width: 19px;
    height: 19px;
    position: relative;
    overflow: hidden;
}

header .container .mobile_nav .burger .mobile_nav__label {
    margin: -10px 5px;
    width: 135px;
    position: absolute;
}

header .container .mobile_nav .burger .stripe {
    height: 3px;
    background: #fff;
    position: absolute;
    transition: 0.2s ease;
}

header .container .mobile_nav .burger .top {
    right: 0;
    top: 0;
    width: 100%;
}

header .container .mobile_nav .burger .middle {
    left: 0;
    top: 0;
    margin: 7px 0;
    width: 100%;
}

header .container .mobile_nav .burger .bottom {
    right: 0;
    top: 0;
    margin: 14px 0;
    width: 100%;
}

header .container .head_nav {
    margin: 0 50px;
    width: 100%;
}

header .container .head_nav ul {
    text-align: center;
    margin: 0;
}

header .container .head_nav ul .visited a:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: #fff;
    margin: 0;
    right: 0;
    top: 20px;
}

header .container .head_nav ul li {
    display: inline-block;
    margin: 0 15px;
}

header .container .head_nav ul li a {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.8px;
    position: relative;
    color: #fff;
}

header .container .head_nav ul li a:after {
    content: "";
    position: absolute;
    width: 0%;
    height: 3px;
    background: #fff;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    right: 0;
    top: 20px;
}

header .container .head_nav ul li a:hover:after {
    width: 100%;
    left: 0;
}

.mobile_menu {
    background: black;
    width: 100%;
    top: 65px;
    left: 0;
    border-radius: 4px;
    position: absolute;
    display: none;
    overflow-y: auto;
    max-height: 100vh;
}

.mobile_menu:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 15px 15px 15px;
    border-color: transparent transparent #fdf2f2 transparent;
    margin: -10px 35px;
}

.mobile_menu nav {
    padding: 50px;
    position: relative;
    z-index: 1000;
    background: var(--color-black);
}

.mobile_menu nav ul .slide a {
    opacity: 1;
    position: relative;
    animation: hidecolor 0.8s ease;
}

.mobile_menu nav ul .slide a:before {
    content: "";
    position: absolute;
    background: #cc2b10;
    width: 0%;
    height: 35px;
    animation: slide 0.8s ease;
}

.mobile_menu nav ul li {
    margin: 30px 0px;
}

.mobile_menu nav ul li a {
    opacity: 0;
    font-size: 25px;
    font-weight: 600;
    padding: 10px 0px;
    color: white;
}

@keyframes slide {
    0% {
        width: 0;
        padding: 0px 10px;
        margin: 0px -5px;
    }

    80% {
        width: 105%;
        padding: 0px 10px;
        margin: 0px -5px;
    }

    100% {
        width: 0;
        padding: 0 0;
    }
}

@keyframes hidecolor {
    0% {
        color: black;
    }

    75% {
        color: black;
    }

    100% {
        color: white;
    }
}

/* header css end */
/* header css end */

/* home section css start */
/* home section css start */

.home_section {
    padding: 110px 0px 70px 0px;
    background-image: url(../images/bg1.jpg);
    background-size: cover;
    position: relative;
    /* z-index: 1; */
}

.home_content {
    position: relative;
}

.home_content .star_shape img {
    width: 90px;
    position: absolute;
    left: 215px;
    top: -110px;
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
}

@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}


.home_section .home_content h1 {
    font-size: 60px;
    line-height: 60px;
    font-weight: 700;
    letter-spacing: 0.6px;
}

.home_section .home_content h1 span {
    color: var(--color-main);
    font-weight: 700;
}

.home_section .home_content h5 {
    color: #fffafa;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.home_section .home_content .heading_line {
    max-width: 200px;
}

.home_section .home_content .line_shape {
    max-width: 2000;
}

.home_section .home_content p {
    font-size: 18px;
    font-weight: 400;
    color: #ffffffe3;
    letter-spacing: 0.6px;
}

.image_section .circle_img img {
    width: 100%;
    height: 100%;
}

.image_section .circle_img img {
    animation: spin 12s infinite linear;
    -webkit-animation: spin 12s infinite linear;
    -moz-animation: spin 12s infinite linear;
    display: inline-block;
}

.apply_btn {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    background: #cc2b10;
    border-radius: 30px;
    padding: 10px 30px;
    transition: 0.6s all ease;
    width: fit-content;
    border: 1px solid transparent;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.apply_btn:hover {
    background-color: var(--color-white);
    color: #000;
    border: 1px solid var(--color-main);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

.home_section:after {
    position: absolute;
    content: '';
    background: url(../images/shape.svg) no-repeat;
    width: 100%;
    height: 180px;
    left: 0;
    right: 0;
    bottom: 0;
    transform: scale(-1);
    z-index: 1;
}

/* home section  end */
/* home section  end */

/* about section start */
/* about section start */

.about_section {
    background-image: url(../images/bg2.jpg);
    background-size: cover;
    position: relative;
}

.hand_shape img {
    position: absolute;
    left: 50px;
    top: 53px;
    opacity: 0.5;
}

.hand_shape img {
    animation: spin 12s infinite linear;
    -webkit-animation: spin 12s infinite linear;
    -moz-animation: spin 12s infinite linear;
    display: inline-block;
}

.about_content h1 {
    font-size: 50px;
    line-height: 50px;
    font-weight: 700;
    color: #cc2b10;
}

.peragraph {
    font-size: 18px;
    font-weight: 400;
    color: #000000b0;
    line-height: 25px;
    letter-spacing: 0.6px;
}

.success_content {
    background: transparent;
    padding: 20px 15px;
    margin-bottom: 20px;
    border: 1px solid #80808038;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.about_img img {
    border-radius: 10px;
    width: 310px;
    height: 73vh;
    object-fit: cover;
}

.success_content h2 {
    font-size: 20px;
    font-weight: 600;
}

.success_content i {
    font-size: 37px;
    color: #cc2b10;
    margin-bottom: 13px;
}

.main_heading_1 h1 {
    font-size: 40px;
    font-weight: 600;
    color: var(--color-black);
    position: relative;
}

.main_heading_1 img {
    max-width: 250px;
    object-fit: cover;
}

.line_two {
    color: var(--color-main);
}

/* about section end */
/* about section end */


/* service section start */
/* service section start */

.service_wrapper {
    /* background-image: url('../images//8306168.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden; */
    background-color: #1d1d25;
}

.as_service_img {
    position: relative;
}

.as_service_img .as_service_img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 150px;
}

.as_service_img:after {
    position: absolute;
    content: '';
    left: 50%;
    transform: translateX(-50%);
    width: 207px;
    height: 651px;
    background-image: url('../images/service_shape.html');
    bottom: -35px;
}

.as_service_single .as_service_img:after {
    display: none;
}

.as_service_img .as_service_circle {
    animation: spin 12s infinite linear;
    -webkit-animation: spin 12s infinite linear;
    -moz-animation: spin 12s infinite linear;
}

.service_box {
    background-color: #161416;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    padding: 40px 30px 40px;
    margin-top: 20px;
    position: relative;
    border-radius: 10px;
    z-index: 1;
    transition: all 0.3s linear;
    border: 1px solid #e6e9f330;
}

.service_box:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -135px 0 0 -135px;
    background-image: url(../images/circle.png);
    width: 271px;
    height: 270px;
    animation: spin 9s infinite linear;
    -webkit-animation: spin 9s infinite linear;
    -moz-animation: spin 9s infinite linear;
    z-index: -1;
    opacity: 0;
}

.service_box:hover:after {
    opacity: 1;
}

.service_box:hover {
    background: linear-gradient(188deg, #cc2b10, #000000);
    cursor: pointer;
}

.service_box:hover .as_icon img {
    filter: invert(0%) sepia(3%) saturate(7480%) hue-rotate(18deg) brightness(87%) contrast(98%);
}

.as_icon img {
    max-width: 100%;
}

.service_box .subheading {
    margin: 22px 0 10px;
    font-size: 26px;
    position: relative;
    font-weight: 600;
    color: var(--color-white);
}

.service_box p {
    font-size: 18px;
    font-weight: 400;
    color: #ffffffc7;
}

.service_box:hover p {
    color: var(--color-white);
}

.service_box:hover .subheading,
.as_service_box:hover p,
.as_service_box:hover .as_link {
    color: var(--color-white)
}

/* service section end */
/* service section end */


/* gallery section start */
/* gallery section start */

.gallery_box {
    background: #cc2b1036;
    color: #333333;
    border-radius: 5px;
    margin-top: 15px !important;
}

.card-image {
    overflow: hidden;
}

.card-image img {
    padding: 5px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: all linear 0.5s;
}

.card-image img:hover {
    transform: scale(1.2);
}

/* gallery section end */
/* gallery section end */


/* why choose css start */
/* why choose css start */

.whychoose_wrapper {
    /* background: var(--color-white); */
    background-image: url(../images/why-choose.jpg);
    position: relative;
    z-index: 1;
}

.as_whychoose_wrapper .as_heading {
    color: #ffffff;
}

.as_whychoose_wrapper p {
    color: #ffffff;
}

.as_whychoose_box .as_number>span {
    font-size: 40px;
    font-weight: 700;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #010000;
}

.as_whychoose_box img {
    width: 150px;
}

.as_whychoose_box h4 {
    font-size: 23px;
    font-weight: 600;
    margin: 22px 0 22px;
    text-align: center;
    color: #000;
}

.as_number {
    display: block;
    position: relative;
    margin: 0 auto;
}

.as_choose_ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.as_choose_ul li {
    display: inline-flex;
    width: 19.5%;
    justify-content: center;
    color: #ffffff;
}

/* why choose css end */
/* why choose css end */


/* feature_section start */
/* feature_section start */

.feature_section {
    background: linear-gradient(#000000b0, #000), url(../images/feature.jpg);
    background-size: cover;
}

.feature_box {
    background: #161416;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    border: 1px solid #ffffff33;
    transition: 0.6s all ease;
    padding: 2rem 1rem;
    margin-top: 20px;
    border-radius: 10px;
}

.feature_box:hover {
    box-shadow: 8px 8px 24px #090e1457;
    transform: translateY(-5px);
    transform: scale(1.03);
    cursor: pointer;
    background: linear-gradient(188deg, #cc2b10, #000000);
}

.feature_box .heading_img img {
    margin-top: 20px;
    width: 125px;
}

.feature_box .feature_img img {
    height: 135px;
    width: 135px !important;
    object-fit: contain;
    transition: 0.6s all ease;
    border-radius: 10px;
}

.feature_box h4 {
    font-size: 25px;
    position: relative;
    font-weight: 600;
    color: var(--color-white);
}

.feature_box h5 {
    font-size: 18px;
    font-weight: 500;
    color: #ffffffc7;
}

/* feature_section end */
/* feature_section end */


/* pricing plan page start */
/* pricing plan page start */

.price_plan_section {
    background-color: #1d1d25;
    /* background-image: url(..//images/price.jpg);
    background-size: cover; */
}

.pricing_plan {
    padding: 0px 0px 40px 0px;
    position: relative;
    background: #fff;
    box-shadow: 0 12px 45px rgba(0, 0, 0, .08);
    z-index: 1;
    transition: all linear 0.4s;
    cursor: pointer;
    border-radius: 15px;
}

.pricing_plan:hover {
    margin-top: -15px;
}

.pricing_plan .price_plan {
    position: relative;
    z-index: 100;
    padding: 30px 20px 15px 20px;
}

.main_heading {
    font-size: 35px;
    font-weight: 700;
    color: var(--color-main);
}

.pricing_plan .price_plan h4 {
    font-size: 25px;
    font-weight: 600;
    color: var(--color-main);
}

.pricing_plan .price_plan h6 {
    font-size: 18px;
    color: #000;
}

.plan_list li {
    font-size: 18px;
    margin-top: 16px;
    color: #000;
}

.plan_list li i {
    color: var(--color-main);
    font-size: 16px;
    padding-right: 5px;
}

.pricing_plan .price_plan:after {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 80%;
    content: '';
    right: 0;
    margin: auto;
    background: linear-gradient(to right, #760b99, black, #750b99);
}

.plan_list {
    margin-top: 40px;
    margin-bottom: 40px;
}

.main_innner_box {
    background: linear-gradient(203deg, #760b9a 20%, #490660 50%, #000000 100%);
}

.main_innner_box .plan_list ul li {
    color: #fff;
}

.main_innner_box .plan_list ul li i {
    color: #fff;
}

.bg_dark {
    background: #fff;
    color: var(--color-black);
}

/* pricing plan page end */
/* pricing plan page end */


/* testimonials_section start */
/* testimonials_section start */

.testimonials_section {
    background: linear-gradient(#00000017, #00000094), url(../images/hero-banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.review_box {
    background: #00000054;
    padding: 15px 15px;
    position: relative;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
    cursor: pointer;
    border: 2px solid #efe5e53d;
}

.review_img {
    position: relative;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    background: transparent;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review_img:before {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    border: 1px dashed #ffffff;
    content: '';
    border-radius: 50%;
    animation: slideDas 5s infinite linear;
}

@keyframes slideDas {
    100% {
        transform: rotate(360deg);
    }
}

.review_img img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
}

.review_content {
    margin-top: 20px;
}

.review_content h4 {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-white);
}

.review_content h6 {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-white);
}

.review_content p {
    font-size: 17px;
    font-weight: 400;
    color: #ffffffd1;
}

.review_box::after {
    left: 45px !important;
}

.review_box::before,
.review_box::after {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 90px;
    margin: auto;
    width: 20px;
    content: '';
    background: url(../images/double_quote.png);
    height: 40px;
    background-size: cover;
}

/* testimonials_section end */
/* testimonials_section end */


/* get in Touch start */
/* get in Touch start */

.get_in_touch {
    background-image: url(../images/getin.png);
    background-size: cover;
}

.get_in_touch_box {
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    padding: 20px 20px;
    background: #f2fafb;
}

.get_in_touch_box i {
    font-size: 25px;
    color: #fff;
    height: 60px;
    width: 70px;
    background: red;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;

}

.get_in_touch_box label {
    font-size: 17px;
    font-weight: 500;
    color: #000000a1;
    margin-bottom: 7px;
}

.get_in_touch_box input {
    position: relative;
    width: 100%;
    border: none;
    border: 1px solid #cc2b107d;
    outline: none;
    padding: 12px;
    border-radius: 3px;
}

.get_in_touch_box textarea {
    background-color: transparent;
    width: 100%;
    font-size: 16px;
    padding: .375rem .75rem;
    outline: none;
    border: 1px solid #cc2b107d;
    border-radius: 3px;
}

.get_in_touch_box label {
    color: #282828;
}

.get_in_touch_box .form-control:focus {
    border-color: #cc2b10;
}

.banner__inputlist select {
    width: 100%;
    padding: 14px 10px;
    outline: none;
    background: transparent;
    border: 0;
    border: 1px solid #cc2b107d;
    color: #888496;
    border-radius: 3px;
}

.banner__inputlist {
    position: relative;
}

/* get in touch end */
/* get in touch end */


/* footer section start */
/* footer section start */

footer {
    position: relative;
    background-image: url(../images/footer.jpg);
    background-size: cover;
}

.footer_box ul li a {
    background: var(--color-main);
    color: #fff;
    position: relative;
    height: 36px;
    width: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    border-radius: 4px;
    z-index: 1;
}

.footer_box ul li a:hover {
    border-radius: 50%;
}

.footer_box ul li a i {
    position: relative;
    z-index: 100;
}

.footer_box ul li a:hover:before {
    width: 100%;
    height: 100%;
}

.footer_box ul li {
    margin: 0px 10px;
}

.footer_box img {
    width: 110px;
}

.footer_box p {
    color: #ffffffd6;
}

.footer_quick_links ul li {
    margin-top: 8px;
}

.footer_quick_links ul li a {
    font-size: 17px;
    color: #ffffff;
    transition: 0.5s;
}

.footer_quick_links li i {
    color: var(--color-main);
    margin-right: 10px;
}

.footer_quick_links h5,
.footer_contact h5 {
    font-size: 22px;
    font-weight: 600;
}

.contact_info .icon {
    margin-right: 12px;
    background: #ffffffcf 0% 0% no-repeat padding-box;
    min-width: 38px;
    width: 38px;
    height: 38px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact_info .icon i {
    color: var(--color-main);
}

.footer_quick_links ul li a:hover,
.contact_info .details p a:hover {
    color: #cc2b10;
    padding-left: 5px;
}

.contact_info .details p {
    font-size: 16px;
    color: #ffffff;
}

.contact_info .details p a {
    color: #ffffff;
    transition: 0.5s;
}

.copy_bottom {
    background: var(--color-black);
    padding: 16px 0px;
    border-top: 1px solid #fdf9ff45;
}

.copy_bottom p {
    color: var(--color-white);
}

.copy_bottom p a {
    color: var(--color-white);
}

.map_box img {
    width: 100%;
    height: 100%;
}
.text-justify{
    text-align:justify!important;
}

/* footer section end */
/* footer section end */