/********** Template CSS **********/
:root {
    --primary: #ec1c24;
    --secondary: #FDBE33;
    --light: #F4F6F8;
    --dark: #040F28;
}
body {
    margin: 0;
    font-family: "poppins",sans-serif;
}
.pt-6 {
    padding-top: 90px;
}

.pb-6 {
    padding-bottom: 90px;
}

.py-6 {
    padding-top: 90px;
    padding-bottom: 90px;
}

.btn {
    position: relative;
    font-weight: 600;
    text-transform: uppercase;
    transition: .5s;
}

.btn::after {
    position: absolute;
    content: "";
    width: 0;
    height: 5px;
    bottom: -1px;
    left: 50%;
    background: var(--primary);
    transition: .5s;
}

.btn.btn-primary::after {
    background: var(--dark);
}

.btn:hover::after,
.btn.active::after {
    width: 50%;
    left: 25%;
}

.btn-primary {
    color: #FFFFFF;
}

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

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

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

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right:20px;
    bottom:48px;
    /*margin-left: -22px;*/
    border-radius: 10px;
    z-index: 99;
}

.bg-dark-radial {
    background-image: -webkit-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-image: -moz-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-image: -ms-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-image: -o-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-image: repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-size: 3px 3px;
}

.bg-light-radial {
    background-image: -webkit-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -moz-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -ms-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -o-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-size: 3px 3px;
}
.btn-yellow{
    background: #ddb768;
}
.text-yellow{
    color: #ddb768;
}
.logo img{
    width: 170px;
}
.navbar-dark .navbar-nav .nav-link {
    position: relative;
    padding: 35px 15px;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--light);
    outline: none;
    transition: .5s;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }
}
.dropdown-item:hover, .dropdown-item:focus {
    color: #fff;
    background-color: #ff0000;
}
.dropdown-item {
    padding: 0.55rem 1rem;
}
[id]{
    scroll-margin-top: 7rem;
}

/*==========================================*/


#header-carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: rgba(4, 15, 40, .7);*/
     background: rgb(86 86 88 / 0.7);
    z-index: 1;
}

@media (max-width: 576px) {
    #header-carousel .carousel-caption h4 {
        font-size: 18px;
        font-weight: 500 !important;
    }

    #header-carousel .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.tp-slider-2-shape-1 {
    position: absolute;
    bottom: 0;
    left: 0% !important;
    /*z-index: 2;*/
    /*transform: translateX(200px);*/
    opacity: 0;
  }
  .tp-slider-2-shape-2 {
  position: absolute;
    bottom: 0;
    right: 00px;
    z-index: 1;
    /*transform: translateX(500px);*/
    opacity: 0;
}
.carousel-item .animated-title {
    opacity: 0;
}

/* Define the animation */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Apply animation only when the parent has the .active class */
.carousel-item.active .animated-title {
  animation: fadeInLeft 1s ease-in-out forwards;
}

.carousel-item.active .tp-slider-2-shape-1 {
  animation: fadeInRight 1s ease-in-out forwards;
}

.carousel-item.active .tp-slider-2-shape-2 {
  animation: fadeInRight 1s ease-in-out forwards;
}
.text-justify{
    text-align: justify;
}
@media (max-width: 576px) {
.flex-sm-col-reverse{
    flex-direction: column-reverse;
}
}

/*==================================*/
.page-header {
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(4, 15, 40, .7), rgba(4, 15, 40, .7)), url(../img/page-banner.jpg) center center no-repeat;
    background-size: cover;
}
/*========services
==================================*/
.service-section{
    background: url(../img/servicebg.jpg) no-repeat center;
    background-size: cover;
}
.service-item {
    border-radius: 20px;
    overflow: hidden;
    text-align: left;
    height: 100%;
}
.service-item .service-icon {
    margin-top: -50px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.service-item .service-icon div {
    transition: .2s;
    color: #deb868;
    font-size: 2.4rem;
    font-weight: 700;
    
}
/*
.service-item:hover .service-icon div {
    font-size: 60px;
}*/
.li-before li{
    position: relative;
    padding-left: 25px;
    text-align: left;
    list-style: none;
}
.li-before li:before{
    position: absolute ;
    content: "\F270";
    left: 0;
    font-family: bootstrap-icons !important ;
    color: var(--primary);

}
.services-carousel .owl-stage{display: flex;}
/* Control buttons */
.services-carousel .owl-prev,
.services-carousel .owl-next {
  align-items: center;
  background-color: rgb(137 133 133 / 50%);
  border: none;
  /*border-radius: 50%;*/
  color: white;
  cursor: pointer;
  display: flex;
  height: 40px;
  justify-content: center;
  position: absolute;
  text-decoration: none;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.3s ease;
  width: 40px;
  z-index: 10;
}

.services-carousel .owl-prev:hover,
.services-carousel .owl-next:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.services-carousel .owl-prev {
  left: -10px;
}

.services-carousel .owl-next {
  right: -10px;
}
.portfolio-item {
    /*margin-bottom: 60px;*/
}

.portfolio-title {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 120px;
    padding: 0 30px;
    right: 30px;
    left: 30px;
    bottom: -60px;
    background: #FFFFFF;
    z-index: 3;
}

.portfolio-btn {
    position: absolute;
    display: inline-block;
    top: 50%;
    left: 50%;
    margin-top: -60px;
    margin-left: -60px;
    font-size: 120px;
    line-height: 0;
    transition: .1s;
    transition-delay: .3s;
    z-index: 2;
    opacity: 0;
}

.portfolio-item:hover .portfolio-btn {
    opacity: 1;
}

.portfolio-box::before,
.portfolio-box::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    transition: .5s;
    z-index: 1;
    background: rgba(4, 15, 40, .7);
}

.portfolio-box::before {
    left: 0;
}

.portfolio-box::after {
    right: 0;
}

.portfolio-item:hover .portfolio-box::before {
    left: 0;
    width: 50%;
}

.portfolio-item:hover .portfolio-box::after {
    right: 0;
    width: 50%;
}

@media (min-width: 992px) {
    .testimonial,
    .contact-form {
        margin-left: -90px;
    }
}

@media (min-width: 992px) {
    .footer::after {
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        top: 0;
        left: 50%;
        background: var(--primary)
    }
}

.footer-shape::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 100%;
    top: 0;
    left: -40px;
    background: var(--primary);
    transform: skew(40deg);
}
/*==================about
==================================================================*/
.home-about:before{
      position: absolute;
    content: "";
    right: 0px;
    width: 300px;
    height: 350px;
    top: 0px;
    background: url(../img/about-shapes1.png) no-repeat top ;
    opacity: 0.2;
}
.about-one-leftbox{
  position: relative; 
}
.about-one-leftbox img{
  border-radius: 30px;
}
.about-one-leftbox .box-style-area{
  position: absolute;
  width: auto;
  max-width: 100%;
  bottom: 0;
  right: 0;
}
.pbmit-ihbox-style-12 {
    padding: 10px 0 0 10px;
    position: relative;
    background-color: #fff;
    border-radius: 40px 0 0;
}
.pbmit-ihbox-style-12 h4{
  font-weight: 400;
  color: #fff;
  margin-bottom: 0;
  margin-top:5px;
}
.pbmit-ihbox-style-12 .pbmit-ihbox-headingicon {
    text-align: center;
    display: inline-block;
    background-color: var(--primary);
    padding: 20px 50px;
    border-radius: 30px;
}
.pbmit-sticky-corner {
    width: 30px;
    height: 30px;
    position: absolute;
    transform: rotate(-90deg);
}
.pbmit-bottom-left-corner {
    bottom: 0;
    left: -30px;
    transform: none;
}

.pbmit-top-right-corner {
    top: -30px;
    right: 0;
    transform: none;
}
.pbmit-sticky-corner svg path {
    fill: #fff;
}

.about-one-rightbox h6{
  color: #ff7f00;
  position: relative;
  padding-left:15px;
}
.about-one-rightbox p{
    line-height: 2rem;
    letter-spacing: .3px;
}
.about-one-rightbox h6:before{
      position: absolute;
    content: "";
    left: 0;
    width: 0;
    height: 0;
    border-left: solid 8px #ff7f00;
    border-bottom: solid 6px transparent;
    border-top: solid 6px transparent;
    top: 5px;
}

.about-one-rightbox h2{
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 2.7rem;
}
.about-ihbox-box {
    border: 1px solid rgba(64, 50, 38,.15);
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    padding: 5px;
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.about-ihbox-box .icon{
    width: 60px;
    height: 60px;
    font-size: 30px;
    line-height: 30px;
    background-color: #fdf6f6;
    color: #ff7f00;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 20px;
    transition: all 0.5s ease;
}
.about-ihbox-box .cont{
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: #000;
    margin: 0;
    }
.about-ihbox-box .icon img{
  width:30px;
  transition: all 0.5s ease;
}
.about-ihbox-box:hover .icon{
  background:var(--primary);
}
.about-ihbox-box:hover .icon img{
  filter:brightness(0)invert(1);
}

/** chooseus-section **/

.chooseus-section{
overflow: hidden;
}


.chooseus-section .single-item-list li {
  counter-increment: item;
  position: relative;
  padding-left: 40px; /* Space for the circle */
  margin-bottom: 18px;
  list-style: none;
  border-bottom: 1px solid #deb868;
}
.chooseus-section .single-item-list  li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 37px;
    background-color: #deb868;
    color: white;
    /* border-radius: 50%; */
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    transform: skewX(10deg);
}

.chooseus-section .single-item-list h4{
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  
}

.chooseus-section .sec-title h2{
  margin-bottom: 21px;
}

.chooseus-section .sec-title p{
  font-size: 16px;
  line-height: 28px;
  color: rgba(255,255,255,0.6);
}

.chooseus-section .img-inner img {
    position: relative;
    max-width: none;
    float: left;
   border-radius: 20px;
   box-shadow: 0px 0px 15px rgb(0 0 0 /0.2);
}

.chooseus-section .img-inner h2{
    position: absolute;
    bottom: 7px;
    content: "";
    left: -15px;
    color: #fff;
    font-size: 1.5rem;
    background: #ff0000;
    border-radius: 20px;
    display: inline-block;
    padding: 20px;
    padding: 30px 20px;
    line-height: 2rem;

}
@media only screen and (max-width: 767px) {
.chooseus-section .img-inner img {
    position: relative;
    max-width: 100%;
}
.chooseus-section .img-inner h2{
    position: relative;
}
.chooseus-section .img-inner h2 br{ display: none};
}
/*===================================*/
.cta-section{
    background: url(../img/sliders/banner-2.jpg)  no-repeat center;
    background-size:  cover;
    position: relative;
}
.cta-section:before{
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    opacity: 0.8;
}
/*=======================================*/
.work-porcess-area .process-info .single-process {
    width: 160px;
    height: 160px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    padding-top: 53px;
    margin: 0 auto;
    background: #FFFFFF;
    -webkit-box-shadow: 0 10px 30px 0 rgba(248, 32, 72, 0.4);
    -o-box-shadow: 0 10px 30px 0 rgba(248, 32, 72, 0.4);
    -moz-box-shadow: 0 10px 30px 0 rgba(248, 32, 72, 0.4);
    -ms-box-shadow: 0 10px 30px 0 rgba(248, 32, 72, 0.4);
    box-shadow: 0 10px 30px 0 rgba(248, 32, 72, 0.4);
    position: relative;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
}

.work-porcess-area .process-info .single-process:hover {
    -webkit-box-shadow: 0 10px 30px 0 rgba(248, 32, 72, 0.4)
    -o-box-shadow: 0 10px 30px 0 rgba(248, 32, 72, 0.4)
    -moz-box-shadow: 0 10px 30px 0 rgba(248, 32, 72, 0.4)
    -ms-box-shadow: 0 10px 30px 0 rgba(248, 32, 72, 0.4)
    box-shadow: 0 10px 30px 0 rgba(248, 32, 72, 0.4)
}

.work-porcess-area .process-info .single-process:after {
    position: absolute;
    content: "\f138";
    font-family: "bootstrap-icons";
    top: 50%;
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -65px;
    color: #f82249;
}

.work-porcess-area .process-info .single-process.first {
    background: var(--primary);
}

.work-porcess-area .process-info .single-process.first i:before {
    color: #FFFFFF;
}

.work-porcess-area .process-info .single-process.first h4 {
    color: #FFFFFF;
}

.work-porcess-area .process-info .single-process.thard {
    background: var(--primary);
}

.work-porcess-area .process-info .single-process.thard i:before {
    color: #FFFFFF;
}

.work-porcess-area .process-info .single-process.thard h4 {
    color: #FFFFFF;
}

.work-porcess-area .process-info .single-process.last:after {
    display: none;
}

.work-porcess-area .process-info .single-process i {
    display: block;
    line-height: 25px;
    margin-bottom: 12px;
}

.work-porcess-area .process-info .single-process i:before {
    font-size: 36px;
    color: #f82249;
}

.work-porcess-area .process-info .single-process h4 {
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    color: #f82249;
}

@media only screen and (max-width: 767px) {
     .work-porcess-area .process-info .single-process::after {
        display: none;
    }
    .work-porcess-area .process-info .single-process{
        margin-top: 30px;
    }
    .work-porcess-area .section-title h2{
        margin-bottom: 5px;
    }
    .section-header h2 {
    font-size: 30px;
}
}
.why-accordion .accordion-item {
    background-color: #fff;
    border: 1px solid #c3c3c3 !important;
}

.design-box{
    border-radius: 20px;
    border-bottom: 3px solid var(--primary);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.175) !important;
}

#fixedWhatsAppIcon {
  display: block;
  position: fixed;
  left: 20px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  background-color: #54b460;
  text-align: center;
  line-height: 50px;
  color: #fff;
  border-radius: 50%;
  font-size: 32px;
  z-index: 9999;
  transition: all ease-in 0.5s;
}
#fixedWhatsAppIcon:hover {
  background-color: #339933;
}
 
 @keyframes bounce-up {
    0% {
        bottom: 20px;
    }

    50% {
        bottom: 40px;
    }

    100% {
        bottom: 20px;
    }
}

#fixedWhatsAppIcon.animated {
    animation: bounce-up 4s infinite;
}
.video-box video{
    width: 100%;
    /*object-fit: cover;*/
    height: 250px;
    border: 2px solid #ddd;
}