/********** Template CSS **********/
/*
closing bracket was missing at carousel mobile view due to css was disabled on desktop view
*/
:root {
    --primary: #232061;
    --secondary: #f7aa2c;
    --light: #F6F4F9;
    --dark: #b40d41;
}
html{
    overflow:auto;
    overflow-x:hidden;
}
body{
    background: #fff;
    overflow:hidden;
    overflow-x:hidden;
}
a{
    text-decoration: none;
}
a:hover{
    text-decoration: none;
}


.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
    background: #232061;
    border:1.5px solid #fff;
}

.back-to-top  i{
    color:#fff;
}

/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 700 !important;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-size: 10px;
    font-weight: bold;
    vertical-align: middle;
    margin-left: 8px;
}
.navbar-light{
    background:#ffffff00;
height: 80px;
}
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 15px;
    font-family: 'Jost', sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #232061 !important;
    outline: none;
    text-transform: uppercase;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: #232061 !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #b40d41 !important;
    font-weight: 700;
}

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 60px;
}

@media (max-width: 991px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }
    .navbar-nav{
        background: #FFFFFF;
    }
    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--primary) !important;
    }

    .navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        color: var(--primary);
    }
    
    

    .navbar-light .navbar-nav .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        background:#fff;
    }

    .navbar-light .navbar-nav .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
        background:#fff;
    }

    .navbar-light .btn {
        color: var(--dark);
        background: #FFFFFF;
    }

    .sticky-top.navbar-light .btn {
        color: var(--dark);
        background: var(--secondary);
    }
}


/*** Hero Header ***/
.hero-header {
    margin-bottom: 6rem;
    padding: 18rem 0;
    background:none;
    border-bottom: 1px solid rgba(256, 256, 256, .1);
    height: 60px;
}
.hero-header h1{
    color: #fff;
}
@media (max-width: 991px) {
    .hero-header {
        padding: 6rem 0 9rem 0;
        background: #ffffff00;
    }
}
.carousel{
    margin-top: 0px;
    
}
.carousel-item{
    height: 600px;
}
.carousel-item img{
    height: 600px;
}
@media (max-width: 786px){
    .carousel-item{
        height: 200px;
    }
    .carousel-item img{
    height: 200px;
    }
    .carousel-inner {
        height:200px;
    }
    .carousel{
        z-index:-1;
        margin-top: 10px;
        height: 200px;
    }
  .carousel-control-prev,
  .carousel-control-next {
  height: 30px;
  width: 30px;
  outline: #232061;
  background-color: #232061;
  background-size: 100%, 100%;
  border-radius: 50%;
  border: 1px solid #232061;
  opacity: 0.9;
  top:0;
  margin-top:-80px;
  background-image: none;
}
.carousel-control-prev i,
.carousel-control-next i{
    color:#fff;
    font-size:14px;
}

.carousel-control-prev{
    margin-left:20px;
}
.carousel-control-next{
    margin-right:20px;
}
.carousel-control-prev,
.carousel-control-next {
  height: 60px;
  width: 60px;
  outline: #232061;
  background-color: #232061;
  background-size: 100%, 100%;
  border-radius: 50%;
  border: 1px solid #232061;
  opacity: 0.9;
  top:45%;
  background-image: none;
}
.carousel-control-prev i,
.carousel-control-next i{
    color:#fff;
    font-size:25px;
}
}
/*** Section Title ***/
.section-title {
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 32px;
    background: -webkit-linear-gradient(#232061, #b40d41, #f7aa2c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title span:first-child,
.section-title span:last-child {
    position: relative;
    display: inline-block;
    margin-right: 30px;
    width: 30px;
    height: 2px;
}

.section-title span:last-child {
    margin-right: 0;
    margin-left: 30px;
}

.section-title span:first-child::after,
.section-title span:last-child::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 2px;
    top: 0;
    right: -20px;
}

.section-title span:last-child::after {
    right: auto;
    left: -20px;
}

.section-title.text-primary span:first-child,
.section-title.text-primary span:last-child,
.section-title.text-primary span:first-child::after,
.section-title.text-primary span:last-child::after {
    background: linear-gradient(45deg, rgba(35,32,97,1) 0%, rgba(180,13,65,1) 35%, rgba(247,170,44,1) 100%);
}

.section-title.text-secondary span:first-child,
.section-title.text-secondary span:last-child,
.section-title.text-secondary span:first-child::after,
.section-title.text-secondary span:last-child::after {
    background: linear-gradient(45deg, rgba(35,32,97,1) 0%, rgba(180,13,65,1) 35%, rgba(247,170,44,1) 100%);
}

.section-title.text-white span:first-child,
.section-title.text-white span:last-child,
.section-title.text-white span:first-child::after,
.section-title.text-white span:last-child::after {
    background: #FFFFFF;
}


/*** Feature ***/
.feature{
    background: radial-gradient(circle, rgba(247,170,44,1) 0%, rgba(180,13,65,1) 35%, rgba(35,32,97,1) 100%);
}
.feature .section-title{
    font-size:28px;
    background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: -30px;
  margin-bottom: 50px;
}
.feature-item {
    transition: .5s;
    height: 235px;
    background: #fff;
    box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.75);
}
.feature-item h5{
    color:#b40d41;
    font-weight: 900;
    margin-top: 10px;
}
.feature-item:hover {
    margin-top: -15px;
}


/*** About ***/
.progress {
    height: 5px;
}
.about p i{
    color:#b40d41;
    margin-right: 5px;
}
.about ul li{
    line-height: 2.5;
}
.about ul li i{
    color:#b40d41;
    margin-right: 5px;
}
.about img{
    width: 90%;
    height: 90%;
}
.about .btn{
    background: linear-gradient(45deg, rgba(35,32,97,1) 0%, rgba(180,13,65,1) 35%, rgba(247,170,44,1) 100%);
    color:#fff;
}
.progress .progress-bar {
    width: 0px;
    transition: 3s;
}
.about h1{
    color: #232061;
    font-weight: 700;
    text-transform: uppercase;
}
.about h1 span{
    color: #b40d41;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
}
.about h2{
    color: #232061;
    font-weight: 700;
    text-transform: none;
}
/*** Fact ***/
.fact {
    margin: 6rem 0;
    background: #b40d41;
}

.fact i{
    font-size:48px;
    margin-bottom: 30px;
    color: #fff;
}

.fact h1, .fact p{
    color: #ddd;
}
/*** Service ***/
.services h1{
    color: #232061;
}
.service-item {
    position: relative;
    padding: 25px 30px;
    height:340px;
    background: #232061;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover {
    margin-top: -15px;
    padding-bottom: 60px;
    background: #b40d41;
}

.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 128px;
    height: 128px;
    display: flex;
    border-radius: 50%;
    /*
    align-items: center;
    justify-content: center;
    background: url(../img/blob-primary.png) center center no-repeat;
    background-size: contain;*/
    background:#b40d41;
    transition: .5s;
}
.service-item .service-icon img{
    height: 64px;
    width: 64px;
    margin-top: 20%;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.service-item .service-icon .pink-icon{
    display: none;
}
.service-item:hover .service-icon {
    color: var(--dark);
    background:#fff;
}
.service-item:hover .service-icon .white-icon{
    display: none;
}
.service-item:hover .service-icon .pink-icon{
    display: block;
}
.service-item h5{
    font-size: 15px;
    text-transform: uppercase;
    font-weight: bold;
}
.service-item p{
    font-size: 13px;
}
.service-item h5,
.service-item p {
    transition: .5s;
    color: #fff;
}

.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF;
}

.service-item a.btn {
    position: absolute;
    /* bottom: -40px; */
    left: 50%;
    top: 85%;
    transform: translateX(-50%);
    color: #fff;
    background: linear-gradient(45deg, rgba(35,32,97,1) 0%, rgba(180,13,65,1) 35%, rgba(247,170,44,1) 100%);
    border-radius: 20px;
    transition: .5s;
    width: 8rem;
    height: 2.5rem;
    z-index: 1;
    margin-bottom: 20px;
}
.service-item a.btn i{
    padding-left: 5px;
}
.service-item:hover a.btn{
    color: #b40d41;
    background: #fff;
}



/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-item img {
    transition: .5s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item .portfolio-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(98, 34, 204, .9);
    transition: .5s;
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}


/*** Newsletter ***/
.newsletter {
    margin: 6rem 0;
    background:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center;
    background-repeat: no-repeat;
}


/*** Testimonial ***/
.testimonial-carousel .testimonial-item {
    padding: 0 30px 30px 30px;
}

.testimonial-carousel .owl-nav {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 60px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}


/*** Team ***/
.team-item .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Footer ***/
.footer {
    border: none;
    margin-top: 6rem;
    padding-top: 2rem;
    background:
        url(../img/map.png), #b40d41;
    background-position:
        center top,
        center center;
    background-repeat: no-repeat;
}
.footer img{
    margin-bottom: 20px;
}
.footer .section-title {
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
    background: -webkit-linear-gradient(#fff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}
.footer .cont-info p{
    font-size: 15px;
}
.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
    color: var(--secondary);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
    text-decoration: none;
}
.footer .copyright a:hover {
    color: var(--light);
    text-decoration: none;
}
.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.contact{
    background: radial-gradient(circle, rgba(35,32,97,1) 35%, rgba(180,13,65,1) 100%);
}
.contact img{
    height:400px;
    width:300px;
}
.contact h1{
    color: #fff;
    font-weight: 500;
    font-size: 32px;
    text-transform: uppercase;
}
.contact p{
    color: #fff;
}
.contact .contact-info {
    padding-top: 60px;
}
.contact .contact-info p{
    color: #fff;
    line-height: 2;
}
.contact .contact-info p i{
    margin-right:5px;
}

.php-email-form{
    background: rgba( 255, 255, 255, 0.15 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 18px );
    -webkit-backdrop-filter: blur( 18px );
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    border-radius: 1rem;
    padding: 80px 20px;
    z-index: 10;
  }
  .contact .php-email-form select{
    height: 44px;
    background: #fff;
    color: #777;;
    border-radius: 10px;
    width: 100%;
  }
.contact .php-email-form input[type=submit]{
   background: #b40d41;
   color:#fff;
   font-size: 16px;
   border-radius: 30px;
   width: 8rem;
   height: 3rem;
   padding-top: 0px;
   border: none;
   margin: 0px 260px;
}

/* whatsapp btn  */
.btn-whatsapp-pulse {
	background: #25d366;
	color: white;
	position: fixed;
	bottom: 110px;
	right: 45px;
  width:20px;
  height:20px;
	font-size: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 0;
	height: 0;
	padding: 25px;
	text-decoration: none;
	border-radius: 50%;
	animation-name: pulse;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	}
	80% {
		box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
	}
}

.btn-whatsapp-pulse-border {
	bottom: 160px;
    right: 45px;
	animation-play-state: paused;
}

.btn-whatsapp-pulse-border::before {
	content: "";
	position: absolute;
	border-radius: 50%;
	padding: 15px;
	border: 5px solid #25d366;
	opacity: 0.75;
	animation-name: pulse-border;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulse-border {
	0% {
		padding: 15px;
		opacity: 0.75;
	}
	75% {
		padding: 40px;
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

/* call button css*/
.btn-call-pulse {
	background: #f58d21;
	color: white;
	position: fixed;
	bottom: 60px;
	right: 45px;
  width:20px;
  height:20px;
	font-size: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 0;
	height: 0;
	padding: 25px;
	text-decoration: none;
	border-radius: 50%;
	animation-name: pulse;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	}
	80% {
		box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
	}
}

.btn-call-pulse-border {
	bottom: 180px;
    right: 45px;
	animation-play-state: paused;
}

.btn-call-pulse-border::before {
	content: "";
	position: absolute;
	border-radius: 50%;
	padding: 15px;
	border: 5px solid #f58d21;
	opacity: 0.75;
	animation-name: pulse-border;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulse-border {
	0% {
		padding: 15px;
		opacity: 0.75;
	}
	75% {
		padding: 40px;
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}
.btn-call-pulse .fa-phone{
  animation: shake s;
  animation-iteration-count: infinite;
}
@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}
.breadcrumbs {
    background: #b40d41;
    padding: 20px;
    margin-top: 33px;
}
.breadcrumbs ol{
    padding-top: 10px;
}
.breadcrumbs ol li::before{
    color: #fff;
}
.breadcrumbs ol li+li{
    color: #fff;
}
.breadcrumbs ol li a{
    color: #fff;
}
@media (max-width: 991px){
    .breadcrumbs {
        margin-top: -50px;
    }
    .contact .php-email-form input[type=submit] {
    
    margin: 0px 90px;
}
.navbar-light .navbar-nav .nav-item .dropdown-menu{
        background:#fff;
        z-index:1;
    }
   .navbar-nav .dropdown-menu {
    position: relative;
}
}
.why_choose_us{
    background:url(../img/why-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin-top: 50px;
}
.why_choose_us .why-left{
    float: left;
}
@media (max-width: 991px){
    .why_choose_us .why-left .why-box img {
        margin-top: -105px;
        margin-right: -69px;
        float: right;
        height: 70px;
        width: 70px;
    }
    .why_choose_us .why-right{
        margin-top:-20px;
    }
    .why_choose_us .why-right .why-box img {
        margin-top: 0px;
        margin-right: -69px;
        float: left;
        height: 70px;
        width: 70px;
    }
    .why_choose_us .why-right .why-box .content {
        float: right;
        margin-top: -72px;
        margin-left: 84px;
    }
}
.why_choose_us .why-right{
    float: right;
}
.why_choose_us .why-box{
    background: rgba( 255, 255, 255, 0.8 );
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    height: 130px;
    width: 90%;
}
.why_choose_us .why-box h6{
  color: #b40d41;
}
.why_choose_us .why-box p{
    color: #232061;
    font-weight: 400;
}
@media (max-width: 991px){
    .why_choose_us{
       /* background:url(../img/why-bg-mobile.jpg);
        background-position: center center;
        background-repeat: no-repeat;*/
        background-size: 100% 100%;
        margin-top: 50px;
    }
}