@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;600&display=swap');
html{
    scroll-behavior: smooth;

}
@font-face {
    font-family: healthyAfrica;
    src:url("../font/Kabrio-Extrabold-Italic-trial.ttf");
}
@font-face {
    font-family: healthyAfricalite;
    src:url("../font/DHannaSoft-BoldItalic.ttf");
}


/* coming soon page */
#coming-soon{
    min-height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    /* background-image: linear-gradient(to bottom, red, gold 80%); */
    overflow: hidden;
    font-family: healthyAfricalite;
  }
  #coming-soon h2{
    font-size: 5rem;
    font-weight: bold;
    padding: 3rem;
  }

  #coming-soon .countdown{
    display: flex;
    justify-content: space-around;
    text-align: center;
  }
  #coming-soon .month,
  #coming-soon .day,
  #coming-soon .hour,
  #coming-soon .minute,
  #coming-soon .second{
    font-size: 3rem
  }
  #coming-soon .colon{
    font-size: 3rem;
  }
  #coming-soon .waiting{
    height: 50%;
    width:50%;
  }


/* Loader styles */

/* section position and background */
#loader{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #fff;
    transition: 1s ease-in-out;
    z-index: 100;
    overflow: hidden;
  }
  
  /* Loader position */
  /* #loader .center{
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  } */
  
  /* The spinning ring */
  #loader .ring{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 200px;
    height: 200px;
    background: transparent;
    border: 3px solid transparent;
    border-radius: 50%;
    text-align: center;
    line-height: 200px;
    font-family: healthyAfrica;
    font-size: 20px;
    color: #2596a0;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 0 10px #2596a0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  }
  
  #loader .ring::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border: 3px solid transparent;
    border-top: 3px solid #2596a0;
    border-right: 3px solid #2596a0;
    border-radius: 50%;
    animation: animateCircle 2s linear infinite ;
  }
  
  
  #loader span{
    display: block;
    position: absolute;
    top: calc(50% - 2px);
    left: 50%;
    width: 50%;
    height: 4px;
    background: transparent;
    transform-origin: left;
    animation: animate 2s linear infinite;
  }
  #loader span:before{
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #2596a0;
    top: -6px;
    right: -5px;
    box-shadow: 0 0 20px #2596a0;
  }
  @keyframes animateCircle {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
  }
  @keyframes animate {
    0%{
        transform: rotate(45deg);
    }
    100%{
        transform: rotate(405deg);
    }
  }
  
  /* Make loader invisible on page load */
  
  /* Class added through js (see main.js)*/
  #loader.fade-out{
    visibility: hidden;
    pointer-events: none;
    animation: fadeOut 1s;
    transition: 1s;
  }
  
  @keyframes fadeOut {
    from{
      opacity: 1;
    }
    to{
      opacity: 0;
    }
  }
  
  /* navigation bar and banner */
  #navigation{
    position: fixed;
    z-index: 10;
    width: 100%;
  }
#navigation .logoBox{
    height: 50px;
    width: 50px;
    background-image: url("../img/logo.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.navbar{
    padding: 20px 0;
    transition: all 0.3s ease;
}
.navbar-brand{
    font-weight: 800;
    text-transform: uppercase;
    font-size: 2em;
    color: #262626;
}
.nav-item{
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
}
.navbar-nav .nav-item:hover .nav-link,
.navbar-nav .nav-item.active .nav-link{
    background: #2596a0;
    color: #fff;
}
.navbar-nav .nav-item .nav-link{
    color: #262626;
    padding: 5px 15px;
}
.navbar .navbar-toggler{
    border: none;
    color: #fff;
    border: 2px solid #7f7f7f;
    border-radius: none;
    outline: none;
}



@media all and (min-width: 992px) {
	.navbar .nav-item .dropdown-menu{ display: none; }

	.navbar .nav-item:hover .dropdown-menu{ display: block; }
	.navbar .nav-item .dropdown-menu{ margin-top:0; }
}

.banner{
    position: relative;
    background: url("../img/Banner5.png");
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 250px 0 200px;
}
.banner h2{
    margin: 0;
    padding: 0;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 2.2em;
    font-weight: 1000;
    color: #f1f1f1;
    text-transform: uppercase;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px;
}
.banner h1{
    margin: 0;
    margin-top: 40px;
    padding: 0;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 2.8em;
    font-weight: 1000;
    color: #000;
    /* margin-left: -200px; */
    /* text-transform: capitalize; */
    /* background-color: rgba(0, 0, 0, 0.5); */
    padding: 15px;
}
.banner p{
    margin: 1em 0 0;
    /* margin-left: -200px; */
    margin-top: 20px;
    padding: 15px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.2em;
    line-height: 1.5em;
    color: #f1f1f1;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    text-align: justify;
}
.banner .btnRM{
    display: inline-block;
    margin: 1em 0 0;
    /* margin-left: -200px; */
    background:#ff2670;
    color: #fff;
    padding: 10px 20px;
    text-transform: uppercase;
    border: none;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 800;
}
.banner .btnRM:hover{
    color: #fff;
    text-decoration: none;
}
@media (max-width: 768px) {
    .navbar{
        background: rgba(255, 255, 255, .5);
    }
    .banner{
        padding:200px 0;
        background: url("../img/medLogoBg.png");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }
    .banner h2{
        font-size: 1.8em;
        color: #262626;
        text-align: center;
        display: none;
    }
    .banner h1{
        margin-left: 0;
    }
    .banner p{
        margin-left: 0;
        font-size: 1em;
    }
    .banner .btnRM{
        margin-left: 0;
    }
}
/* About Us section */
#aboutUs{
    /* height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../img/virusBg.png");
    background-attachment: fixed;
    background-size: fill;
}
#aboutUs .about-section{
    top: 0;
    width: 100%;
    background: url("../img/medBg.png") no-repeat left;
    background-size: 65%;
    overflow: hidden;
    padding: 100px 0;
}
#aboutUs .inner-container{
    width: 55%;
    float: right;
    background-color: #fdfdfd;
    padding: 150px;
}
#aboutUs .inner-container h1{
    margin-bottom: 30px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 30px;
    font-weight: 900;
}
#aboutUs .text{
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    color: #545454;
    line-height: 30px;
    text-align: justify;
    margin-bottom: 40px;
}
#aboutUs .skills{
    display: flex;
    justify-content: space-between;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 700;
    font-size: 13px;
}
#aboutUs .btnRM{
    display: inline-block;
    margin: 1em 0 0;
    background:#ff2670;
    color: #fff;
    padding: 10px 20px;
    text-transform: uppercase;
    border: none;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 800;
}
#aboutUs .btnRM:hover{
    color: #fff;
    text-decoration: none;
}
@media screen and (max-width:1200px) {
    #aboutUs .inner-container{
        padding: 80px;
    }
}
@media screen and (max-width:1000px) {
    #aboutUs .about-section{
        background-size: 100%;
        padding: 100px 40px;
    }
    #aboutUs .inner-container{
        width: 100%;
    }
}
@media screen and (max-width:600px) {
    #aboutUs .about-section{
       padding: 0;
    }
    #aboutUs .inner-container{
        padding: 60px;
        background: url("../img/medBg.png") no-repeat center;
    }
    #aboutUs .inner-container h1{
        color: #fff;
    }
    #aboutUs .text{
        color: #fff;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 15px;
    }
    #aboutUs .skills{
        color: #fff;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 15px;
        flex-direction: column;
    }
}

/* Categories Home section */
#ourCategories{
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url("../img/dnaBg1.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff !important;
}
#ourCategories .title{
    margin: 90px auto;
    text-align: center;
}
#ourCategories .title h1{
    letter-spacing: 1px;
    font-family: 'Source Sans Pro', sans-serif;
}
#ourCategories .title h1::after{
    content: '';
    background: #fff;
    display: block;
    width: 150px;
    height: 3px;
    margin: 10px auto;
}
#ourCategories .icon{
    font-size: 40px;
    margin: 20px auto;
    padding: 20px;
    height: 80px;
    width: 80px;
    border: 1px solid white;
    border-radius: 50%;
    line-height: 20px;
}

#ourCategories h3,
#ourCategories p{
    font-family: 'Source Sans Pro' sans-serif;
}
#ourCategories .col-lg-3:hover{
    box-shadow: 5px 7px 9px -3px rgba(255, 255, 255, 0.5);
    cursor: pointer;
}



/* contact us section */
#contactUs{
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url("../img/dnaBg2.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff !important;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    display: flex;
}
#contactUs .section-title{
    text-align: center;
    padding: 25px 0;

}
#contactUs .section-title h2{
    font-size: 30px;
    text-transform: uppercase;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
#contactUs .section-title h2 span{
    color: #2596a0;
}
#contactUs .contact-form{
    height: 495px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
    padding: 40px 30px;
    border-radius: 5px;
}
#contactUs .contact-form .btn{
    background-color: #2596a0;
    text-transform: uppercase;
    font-weight: 700;
    padding: 10px 25px;
    letter-spacing: 2px;
}
#contactUs .map-area{
    width: 600px;
    height: 495px;
    background: #fff;
    /* box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;*/
    border-radius: 5px; 
}
#contactUs .map-area iframe{
    width: 100%;
    height: 100%;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
    border-radius: 5px;
}

@media (max-width:991px) {
    #contactUs .contact-form{
        margin-bottom: 30px;
    }
    #contactUs .map-area{
        width: 100%;
        height: 400px;
    }
}
#footer{
  background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url("../img/medBg2.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff !important;
}
#footer a{
    font-family: 'Source Sans Pro', sans-serif;
    text-decoration: none;
    color: #fff;
    padding: 15px;
}
#footer a i{
    font-size: 23px;
    padding: 15px;
    letter-spacing: 1px;
}
#footer p{
    font-family: 'Source Sans Pro', sans-serif;
    text-decoration: none;
    letter-spacing: 1px;
}
#cusfoot{
    background: #333;
    font-family: 'Source Sans Pro', sans-serif;
    color: #fff;
    padding:12px;
    bottom: 0;
    height: 50px;
    text-align: center;
  }
  #cusfoot i{
    color: #e03c31;
  }

  /* about page */
  #banner .about{
    position: relative;
    background-image: linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0.6)), url("../img/medBg.png");
    background-size: cover;
    background-attachment: fixed;
    height: 50vh;
    overflow: hidden;
  }


  #banner .container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
  }

  #banner .container h1{
    font-family: healthyAfrica;
    margin: 0;
    font-size: 66px;
    color: #63696b;
    text-transform: capitalize;
  }

  #banner .container h1 span{
    border-bottom: 6px solid #63696b;
    padding: 6px 14px;
    display: inline-block;
  }

  #banner .cen{
    margin: 20px;
    display: block;
    font-size: 22px;
  }

  #banner .button{
    color: #313131;
    padding: 10px 24px;
    background: #f1f1f1;
    text-decoration: none;
    border-radius: 12px;
    transition: .6s;
  }
  #banner .button:hover{
    opacity: .6;
  }
  @media screen and (max-width: 625px) {
    #banner .container h1{
        font-family: healthyAfrica;
        margin: 0;
        font-size: 48px;
      }
  }
  @media screen and (max-width: 300px) {
    #banner .container h1{
        font-family: healthyAfrica;
        margin: 0;
        font-size: 30px;
      }
  }

  #cureAfya{
    /* height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../img/medBg4.png");
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
#cureAfya .about-section{
    top: 0;
    width: 100%;
    background: url("../img/CA_TZ.png") no-repeat left;
    background-size: 45%;
    /* background-color: #f1f1f1; */
    overflow: hidden;
    padding: 100px 0;

}
#cureAfya .inner-container{
    width: 65%;
    float: right;
    background-color: #fdfdfd;
    padding: 150px;
}
#cureAfya .inner-container h1{
    margin-bottom: 30px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 30px;
    font-weight: 900;
}
#cureAfya .text{
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 13px;
    color: #545454;
    line-height: 30px;
    text-align: justify;
    margin-bottom: 40px;
}

@media screen and (max-width:1200px) {
    #cureAfya .inner-container{
        padding: 80px;
    }
}
@media screen and (max-width:1000px) {
    #cureAfya .about-section{
        background-size: 100%;
        padding: 100px 40px;
    }
    #cureAfya .inner-container{
        width: 100%;
    }
}
@media screen and (max-width:600px) {
    #cureAfya .about-section{
       padding: 0;
    }
    #cureAfya .inner-container{
        padding: 60px;
        background: url("../img/CA_TZ.png") no-repeat center;
        background-size: contain;
    }
    #cureAfya .text{
        color: #fff;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 15px;
        width: 100%;
    }
}

#africab{
    /* height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../img/medBg2.png");
    background-attachment: fixed;
    background-size: cover;
}
#africab .about-section{
    top: 0;
    width: 100%;
    background: url("../img/AfricabInititaive2.png") no-repeat right;
    background-size: 45%;
    /* background-color: #f1f1f1; */
    overflow: hidden;
    padding: 100px 0;

}
#africab .inner-container{
    width: 55%;
    float: left;
    background-color: #fdfdfd;
    padding: 150px;
}
#africab .inner-container h1{
    font-family: 'Source Sans Pro', sans-serif;
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: 900;
}
#africab .text{
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 13px;
    color: #545454;
    line-height: 30px;
    text-align: justify;
    margin-bottom: 40px;
}

@media screen and (max-width:1200px) {
    #africab .inner-container{
        padding: 80px;
    }
}
@media screen and (max-width:1000px) {
    #africab .about-section{
        background-size: 100%;
        padding: 100px 40px;
    }
    #africab .inner-container{
        width: 100%;
    }
}
@media screen and (max-width:600px) {
    #africab .about-section{
       padding: 0;
    }
    #africab .inner-container{
        padding: 60px;
        background: url("../img/AfricabInitiative2.png") no-repeat center;
        background-size: contain;
    }
    #africab .text{
        color: #fff;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 15px;
        width: 100%;
    }
}

#statements{
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url("../img/Banner4.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff !important;
}
#statements .title{
    margin: 90px auto;
    text-align: center;

}
#statements .title h1{
    letter-spacing: 1px;
    font-family: 'Source Sans Pro', sans-serif;
}
#statements .title h1::after{
    content: '';
    background: #fff;
    display: block;
    width: 150px;
    height: 3px;
    margin: 10px auto;
}
#statements .icon{
    font-size: 40px;
    margin: 20px auto;
    padding: 20px;
    height: 80px;
    width: 80px;
    /* border: 1px solid white; */
    border-radius: 50%;
}
#statements .col-lg-4:hover{
    box-shadow: 5px 7px 9px -3px rgba(255, 255, 255, 0.5);
    cursor: pointer;
}
#statements .text{
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 30px;
    text-align: justify;
}
#team{
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url("../img/banner.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    
}
#team a{
    color: #e03a3c;
}
#team a:hover{
    color: #e76668;
    text-decoration: none;
}
#team .member{
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 5px;
    background: #fff;
}
#team .member .member-img{
    position: relative;
    overflow: hidden;
}
#team .member .social{
    position: absolute;
    left: 0;
    bottom: 30px;
    right: 0;
    opacity: 0;
    transition: ease-in-out 0.3s;
    text-align: center;
}
#team .member:hover .social{
    opacity: 1;
    bottom: 15px;
}
#team .member:hover .social a{
    transition: color 0.3s;
    color: #111111;
    margin: 0 3px;
    padding-top: 7px;
    border-radius: 50px;
    width: 36px;
    height: 36px;
    background: #e03a3c;
    display: inline-block;
    transition: ease-in-out 0.3s;
    color: #fff;
}
#team .member:hover .social a:hover{
    background: #111111;
}
#team .member .social i{
    font-size: 18px;
}
#team .member .member-info{
    padding: 25px 15px;
}
#team .member .member-info h4{
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    color: #111111;
}
#team .member .member-info span{
    display: block;
    font-size: 13px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    color: #aaaaaa;
}

#team .member .member-info p{
    display: block;
    font-size: 16px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    color: #000;
    text-align: justify;
}

/*PRODUCTS Page*/
#album{
  margin: 0;
  padding: 0;
  background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url("../img/Banner4.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.albumcontainer{
  width: 1280px;
  max-width: 100%;
  margin: 5px auto 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  transition: 0.5s;
  justify-content: center;
}
.albumcontainer .box{
  position: relative;
  width: 300px;
  height: 300px;
 /* background: #ff0; */
  margin: 10px;
  box-sizing: border-box;
  display: inline-block;

}
.albumcontainer .box .thumbnail{
  position: relative;
  overflow: hidden;
}
.albumcontainer .box .thumbnail img{
  max-width: 100%;
  width: 300px;
  height: 300px;
  object-fit: cover;
  transition: transform 2s;
}
.albumcontainer .box:hover .thumbnail img{
  width: 300px;
  height: 300px;
  object-fit: cover;
  transform: scale(1.2);
}
.albumcontainer .box .thumbdesc{
  position: absolute;
  top: 10px;
  left: 10px;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  transform: scaleY(0);
  transition: transform 0.5s;
}
.albumcontainer .box:hover .thumbdesc{
  transform: scaleY(1);
}
.albumcontainer .box .thumbdesc .content{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  padding: 15px;
  color: #fff;
}
.albumcontainer .box .thumbdesc .content h2{
  margin: 0;
  padding: 0;
  font-size: 20px;
  text-decoration: underline;
  font-family: 'Source Sans Pro', sans-serif;
}
.albumcontainer .box .thumbdesc .content p{
  margin: 10px 0 0;
  padding: 0;
  font-size: 15px;
}
.modbtn{
  position: relative;
  padding: 5px 20px;
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
  color: #fff;
  background: rgba(0,0,255,0.4);
  border-radius: 5px;
  box-shadow: 5px;
  font-family: 'Source Sans Pro', sans-serif;
}
.modbtn:hover{
  text-decoration: none;
  color: #fff;
  cursor: pointer;
}

.albumcontainer#blur.active{
  filter: blur(20px);
  pointer-events: none;
  user-select: none;
}

.popup{
  position: fixed;
  margin-top: 50px;
  height: 620px;
  top: 40%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 1280px;
  max-width: 100%;
  padding: 50px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, .30);
  background: #fff;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
  z-index: 1000;
}
.popup.active{
  margin-top: 50px;
  top: 40%;
  visibility: visible;
  opacity: 1;
  transition: 0.5s;
  width: 1280px;
  max-width: 100%;
  overflow-y: scroll;
}
.popup .content{
  text-align: center;
  padding: 15px;
}
.popup .content h2{
  margin: 0;
  padding: 0;
  font-size: 40px;
  text-decoration: none;
  font-family: 'Source Sans Pro', sans-serif;
}
.popup .content h3{
  margin: 0;
  padding: 0;
  font-size: 30px;
  text-decoration: underline;
  font-family: 'Source Sans Pro', sans-serif;
}
.popup .content p{
  margin: 10px 0 0;
  padding: 0;
}
.albumimages{
  width: 1280px;
  max-width: 100%;
  margin: 20px auto 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  transition: 0.5s;

}
.albumimages .box{
  position: relative;
  width: 250px;
  height: 250px;
  /* background: #ff0; */
  margin: 10px;
  box-sizing: border-box;
  display: inline-block;
}
.albumimages .box .thumbnail{
  position: relative;
  overflow: hidden;
}
.albumimages .box .thumbnail img{
  max-width: 100%;
  width: 250px;
  height: 250px;
  object-fit: cover;
  transition: transform 2s;
}
.albumimages .box:hover .thumbnail img{
  width: 250px;
  height: 250px;
  object-fit: cover;
  transform: scale(1.2);
}
.popup .fa.fa-times{
  position: sticky;
  top: 0;
  right: 0;
  padding: 0 5px;
  color: #000;
  margin-left: 100%;
  font-size: 24px;
  color: red;
}
.popup .fa.fa-times:hover{
  color: red;
  cursor: pointer;
}

/* Events Page */
#events{
    background-image: linear-gradient(to right, rgba(79, 172, 254, .6), rgba(0, 242, 254, .6)), url("../img/medBg7.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}




/* Responsibilities page */

#community{
    /* height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ddddddee;
    background-attachment: fixed;
    background-size: cover;
}
#community .about-section{
    top: 0;
    width: 100%;
    background: url("../img/handsbg.png") no-repeat left;
    background-size: 65%;
    /* background-color: #f1f1f1; */
    overflow: hidden;
    padding: 100px 0;

}
#community .inner-container{
    width: 55%;
    float: right;
    background-color: #fdfdfd;
    padding: 150px;
}
#community .inner-container h1{
    margin-bottom: 30px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 30px;
    font-weight: 900;
}
#community .text{
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    color: #545454;
    line-height: 30px;
    text-align: justify;
    margin-bottom: 40px;
}

@media screen and (max-width:1200px) {
    #community .inner-container{
        padding: 80px;
    }
}
@media screen and (max-width:1000px) {
    #community .about-section{
        background-size: 100%;
        padding: 100px 40px;
    }
    #community .inner-container{
        width: 100%;
    }
}
@media screen and (max-width:600px) {
    #community .about-section{
       padding: 0;
       background: none;
    }
    #community .inner-container{
        padding: 60px;
        background: url("../img/handsbg.png") no-repeat center;
        background-size: cover;
    }
    #community .inner-container h1{
        color: #fff;
    }
    #community .text{
        color: #fff;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 15px;
        width: 100%;
    }
}

#environment{
    /* height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../img/medBg2.png");
    background-attachment: fixed;
    background-size: cover;
}
#environment .about-section{
    top: 0;
    width: 100%;
    background: url("../img/environment1.png") no-repeat right;
    background-size: 55%;
    /* background-color: #f1f1f1; */
    overflow: hidden;
    padding: 100px 0;

}
#environment .inner-container{
    width: 55%;
    float: left;
    background-color: #fdfdfd;
    padding: 150px;
}
#environment .inner-container h1{
    font-family: 'Source Sans Pro', sans-serif;
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: 900;
}
#environment .text{
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    color: #545454;
    line-height: 30px;
    text-align: justify;
    margin-bottom: 40px;
}

@media screen and (max-width:1200px) {
    #environment .inner-container{
        padding: 80px;
    }
}
@media screen and (max-width:1000px) {
    #environment .about-section{
        background-size: 100%;
        padding: 100px 40px;
    }
    #environment .inner-container{
        width: 100%;
    }
}
@media screen and (max-width:600px) {
    #environment .about-section{
       padding: 0;
    }
    #environment .inner-container{
        padding: 60px;
        background: url("../img/environment1.png") no-repeat center;
        background-size: cover;
    }
    #environment h1{
        color: #fff;
    }
    #environment .text{
        color: #fff;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 15px;
        width: 100%;
    }
}

#Title3{
    /* height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../img/medBg.png");
    background-attachment: fixed;
    background-size: cover;
}
#Title3 .about-section{
    top: 0;
    width: 100%;
    background: url("../img/patient1.png") no-repeat left;
    background-size: 72%;
    /* background-color: #f1f1f1; */
    overflow: hidden;
    padding: 100px 0;

}
#Title3 .inner-container{
    width: 55%;
    float: right;
    background-color: #fdfdfd;
    padding: 150px;
}
#Title3 .inner-container h1{
    margin-bottom: 30px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 30px;
    font-weight: 900;
}
#Title3 .text{
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    color: #545454;
    line-height: 30px;
    text-align: justify;
    margin-bottom: 40px;
}

@media screen and (max-width:1200px) {
    #Title3 .inner-container{
        padding: 80px;
    }
}
@media screen and (max-width:1000px) {
    #Title3 .about-section{
        background-size: 100%;
        padding: 100px 40px;
    }
    #Title3 .inner-container{
        width: 100%;
    }
}
@media screen and (max-width:600px) {
    #Title3 .about-section{
       padding: 0;
    }
    #Title3 .inner-container{
        padding: 60px;
        background: url("../img/patient1.png") no-repeat left;
        background-size: cover;
    }
    #Title3 .text{
        color: #fff;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 15px;
        width: 100%;
    }
}

#swipeslider{
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url("../img/banner.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
  }
.swiper-container {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 200px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 300px;
    background-color: #fff;
    -webkit-box-reflect: below 1px linear-gradient(transparent,transparent,#0006);
}
.swiper-slide .imgbox{
    height: 200px;
    width: 300px;
    overflow: hidden;

}
.swiper-slide img{
    width: inherit;
    height: inherit;
}

/* careers page */
#Title1{
    /* height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../img/medBg3.png");
    background-attachment: fixed;
    background-size: cover;
}
#Title1 .about-section{
    top: 0;
    width: 100%;
    /* background: url("../img/medBanner.png") no-repeat left; */
    background-size: 55%;
    /* background-color: #f1f1f1; */
    overflow: hidden;
    padding: 100px 0;

}
#Title1 .inner-container{
    width: 55%;
    float: right;
    background-color: #fdfdfd;
    padding: 150px;
}
#Title1 .inner-container h1{
    margin-bottom: 30px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 30px;
    font-weight: 900;
}
#Title1 .text{
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    color: #545454;
    line-height: 30px;
    text-align: justify;
    margin-bottom: 40px;
}

@media screen and (max-width:1200px) {
    #Title1 .inner-container{
        padding: 80px;
    }
}
@media screen and (max-width:1000px) {
    #Title1 .about-section{
        background-size: 100%;
        padding: 100px 40px;
    }
    #Title1 .inner-container{
        width: 100%;
    }
}
@media screen and (max-width:600px) {
    #Title1 .about-section{
       padding: 0;
    }
    #Title1 .inner-container{
        padding: 60px;
        background: url("../img/patient1.png") no-repeat left;
        background-size: cover;
    }
    #Title1 .text{
        color: #fff;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 15px;
        width: 100%;
    }
}

#Title2{
    /* height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../img/medBg2.png");
    background-attachment: fixed;
    background-size: cover;
}
#Title2 .about-section{
    top: 0;
    width: 100%;
    background: url("../img/CareerBuild.png") no-repeat right;
    background-size: 55%;
    /* background-color: #f1f1f1; */
    overflow: hidden;
    padding: 100px 0;

}
#Title2 .inner-container{
    width: 55%;
    float: left;
    background-color: #fdfdfd;
    padding: 150px;
}
#Title2 .inner-container h1{
    font-family: 'Source Sans Pro', sans-serif;
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: 900;
}
#Title2 .text{
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    color: #545454;
    line-height: 30px;
    text-align: justify;
    margin-bottom: 40px;
}

@media screen and (max-width:1200px) {
    #Title2 .inner-container{
        padding: 80px;
    }
}
@media screen and (max-width:1000px) {
    #Title2 .about-section{
        background-size: 100%;
        padding: 100px 40px;
    }
    #Title2 .inner-container{
        width: 100%;
    }
}
@media screen and (max-width:600px) {
    #Title2 .about-section{
       padding: 0;
    }
    #Title2 .inner-container{
        padding: 60px;
        background: url("../img/CareerBuild.png") no-repeat center;
        background-size: cover;
    }
    #Title2 h1{
        color: #fff;
    }
    #Title2 .text{
        color: #fff;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 15px;
        width: 100%;
    }
}
#recruit{
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url("../img/careerBg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff !important;
}
#recruit .title{
    margin: 5px auto;
    text-align: center;
}
#recruit .title h1{
    letter-spacing: 1px;
    font-family: 'Source Sans Pro', sans-serif;
}
#recruit .title h1::after{
    content: '';
    background: #fff;
    display: block;
    width: 150px;
    height: 3px;
    margin: 10px auto;
}
#recruit a{
    text-decoration: none;
    color: #000;
}

/* Certification Page */
    .gallery{
        background-color: #2596a0;
        padding: 50px 0;
    }

    .gallery img{
        background-color: #fff;
        padding: 15px;
        width: 100%;
        box-shadow: 0 0 15px rgba(0, 0, 0, .30);
    }

    #gallery-modal .modal-img{
        width: 100%;
    }
/* End Certification */