/*
 Theme Name:   Bootscore Child
 Description:  Bootscore Child Theme
 Author:       Bootscore
 Author URI:   https://bootscore.me
 Template:     bootscore
 Version:      6.0.0
 Requires at least: 5.0
 Tested up to: 6.6
 Requires PHP: 7.4
 License: MIT License
 License URI: https://github.com/bootscore/bootscore-child/blob/main/LICENSE
 Text Domain:  bootscore
*/

/* 
All style editing is done via /assets/scss/_bootscore_custom.scss
*/
body {
    font-family: "Noto Serif", serif;
}

p {
    font-family: "Noto Serif", serif!important;
    color: #084679;
}

:root {
  --blue: #084679!important;
  --green: #3f7750!important;
  --light-green: rgba(46, 183, 88, 0.34)!important;

}



/* Import all weights of Noto Sans from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Apply Noto Sans to all body text except headings */
body {
    font-weight: 400!important; /* Set normal text weight */

}


p:not(.sr7-layer), .btn, .elementor-button-text {
    font-family: 'Noto Sans', sans-serif!important;
    font-weight: 400!important; /* Set normal text weight */
    font-size: 16px!important;

}

.elementor-location-footer p {
  font-size: 16px!important;
  font-weight: 300!important;
  line-height: 3em!important
}


/* Example override for paragraph styling to emphasize Noto Sans */
p:not(.banner-main p, .sr7-layer, .elementor-location-footer p, .elementor-location-footer form *), .description {
    font-family: 'Noto Sans', sans-serif!important;
    font-size: 15px!important;
    color: rgb(25, 25, 25)!important;
    font-weight: 400!important; /* Set normal text weight */
    line-height: 2em!important; /* Improve readability for paragraphs */
}


/* Additional text elements (for consistency) */
input, textarea, button, select, a {
    font-family: 'Noto Sans', sans-serif;
}






.section-title {
    font-size: 2rem;
    color: #084679; /* Adjust the color if needed */
    font-weight: bold;
}

.card {
    min-height: 200px;
    border-radius: unset;
}

.card-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #084679 !important;
    text-align: center;
    padding-top: 15px;
    min-width: min-content;
    border: unset;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Noto Serif", serif;
    font-weight: 600;
}
h2 {
  font-size: 2.5rem !important;
  font-weight: 600;
  color: #084679 !important;
}

/* Adjust the top border to match the colored line */
.card {
    border-radius: unset;
}

/* Styling for the card text (description) */
.card-text {
    font-size: 1.1rem;
    color: #084679 !important;
}

/* Custom title color for card headings */
.three_card_block .card-title {
    font-family: inherit;
    font-size: 1.5rem;
    font-weight: 700;
    color: #084679 !important; /* Correct blue */
}

/* Custom description color for card text */
.three_card_block .card-text {
    font-family: inherit;
    font-size: 1.1rem;
    color: #3f7750; /* Custom green */
    border: unset;
}

.accreditation-section {
    background-color: #f8f9fa;
    justify-content: center; /* Center horizontally */
    align-items: center;      /* Center vertically */
}

.accreditation-section img {
    max-width: 100%;
    height: auto;
}

.accreditation-section h3 {
    font-weight: bold;
    color: #084679; /* Use your specific blue color */
}


.accreditation-section .container {
    justify-content: center;  /* Ensure content inside the container is centered horizontally */
    align-items: center;      /* Vertically center the content */
}

.text-left {
  padding: 60px;
}

.padding {
    padding: 20px
}

.card-header {
    border: none;
}

.text-primary {
    white-space: normal; /* Ensures text can wrap to the next line */
    word-wrap: break-word; /* Allows long words or URLs to wrap within the container */
}

ul {
    list-style-type: square;
}

ul ::marker {
    unicode-bidi: isolate;
    font-variant-numeric: tabular-nums;
    text-transform: none;
    text-indent: 0px !important;
    text-align: start !important;
    text-align-last: start !important;
}

li {
    text-align: start
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px; /* Space between the buttons */
}

/* Primary button */
.btn.btn-primary {
    font-family: inherit;
    background-color: #084679; /* Your correct blue color */
    border: 2px solid #084679;
    color: #fff !important;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.5s ease;
}

.btn.btn-primary:hover {
    background-color: transparent;
    border: 2px solid #084679;
    color: #084679 !important;
  }

/* Secondary button */
.btn.btn-secondary {
       font-family: inherit;
       background-color: #3f7750; /* Your correct blue color */
       border: 2px solid #3f7750;
       color: #fff !important;
       font-weight: bold;
       padding: 5px 15px;
       border-radius: 100px;
       text-decoration: none;
       font-size: 1rem;
       transition: background-color 0.5s ease;
   }

.btn.btn-secondary:hover {
   background-color: transparent;
     border: 2px solid #3f7750 !important;
     color: #3f7750 !important;
   }
   
.card-footer {
       border: unset !important;
   }
   
.card {
   	padding-top: 40px;
   	padding-bottom: 40px;
   	padding-left: 40px;
   	padding-right: 40px;
       border: unset;
       background-color: #edf4f0;
}
   }
   
   .card-title {
       padding: unset;
   }
   
   .card-footer {
       background-color: transparent;
   }
   
/* Adjust padding if three_card_block has no title or subhead */
.three_card_block.no-header .card {
  padding-top: 20px !important;
  margin-top: 0 !important;
}

.three_card_block.no-header .col-md-4,
.three_card_block.no-header .col-12 {
  margin-bottom: 0 !important;
}

.three_card_block.no-header .row {
  --bs-gutter-y: 0;
  margin-bottom: 0 !important;
}

/* Reduce bottom padding when three_card_block has a title/subhead */
.three_card_block.py-5 {
  padding-bottom: 1rem !important;
}

.accreditation-section {
         background-color: transparent;
         border-top: 4px solid #084679;
         border-bottom: 4px solid #084679;
     }
     
.slider-title h2 {
         max-width: 40ch !important;
         margin: 0 auto;
         text-align: center;
     }
h2 {
         font-size: 3.5rem !important
     }
     
#content {
         padding: 0px !important;
     }          
     
.large-heading {
  max-width: 30ch;
}     

.page-id-192 .card-title {
    font-size: 2rem
}

.accreditation-section img {
    margin-bottom: -75px
}     

@media (max-width: 990px) {
  .accreditation-text {
    margin: 100px !important;
  }
  
  
}	.slider .wrapper {
    margin-top: -10px;
    margin-bottom: 25px
}

.two-card-section {
    padding-top: 75px!important
}

h2 {
    font-size: 2.7rem !important;
}

.slider-title h2 {
   font-size: 2.7rem !important;
}

.testimonial-title {
  margin-top: 70px !important;
}

.testimonial-section {
    border-top: 4px solid #084679;
    border-bottom: 4px solid #084679;
    color: #084679;
}

.page-id-223 .artifact-sponsor {
    margin-bottom: -120px
}

.page-id-15 sr7-content{
    border-bottom: 4px solid #084679;
}

.grid-section {
    border: unset;
}

* {
    text-wrap: balance!important
}

.item { 
    /* animation-duration: 90s!important */
}


.animated-gradient-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, #1b2b40, #111a28, #090e14);
    background-size: 200% 200%;
    animation: gradientAnimation 150s linear infinite; /* Very slow and smooth movement */
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.card {
    background-color: white!important
}

/* 

.animated-gradient-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, #001b44, #003b22, #001b44);
    background-size: 150% 150%;
    animation: rotateGradient 120s linear infinite; 
}

@keyframes rotateGradient {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} */

.modal-dialog {
  transform: unset!important
}