.primary{
    background-color: #37aeef;
}

/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */

/* Carousel base class */
.carousel {
    margin-bottom: 4rem;
  }
  /* Since positioning the image, we need to help out the caption */
  .carousel-caption {
    bottom: 3rem;
    z-index: 10;
  }
  
  /* Declare heights because of positioning of img element */
  .carousel-item {
    height: 40rem;
  }
  
  
  /* MARKETING CONTENT
  -------------------------------------------------- */
  
  /* Center align the text within the three columns below the carousel */
  .marketing .col-lg-4 {
    margin-bottom: 1.5rem;
    text-align: center;
  }
  /* rtl:begin:ignore */
  .marketing .col-lg-4 p {
    margin-right: .75rem;
    margin-left: .75rem;
  }
  /* rtl:end:ignore */
  
  
  /* Featurettes
  ------------------------- */
  
  .featurette-divider {
    margin: 5rem 0; /* Space out the Bootstrap <hr> more */
  }
  
  /* Thin out the marketing headings */
  /* rtl:begin:remove */
  .featurette-heading {
    letter-spacing: -.05rem;
  }
  
  /* rtl:end:remove */
  
  /* RESPONSIVE CSS
  -------------------------------------------------- */
  
  @media (min-width: 40em) {
    /* Bump up size of carousel content */
    .carousel-caption p {
      margin-bottom: 1.25rem;
      font-size: 1.25rem;
      line-height: 1.4;
    }
  
    .featurette-heading {
      font-size: 50px;
    }
  }
  
  @media (min-width: 62em) {
    .featurette-heading {
      margin-top: 7rem;
    }
  }

  /* CUSTOMIZE HR
-------------------------------------------------- */
  .custom-hr {
    border: none; /* Remove the default border */
    border-top: 6px solid #37aeef; /* Set the color using the border-top property */
    margin: 20px 0; /* Adjust margin as needed */
}

  /* OVAL
-------------------------------------------------- */
.oval-container {
  width: 300px; /* Adjust the width and height as needed */
  height: 350px;
  border-radius: 75%; /* Make it circular */
  overflow: hidden; /* Hide overflow to create oval shape */
  border: 1px solid black;
}

.oval-container img {
  width: 100%; /* Make the image fill the container */
  height: auto; /* Maintain aspect ratio */
  display: block; /* Remove extra space below the image */
}

.oval-container-logo {
  width: 350px; /* Adjust the width and height as needed */
  height: 350px;
  border-radius: 75%; /* Make it circular */
  overflow: hidden; /* Hide overflow to create oval shape */
}

.oval-container-logo img {
  width: 100%; /* Make the image fill the container */
  height: auto; /* Maintain aspect ratio */
  display: block; /* Remove extra space below the image */
}

/* Capitalize */

.parragrah:first-letter { 
  font-size: 200%; 
  color: black; font-weight: bold;
  }

  div.a {
    line-height: 1.6;
  }

  /*Spin*/

.logo-container {
    text-align: center;
}

#logo {
  width: 100px; /* Adjust the size as needed */
  animation: spin 3s linear infinite; /* Apply the spinning animation */
}

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

/*blink*/
.blink {
  animation: blink-animation 1s steps(5, start) infinite;
  -webkit-animation: blink-animation 1s steps(5, start) infinite;
}
@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}

/*whatsapp*/

.btn-wsp{
  position: fixed;
  width: 55px;
  height: 55px;
  line-height: 55px;
  bottom: 30px;
  right: 30px;
  background: #0df053;
  color: #fff;
  border-radius: 55px;
  text-align: center;
  box-shadow: 0px 1px 10px rgba(0,0,0,0,3);
  z-index: 100;
}

.btn-wsp:hover{
  text-decoration: none;
  color: #0df053;
  background: #fff;
}


/*modal*/
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  border: 4px solid #37aeef;
  margin: 15% auto;
  padding: 20px;
  width: 50%;
  background-image: url('/static/img/vission2.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* The Close Button */
.close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}