

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

/* Main */
#contact-header h1 {
  color: #F20026 !important; 
  font-weight: bold; 
  font-size: 3.1rem !important;
}

.background-light-pink {
  background-color: #f4f4fc; 
}
.curved-rectangular-shadow {
    border-radius: 20px; 
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); 
    overflow: hidden; 
  }
  
  .curved-rectangular-shadow img {
    width: 100%;
    height: auto;
  }
  
  .blue-text {
    color: darkblue;
  }
  
  .red-text {
    color: #F20026;
  }

  .curvy-button {
    border-radius: 20px; 
    background-color: #F20026; 
    color: white; 
    padding: 10px 30px;
    font-size: 16px; 
    border: none; 
  }
/* BANNER */
.banner {
  background-color: #ffffff; 
  padding: 20px;
  display: flex;
  justify-content: space-between; 
  align-items: center; 
}
.banner-rectangle {
  background-color: #f4f4fc; 
  padding: 20px;
  display: flex;
  justify-content: space-between; 
  align-items: center; 
}
.center {
  margin: 0 auto;
  text-align: center;
  background-color: #f4f4fc; 
}


.rectangle {
  background-color: #ffffff; 
  padding: 20px; 
  border-radius: 10px; 
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); 
  flex: 0 1 calc(50% - 20px); 
}
.icon-size {
  margin-right: 20px; 
}
  .margin-top-2x {
    margin-top: 5em; 
  }

  /* Define placepin icon color */
  .icon-placepin {
    color: #F20026;
  }
  .icon-mail {
    color: #F20026;
  }
  .icon-smartphone {
    color: #F20026;
  }

  /*Button */
  /* Style for the submit button */
.curved-button {
  background-color: #F20026 !important;
  width: 100%;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
  border-radius: 40px; 
}

.curved-button:hover {
  background-color: #F20026 !important;
}
/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/

body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  cursor: url('/assets/img/cursor.png'), auto !important;
}

a {
  color: #19181b;
  text-decoration: none;
}

a:hover {
  color: #e8e8ea;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ededf0;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #e61c1f;
  color: #020202;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #2f2fcb;
  border-top-color: #7b6cec;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/* Importing Google font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/



#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
  background-color: white;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgb(255, 255, 255);
  padding: 12px 0;
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;

}

#header .logo a {
  color: #ffffff;
}

#header .logo img {
  max-height: 69px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  padding: 10px 0 10px 24px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #F20026;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -30px;
  left: 0;
  background-color: #e80303;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #d70e0e;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 5px;
  color: #fff;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  border-color: #fff;
}

.navbar .getstarted:before,
.navbar li:hover>.getstarted:before {
  visibility: hidden;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  color: #2c4964;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #d70e0e;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #F20026;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(28, 47, 65, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #ffffff;
  overflow-y: auto;
  transition: 0.3s;
  /* z-index: 9999; */
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #2c4964;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #d11111;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #5846f9;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 55vh;
  background: linear-gradient(45deg, rgba(245,245,250,255) 0%, rgba(245,245,250,255) 100%), url("../img/home3.jpeg") center center no-repeat;
  background-size: cover;
}

#hero .container,
#hero .container-fluid {
  padding-top: 84px;
  padding-bottom: 80px;
}

#hero h1 {
  margin: 0;
  font-size: 28px;
  /* font-weight: 700; */
  line-height: 45px;
  color: #050154;
}

/* #hero h2 {
  color: rgba(255, 255, 255, 0.8);
  margin: 10px 0 0 0;
  font-size: 60px;
} */

#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 20px;
  transition: 0.5s;
  margin-top: 30px;
  color: #ffffff;
  border: 2px solid #fff;
  background-color: #F20026;
}

#hero .btn-get-started:hover {
  background: #ffffff;
  color: #F20026;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1200px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #hero {
    text-align: center;
  }

  #hero .container,
  #hero .container-fluid {
    padding-top: 68px;

  }

  #hero .animated {
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
    padding-left: 60px;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 26px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }

  #hero .hero-img img {
    width: 60%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

@media (max-width: 575px),
(max-height: 600px) {
  #hero {
    height: auto;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

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

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 100px 0;
  overflow: hidden;
}

.section-bg {
  background-color: white;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
  margin-bottom: 100px;
}

.section-title h2 {
  font-size: 32px;
  font-weight:600;
  /* text-transform: uppercase; */
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #5846f9;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
  font-size: 15px;


}


.inspara p{
  margin: 100px;
}



.icon-box {
  border: 2px solid transparent; 
  /* background-color: #fff; Set initial background color */
  transition: border-color 0.3s, background-color 0.3s; 
}

.icon-box:hover {
  border-color: #F20026; 
  background-color: white; 
  border-radius: 10px;
  transition: 0.2s;
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services .icon-box {
  text-align: center;
  padding: 30px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background-color: #f9f8ff;
  height: 415px;
  width: 100%;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.index-service-list{
  color: #F20026;
}

.index-service-span{
  color: black;
}
.services .icon-box h4 a {
  color: #2c4964;
  transition: ease-in-out 0.3s;
}

#centered-image {
  display: block;
  margin: 0 auto; 
  margin: auto; 
  text-align: center;
  width: 60px; 
  height: 60px;
} 

.service-card {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
 padding-left: 8%;
 padding-right: 8%;
 padding-top: 8%;
 border: 1px solid #ccc;
 height: 500px; 
 overflow: auto;
 border-radius: 20px;
 
}
.service-card:hover {
  border-radius: 40px;
  background-color: #f4f5fd;
  transform: scale(1.05);
  box-shadow: 0px 0px 20px #9f999a;
}

.service-card:hover .text-thin{
 color: #F20026;
 font-weight:600;
}
.service-card:hover .margin-bottom-30{
  text-align: start;
  color: #133a63;
  font-weight: 400;
 }


/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features{
  background-color: rgba(248, 130, 154, 0.124);
}


.features h2 {
  font-size: 33.6px;
  float: left;
}


.features .icon-box h4 {
  font-size: 14px;
  font-weight: 700;
  margin: 5px 0 0 60px;
}

.features .icon-box img {
  font-size: 38px;
  float: left;
  color: #F20026;

}

.features .icon-box p {
  font-size: 12px;
  color: #848484;
  margin-left: 60px;

}




.featureimg .image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 200px;
  min-height :400px;
  object-fit: cover;
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  position: absolute
}


.featureimg {
  width: 500px;
  height: 500px;
  margin-left: 10%;
  margin-top: 10%;
  background-color: #ffffff;
  background-position: center;
  border-radius: 10px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5); 
  padding: 0;
}


@media (max-width: 767px) {
  .featureimg .image {
    margin-left: 5%;
    width: 200px;
    padding-left: 0;
  }
}

@media (max-width: 767px)
{
  .featureimg{
  padding: -50;
  margin-left: -50;
  width: 300px;
  height: auto;
  margin-left: 0;
  margin-top: 0;
  background-color: #ffffff;
  background-position: center;
  border-radius: 15px;
  box-shadow :10px 5px;
}
}

@media(max-width: 767px){
  .section-title{
    margin-left: 3%;
  }

  .section-title{
    margin-top: 30px;
  }
}


.hero2 {
  width: 100%;
  height: auto;
  background-image: url('../../assets/img/hero2.png');
  background-size:cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .hero2{
    height: auto;
  }
}

.hero2 .hero2text{
  padding-left: 8%;
}

.hero2 h5 {
  font-size: small;
  color: white;
  padding-top: 5%;
}


.hero2 h3 {
  color: white;
  padding-top: 2%;
}

.hero2 p{
  padding-top: 1%;
 font-size: 13px;
 color: white;
 margin-bottom: 10px; 
}




@media screen and (min-width: 768px) and (max-width: 1024px){

  .hero2{
    height: auto;
  }

}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/


@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer img{
  max-width: 200px;
}


#footer .container .row{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding-left: 50px; 
padding-right: 50px;
padding-top: 50px;
font-family: "Poppins", sans-serif;

}
#footer .footer-contact{
  white-space: nowrap;
  margin-bottom: 15%;
}
#footer .row1 {
flex: 1;
}

#footer .row2 {
flex: 1;
display: flex;
justify-content:space-around
}

#footer .row .btn-shedule {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 20px;
  transition: 0.5s;
  margin-top: 30px;
  color: #ffffff;
  border: 2px solid #fff;
  background-color: #F20026;
}

#footer .row .btn-shedule:hover {
  background: #ffffff;
  color: #e91010;
}

#footer .row .row2 {
  white-space: nowrap;
}

#footer .row .row2 ul li {
  margin-top: 25%;
}


#footer #cont{
  margin-top: 55px;
} #F20026

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Responsive Footer Styles
--------------------------------------------------------------*/


@media (max-width: 500px){

   #footer #cont{
    margin-top: 55px;
  } 

}

@media (max-width: 768px) {
 


  
  
    .footer-contact {
      overflow-wrap: break-word;
      text-align: center;
    }
  
    .footer-contact h4 {
      font-size: 14px; 
      word-wrap: break-word;
      text-align: center; 
    }
  
    .footer-contact p {
      white-space: normal; 
      word-wrap: break-word;
    }
  
    .btn-shedule {
      display: block; 
      margin: 10px auto; 
    }

    /*LINKS */
    footer-links {
      text-align: center; 
    }
    
    .footer-links h1 {
      text-align: center;
    }
    
    .footer-links p {
      text-align: center; 
      margin: 10px 0; 
    }
    
    .footer-links ul {
      list-style: none; 
      padding: 0;
    }
  
    .footer-links ul li {
      display: flex;
      align-items: center;
      justify-content: center; 
      margin: 10px 0;
    }
    
    .footer-links ul li i {
      margin: 0; 
    }

  }

/*--------------------------------------------------------------
# ABOUTUS PAGE
--------------------------------------------------------------*/
/*-------------------------------------------*/
/* Default styles for the copyright section */
/*-------------------------------------------*/

.copyright {
  font-size: smaller;
  background-color: #F20026;
  color: white;
  font-family: "Poppins", sans-serif;
}

/* Media query for screens smaller than 768px */
@media screen and (max-width: 768px) {
  .copyright {
      background-color: rgb(15, 15, 54);
      font-size: 12px;
  }
}

/* Media query for screens smaller than 480px*/
@media screen and (max-width: 480px) {
  .copyright {
      font-size: 9px;
      font-family: Helvetica, sans-serif;
  }
}


@media(max-width: 768px){
  .line p{
    margin-top: 0px;
    padding-left: 30px;
  }
}


.card-content {
  height: 400px; 
  overflow: hidden;
}




@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 1.9s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}



#cont-icons{
  padding-left: 110px;
}

@media (max-width: 768px){

  #cont-icons{
    padding-left:50px;
  }
}


/* hide scroll bar */

::-webkit-scrollbar {
  width: 2px; 
}

::-webkit-scrollbar-track {
  background-color: #f1f1f100; 
}

::-webkit-scrollbar-thumb {
  background-color: #88888800;
  border-radius: 2px; 
}

::-webkit-scrollbar-thumb:hover {
  background-color: #55555500;
}

/* 25-3-2024 */

.boxed-image img {margin: 0 auto;box-shadow: 1px 1px 24px 0px #c7c7c7;border-radius: 18px;}