\

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis/Metropolis-Regular.woff2') format('woff2'),
        url('../fonts/Metropolis/Metropolis-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis/Metropolis-Light.woff2') format('woff2'),
        url('../fonts/Metropolis/Metropolis-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis/Metropolis-SemiBold.woff2') format('woff2'),
        url('../fonts/Metropolis/Metropolis-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis/Metropolis-Bold.woff2') format('woff2'),
        url('../fonts/Metropolis/Metropolis-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
   --Bright-Blue:                 #0277bd;
  --primary-color:                #000080;
  --secondary-color:              #000080;
  --section-bg-color:             #000080;
  --site-bg-color:                #54C1EF;
  --custom-btn-bg-color:           #000080;
  --custom-btn-bg-hover-color:    #0277bd;
  --dark-color:                   #000000;
  --p-color:                      #000080;
  --border-color:                 #e9eaeb;

  --body-font-family:             'Metropolis', sans-serif;

  --h1-font-size:                 52px;
  --h2-font-size:                 46px;
  --h3-font-size:                 25px;
  --h4-font-size:                 60px;
  --h5-font-size:                 30px;
  --h6-font-size:                 40px;
  --h7-font-size:                 22px;
  --p-font-size:                  16px;
  --btn-font-size:                18px;
  --copyright-font-size:          14px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-semibold:         600;
  --font-weight-bold:             700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family); 
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6, 
{
  font-weight: var(--font-weight-semibold);
  letter-spacing: -1px;
}

h1 {

  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
  letter-spacing: -2px;
}

h2 {
  color: var(--primary-color);
  font-size: var(--h2-font-size);

  font-weight: var(--font-weight-bold);
  letter-spacing: -2px;
}

h3 {
  font-size: var(--h3-font-size);
  color: var(--Bright-Blue);
  font-weight: bold;
}
h4 {
  font-size: var(--h4-font-size);
    color: var(--white-color);

}

h5 {
  color: var(--white-color);
  font-size: var(--h5-font-size);
 
  }

h6 {
  font-size: var(--h6-font-size);
}

 

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);

}

ul li {
  
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);

}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--Bright-Blue);
}
i:hover {
  color: var(--Bright-Blue);
}


b,
strong {
  font-weight: var(--font-weight-bold);
}

 .form-control::-webkit-input-placeholder {
  color: white;
  font-size: 14px;
}

 .form-control:-moz-placeholder { /* Firefox 18- */
  color: white;
  font-size: 14px;
}

 .form-control::-moz-placeholder {  /* Firefox 19+ */
  color: white;
  font-size: 14px;
}

.form-control:-ms-input-placeholder {  
  color: white;
  font-size: 14px;
}




.custom-form .button-default::after,
.custom-form .button-default > span {
   padding: 11px 40px;
  
}


/*
input {
  border: 20px solid;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.5s ease-out;
}
input:optional {
  border-color: gray;
}
input:required:valid {
  border-color: green;
}
input:invalid {
  border-color: red;
}*/

/*-------------------------------------
 Registration button animation
--------------------------------------*/
.registerbtn {
        border: 2px transparent;
        -webkit-border-radius: 40px;
        border-radius: 40px;
        color: white;
        cursor: pointer;
        display: inline-block;
        font-family: Arial;
        font-size: 20px;
        padding: 8px 30px;
        text-align: center;
        text-decoration: none;
        margin-left: 20px;
        -webkit-animation: glowing 1300ms infinite;
        -moz-animation: glowing 1300ms infinite;
        -o-animation: glowing 1300ms infinite;
        animation: glowing 1300ms infinite;
      }
      @-webkit-keyframes glowing {
        0% {
          background-color: #54C1EF;
          -webkit-box-shadow: 0 0 7px #54C1EF;
        }
        50% {
          background-color: #54C1EF;
          -webkit-box-shadow: 0 0 25px #54C1EF;
        }
        100% {
          background-color: #54C1EF;
          -webkit-box-shadow: 0 0 1px #54C1EF;
        }
      }
      @keyframes glowing {
        0% {
          background-color: #000080;
          box-shadow: 0 0 1px #54C1EF;
        }
        50% {
          background-color: var(--Bright-Blue);
          box-shadow: 0 0 25px #54C1EF;
        }
        100% {
          background-color: #000080;
          box-shadow: 0 0 1px #54C1EF;
        }
      }


/*-------------------------------------
 alert glowing
--------------------------------------*/
.glowingalert {
  text-align: center;
  color: white;
  animation: glowingalert 0.6s ease-in-out infinite alternate;
}

@-webkit-keyframes glowingalert {
  from {
      box-shadow: 0 0 15px none;
  }
  
  to {
      box-shadow: 0 0 15px #f44336;
  }
}


/*-------------------------------------
 Text glowing Notification
--------------------------------------*/
.glow {
  font-size: 80px;
  color: #fff;
  text-align: center;
  animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
  from {
     color: #000080;
          text-shadow: 0 0 1px #54C1EF;
  }
  
  to {
      color: var(--Bright-Blue);
          text-shadow: 0 0 25px #54C1EF;
  }
}


/*.popupnotificationtext {
        font-family: Arial;
        font-size: 20px;
        -webkit-animation: glowing 1300ms infinite;
        -moz-animation: glowing 1300ms infinite;
        -o-animation: glowing 1300ms infinite;
        animation: glowing 1300ms infinite;
      }


      @-webkit-keyframes glowing {
        0% {
          color: #54C1EF;
          -webkit-text-shadow: 0 0 7px #54C1EF;
        }
        50% {
          color: #54C1EF;
          -webkit-text-shadow: 0 0 25px #54C1EF;
        }
        100% {
          color: #54C1EF;
          -webkit-text-shadow: 0 0 1px #54C1EF;
        }
      }
      @keyframes glowing {
        0% {
          color: #000080;
          text-shadow: 0 0 1px #54C1EF;
        }
        50% {
          color: var(--Bright-Blue);
          text-shadow: 0 0 25px #54C1EF;
        }
        100% {
          color: #000080;
          text-shadow: 0 0 1px #54C1EF;
        }
      }

*/
/*-------------------------------------
 Modal Background
--------------------------------------*/
.modal-background {
    background-image: url("../images/about-bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
      background-size: cover;
     position: relative;

 
}
/*-------------------------------------
 about us session
--------------------------------------*/
#about {
  background: url("../images/about-bg.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 60px 0 40px 0;
  position: relative;
}

#about::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 9;
}

#about .container {
  position: relative;
  z-index: 10;
}

#about .about-col {
  background: rgb(255, 255, 255,0.4);
  border-radius: 4px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  margin-top:20px;

}

#about .about-col .img {
  position: relative;
}

#about .about-col .img img {
  border-radius: 4px 4px 0 0;
}

#about .about-col .icon {
  width: 64px;
  height: 64px;
  text-align: center;
  position: absolute;
  background-color: #18d26e;
  border-radius: 50%;
  border: 4px solid #fff;
  left: calc(50% - 32px);
  bottom: -30px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}



#about .about-col h2 {
  color: var(--primary-color);
  text-align: center;
  font-weight: 700;
  font-size: 52px;
  padding-top: 20px;
  margin: 40px 0 12px 0;

}


#about .about-col h2 a:hover {
  color: #18d26e;
}

#about .about-col p {
  font-size: 14px;
  line-height: 24px;
  color: var(--site-bg-color) ;
  margin-bottom: 0;
  padding: 0 20px 20px 20px;
  font-weight: bold;
}

/*-------------------------------------
 Errors Inputs
--------------------------------------*/
 .errors input:focus:valid {
  background: url("../images/success.png") no-repeat 95% 50%  #000080 ;
  background-size: 15px;


}
 .errors input:focus:invalid{
  background: url("../images/alert-sign.png") no-repeat 95% 50%  #000080;
  background-size: 25px;
 border: 2px solid red; 
}


.errors:focus:valid {
  background: url("../images/success.png") no-repeat 95% 50%  #000080 ;
  background-size: 15px;


}
 .errors:focus:invalid{
  background: url("../images/alert-sign.png") no-repeat 95% 50%  #000080;
  background-size: 25px;
 border: 2px solid red; 
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  padding-top: 50px;
}




.features .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .features .features-item+.features-item {
    margin-top: 40px;
  }
}


 .features .features-item .features-img{
  width: 400px;
  height: 400px;
  border-radius: 100%;
  border: 4px solid #fff;
    margin-top: -20px;
 /* margin: 0 auto;*/
}

.features .features-item h2 {
 
  padding-top: 10px;
  padding-bottom: 5px; 
}



.features .features-item p{
  padding-top: 5px;
  padding-bottom: 10px; 
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  box-shadow: 0px 0 20px rgba(1, 41, 112, 0.1);
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  width: 360px;
  height: 400px;
}

.services .icon-box .testimonial-img{
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;

}
.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #ffc451;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  transition: 0.3s;
}

.services .icon-box .icon i {
  color: #151515;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
    color: var(--primary-color);
  transition: ease-in-out 0.3s;
  margin-top: 80px;
 
}




.services .icon-box p {
  line-height: 24px;
  font-size: 14px;

}

/*.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}*/


/*-------------------------------------
 Program button
--------------------------------------*/

/*.button-33 {
  color:  #0277bd;

}
.button-33:hover {
 transform: scale(1.05);
 color: var(--primary-color);
}*/


.button-33 {
  background-color: var(--primary-color);
  border-radius: 100px;
  color: white;
  cursor: pointer;
  display: inline-block;
  padding: 2px 10px;
  text-align: center;
  text-decoration: none;
  transition: all 250ms;
  border: 0;
  font-size: 13px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  height:22px;
  
}

.button-33:hover {
 transform: scale(1.05);
  background-color: #0277bd;
 color: white;
}


/*-------------------------------------
  countdown
--------------------------------------*/



.title-timer-description-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

  
}

#title {
    font-size: 35px;
    font-weight: bold;
    letter-spacing: 2px;

}

.time {
    display: flex;
    flex-direction: row;
     color:#fff;

}

.time div {
    background-color:var(--primary-color);
    color:#fff;
    margin:5px;
   text-align: center;
    border-radius: 7px;
    padding:10px;
}

.time div p {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 2px;
    line-height: 1.6;
}

.time div span {
    text-transform: uppercase;
    font-size: 22px;
    letter-spacing: 1px;
}




/*-------------------------------------
   Form Validation
--------------------------------------*/
.forminput span {
position:absolute;
font-size: 14px;
color: red;
margin-left: 5px;
margin-top: -20px;
padding-bottom:50px;
}





#introduction-error{
  color:red;
 
}

#methodology-error{
  color:red;
  margin-top: -20px;
}

#results-error{
  color:red;
  margin-top: -20px;
}
#conclusion-error{
  color:red;
  margin-top: -20px;
}


/*--------------------*/
/* TESTIMONIALS */
/*--------------------*/

#mu-testimonials {
  background-image: url(../images/auditorium3.jpg);
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;

  position: relative;
  width: 100%;
}

#mu-testimonials::before {
  background: linear-gradient(#000080, #54C1EF,#000080 );
  bottom: 0;
  content: '';
  left: 0;
  top: 0;
  right: 0;
  position: absolute;
  opacity: 0.8;
  z-index: 10;
}

.mu-testimonials-area {
  display: inline;
  float: left;
  padding: 150px 0 175px;
  width: 100%;
  position: relative;
  z-index: 20;

}

.mu-testimonials-area h2 {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.mu-testimonials-area ul {
    color: #fff;
 display: inline-block;
  text-align: left;
  position:relative;
 
}


.mu-testimonials-area li{
  font-weight: bold;
}


.mu-testimonials-block {
  display: inline;
  float: left;
  margin-top: 60px;
  width: 100%;
   
}

/*-------------------------------------
        3.  Welcome-hero
--------------------------------------*/
.welcome-hero{
    display: flex;
    align-items: center;
    justify-content: center;
    position:relative;
    background:url(../images/auditorium3.jpg);
      background-repeat: no-repeat, repeat;
    background-size:cover;
    background-position: center;
    height:500px;

}

.welcome-hero:before{
    position:absolute;
    content: " ";
    top:0;
    left:0;
     background:linear-gradient(#000080, #54C1EF,#000080 );
    width:100%;
    height:100%;

    opacity: 0.8;
}

 .reveal{
  position: relative;
  transform: translateY(90px);
  opacity: 0;
  transition: 0.5s all ease;
}

.reveal.active{
  transform: translateY(0);
  opacity: 1;
}
/*.header-text-area*/

.header-text{
    text-align: center;

}

.header-text h2 {
    color: #fff;
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.5;
   text-align: center;
     position:relative;
}

.header-text ul {
    color: #fff;
 display: inline-block;
  text-align: left;
  position:relative;
 
}


.header-text li{
  font-weight: bold;
}
.header-text a {
    width: 200px;
    height: 60px;
    line-height: 60px;
    border-radius: 3px;
    text-transform: capitalize;
    color: #fff;
    background: #b636ff;
    border:1px solid #b636ff;
    box-shadow: 0 5px 20px rgba(0,0,0,.2);
    -webkit-transition: 0.3s linear; 
    -moz-transition: 0.3s linear; 
    -ms-transition: 0.3s linear; 
    -o-transition: 0.3s linear; 
    transition: 0.3s linear;
}
/*.header-text a:hover{ box-shadow: 0 5px 20px rgba(0,0,0,.4);background:#9f00ff;border: 1px solid #9f00ff;}*/
/*---------------------------------------
  form              
-----------------------------------------*/

.checkbox-colour input{
  margin-right: 4px;
   margin-left: 4px;
}


.radiobtn input{
  margin-left:60px;
}

.radiotext{
  margin-right:-60px;
}


}
/*---------------------------------------
  Popup Image               
-----------------------------------------*/
 .modal {
  position: absolute;
  left:0;
  top:0;
  z-index:9000;
  background-color:#26262c;
  display:none;
}  



#boxes .window {
 position: absolute;
  left:0;
  top:0;
  width:440px;
  height:700px;
  display:none;
  z-index:9999;
  padding:20px;
  border-radius: 5px;
  text-align: center;
  background-color:var(--white-color);
}
#boxes #dialog {
  width:auto; 
  height:auto;
  padding: 5px 5px 5px 5px;
  background-color:var(--white-color);
  font-size: 15pt;

 
}
.popup-image1{

width: 600px; 
height:450px;
}
.popup-image{

background-color:var(--white-color);
width: 600px; 
height:450px;
}

.popup-image-color {
font-weight: bold;
font-size: 30px;
color: #000000;
width: 600px; 
height:450px;
text-align:center;
margin-top: -450px;
  background:linear-gradient(#000080, #54C1EF);
    position: absolute;
    opacity: 0.5;
   


}
.popup-image-text{
position: relative;
text-align:center;
margin-top:-320px;
}


.agree:hover{
  background-color: #D1D1D1;
}
.popupoption:hover{
 background-color:#D1D1D1;
 color: green;
}
.popupoption2:hover{
 color: red;
}


/*---------------------------------------
  SECTION1                
-----------------------------------------*/

.TOP-padding {
   
     text-align: center;
      color: white;
}




/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;

}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background: rgba(0, 0, 0, 0.35);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.section-overlay + .container {
  position: relative;
}

.anime{
  transition: all .7s ease-in-out;
}
.anime1{
  transition: all .7s ease-in-out;
}
.anime2{
  transition: all .7s ease-in-out;
}
.anime4{
  transition: all .7s ease-in-out;
}

.left{
  transform: translateX(80px);
}

.right{
  transform: translateX(-80px);
}

.resetX{
  transform: translateX(0);
}

.resetX2{
  transform: translateX(0);
}

.resetX1{
  transform: translateX(0);
}

.resetX4{
  transform: translateX(0);
}
/*---------------------------------------
  CUSTOM BLOCK               
-----------------------------------------*/
.custom-block-wrap {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
}

.custom-block-wrap:hover {
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}

.custom-block-body {
  padding: 30px;
}

.custom-block-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-block .custom-btn {
  border-radius: 0;
  display: block;
}


/*---------------------------------------
  PROGRESS BAR               
-----------------------------------------*/
.progress {
  background: var(--border-color);
  height: 5px;
}

.progress-bar {
  background: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM LIST               
-----------------------------------------*/
.custom-list {
  margin-bottom: 0;
  padding-left: 0;
}

.custom-list-item {
  list-style: none;
  margin-top: 10px;
  margin-bottom: 10px;
}


/*---------------------------------------
  CUSTOM TEXT BOX               
-----------------------------------------*/
.custom-text-box {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  margin-bottom: 24px;
  padding: 40px;
}

.custom-text-box-image {
  border-radius: var(--border-radius-medium);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-text-box-icon {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-large);
  color: var(--secondary-color);
  font-size: var(--h6-font-size);
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  width: 25px;
  height: 25px;
  line-height: 30px;
}


/*---------------------------------------
  AVATAR IMAGE - TESTIMONIAL, AUTHOR               
-----------------------------------------*/
.avatar-image {
  border-radius: var(--border-radius-large);
  width: 65px;
  height: 65px;
  object-fit: cover;
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--secondary-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-normal);
  line-height: normal;
  padding: 15px 25px;
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn {
  color: var(--custom-btn-bg-color);
  margin-top: 8px;
  padding: 12px 25px;
}

.custom-btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--primary-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
  color: var(--white-color);
}

/*
.custom-btn {
  background: var(--secondary-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-normal);
  line-height: normal;
  padding: 15px 25px;
}
.custom-btn:hover{
  background: var(--Bright-Blue);
   color: var(--white-color); 
}


.navbar-expand-lg .navbar-nav .nav-link.custom-btn {
  color: var(--custom-btn-bg-color);
  margin-top: 8px;
  padding: 12px 25px;
}

/*.custom-btn: {
  /*background: var(--primary-color);
  color: var(--white-color); 
  margin: auto;
  width: 50%;
  border: 3px solid ; 
  padding: 10px; 
}*/

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--primary-color);
}
.center {
  margin: auto;
  width: 50%;
 border: 3px solid green; 
  padding: 10px; 
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--Bright-Blue);
  border-color: transparent;
  color: var(--white-color);
}*/


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.navbar {
  background: var(--white-color);
  z-index: 9;
  padding-top: 0;
  padding-bottom: 0;
}





.navbar-brand {
  color: var(--primary-color);
  font-size: var(--h6-font-size);
  font-weight: var(--font-weight-bold); 
  margin-right: -20px;

}

.navbar-brand span {
  display: inline-block;

 /* vertical-align: middle;*/
  
}

.navbar-brand small {
  color: var( --Bright-Blue);
  display: block;
  font-size: 30px;
  line-height: normal;
  text-transform: uppercase;
  margin-top: -15px;
}


.navbar1{
  color: var(--primary-color);
font-size: 40px;
font-weight: bold;



}
.navbar1:hover{
color: var(--Bright-Blue);



}
.navbar2{
font-size: 12px; 
text-align: left;
margin-left: 79px;
margin-top: -30px;
margin-bottom: 23px;

}

.logo {
  width: 60px;
  height: 70px;
  margin-bottom: 20px;
   margin-right: 60px;
  margin-left: -60px;
}

.navbar-expand-lg .navbar-nav .nav-link {
  margin-right: 0;
  margin-left: 0;
  padding: 20px;
  text-decoration-style: solid;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--primary-color);
  font-size: 15px;
  font-weight: var(--font-weight-semibold);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
  text-decoration-style: solid;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  background: transparent;
  color: var(--Bright-Blue);
}

.dropdown-menu {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  border: 0;
  
  padding: 0;
  margin-top: 20px;

}

.dropdown-item {
  display: inline-block;
  color: var(--primary-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-semibold);
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;



}

.dropdown-menu li:last-child .dropdown-item {
  padding-top: 0;
  width: 250px;
}

.dropdown-item.active, 
.dropdown-item:active,
.dropdown-item:focus, 
.dropdown-item:hover {
  background: transparent;
  color: var(--Bright-Blue);
}

.dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--copyright-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

@media screen and (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--dark-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background: var(--primary-color);
  padding-top: 15px;
  padding-bottom: 10px;
}

.site-header p,
.site-header p a,
.site-header .social-icon-link {
  color: var(--white-color);
  font-size: var(--copyright-font-size);
}

.site-header .social-icon {
  text-align: right;
}

.site-header .social-icon-link {
  background: transparent;
  width: inherit;
  height: inherit;
  line-height: inherit;
  margin-right: 15px;
}


/*---------------------------------------
  Header        
-----------------------------------------*/
/*.header-image{
   width:1359px ;
   height:300px;
   margin-left: -10px;


  }*/


.header-image1{
   position: absolute;
 width: 200px;
  height: 200px;
  margin-top: -250px;
 margin-left:80px;


}

.header-image2{
  position: absolute;
  width: 200px;
  height: 200px;
  margin-top: -250px;
   margin-left:1070px;
   
}
/*---------------------------------------
  HERO & HERO SLIDE         
-----------------------------------------*/
.hero-section-full-height {
  height: 300px;
  min-height: 300px;
  position: relative;
}

.carousel:hover .carousel-control-next-icon, 
.carousel:hover .carousel-control-prev-icon {
  opacity: 1;
}

#hero-slide .carousel-item {
  height: 300px;
  min-height: 300px;
}

#hero-slide .carousel-caption {
  background: var(--white-color);
  clip-path: polygon(100% 100%, 100% 150px, 0 100%);
  color: var(--secondary-color);
  top: 1px;
  bottom: -1px;
  right: 0;
  left: auto;
  text-align: right;
  min-width: 680px;
  min-height: 680px;
  padding: 100px 100px 50px 100px;
}

.carousel-image {
  display: block;
  width: 100%;
  height: 300px;
  }

#hero-slide .carousel-indicators-wrap {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

#hero-slide .carousel-indicators {
  margin-right: 0;
  margin-left: 22px;
  justify-content: inherit;
}

.carousel-control-next, 
.carousel-control-prev {
  opacity: 1;
 margin: 20px;
}

.carousel-control-next-icon, 
.carousel-control-prev-icon {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-large);
  background-size: 60% 60%;
  width: 80px;
  height: 80px;
  opacity: 0;
  transition: all 0.5s;
}

.carousel-control-next-icon:hover, 
.carousel-control-prev-icon:hover {
  background-color: var(--primary-color);
}

/*---------------------------------------
  Video BLOCK              
-----------------------------------------*/

.video-text {
  color: var(--Bright-Blue);
  font-size: var(--h6-font-size);
  font-weight: var(--font-weight-bold); 
  margin-right: -20px;
      animation: animate  
                1.5s linear infinite; 
        } 
  
        @keyframes animate { 
            0% { 
                opacity: 0; 
            } 
  
            50% { 
                opacity: 0.7; 
            } 
  
            100% { 
                opacity: 0; 
            }
}

/*---------------------------------------
  FEATURE BLOCK              
-----------------------------------------*/
.featured-block {
  text-align: center;
 /* transition: all 0.5s ease;*/
  min-height: 256px;
  padding: 15px;
 
}

.featured-block:hover {
 /* background: var(--white-color);
  border-radius: var(--border-radius-medium);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);*/
}

.featured-block:hover .featured-block-image {
  transform: scale(0.75);
}

.featured-block-image {
  display: block;
  margin: auto;
  transition: all 0.5s;
}

.featured-block:hover .featured-block-text {
  margin-top: 0;
}

.featured-block-text {
  color: var(--primary-color);
  font-size: var(--h5-font-size);
  margin-top: 20px;
  transition: all 0.5s;
}


/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-section {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.about-image {
  border-radius: var(--border-radius-medium);
  display: block;
  width: 350px;
  height: 400px;
  object-fit: cover;
}

.custom-text-block {
  padding: 60px 40px;
}


/*---------------------------------------
  COUNTER NUMBERS              
-----------------------------------------*/
.counter-thumb {
  margin: 20px;
  margin-bottom: 0;
}

.counter-number,
.counter-text {
  color: var(--secondary-color);
  display: block;
}

.counter-number,
.counter-number-text {
  color: var(--primary-color);
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
}


/*---------------------------------------
  VOLUNTEER              
-----------------------------------------*/
.volunteer-section {
  background: var(--white-color);
  position: relative;
  overflow: hidden; 

}

.volunteer-section::after {
  content: "";
  background: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  bottom: -100px;
  right: -90px;
  width: 100%;
  height: 350px;
   
}

.volunteer-form {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding-top: 35px; 
  list-style-type:square
}
.volunteer-form1 {
  background: var(--white-color);
  margin-top: 40px;
  margin-bottom: -10px; 
 
}
.volunteer-form3 {
  color: var(--Bright-Blue);
 
  font-size: 20px;
  font-weight: bold; 
 
}

.volunteer-image {
  border-radius: 100%;
  display: block;
   margin-top: 20px
  margin-left:100px;
  width: 350px;
  height: 350px;

}

.volunteer-image1 {
 display: block;
  margin-left: 200px;

  width: 200px;
  height: 200px;
}
 .volunteer-form1-margin{
margin-top: -70px;

 }

.wrap {
   display: block;
  margin-left: 40px;
  margin-top: 5px;
  width: 300px;
  height: 300px;
  position: absolute;
  padding: 1em;
  background: var(--Bright-Blue)
  box-shadow: 0 2px 3px rgba(2,0,36,0.5);
}
   a.text {
  border-radius: 100%;
  background: rgba(28, 168, 253, 0.5);
  opacity: 0.3px;
  color: #fff;
  transition: opacity .5s;
  opacity: 0;
  position: absolute;

  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 300px;
  font-size: 50px;
}
.wrap:hover .text {
  opacity: 1;
}

.volunteer-image3 {
   border-radius: 100%;
  display: block;
  margin-left: 0px;
  margin-top: 0px;
  width: 300px;
  height: 300px;
  position: absolute;
}
.volunteer-section .custom-block-body {
  max-width: 440px;
  margin: 0 auto;
   list-style-type: circle;
}

.volunteer-section .custom-block-body p {
  line-height: 1.7;
   list-style-type: circle;
}

/*---------------------------------------
  DONATE              
-----------------------------------------*/
.donate-section {
  background-image: url('../images/different-people-doing-volunteer-work.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}

.donate-form {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 50px;
}


/*---------------------------------------
  NEWS         
-----------------------------------------*/
.news-detail-header-section {
  background-image: url('../images/news/close-up-volunteer-oganizing-stuff-donation.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}

.news-block-top {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.news-block-two-col-image-wrap {
  border-radius: var(--border-radius-small);
  position: relative;
  overflow: hidden;
  width: 150px;
  margin-right: 20px;
}

.news-category-block {
  background: var(--secondary-color);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 10px 20px;
}

.news-category-block .category-block-link {
  color: var(--white-color);
  margin-right: 10px;
}

.news-block-info {
  padding-top: 10px;
  padding-bottom: 10px;
}

.news-block-title-link {
  color: var(--dark-color);
}

.news-detail-image {
  display: block;
  border-radius: var(--border-radius-medium);
}

blockquote {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-semibold);
  color: var(--site-footer-bg-color);
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 90px 50px 50px 50px;
  text-align: center;
}

blockquote::before {
  content: "“";
  color: var(--custom-btn-bg-color);
  font-size: 100px;
  line-height: 1rem;
  display: block;
}

.author-comment-link {
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-semibold);
}

.search-form {
  margin-top: 20px;
}

.category-block,
.subscribe-form {
  margin-top: 40px;
  margin-bottom: 40px;
}

.category-block-link {
  font-size: var(--copyright-font-size);
  margin-top: 5px;
  margin-bottom: 5px;
}

.category-block-link:hover {
  color: var(--primary-color);
}

.badge {
  background: var(--secondary-color);
  border-radius: var(--border-radius-medium);
  font-weight: var(--font-weight-normal);
  line-height: normal;
  padding-bottom: 2px;
}

.tags-block-link {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-medium);
  display: inline-block;
  font-size: var(--copyright-font-size);
  line-height: normal;
  margin-right: 10px;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 8px 15px;
}

.tags-block-link:hover {
  border-color: var(--dark-color);
  color: var(--dark-color);
}

.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  background-color: var();
  border-radius: 50%;
  position: absolute;
  top: -100px;
  left: -30px;
  margin: auto;
  width: 200px;
  height: 200px;
}

.cta-section::after {
  content: "";
  border: 20px solid var();
  border-radius: 50%;
  position: absolute;
  bottom: -100px;
  right: 0;
  left: 0;
  margin: auto;
  width: 150px;
  height: 150px;
}


/*---------------------------------------
  TESTIMONIAL CAROUSEL              
-----------------------------------------*/
.testimonial-section {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.testimonial-section::before {
  content: "";
  background-color: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  top: -100px;
  left: -30px;
  margin: auto;
  width: 250px;
  height: 250px;
}

.testimonial-section::after {
  content: "";
  background: var(--custom-btn-bg-color);
  border-radius: 50%;
  position: absolute;
  bottom: -110px;
  right: -80px;
  width: 350px;
  height: 350px;
}

#testimonial-carousel .carousel-caption {
  position: relative;
  right: 0;
  bottom: 0;
  left: 0;
}

#testimonial-carousel .carousel-title {
  background: var(--section-bg-color);
  line-height: normal;
  margin-bottom: 30px;
}

#testimonial-carousel .carousel-title::before {
  content: open-quote;
  color: var(--p-color);
  font-size: var(--h1-font-size);
  position: relative;
  top: 10px;
  right: 10px;
}

#testimonial-carousel .carousel-title::after {
  content: close-quote;
  color: var(--p-color);
  font-size: var(--h1-font-size);
  position: relative;
  top: 10px;
  left: 10px;
}

#testimonial-carousel .carousel-title {
  quotes: "“" "”" "‘" "’";
}

#testimonial-carousel .carousel-name {
  background: var(--primary-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 10px 20px;
}

#testimonial-carousel .carousel-name::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 0;
  left: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--primary-color);
}

.carousel-name-title {
  font-weight: var(--font-weight-semibold);
}

#testimonial-carousel .carousel-indicators {
  position: relative;
  top: 150px;
  bottom: auto;
  margin-top: 50px;
  margin-bottom: 150px;
}

#testimonial-carousel .carousel-indicators li {
  text-indent: inherit;
  background: transparent;
  margin: 0 10px; 
}

#testimonial-carousel .carousel-indicators li,
#testimonial-carousel .carousel-indicators li::before {
  width: 45px;
  height: 45px; 
}

#testimonial-carousel .carousel-indicators .avatar-image {
  width: 45px;
  height: 45px; 
}

#testimonial-carousel .carousel-indicators .active,
#testimonial-carousel .carousel-indicators .active .avatar-image {
  background: transparent;
  width: 50px; 
  height: 50px;
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.contact-section {
  background: var(--white-color);
}

.contact-form {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  padding: 40px;
}

.contact-info-wrap {
  padding-top: 40px;
}

.contact-image-wrap {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  width: 100%;
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control,
.input-group-file {
  background-color: var(--section-bg-color);
  box-shadow: none;
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
  color: white;
}

   .select-control{

 background-color: var(--section-bg-color);
  box-shadow: none;
  border: 0;
  color: var(--p-color);
  margin-bottom: 24px;

 height: 50px;
  padding-bottom: 13px;
  outline: none;
  color: white;
   border-radius: .25rem;
  padding: 13px .75rem;
 background: #000080 url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'><path fill='%23ffffff' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>") right .75rem center/8px 10px no-repeat!important;
 


 
 }

 .select-control:hover{
    border-color: var(--secondary-color);
 }

.custom-form .form-control:hover {

}

.custom-form label {
  margin-bottom: 10px;
}






.custom-form .form-check-group {
  margin-bottom: 20px;
}

.donate-form .form-check-group-donation-frequency {
  padding-right: 0;
}

.form-check-group-donation-frequency + .form-check-group-donation-frequency {
  padding-right: 12px;
  padding-left: 0;
}

.form-check-group-donation-frequency .form-check-label {
  font-weight: var(--font-weight-semibold);
}

#DonationFrequencyOne {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

#DonationFrequencyMonthly {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-form .form-check-radio {
  position: relative;
  height: 100%;
  padding-left: 0;
}

.input-group-text {

  border: 0;
  color: var(--primary-color);
}

.custom-form .form-check-radio .form-check-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.form-check-radio .form-check-input[type=radio] {
  background-color: var(--section-bg-color);
  border-radius: .25rem;
  border: 0;
  box-shadow: none;
  outline: none;
  width: 100%;
  margin-top: 0;
  margin-left: 0;
  padding: 25px 50px;
  transition: all 0.5s;
}

.form-check-radio .form-check-input:checked[type=radio] {
  background-image: none;
}

.form-check-radio .form-check-input:checked[type=radio] + .form-check-label,
.form-check-radio .form-check-input:hover + .form-check-label,
.form-check-radio .form-check-input:checked + .form-check-label {
  color: var(--white-color);
}

.form-check-radio .form-check-input:hover,
.form-check-radio .form-check-input:checked {
  background-color: var(--secondary-color);
  border-color: var(--white-color);
}

.input-group-file {
  border-radius: .25rem;
  padding: 13px .75rem;
}

.input-group-file input[type=file] {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
  padding: 0;
}

.input-group-file .input-group-text {
  background: transparent;
  color: inherit;
  margin-bottom: 0;
  padding: 0;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-semibold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}

/*---------------------------------------
  Upload file 1           
-----------------------------------------*/
.file-upload{
  display:block;
  text-align:center;
  font-family: Helvetica, Arial,sans-serif;
  font-size: 12px;
 }

.file-upload .file-select{
  display:block;
  border: 3px solid var(--primary-color);
  color: #FFFFFF;  
  border-radius: .25rem;
  cursor:pointer;
  height:50px;
  line-height:40px;
  text-align:left;
  background:var(--primary-color);
  overflow:hidden;
  position:relative;
}

.file-upload .file-select .file-select-button{
  background:var(--primary-color);
  padding:0 10px;
  display:inline-block;
  height:50px;
  line-height:40px;
}

.file-upload .file-select .file-select-name{
  line-height:40px;
  display:inline-block;
  padding:0 10px;
}

.file-upload .file-select:hover{
  border-color:var(--Bright-Blue);
  transition:all .2s ease-in-out;
  -moz-transition:all .2s ease-in-out;
  -webkit-transition:all .2s ease-in-out;
  -o-transition:all .2s ease-in-out;
}
.file-upload .file-select:hover .file-select-button{
  background:var(--Bright-Blue);
  color:#FFFFFF;
  transition:all .2s ease-in-out;
  -moz-transition:all .2s ease-in-out;
  -webkit-transition:all .2s ease-in-out;
  -o-transition:all .2s ease-in-out;
}
.file-upload.active .file-select{
  border-color:var(--Bright-Blue);
  transition:all .2s ease-in-out;
  -moz-transition:all .2s ease-in-out;
  -webkit-transition:all .2s ease-in-out;
  -o-transition:all .2s ease-in-out;
}
.file-upload.active .file-select .file-select-button{
  background:var(--Bright-Blue);
  color:#FFFFFF;
  transition:all .2s ease-in-out;
  -moz-transition:all .2s ease-in-out;
  -webkit-transition:all .2s ease-in-out;
  -o-transition:all .2s ease-in-out;
}
.file-upload .file-select input[type=file]{z-index:100;
  cursor:pointer;
  position:absolute;
  height:100%;
  width:100%;
  top:0;
  left:0;
  opacity:0;
  filter:alpha(opacity=0);
}
.file-upload .file-select.file-select-disabled{
  opacity:0.65;
}
.file-upload .file-select.file-select-disabled:hover{
  cursor:default;display:block;
  border: 3px solid var(--Bright-Blue);
  color:white;cursor:pointer;height:40px;
  line-height:40px;margin-top:5px;
  text-align:left;background:#FFFFFF;
  overflow:hidden;position:relative;
}
.file-upload .file-select.file-select-disabled:hover .file-select-button{
  background:#dce4ec;
  color:#666666;
  padding:0 10px;
  display:inline-block;
  height:40px;
  line-height:40px;
}
.file-upload .file-select.file-select-disabled:hover .file-select-name{
  line-height:40px;
  display:inline-block;
  padding:0 10px;
}
/*---------------------------------------
  CONTACT SEARCH & DONATE & SUBCRIBE FORM              
-----------------------------------------*/

.custom-select{
  font-family: Poppins;
  border: 1px solid #FFFFFF !important;
  font-size: 12px!important;
  border-radius: 30px!important;
  width: 130px!important;
  height: 36px;
  background-color: #5A71E1!important;
  color: #FFFFFF!important;
  background: #5A71E1 url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'><path fill='%23ffffff' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>") right .75rem center/8px 10px no-repeat!important;
 }
.contact-form .form-control {
  background: var(--white-color);
}

.search-form {
  position: relative;
}

.search-form .form-control {
  padding-right: 50px;
}

.search-form button[type="submit"] {
  background: transparent;
  position: absolute;
  top: 0;
  right: 0;
  color: var(--p-color);
  width: 50px;
  padding: 12px;
}

.search-form button[type="submit"]:hover {
  background: transparent;
  color: var(--dark-color);
}

.subscribe-form {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  padding: 30px;
}

.subscribe-form .form-control {
  background: var(--white-color);
}

.donate-form .form-control {
  margin-bottom: 0;
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  background-color: var(--primary-color);
  padding-top: 70px;
  margin-top: 100px;
}

.site-footer-bottom {
  background-color: var(--white-color);
  position: relative;
  z-index: 2;
  margin-top: 70px;
  padding-top: 25px;
  padding-bottom: 25px;
}

.site-footer-bottom a {
  color: var(--white-color);
}


.site-footer-bottom a:hover {
  color: var(--Bright-Blue);
}

.site-footer-link {
  color: var(--white-color);

}

.site-footer-link3 {
 margin-left: 20px;
  margin-top: -41px;
 color: var(--white-color);  
}

.site-footer-link4 {
 margin-left: 20px;
  margin-top: -30px;
 color: var(--white-color);  
}




.site-footer-link2 {
  color: var(--white-color);
   font-size: 15px;
  margin-left: -60px;
  margin-top: -30px;
    text-align: left ;
}

.copyright-text {
  color: var(--primary-color);
  font-size: 15px;
  margin-right: 30px;

}

.site-footer .custom-btn {
  font-size: var(--site-bg-color);
}

.site-footer .custom-btn:hover {
  background: var(--primary-color);
}


/*---------------------------------------
  FOOTER MENU               
-----------------------------------------*/
.footer-menu {
  column-count: 2;
  margin: 0;
  padding: 0;
}

.footer-menu-item {
  list-style: none;
  display: block;
}

.footer-menu-link {
  font-size: var(--primary-color);
  color: var(--white-color);
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 5px;
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--primary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 5px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 38px;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

/*---------------------------------------
scroll to top               
-----------------------------------------*/
#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: var(--Bright-Blue); /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 100%; /* Rounded corners */
  font-size: 18px;
  height:50px;
    width:50px;
   /* Increase font size */
}

#myBtn:hover {

  background-color: var(--Bright-Blue); 
  color: var(--primary-color);
}



/*---------------------------------------
 information-page              
-----------------------------------------*/

.information-form{
   color: var(--Bright-Blue);
  font-size: 14px;
  font-weight: var(--font-weight-semibold); 

}

.information-image{
  border-radius: 100%;
  display: block;
  margin-top: 5px;
  margin-left: 20px;
  width: 400px;
  height: 400px;
}

.registration-table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: 1px solid #ddd;
  margin-bottom: 20px;
}

th, td {
  text-align: left;
  padding-left: 5px;
  padding-right: 5px;
   padding-top: 8px;
    padding-bottom: 8px;
  border: 1px solid #ddd;
   font-weight: bold;
   font-size:15px;
    color:var(--primary-color);
    
}

.middle { border: 2px solid red; }


tr:nth-child(even){
  background-color: #f2f2f2;

}

 
td:hover {
  background-color: #ddd;

}

.registration-table-rows{
   padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color:var(--primary-color);
  color: white;
}



/*---------------------------------------
 program-page              
-----------------------------------------*/
.program-image{
  display: block;
  margin-bottom:50px;
  margin-top: 50px;
 
  display: flex;
  justify-content: center;

}


/*--------------------*/
/* CLIENTS */
/*--------------------*/

#mu-clients {
  background-color: #f6f6f6;
  display: inline;
  float: left;
  width: 100%;
}

.mu-clients-area {
  display: inline;
  float: left;
  padding: 70px 0;
  width: 100%;
  text-align: center;
}

.mu-clients-slider {
  display: inline;
  float: left;
  width: 100%;
}

.mu-clients-single {
  display: inline;
  float: left;
 }

.mu-clients-slider .slick-next {
  right: -40px;
}

.mu-clients-slider .slick-prev {
  left: -60px;
}

.mu-clients-slider .slick-prev, 
.mu-clients-slider .slick-next {
  background-color: transparent;
}
 
 .mu-clients-single-img {
  border-radius: 100%;
  display: block;
  width: 250px;
  height: 250px;
}

.programimages{
   display: block;
   width: 120px;
  height: 120px;
  padding:10px;
}


/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients .clients-wrap {
 /* border-top: 1px solid #ececec;
  border-left: 1px solid #ececec;
  rgb(0, 0, 128)*/

}

.clients .client-logo {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 2px solid rgb(0, 0, 128);
  border-bottom: 1px solid #ececec;
   margin-bottom: 20px;

  overflow: hidden;
  background: #fff;
  height: 110px;
}

.clients .client-logo img {
  transition: all 0.3s ease-in-out;
  width: 100px;
  height: 90px;


}

.clients .client-logo:hover img {
  filter: none;
  transform: scale(1.1);
}

/*---------------------------------------
  Image Modal              
-----------------------------------------*/

 #simple-modal .modal-dialog {
  max-width: 800px;
  margin: 30px auto;
}

#simple-modal .modal-body {
  position: relative;
  padding: 0px;
  min-height: 400px;
  background: #ccc;
}

#simple-modal .btn-close {
  position: absolute;
  right: -60px;
  top: -24px;
  font-size: 1rem;
  font-weight: normal;
  opacity: 1;
}

#image {
  width: 100%;
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/

/*@media only screen and (max-width: 1359px) {

.header-image{
   width:100% ;
   height:100%;
  
}

@media only screen and (max-width: 1359px) {

.header-image1{
    width: 50px;
  height: 50px;
  margin-top: -190px;
 margin-left:40px;

 }
  
  .header-image2{
   width:50px;
   height:50px;
    margin-top: -190px;
 margin-left:280px;
}
}*/



@media screen and (min-width: 1600px) {
  .featured-block {
    min-height: inherit;
  }

  .volunteer-section::after {
    width: 450px;
    height: 450px;
  }
  
  .volunteer-image {
    width: 350px;
    height: 350px;
  }
    .volunteer-image1 {
      margin-left:120px;
    margin-top:-300px;
      width:150px;
      height:150px;
  }
   .volunteer-image3 {
      width: 250px;
     height: 250px;
    margin-top:-260px;
  }
     
  #boxes #dialog {
  width:auto; 
  height:auto;
}
.popup-image1{

width: 300px; 
height:300px;
}
.popup-image{

width: 300px; 
height:300px;
}

.popup-image-color {
margin-top: -300px;
width: 300px; 
height:300px;


}
.popup-image-text{
margin-top: -200px;
}
}

@media screen and (max-width: 1170px) {
  #hero-slide .carousel-image {
    height: 100%;
    object-fit: cover;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .hero-form {
    padding-bottom: 40px;
  }

  .donate-form {
    padding: 35px;
  }

  .navbar {
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .site-footer-link2{
     margin-left: 5px;
  }
 .navbar-brand {
   margin-left: 60px;
  }
  .navbar-expand-lg .navbar-nav {
    padding-bottom: 30px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 8px 20px;
  }
  
  .dropdown:hover .dropdown-menu {
    display: block;
    position: relative;
    margin-top: 5px;
    margin-bottom: 20px;
    left: 20px;
  }

  .site-header .social-icon {
    text-align: left;
    margin-top: 5px;
  }

  .hero-section-full-height {
    height: inherit;
  }

  .carousel:hover .carousel-control-next-icon, 
  .carousel:hover .carousel-control-prev-icon {
    opacity: 1;
  }

  #hero-slide .carousel-item {
    height: inherit;
  }

  .carousel-control-prev {
      left: -10px;
     margin-top: 28px;
      width: 30px;
    height: 30px;
  }

  .carousel-control-next {
    right: -10px;
    margin-top: 28px;
     width: 40px;
    height: 40px;
  }

  .carousel-control-next-icon, 
  .carousel-control-prev-icon {
    opacity: 1;
    width: 30px;
    height: 30px;
  }

  .news-detail-header-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .cta-section::before {
    width: 150px;
    height: 150px;
  }

  .cta-section::after {
    bottom: -60px;
    width: 100px;
    height: 100px;
  }

  .cta-section .row {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .volunteer-section::after {
    width: 300px;
    height: 300px;
  }

  .testimonial-section::before {
    width: 150px;
    height: 150px;
  }

  .testimonial-section::after {
    width: 200px;
    height: 200px;
  }

  #testimonial-carousel .carousel-caption {
    padding-top: 0;
  }

  blockquote {
    padding: 70px 30px 30px 30px;
  }

  .about-image {
    width: inherit;
    height: 450px;
  }

  .volunteer-image {
    width: 250px;
    height: 250px;
    margin: 0;
  }
     .volunteer-image1 {
      margin-left:auto;
      margin-right:auto;
      margin-top:1000px;
      width:150px;
      height:150px;
  }
   .volunteer-image3 {
      margin-left:auto;
      margin-right:auto;
      width: 300px;
     height: 300px;
  
  }
.overlay {
  width: 250px;
    height: 250px;
  }
 /*   .header-image1{
  position: absolute;
  width: 70px;
  height: 70px;
  margin-top:-125px;
 margin-left:10px;


}

.header-image2{
  position: absolute;
  width: 70px;
  height: 70px;
  margin-top: -125px;
   margin-left:405px;
   
}*/
  .custom-text-block {
    padding: 20px 0 0 0;
  }

  .custom-text-box,
  .volunteer-form {
    padding: 30px;
  }

  .counter-number, 
  .counter-number-text {
    font-size: var(--h2-font-size);
  }

  .contact-info-wrap {
    padding-top: 0;
  }

  .site-footer {
    padding-top: 50px;
  }

  .copyright-text-wrap {
    justify-content: center;
  }

  .site-footer-bottom {
    text-align: center;
    margin-top: 50px;
  }

  .site-footer-bottom .footer-menu {
    margin-top: 10px;
    margin-bottom: 10px;
  }
    .modal{
    width: auto;
    height:auto;
    margin-right:20px;
  top:0px;
  }

  #boxes #dialog {
  width:auto; 
  height:auto;
 left:-60px;
  }
.popup-image1{

width: 300px; 
height:300px;
}
.popup-image{

width: 300px; 
height:300px;
}

.popup-image-color {
margin-top: -300px;
width: 300px; 
height:300px;


}
.popup-image-text{
margin-top: -200px;
}
  
.new-sale-section{
 padding-left:20px;
padding-right:20px
}


}


@media screen and (max-width: 580px) {
  .hero-section-full-height,
  #hero-slide .carousel-item,
  .carousel-image {
    min-height: 150px;

  }

  #hero-slide .carousel-caption {
    clip-path: polygon(100% 100%, 100% 100px, 0 100%);
    padding-right: 50px;
    min-width: inherit;
    min-height: inherit;
  }

    .carousel-control-next, 
  .carousel-control-prev {
    width: 30px;
    height: 30px;
  }

  .modal{
    width: auto;
    height:auto;
    left:0;
  top:0;
  }

  #boxes #dialog {
  width:auto; 
  height:auto;
}
 .volunteer-image1 {
    width: 120px;
    height: 120px;
    margin-top:-500px;
  margin-left: auto;
   margin-right: auto;
  }
  .volunteer-image3 {
    width: 120px;
    height: 120px;
    margin-top:-300px;
  margin-left: auto;
   margin-right: auto;  

  }
  .overlay {
  width: 250px;
    height: 250px;
  }
.popup-image1{

width: 300px; 
height:300px;
}
.popup-image{

width: 300px; 
height:300px;
}

.popup-image-color {
margin-top: -300px;
width: 300px; 
height:300px;


}
.popup-image-text{
margin-top: -200px;
}
}

/*#boxes .window {
 
  width:auto;
  height:auto;

}
#boxes #dialog {
  width:auto; 
  height:auto;
 

 
}
.popup-image1{

width: 300px; 
height:300px;
}
.popup-image{

width: 300px; 
height:300px;
}

.popup-image-color {
margin-top: -300px;
width: 300px; 
height:300px;


}
.popup-image-text{
margin-top: -200px;
}
*/


@media screen and (max-width: 480px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }


  #hero-slide .carousel-caption {
    min-width: inherit;
    padding-bottom: 30px;
  }

  .carousel-control-next, 
  .carousel-control-prev {
    width: 30px;
    height: 30px;
  }

  .volunteer-image {
    width: 150px;
    height: 150px;
  }

  .volunteer-image1 {
    width: 150px;
    height: 150px;
   margin-top:150px;
  
  }
  .volunteer-image3 {
    width: 120px;
    height: 120px;
     margin-top:5px;
    margin-left:120px;
  }

 
  .volunteer-section::after {
    width: 200px;
    height: 200px;
  }

  .testimonial-section::before {
    top: -50px;
    width: 100px;
    height: 100px;
  }

  .testimonial-section::after {
    bottom: -150px;
    width: 200px;
    height: 200px;
  }

  .social-share .tags-block {
    margin-bottom: 10px;
  }

  .donate-form {
    padding: 25px;
  }

  .modal{
    width: auto;
    height:auto;
    left:0;
  top:0;
  }
  #boxes #dialog {
  width:auto; 
  height:auto;
}
.popup-image1{

width: 300px; 
height:300px;
}
.popup-image{

width: 300px; 
height:300px;
}

.popup-image-color {
margin-top: -300px;
width: 300px; 
height:300px;


}
.popup-image-text{
margin-top: -200px;
}

}


/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}


/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

