
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/
/*body{    overflow-x: hidden;
}*/
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 100px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background: #ff4c4f !important;
    color: var(--bs-white) !important;
    font-weight: 400;
    transition: 0.5s;
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-white) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-light {
    background: #ff4c4f !important;
    color: #ffffff !important;
    font-weight: 400;
    transition: 0.5s;
    border-color: #ff4c4f !important;
}

.btn.btn-light:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-light) !important;
}


.RotateMoveLeft {
    position: relative;
    animation: RotateMoveLeft 10s linear infinite;
}

.RotateMoveRight {
    position: relative;
    animation: RotateMoveLeft 10s linear infinite;
}

@keyframes RotateMoveLeft {
    0%   {left: 0px;}
    50%   {left: 40px;}
    100%  {left: 0px;}
}

@keyframes RotateMoveRight {
    0%   {right: 0px;}
    50%   {right: 40px;}
    100%  {right: 0px;}
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    margin-right: 20px;
    padding: 35px 6px;
    font-size: 15px;
    font-weight: 400;
    outline: none;
    transition: .5s;
    color: #000000;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 28px 6px;
    color: #373737 !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #ff464c !important;
}

.navbar-light .navbar-brand img {
    max-height: 83px;
    transition: .5s;
    border-radius: 5px;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 80px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 0px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: #491112;
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
    background: #fff;
}

.collapse.navbar-collapse {
    transition: 0.5s;
}

@media (max-width: 992px) {
    nav.bg-transparent {
        position: absolute;
        width: 100%;
        background: transparent !important;
    }

    .navbar.navbar-expand-lg button span {
        position: relative;
        z-index: 99;
    }

    .navbar {
        position: relative;
        background: #ffffff;
        z-index: 2;
    }

    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white) !important;
        padding: 0 20px 20px 20px !important;
    }

    .sticky-top.navbar-light {
        background: transparent;
    }

    nav.navbar {
        padding: 0  15px !important;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
        padding-bottom: 20px;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }


    .navbar-light .navbar-brand img {
        max-height: 45;
    }

    .hero-header {
        margin-top: -100px !important;
    }
}
.header {
    display: table;
    width: 100%;
    z-index: 999;
}
@media (min-width: 992px) {
    .navbar-light {
       position: relative;
       width: 100%;
       top: 0;
       left: 0;
       z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: relative;
    }
}
/*** Navbar End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: #ff181c17 url(../img/demo-sec-bg2.png);
    /* background: linear-gradient(rgb(222 222 222 / 5%), rgba(102, 16, 242, 0.05));*/
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 15px 0 60px 0;
    margin-bottom: 0rem;
    transition: 0.5s;
    margin-top: 6rem;
}

.bg-breadcrumb::after {
    content: "";
    position: absolute;
    bottom: 0%;
    left: 10%;
    width: 100px;
    height: 100px;
    border-radius: 300px;
    border: 15px solid rgba(247, 71, 128, 0.05);
    background: transparent;
    animation: RotateMoveSingle 5s linear infinite;
    z-index: -1;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
    z-index: 2;
}


@keyframes RotateMoveSingle {
    0% {
        -webkit-transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
        transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
    }
      100% {
        -webkit-transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
        transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
    }

    0% {bottom: 0px;}
    50%   {left: -5px;}
    75%   {bottom: 5%;}
    100%  {bottom: 0px;}
}

.bg-breadcrumb::before {
    content: "";
    position: absolute;
    top: 7%;
    right: 7%;
    width: 100px;
    height: 100px;
    border-radius: 300px;
    border: 15px solid rgba(247, 71, 128, 0.04);
    background: transparent;
    animation: RotateMoveSingle 5s linear infinite;
    z-index: -1;
}

@keyframes RotateMoveSingle {
    0% {
        -webkit-transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
        transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
    }
      100% {
        -webkit-transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
        transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
    }

    0% {top: 0px;}
    50%   {top: 20%;}
    100%  {top: 0px;}
}

@media (max-width: 992px) {
    .bg-breadcrumb {
        padding-top: 0px  !important;
        padding-bottom: 0px;
        margin: 0px;
    }
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-dark) !important;
}


.breadcrumb-animation {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.breadcrumb-animation li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(102, 16, 242, 0.07);
    animation: animate 25s linear infinite;
    bottom: -150px;
    
}

.breadcrumb-animation li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.breadcrumb-animation li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.breadcrumb-animation li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.breadcrumb-animation li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.breadcrumb-animation li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.breadcrumb-animation li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.breadcrumb-animation li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.breadcrumb-animation li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.breadcrumb-animation li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.breadcrumb-animation li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}

@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}
/*** Single Page Hero Header End ***/




.hero-header {
    position: relative;
    background: rgb(205 205 205 / 22%);
}

.hero-header .rotate-img .rotate-sty-2 {
    position: absolute;
    top: 100px;
    left: 50px;
    width: 50px;
    height: 50px;
    border-radius: 30px;
    border: 5px solid rgba(247, 71, 128, 0.1);
    background: transparent;
    animation: RotateMoveSty-2 45s linear infinite;
    transition: 0.5s;

}

@keyframes RotateMoveSty-2 {
    0%   {left: 0px;}
    40%   {top: -30px;}
    50%   {left: 500px;}
    70%   {top: 200px;}
    80%   {left: 100px;}
    95%   {top: -30px;}
    100%  {left: 0px;}
}
@keyframes RotateMoveSty-21 {
    0%   {right: 0px;}
    40%   {top: -30px;}
    50%   {right: 500px;}
    70%   {top: 200px;}
    80%   {right: 100px;}
    95%   {top: -30px;}
    100%  {right: 0px;}
}

.hero-header .rotate-img img {
    position: relative;
    animation: RotateMove 30s linear infinite;
    z-index: -1;
}

@keyframes RotateMove {
    0%   {left: 0px;}
    50%   {left: 200px;}
    100%  {left: 0px;}
}


@media (max-width: 992px) {
    .hero-header {
        padding-top: 115px;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .hero-header .rotate-img img {
        margin-top: 100px;
    }
   
}
/*** Hero Header End ***/


/*** Service Start ***/
.service .service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
}

.service .service-item,
.service .service-item .service-icon,
.service .service-item a {
    transition: 0.5s;
}

.service .service-item:hover {
    background: rgb(255 255 255 / 79%);
    border: 1px;
}


.service .service-item:hover .service-icon,
.service .service-item:hover a {color: #000;}

.service .service-item:hover a:hover {
}

/*** Service End ***/


/*** Features Start ***/
.feature .feature-img {
    background: var(--bs-light);
    border-radius: 58% 42% 21% 79% / 30% 29% 71% 70%;
}
/*** Features End ***/


/*** Pricing Start ***/
.price .price-item {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    background: #fcfcfc;
    border-radius: 15px;
    border: 2px solid #ffbbd1;
    box-shadow: 0px 0px 21px #ffd5e3;
}

.price .price-item:hover {
    background: var(--bs-white) !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.price .price-item .pice-item-offer {
    position: absolute;
    width: 200px;
    height: 110px;
    top: -45px;
    right: -80px;
       background: #000000 !important;
    color: var(--bs-white);
    transform: rotate(42deg);
    display: flex;
    align-items: end;
    justify-content: center;
    padding-bottom: 10px;
}
/*** Pricing End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
}

.blog .blog-item .blog-img {
        height: 300px;
    position: relative;
    overflow: hidden;
    background: rgba(102, 16, 242, 0.2);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.blog .blog-item .blog-img .blog-info {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 20px;
    background: rgba(102, 16, 242, 0.2);
    color: var(--bs-white) !important;
    display: flex;
    align-items: end;
    justify-content: space-between;
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-info {
    background: rgba(0, 0, 0, .4);
}


.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover img {
    transform: scale(1.3);
}
/*** Blog End ***/


/*** Testimonial Start ***/
.testimonial {
    position: relative;
    background: var(--bs-light);
    overflow: hidden;
    z-index: 1;
}

.testimonial-inner {
    background: #ffffff;
    text-align: left;
    margin: 11px 0px;
    border-radius: 13px;
    text-align: center;
}
.testimonial .testimonial-carousel.owl-carousel {
    position: relative;
    padding: 0 35px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 65px;
    height: 65px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 16, 242, 0.09);
    color: var(--bs-primary);
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 65px;
    height: 65px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 16, 242, 0.09);
    color: var(--bs-primary);
    transition: 0.5s;
}


.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white) !important;
}


.testimonial-carousel .owl-dots {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot img {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    margin-right: 15px;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    width: 70px;
    height: 70px;
    border-radius: 40px;
    border: 4px solid var(--bs-secondary);
}
.iacelm img{
    height: 100%;
    object-fit: cover;
    width: 100%;
    transition: all 0.4s ease-in-out;
}
.iacelm img:hover{
    transform: scale(1.04);
}
.iacelm {
    height: 290px;
    overflow: hidden;
    display: block;
    position: relative;
}
@media (min-width: 900px) {
    .testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .testimonial .testimonial-carousel.owl-carousel {
        padding: 0;
    }

    .testimonial .testimonial-carousel .owl-nav .owl-prev {
        margin-top: -250px;
        margin-left: -15px;
    }

    .testimonial .testimonial-carousel .owl-nav .owl-next {
        margin-top: -250px;
        margin-right: -15px;
    }
}
/*** Testimonial End ***/

/*** Contact Start ***/
.contact {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    z-index: 1;
}

.contact::after {
    content: "";
    position: absolute;
    bottom: 10%;
    left: -1%;
    width:50px;
    height: 50px;
    border-radius: 200px;
    border: 10px solid rgba(102, 16, 242, 0.05);
    background: transparent;
    animation: ContactMoveLeft 50s linear infinite;
    z-index: 1;
}

@keyframes ContactMoveLeft {
    0%   {left: 0px;}
    25%   {bottom: 100px;}
    50%   {left: 90%;}
    75%   {bottom: 80%;}
    100%  {left: 0px;}
}

.contact::before {
    content: "";
    position: absolute;
    bottom: 10%;
    right: -1%;
    width: 50px;
    height: 50px;
    border-radius: 200px;
    border: 10px solid rgba(102, 16, 242, 0.05);
    background: transparent;
    animation: ContactMoveRight 50s linear infinite;
    z-index: 1;
}

@keyframes ContactMoveRight {
    0%   {right: 0px;}
    25%   {bottom: 100px;}
    50%   {right: 90%;}
    75%   {bottom: 80%;}
    100%  {right: 0px;}
}
/*** Contact End ***/


/*** Footer Start ***/

.footer .footer-item a {
    line-height: 15px;
    color: #fff;
    transition: 0.5s;
    padding: 6px 0px;
    display: inline-block;
    width: 100%;
    font-size: 16px;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 0.1px;
    color: #fb110c;
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgb(170 170 170 / 31%);
}
/*** copyright end ***/

/*start css*/
.hero-header h3{
    position: relative;
}
.hero-header h3 svg {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
    margin-top: 0.2rem;
}
.service {
    background: linear-gradient(0deg, #f5f5f5, #fff);
        position: relative;
}
.service-content h4{
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-top: 4px;
}
/*--------------------------------------------------------------
# Features Cards Section
--------------------------------------------------------------*/
.features-cards {
  --default-color: #555;
  --heading-color: #333;
}

.features-cards .feature-box {
  height: 100%;
  padding: 40px 30px;
  border-radius: 10px;
}

.features-cards .feature-box i {
  font-size: 40px;
  /* display: inline-block; */
  /* line-height: 0; */
  color: var(--accent-color);
  margin-bottom: 10px;
}

.features-cards .feature-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.features-cards .feature-box p {
  font-size: 15px;
  margin-bottom: 0;
}

.features-cards .feature-box.orange {
  background-color: #f3f3f3;
}

.features-cards .feature-box.orange i {
  color: #edb86e;
}

.features-cards .feature-box.blue {
  background-color: #fce8ff;
}

.features-cards .feature-box.blue i {
  color: #000000;
}

.features-cards .feature-box.green {
  background-color: #d9ffee;
}

.features-cards .feature-box.green i {
  color: #48c88a;
}

.features-cards .feature-box.red {
  background-color: #ffdada;
}

.features-cards .feature-box.red i {
  color: #f28484;
}
.skye{
        position: absolute;
        bottom: -93px;
        left: 0;
        right: 0;
        transform: rotate(180deg);
}
.footser_xl{
        position: absolute;
        top: -50px;
        left: 0;
        right: 0;
        transform: rotate(0deg);
}
.gradient-1 {
    background-image: linear-gradient(120deg, #971e20 10%, #971e20 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.fs-16{
    font-size:16px;
}

.demo-row {background-color: #2f7cff;position: relative;z-index: 1;}
.demo-bg-img {filter: brightness(100);opacity: 0.4;position: absolute;left: 0;right: 0;top: 0;bottom: 0;width: 100%;height: 100%;z-index: -1;object-position: center center;object-fit: cover;}
.demo-img { position: relative; height: 100%; }
.demo-img figure { max-width: 320px; width: 80%; margin: 0 auto; position: absolute; bottom: 0; left: 0; right: 0; }
.section-row {
    padding: 5rem 0;
}
.demo-img figure img{
    width: 100%;
}
.card.main-service-card { border: 1px solid rgba(0,0,0,0.05); background-color: #f2f4f7; border-radius: 24px; padding: 2rem; height: 100%; position: relative; z-index: 1; overflow: hidden; }
.main-service-card.main-service-card-01 {background: #E4F1FF;}
.main-service-card-01 figure { max-width: 48%; margin: auto auto 0 0; position: absolute; z-index: -1; right: 4%; bottom: 0; }
.main-service-card img { width: 100%; height: auto; }
.main-service-card-01 .main-service-content { position: static; left: 2rem; width: 44%; top: 2.6rem; }
.main-service-card-02 figure { max-width: 80%; margin: 4% auto 0; position: relative; z-index: -1; }
.main-service-card.main-service-card-02 {background: #D0FFEE;padding-bottom: 0;}
.main-service-card.main-service-card-03 {/* background: #C8E2FF; */}
.main-service-card-03 figure { max-width: inherit; margin: auto -2rem -2rem; padding-top: 1rem; position: relative; z-index: -1; }
.main-service-card.main-service-card-04 {background: #ffd2e0;}
.main-service-card-04 figure { margin: 1.1rem -2rem -2rem -2rem; position: relative; z-index: -1; }
.sliderbrand {
  width: 100%;
    table-layout: fixed;
    padding: 10px 0;
    background: #fff;
    border-radius: 35px;
    margin-top: 20px;
    box-shadow: 0px 2px 4px #ddd;
}

.sliderbrand .item {
  text-align: center;
  padding: 20px;
}

.sliderbrand img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  width:100px;
}
.blog .blog-item img{
    width: 100px;
}
.fa-1x{
    font-size:23px;
}
.adres_contact h4{
    font-size: 20px;
    font-weight:600;
}
.faq-page .accordion-button {
    background-color: #ff4c4f;
    color:#fff;
    }

.w-10 {
    width: 2.5rem
}
.h-10 {
    height: 2.5rem
}
.absolute {
    position: absolute;
}
.inline{
    display: inline;
}
.rounded-full {
    border-radius: 9999px
}
.imgsenter{
    margin: 3px 6px;
    display: table;
    padding: 4px;
}
@media (min-width:1100px){
    .pl-lg-4 {
    padding-right: 20px;
}
}
@media (max-width:767px){
    .row{
        margin: 0px;
    }
    .demo-img figure {
    max-width: 289px;
    width: 30%;
    left: auto;
    }
    .section-row {
    padding: 2rem 30px;
}
    .main-service-card-01 .main-service-content{
    width: 100%;
}
    .skye{
    bottom: -20px;
}
    .footer {
        padding:0px 15px !important;
    }
    .footser_xl {
    top: -24px;
}
}
.iacelm h2 {
    background: rgb(73 17 18 / 82%);
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0px;
    font-size: 20px;
    padding: 20px 0px;
}
.iacelm h2 a{
    color: #fff;
}
.secshop h3{
    font-size: 20px;
    padding:10px 0px;
}
.sticky-top.navbar-light h1{
    color: #000 !important;
}
.orange{
 color: #491112;
}
.thumbse{
   
    border-radius: 10px;
    overflow: hidden;
}
 .thumbse img {
    transition: all 0.4s;
    widows: 100%;
    border-radius: 10px;
}
.feature-item {
    background: #fafafa;
    padding: 18px;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
    margin: 10px 0px;
}
.feature-item:hover{
    background-color: #eee;
}
.feature-item h4 {
}
.feature-item .thumb{
    width: 300px;
}
.feature-item:hover .thumbse img {
    transform: scale(1.08);
}
.dz-date {
    color: #fff;
    background: linear-gradient(90deg, #491112 -2.36%, #000000 101.57%);
    border-radius: 7px;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    padding: 7px 9px;
}
.featuresef {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.featuresef::after {
    position: absolute;
    left: 0px;
    top: 98px;
    content: "";
    height: 200px;
    width: 200px;
    background: url(../img/10.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}
.featuresef .rotate-img img {
    width: 50px;
    position: relative;
    animation: RotateMove 30s 
linear infinite;
    z-index: -1;
}

.featuresef .rotate-img .rotate-sty-2 {
    position: absolute;
    top: 100px;
    right: 50px;
    width: 50px;
    height: 50px;
    border-radius: 30px;
    border: 5px solid rgba(247, 71, 128, 0.1);
    background: transparent;
    animation: RotateMoveSty-21 45s 
linear infinite;
    transition: 0.5s;
}
.slider_podcast::after {
    content: "";
    position: absolute;
    right: 100px;
    bottom: 100px;
    width: 58px;
    height: 50px;
    background: url(../img/sty-1.png) center center no-repeat;
    animation: RotateMoveSty-3 45s 
linear infinite;
    transition: 0.5s;
    z-index: -1;
}
.blogsecpage .blog-item{
    margin:10px 0px;
}
.pagination {
  gap: 8px;
  margin-top: 25px;
}

.pagination .page-link {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 26px;
  text-align: center;
  background-color: #f8f9fa;
  color: #333;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

.pagination .page-link:hover {
  background-color: #c6b17c;
  color: #fff;
  border-color: #c6b17c;
}

.pagination .active .page-link {
  background-color: #491112;
  border-color: #491112;
  color: #fff;
}

.pagination .disabled .page-link {
  background-color: #e9ecef;
  color: #999;
  border-color: #ddd;
}

@media (min-width:992px){
    .itemactikey{
        width: 20%;
    }
}
.bg-holder {
    position: absolute;
    width: 100%;
    min-height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    will-change: transform, opacity, filter;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-repeat: no-repeat;
    z-index: 0;
}
.bg-holder.overlay:before {
    position: absolute;
    content: "";
    background: rgba(0, 0, 0, .55);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.py-10{
    padding:200px 0px;
}


.border-dashed-start {
    border-left: 2px dashed #8f5151 !important;
}
.border-md-dashed-end {
        border-right: 2px dashed #8f5151 !important;
    }
    .border-md-start-0 {
        border-left: 0 !important;
    }
    .redsel{
        background-color:#eee;
    }
    .denoln {
    gap: 10px;
}

.howwework  h5{
    margin-bottom: 20px;
}



.section.mod--5 {
    z-index: 5;
    overflow: visible;
}
.section.mod--4 {
    z-index: 4;
}
.section.mod--3 {
    z-index: 3;
}

.section.mod--2 {
    z-index: 2;
}
.section.mod--1 {
    z-index: 1;
}
.section.mod--0 {
    z-index: 0;
    }
/*.section-slide {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    height: 100vh;
    background-color: #ddd;
}
.section-slides {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1;
    height: 100vh;
}

.hero-header, .section-slide {
    will-change: transform;
  transform-style: preserve-3d;
  transition: transform 0.05s linear;
}
@keyframes moveUp {
  from { transform: translateY(0); }
  to { transform: translateY(-200px); }
}

*/
.fs-50{
    font-size:45px;
}
.section-wrapper{
  
}
#features-cards, .blog  {
    background: #f8efe5;
}
/*html, body {
  height: 100%;
  margin: 0;
  scroll-behavior: smooth;
  overflow-y: auto; 
  scroll-snap-type: y mandatory;
  background-color: #cf5c3f; 
}
body::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

body::-webkit-scrollbar
{
    width: 12px;
    background-color: #F5F5F5;
}

body::-webkit-scrollbar-thumb
{
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #D62929;
}*/
/*
html, body {
  height: 100vh;
  margin: 0;
  overflow-y: scroll; 
}*/

/* scrollbar style: visible track, hidden thumb */
/*body::-webkit-scrollbar { width: 10px; }
body::-webkit-scrollbar-track { background: rgba(255,255,255,0.25); }
body::-webkit-scrollbar-thumb { background: transparent; }
body { scrollbar-width: thin; scrollbar-color: transparent rgba(255,255,255,0.25); }*/

    .section {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 110vh;
      display: flex;
      justify-content: center;
      align-items: self-start;
      font-size: 14px;
      color: white;
      transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1), opacity 1s ease;
      will-change: transform, opacity;
      transform: translateY(0);
      opacity: 1;
      overflow: hidden;
      border-radius:0px 0px 100px 100px;
    }
 .hero-header.section{
    height:150vh;
 }
/* #footer.section {
 height: 100vh;   
 }*/
    /* Example gradient backgrounds */
    .section:nth-child(1) {background: linear-gradient(120deg, #ffffff, #fcdbd9);}
    .section:nth-child(2) { background: linear-gradient(120deg, #fff, #ddd); }
    .section:nth-child(3) {    background: linear-gradient(120deg, #685757, #ff4e4e);}
    .section:nth-child(5) {    background: linear-gradient(120deg, #ffffff, #fcdbd9);}
 #footer {    background: linear-gradient(120deg, #b74e46, #ebd0be);}
    /* State classes */
    .section.hidden {
      transform: translateY(-100%);
      opacity: 1;
    }
    .section.behind {
      transform: translateY(0);
      opacity: 1;
    }
    .absolute_hero{
       position: absolute;
    width: 63px;
    top: 24%;
    }
footer {
  background: #491112;
 position: fixed;
 left:0;
 right:0;
 overflow: hidden;
}
.footer {
    width: 100%;
}
footer.visible {
  display: flex;
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}
.stepshand {
    position: absolute;
        left: 111px;
    top: 105px;
    z-index: 1;
    -webkit-transition: .8s;
    transition: .8s;
}
.steps__list {
    width: 100%;
    max-width: 560px
}
.steps__numb {
    position: absolute;
    left: 0;
    top: -10px
}
.steps__numb-img {
    position: relative;
    z-index: 0
}
.steps__numb-txt {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: #f8efe5;
    font-weight: 700;
    text-align: center;
    letter-spacing: -.01em
}
.steps__list-p {
    color: rgba(27,27,27,.7);
    line-height: 1.9em
}
.steps__list-arrow-wrap {
    position: absolute;
    left: auto;
    top: 10px;
    right: 0;
    bottom: auto;
    overflow: hidden
}
.steps__list-arrow-wrap.mod--2 {
    left: -100px;
    right: auto;
    -webkit-transform: rotateX(0) rotateY(-180deg) rotateZ(0);
    transform: rotateX(0) rotateY(-180deg) rotateZ(0);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d
}
.steps__list-arrow {
    display: block
}
.steps__columns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}
.steps__col {
    position: relative;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1
}
.steps__illustr {
    position: relative;
    z-index: 0;
    display: block
}
.steps__list-item {
    position: relative;
    margin-bottom: 35px;
    padding-right: 80px;
    padding-left: 74px
}
.steps__list-item.mod--2 {
    margin-left: 100px;
    padding-right: 0
}
.steps__list-title{
    font-size:20px;
    font-weight: 600;
}
.courses__type {
    margin-bottom: 16px;
    font-size: 22px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
}
.courses__block {
    position: relative;
    z-index: 2;
    display: -ms-flexbox;
    display: flex;
    min-height: 420px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    background-color: #fff;
    cursor: pointer;
}
.courses__more {
       position: relative;
    z-index: 2;
    display: table;
    padding: 10px 20px;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    color: #ffffff;
    font-size: 18px;
    letter-spacing: .01em;
    text-decoration: none;
    text-transform: uppercase;
    background: #ff4e4e;
    border-radius: 7px;
}
.courses__block:hover .courses__block-bg {
  transform: scale(1);
}
.courses__block-bg {
    position: absolute;
    left: -100px;
    top: auto;
    right: auto;
    bottom: -100px;
    z-index: -1;
    width: 700px;
    height: 700px;
    border-radius: 1000px;
    background-color: #fff;
}
.courses__illustr-wrap {
    position: absolute;
    left: auto;
    top: auto;
    right: 0;
    bottom: 0;
    z-index: 0;
}
.courses__illustr {
    position: relative;
    z-index: 0;
    display: block;
    -webkit-transition: .5s;
    transition: .5s;
    width: 157px;
}
.courses__illustr-elem.mod--5 {
    position: absolute;
    right: 68px;
    bottom: 53px;
    width: 22px;
    height: 6px;
    border-radius: 100px;
    background-color: #9b5c8f;
    opacity: 1;
    -webkit-transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    transform: rotate(-20deg);
}
.courses__illustr-elem-wrap.mod--4 {
    left: 190px;
    bottom: 180px;
}

.courses__illustr-elem-wrap {
    position: absolute;
    -webkit-transition: .5s;
    transition: .5s;
}
.courses__illustr-elem.mod--dot {
    top: 34px;
    right: 58px;
    width: 4px;
    height: 4px;
    border-radius: 100px;
    background-color: #000;
}
.courses__illustr-elem-wrap.mod--3 {
    left: 100px;
    bottom: 220px;
}
.courses__illustr-elem.mod--ball {
    top: 0;
    right: 109px;
    width: 14px;
    height: 14px;
    border-radius: 100px;
    background-color: #ebc7b5;
}
.courses__illustr-elem-wrap.mod--2 {
    left: 9px;
    bottom: 160px;
}
.courses__illustr-elem.mod--blue {
    left: 9px;
    top: 41px;
}
.courses__illustr-elem-wrap.mod--1 {
    left: 2px;
    bottom: 30px;
}
.courses__illustr-elem.mod--circle {
    width: 12px;
    height: 12px;
    border: 1px solid #000;
    border-radius: 100px;
}
.courses__block:hover a {
    padding-right: 38px;
}
.courses__block:hover .courses__illustr-elem.mod--5 {
    transform: rotate(20deg);
    bottom: 59px;
}
.courses__block:hover .courses__illustr-elem-wrap.mod--3, .courses__block:hover .courses__illustr-elem-wrap.mod--4 {
    transform: translate(0px, -10px);
}
.courses__block:hover .courses__illustr-elem-wrap.mod--2 {
    transform: translate(-10px, -10px);
}
.courses__block:hover .courses__illustr-elem-wrap.mod--1{
    transform: translate(-10px, 0px);
}
.colmn-2{
    column-count: 2;
}
.absolute1{
    position: absolute;
    width: 44%;
    right: 0;
    z-index: -1;
    bottom: 0;
}
.absolute2{
    position: absolute;
    width: 23%;
}
.reviews__ava-dot {
    position: absolute;
    left: auto;
    top: 15px;
    right: 3px;
    bottom: auto;
    z-index: 1;
    width: 8px;
    height: 8px;
    border-radius: 100px;
    background-color: #000;
}
.reviews__ava-circle {
    position: absolute;
    left: 0;
    top: 5px;
    z-index: 1;
    width: 22px;
    height: 22px;
    border: 2px solid #000;
    border-radius: 100px;
}
.border-right{
    border-right: 2px dashed;
    border-color:#000;
}
   .counter{  
    padding-top: 50px;
   }
   .spancount{
    position: relative;
    border-right:2px dashed;
    border-color:#ddd;
   }

   .image_cnt{
        text-align: center;
   }
   .image_cnt img{
   }
   .hero__counts-numb{
    font-size: 55px;
    color: #000;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 16%;
   }
   .spancount p {
    color: #000;
    font-size: 17px;
    text-align: center;
    margin-top: 20px;
}
.faq-page p{
    color:#000;
}
.faq-page .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }
.service-content p{
    color:#000;
}
span.text-gold {
    color: #c6b17c;
}
.chat-img-col4{
    display: flex;
    width: 50%;
}
.chat-img-col4 img {
    width: 100%;
    padding: 0px 10px 5px;
}
.qr-code-img img {
    background-color: #fff;
    padding: 6px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 2px;
    position: relative;
    width: 100%;
    height: auto;
}
.chat-img{
    
margin: 10px;
    
background: #fff;
    
border-radius: 6px;
}
.phone_x p {
    font-size: 16px;
    margin: 11px 11px;
}