:root{
    /* FONTS */
    --font-color-primary: #363636;
    --font-heading-color:#16163F;
    --font-color-secondary: #4B4B4C;
    --font-family: 'Roboto', sans-serif;

    /* COLORS */
    --main-theme-color: #22A3D5;
    --green-theme-color: #33AC44;
    --primary-color: #ec407a;
    --primary-color-dark: #e91e63;
    /* Shadows */
    --text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
    --navigation-box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, .5);
    --overllay: rgba(0, 0, 0, .75);
}

*{
    box-sizing: border-box;
}

body{
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    background: transparent;
    -webkit-overflow-scrolling: touch;
    -webkit-font-smoothing: subpixel-antialiased;
    -webkit-text-stroke: 1px transparent;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizelegibility;
}

/* TYPOGRAPHY
----------------------------------------------------------*/
h1, h2, h3, h4, h5, h6{
    font-weight: 400;
    color:var(--font-heading-color);
    margin: 0;
    padding: 0;
    word-spacing: 1.5px;
    letter-spacing: 1px;
}

h1{font-size: 2.3em; font-weight: 700; margin-bottom: 20px;}
h2{font-size: 2.8em}
h3{font-size: 2.4em}
h4{font-size: 2em}
h5{font-size: 1.6em}
h6{font-size: 1.3em}

a, ul, li, blockquote, address, input {
    margin: 0;
    padding: 0;
    font-size: 1.09em;
    font-weight: 300;
    line-height: 1.5;
    word-spacing: 1.5px;
    letter-spacing: .5px;
    color: var(--font-color-secondary);
}
p,i {
    margin-top: 10px;
    padding: 0;
    font-size: 1.09em;
    font-weight: 300;
    line-height: 1.6;
    word-spacing: 1.5px;
    letter-spacing: .5px;
    color: var(--font-color-secondary);
}

a{
    text-decoration: none;
}

a:hover{
    text-decoration: none;
}

li{
    list-style: none;
}

hr {
    margin: 0px;
    padding: 0px;
}

.btn-appeals {
    background-color:var(--green-theme-color);
    border:none;
    color: #FFFFFF;
    font-size: 30px;
}

.btn-appeals:hover {
    background-color: var(--green-theme-color);
    color: #FFFFFF;
}

.dropdown:hover>.dropdown-menu {
  display: block;
    -webkit-transition: all 0.3s cubic-bezier(0.4,0,1,1)0s;
    -o-transition: all 0.2s cubic-bezier(0.4,0,1,1)0s;
    -ms-transition: all 0.2s cubic-bezier(0.4,0,1,1)0s;
    -moz-transition: all 0.2s cubic-bezier(0.4,0,1,1)0s;
    transition: all 0.2s cubic-bezier(0.4,0,1,1)0s;
}

.dropdown>.dropdown-toggle:active {
  /*Without this, clicking will make it sticky*/
    pointer-events: none;
}

/*Fixed-Scroller*/

.scroller{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--main-theme-color);
    position: absolute;
    top: 580px;
    position: fixed;
    left: 30px;
    z-index: 1200;
    visibility:hidden;
}

.scroller.to-top-is-visible{
    visibility:visible;
}

@media only screen and (max-width: 1350px){

    .scroller{
    left: 10px; 
    top: 500px;
    z-index: 1200;  
    }
}

.scroller ul {
    text-align: center;
    margin-top: 8px;
    font-size: 22px;    
}

/*Navigation bar responsive*/

.navbar-light .navbar-nav .nav-link {
    font-size: 18px;
    font-weight: 300;
    color: var(--main-theme-color);
}

.navbar-light .navbar-nav .nav-link:hover {
    color:#FFFFFF;
}

.navbar-light .navbar-nav .nav-link.selected {
  color: red;
}

.dropdown-toggle:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
    border-bottom: 2px solid var(--main-theme-color);
}

nav .btn {
    margin-left: 15px;
    font-size: 15px;
    background-color: #22A3D5;
    font-weight: 700;
    border:1px solid #22A3D5;
}

nav .btn:hover {
    background-color: #33AC44;
    border:none;

}
/*BIG SCREEN SLIDER HEADERS*/

    .home-body .carousel .carousel-inner .carousel-item .test .overlay-slide
.container .text-box h1, .home-body .carousel .carousel-inner .carousel-item .test2 .overlay-slide2
.container .text-box h1,.home-body .carousel .carousel-inner .carousel-item .test3 .overlay-slide3
.container .text-box h1
{
    font-size: 50px;
    padding-top: 10px;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--main-theme-color);
}

    .home-body .carousel .carousel-inner .carousel-item .test .overlay-slide
.container .text-box h2, .home-body .carousel .carousel-inner .carousel-item .test2 .overlay-slide2
.container .text-box h2,.home-body .carousel .carousel-inner .carousel-item .test3 .overlay-slide3
.container .text-box h2
{
  margin-top: 0px;
   margin-bottom: 10px;
    font-size: 30px;
    color: #FFFFFF;
}

    .home-body .carousel .carousel-inner .carousel-item .test .overlay-slide
.container .text-box h2, .home-body .carousel .carousel-inner .carousel-item .test2 .overlay-slide2
.container .text-box h2,.home-body .carousel .carousel-inner .carousel-item .test3 .overlay-slide3
.container .text-box h2
{
    font-size: 25px;
    color: #FFFFFF !important;
    margin-bottom: 25px;
}
/*HOME*/

.home-body {
    width: 100%; 
    height: auto; 
    margin: 0px;
    padding: 0px;
    background-color: transparent;
}
/* Change image below for slider 1*/
.home-body .carousel .carousel-inner .carousel-item .test {
    width: 100%;
    height: 500px;
    background-image: url("../img/orphan.jpg");
    background-size: 100%;
    background-repeat: no-repeat;
    position: relative;
}

.home-body .carousel .carousel-inner .carousel-item .test .overlay-slide
.container .text-box,
.home-body .carousel .carousel-inner .carousel-item .test2 .overlay-slide2
.container .text-box,
.home-body .carousel .carousel-inner .carousel-item .test3 .overlay-slide3
.container .text-box{
    width:80%;
    text-align: center;
    background-color: transparent;
    position: absolute;
    top: 20%;
    margin-left: 30px;
    font-size: .8em;
}

@media only screen and (max-width: 760px){

   .home-body .carousel .carousel-inner .carousel-item .test{
    height: 250px;
    }

    .home-body .carousel .carousel-inner .carousel-item .test .overlay-slide
.container .text-box,
.home-body .carousel .carousel-inner .carousel-item .test2 .overlay-slide2
.container .text-box,
.home-body .carousel .carousel-inner .carousel-item .test3 .overlay-slide3
.container .text-box{

        top: 3%;
    margin-left: 30px;
}

    .home-body .carousel .carousel-inner .carousel-item .test .overlay-slide
.container .text-box h1, .home-body .carousel .carousel-inner .carousel-item .test2 .overlay-slide2
.container .text-box h1,.home-body .carousel .carousel-inner .carousel-item .test3 .overlay-slide3
.container .text-box h1
{
    font-size: 25px;
    padding-top: 10px;
    margin-bottom: 5px;
    color: var(--font-heading-color);
}

    .home-body .carousel .carousel-inner .carousel-item .test .overlay-slide
.container .text-box h2, .home-body .carousel .carousel-inner .carousel-item .test2 .overlay-slide2
.container .text-box h2,.home-body .carousel .carousel-inner .carousel-item .test3 .overlay-slide3
.container .text-box h2
{
  margin-top: 0px;
    font-size: 20px;
    color: #4B4B4C;
}

    .home-body .carousel .carousel-inner .carousel-item .test .overlay-slide
.container .text-box h5, .home-body .carousel .carousel-inner .carousel-item .test2 .overlay-slide2
.container .text-box h5,.home-body .carousel .carousel-inner .carousel-item .test3 .overlay-slide3
.container .text-box h5
{
    font-size: 15px;
    color: #4B4B4C;
    margin-bottom: 10px;
}


}

.home-body .carousel .carousel-inner .carousel-item .test .overlay-slide {
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.5)
}




/*Image 2*/
/* Change image below for slider 2*/
.home-body .carousel .carousel-inner .carousel-item .test2 {
    width: 100%;
    height: 500px;
    background-image: url("../img/orphan.jpeg");   
     background-size: 100%;
    background-repeat: no-repeat;
}

@media only screen and (max-width: 760px){

   .home-body .carousel .carousel-inner .carousel-item .test2{
    height: 250px;
    }
}

.home-body .carousel .carousel-inner .carousel-item .test2 .overlay-slide2 {
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.5)
}

/*End Image 2*/

/*Image-3*/
/* Change image below for slider 3*/
.home-body .carousel .carousel-inner .carousel-item .test3 {
    width: 100%;
    height: 500px;
    background-image: url("../img/sliderwell.jpg");
    background-size: 100%;
    background-repeat: no-repeat;
}

@media only screen and (max-width: 760px){

   .home-body .carousel .carousel-inner .carousel-item .test3{
    height: 250px;
    }
}

.home-body .carousel .carousel-inner .carousel-item .test3 .overlay-slide3 {
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.4)
}


/*Current Appeals*/
.currentappeal1, .currentappeal2, .currentappeal3, .currentappeal4,
.currentappeal5, .currentappeal6, .currentappeal7, .currentappeal8, 
.currentappeal9, .currentappeal10, .currentappeal11, .currentappeal12,
.currentappeal13, .currentappeal14, .currentappeal15, .currentappeal16,
.currentappeal17,  .currentappeal18, .currentappeal19, .currentappeal20, .currentappeal21 {
    margin-bottom: 20px;
    background-size: cover;
    height: auto;
    padding-top: 60%;
    width: 100%;
}

.currentappeal1 {background-image: url("../img/donatestuff.jpg");}

.currentappeal2 {background-image: url("../img/gal3.jpeg");}

.currentappeal3 {background-image: url("../img/work.jpeg");}

.currentappeal4 {background-image: url("../img/diseaster.jpeg");}

.currentappeal5 {background-image: url("../img/refugees.jpg");}

.currentappeal6{background-image: url("../img/covidn3.jpg");}

.currentappeal7 {background-image: url("../img/orphan.jpeg"); background-size: 100%;}
.currentappeal8 {background-image: url("../img/sudan2.jpg");}

.currentappeal9 {background-image: url("../img/nigeria4.jpg"); background-size: 100%;}

.currentappeal10 {background-image: url("../img/ruhingya.jpeg");}

.currentappeal11 {background-image: url("../img/work.jpeg");}

.currentappeal12 {background-image: url("../img/zakat.png"); background-size: 100%;}

.currentappeal13 {background-image: url("../img/sadaqah.png");}

.currentappeal14 {background-image: url("../img/mosque-build.png");}

.currentappeal15 {background-image: url("../img/qurbani1.jpg");}

.currentappeal16 {background-image: url("../img/quran.png");}

.currentappeal17 {background-image: url("../img/well.jpeg"); background-size: 100%;}

.currentappeal18 {background-image: url("../img/homelesssfeed.png");}

.currentappeal19 {background-image: url("../img/funeral.png");}

.currentappeal20 {background-image: url("../img/is6.jpg"); background-size: 100%;}

.currentappeal21 {background-image: url("../img/train.jpg");}

.currentappeal1:hover, .currentappeal2:hover, .currentappeal3:hover, .currentappeal4:hover,
.currentappeal5:hover, .currentappeal6:hover, .currentappeal7:hover, .currentappeal8:hover,
.currentappeal9:hover, .currentappeal10:hover, .currentappeal11:hover, .currentappeal12:hover,
.currentappeal13:hover,.currentappeal14:hover, .currentappeal15:hover, .currentappeal16:hover,
.currentappeal17:hover, .currentappeal18:hover, .currentappeal19:hover, .currentappeal20:hover,
.currentappeal21:hover {
    box-shadow: 0 2px 20px 0;
    transform: translateY(-5%);
    transition: .5s;
    -webkit-transition: all 0.3s cubic-bezier(0.4,0,1,1)0s;
    -o-transition: all 0.2s cubic-bezier(0.4,0,1,1)0s;
    -ms-transition: all 0.2s cubic-bezier(0.4,0,1,1)0s;
    -moz-transition: all 0.2s cubic-bezier(0.4,0,1,1)0s;
    transition: all 0.2s cubic-bezier(0.4,0,1,1)0s;
}

/*Build a well*/
.water-details {
  width: 100%; 
  height: auto;
  background-color: transparent;
  margin-bottom: 30px;
}

.back-img {
  width: 100%;
  height: 300px;
  background-image: url("../img/well.png");
  background-size: 100%;
  background-position: center;
  transition: 3s;

}

.back-img2 {
  width: 100%;
  height: 300px;
  background-image: url("../img/well2.jpg");
  background-size: 100%;
  background-position: center;
  transition: 3s;

}

.back-img3 {
  width: 100%;
  height: 300px;
  background-image: url("../img/well3.png");
  background-size: 100%;
  background-position: center;
  transition: 3s;

}

.back-img4 {
  width: 100%;
  height: 300px;
  background-image: url("../img/community.jpeg");
  background-size: 100%;
  background-position: center;
  transition: 3s;

}

.back-img5 {
  width: 100%;
  height: 300px;
  background-image: url("../img/bore.jpg");
  background-size: 100%;
  background-position: center;
  transition: 3s;

}

.water-details:hover .back-img, .water-details:hover .back-img2, .water-details:hover .back-img3,
 .water-details:hover .back-img4, .water-details:hover .back-img5   {
  background-size: 150%;
  background-position: center;
} 

@media only screen and (max-width: 760px){

   .water-details .back-img, .water-details .back-img2, .water-details .back-img3,
 .water-details .back-img4, .water-details .back-img5 {
    margin-top: 20px; margin-bottom: 20px;    }
}

/*END OF BUILD A WELL*/


/*End of current appeals*/



.portfolio-1 {
    margin-top: 20px;
    margin-bottom: 30px;
    width: 100%;
    height: 200px;
    position: relative;
    background-color: white;
    overflow: hidden;
    box-shadow: 0px 1px 8px 1px #888888;
}

.portfolio-1 .portfolio-overlay {
     position: absolute;
    left: 0px;
    top: 100%;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background-color: rgba(0,0,0,.75);
}


.portfolio-1:hover .portfolio-overlay{
    top: 0px;
    -webkit-transition: all 0.3s cubic-bezier(0.4,0,1,1)0s;
    -o-transition: all 0.3s cubic-bezier(0.4,0,1,1)0s;
    -ms-transition: all 0.3s cubic-bezier(0.4,0,1,1)0s;
    -moz-transition: all 0.3s cubic-bezier(0.4,0,1,1)0s;
    transition: all 0.3s cubic-bezier(0.4,0,1,1)0s;
}

.portfolio-icon{
    font-size: 2.5em;
    color:var(--main-theme-color);
    position: relative;
    margin-left: 42%;
    top: 50px;
    left: 5px;
}


@media only screen and (max-width: 1350px){

   .portfolio-icon{
    margin-left: 40%;  
    }
}

.portfolio-font{
    color: var(--main-theme-color);
    position: relative;
    top: 60px;
    left: 5px;
    color: white;
    text-align: center;
    font-size: 1.4em;
}


.backgroundVideo {
    margin-top: 100px;
    width: 100%;
    padding-top: 80px;
    margin-bottom: 80px;
    padding-bottom: 50px;
    height: auto;
    background-image: url("../img/volunteer-background.jpg");
    background-size: cover;
    background-attachment: fixed;
}

.backgroundVideo img {
  width: auto;
}

@media (max-width: 760px) {
  .backgroundVideo img {
  width: 100%;
}
}

/*GALLERY*/

.advertise{
    margin-top: 30px;
    padding-bottom: 50px;
}

#mixedSlider {
  position: relative;
  height: 50
}
#mixedSlider .MS-content {
  white-space: nowrap;
  overflow: hidden;
  margin: 0 5%;
}
#mixedSlider .MS-content .item {
  display: inline-block;
  width: 33.3333%;
  position: relative;
  vertical-align: top;
  overflow: hidden;
  height: 100%;
  white-space: normal;
  padding: 0 10px;
}
@media (max-width: 991px) {
  #mixedSlider .MS-content .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  #mixedSlider .MS-content .item {
    width: 100%;
  }
}
#mixedSlider .MS-content .item .imgTitle {
  position: relative;
}
#mixedSlider .MS-content .item .imgTitle .blogTitle {
  margin: 0;
  text-align: left;
  letter-spacing: 2px;
  color: #252525;
  font-style: italic;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.5);
  width: 100%;
  bottom: 0;
  font-weight: bold;
  padding: 0 0 2px 10px;
}
#mixedSlider .MS-content .item .imgTitle img {
  height: 200px;
  width: 100%;
}
#mixedSlider .MS-content .item p {
  font-size: 16px;
  margin: 2px 10px 0 5px;
  text-indent: 15px;
}
#mixedSlider .MS-content .item a {
  float: right;
  margin: 0 20px 0 0;
  font-size: 16px;
  font-style: italic;
  color: rgba(173, 0, 0, 0.82);
  font-weight: bold;
  letter-spacing: 1px;
  transition: linear 0.1s;
}
#mixedSlider .MS-content .item a:hover {
  text-shadow: 0 0 1px grey;
}
#mixedSlider .MS-controls button {
  position: absolute;
  border: none;
  background-color: transparent;
  outline: 0;
  font-size: 50px;
  top: 40px;
  color: rgba(0, 0, 0, 0.4);
  transition: 0.15s linear;
}
#mixedSlider .MS-controls button:hover {
  color: rgba(0, 0, 0, 0.8);
}
@media (max-width: 992px) {
  #mixedSlider .MS-controls button {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  #mixedSlider .MS-controls button {
    font-size: 20px;
  }
}
#mixedSlider .MS-controls .MS-left {
  left: 0px;
}
@media (max-width: 767px) {
  #mixedSlider .MS-controls .MS-left {
    left: -10px;
  }
}
#mixedSlider .MS-controls .MS-right {
  right: 0px;
}
@media (max-width: 767px) {
  #mixedSlider .MS-controls .MS-right {
    right: -10px;
  }
}
#basicSlider { position: relative; }

#basicSlider .MS-content {
  white-space: nowrap;
  overflow: hidden;
  margin: 0 2%;
  height: 50px;
}

#basicSlider .MS-content .item {
  display: inline-block;
  width: 20%;
  position: relative;
  vertical-align: top;
  overflow: hidden;
  height: 100%;
  white-space: normal;
  line-height: 50px;
  vertical-align: middle;
}
@media (max-width: 991px) {

#basicSlider .MS-content .item { width: 25%; }
}
@media (max-width: 767px) {

#basicSlider .MS-content .item { width: 35%; }
}
@media (max-width: 500px) {

#basicSlider .MS-content .item { width: 50%; }
}

#basicSlider .MS-content .item a {
  line-height: 50px;
  vertical-align: middle;
}

#basicSlider .MS-controls button { position: absolute; }

#basicSlider .MS-controls .MS-left {
  top: 35px;
  left: 10px;
}

#basicSlider .MS-controls .MS-right {
  top: 35px;
  right: 10px;
}
/*END OF GALLERY*/

/*./HOME*/
/*About page css*/

.about {
    width: 100%;
    height: auto;
    margin: 0px;
    padding: 0px;
    background-color: transparent;
}

.aboutHeader{
    width: 100%;
    height: auto;
    background-color: var(--main-theme-color);
    text-align: center;
    margin-bottom: 50px;
    margin-top: 0px;
}

.aboutHeader p{margin-top: 0px;}
.div-shadow {
    width: 100%;
    height: 550px;
    text-align: center;
    padding: 30px;
    margin-bottom: 50px;
    border-left: 4px solid var(--main-theme-color);
    box-shadow: 0px 1px 8px 1px #888888;   
    background-color: #FFFFFF; 
}

/*.about .aboutQuote {
    width: 100%;
    height: 550px;
    text-align: center;
    background-image: url("../img/about-background.png");
    background-size: cover;
    background-attachment: fixed;
    margin-bottom: 100px;
}

.about .aboutQuote .quoteOverlay {
    width: 100%;
    height: 100%;
    padding-top: 200px;
    padding-left: 80px;
    padding-right: 80px;
    background-color: rgba(240,155,52,.8);

}

@media only screen and (max-width: 760px){

   .about .aboutQuote .quoteOverlay{
    padding:0px; 
    }
}
*/
.about .about1 {
    width: 100%;
    height: 380px;
    margin-bottom: 20px;
    background-image: url("../img/gaza2.jpg");
    background-size: cover;

}


.about .about1 .overlayImg1, .about .about2 .overlayImg2 {
    width: 100%;
    height: 300px;


}

/*.about .about1 .overlayImg1:hover, .about .about2 .overlayImg2:hover {
    background-color: transparent;
    -webkit-transition: all 0.3s cubic-bezier(0.4,0,1,1)0s;
    -o-transition: all 0.2s cubic-bezier(0.4,0,1,1)0s;
    -ms-transition: all 0.2s cubic-bezier(0.4,0,1,1)0s;
    -moz-transition: all 0.2s cubic-bezier(0.4,0,1,1)0s;
    transition: all 0.2s cubic-bezier(0.4,0,1,1)0s;
}*/

.box-right {
    width: 100%; 
    height:auto; 
    border-left: 4px solid var(--main-theme-color);
    padding-left: 40px; 
    padding-top: 20px;
    padding-bottom:20px;
    padding-right: 20px; 
    margin-bottom: 20px; 
    box-shadow: 0px 1px 8px 1px #888888; 
}

.helpUs {
    width: 100%;
    height: 300px;
    text-align: center;
    background-image: url("../img/about-background-2.png");
    background-size: cover;
    background-attachment: fixed;
    margin-bottom: 100px;
}

.helpUs .helpOverlay {
    width: 100%;
    height: 100%;
    padding-top: 100px;
    padding-left: 80px;
    padding-right: 80px;
    background-color: rgba(0,0,0,.9);

}

@media only screen and (max-width: 760px){

   .helpUs .helpOverlay{
    padding:0px; 
    }
}

.about-footer {
    width: 100%;
    height: auto;
    padding: 0px;
    margin: 0px;
    text-align: center;
    background-image: url("../img/about-footer.png");
    background-size: cover;
    
}

.about-footer-overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(6,3,33,.9);
}


.about-footer-overlay .about-icon { 
    color: #FFFFFF;
    font-size: 18px;
    margin: 10px;

 }


.about-footer-overlay .about-icon:hover {
    color: var(--main-theme-color);
    -webkit-transition: all 0.3s cubic-bezier(0.4,0,1,1)0s;
    -o-transition: all 0.2s cubic-bezier(0.4,0,1,1)0s;
    -ms-transition: all 0.2s cubic-bezier(0.4,0,1,1)0s;
    -moz-transition: all 0.2s cubic-bezier(0.4,0,1,1)0s;
    transition: all 0.2s cubic-bezier(0.4,0,1,1)0s;
}
/*About page css end */


/*Volunteer*/

.volunteer-body {
    width: 100%;
    height: auto;
    background-color: transparent;
}

.volunteer-body .v-background {
    width: 100%;
    height: auto;
    text-align: center;
    background-color: var(--main-theme-color);
}


.volunteer-body .v-part1 {
    width: 100%;
    height: auto;
    padding-bottom: 50px;
}


.volunteer-body .v-part2 {
    width: 100%;
    height: auto;
    padding-bottom: 50px;
    background-color: transparent;
}

.volunteer-body .v-part3 {
    width: 100%;
    height: auto;
    padding-bottom: 50px;
    background-color: var(--main-theme-color);
}

/*Career */
.career-body {
    width: 100%;
    height: auto;
    background-color: transparent;
}

.career-body .aboutHeader{
    width: 100%;
    height: 250px;
    background-color: var(--main-theme-color);
    text-align: center;

    margin-top: 0px;
}

 .career-body .aboutHeader p{margin-top: 0px;}

 .career-body .career1 {
    width: 100%;
    height: auto;
    background-image: url("../img/career1.jpg");
    background-size: cover;
 }


 .career-body .career2 {
    width: 100%;
    height: auto;
    margin: 0px;
    padding: 0px;
    background-image: url("../img/career2.jpg");
    background-size: cover;
 }

  .career-body .career2 .career2-overlay{
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.2);
    
 }

.career-body .career2 .career2-overlay .job-box {
    width: 100%;
    height: auto;
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid var(--main-theme-color);
}

 .career-body .career3 {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    margin: 0px;
    padding: 0px;
    background-color: var(--green-theme-color);
 }

.career-body .career3 .job-box {
    width: 100%;
    height: auto;
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid var(--main-theme-color);
}




.career-body .career-form {
    width: 100%;
    height: auto;
    padding-bottom: 20px;
    background-color: transparent;
}

.career-body .career-form form button {
    background-color: var(--main-theme-color);
    border:none;
    width: 100%;
}

/*Fast Feedind*/
.progress .progress-bar {
    background-color: #2BC253;
}

.fastFeedHeader {
    padding: 20px;
    width: 100%;
    height: auto;
    margin-bottom: 50px;
    margin-top: 20px;
    background-color:transparent;
}

/*covid*/
.progress .progress-bar-covid {
    background-color: #CC2014;
}

/*Contact CSS*/

.contact-body {
    width: 100%;
    height: auto;
    background-color: transparent;
}

.contact-body form input, .contact-body form textarea {
    border:1px solid var(--main-theme-color);
    background-color: #F6F6F6;
}

.contact-body form button {
    width: 100%;
    background-color: var(--main-theme-color);
    border:1px solid var(--main-theme-color);
}

.contact-body form button:hover {
    background-color: #F89F34;
    border:1px solid var(--main-theme-color);
} 

.contact-icon {
    width: 100%; 
    height: 200px; 
    background-color: transparent; 
    padding: 20px; 
    text-align: center;
    font-size: 40px;
}

.contact-icon .fb-contact {
    color: #3B5998;
}

.contact-icon .twit-contact {
    color: #1DA1F2;
}

.contact-icon .youtube-contact {
    color: #CD201F;
}

.contact-icon .insta-contact {
    color: #262626;
}

.contact-icon .fb-contact:hover,
.contact-icon .twit-contact:hover,
.contact-icon .youtube-contact:hover,
.contact-icon .insta-contact:hover {
    font-size: 55px;
    -webkit-transition: all 0.3s cubic-bezier(0.4,0,1,1)0s;
    -o-transition: all 0.2s cubic-bezier(0.4,0,1,1)0s;
    -ms-transition: all 0.2s cubic-bezier(0.4,0,1,1)0s;
    -moz-transition: all 0.2s cubic-bezier(0.4,0,1,1)0s;
    transition: all 0.2s cubic-bezier(0.4,0,1,1)0s;

}

.right-address {
    width: 100%;
    height: auto;
    padding: 10px;
    margin-bottom: 50px;
    background-color: transparent;
}

.right-address:hover {
    box-shadow: 0px 1px 8px 1px #888888;
    -webkit-transition: all 0.3s cubic-bezier(0.4,0,1,1)0s;
    -o-transition: all 0.2s cubic-bezier(0.4,0,1,1)0s;
    -ms-transition: all 0.2s cubic-bezier(0.4,0,1,1)0s;
    -moz-transition: all 0.2s cubic-bezier(0.4,0,1,1)0s;
    transition: all 0.2s cubic-bezier(0.4,0,1,1)0s; 
}

.contact-footer {
    width: 100%;
    height: auto;
    margin: 0px;
    text-align: center;
    background-image: url("../img/about-footer.png");
    background-size: cover;
    
}

.contact-footer-overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(6,3,33,.9);
}


.footer-icon {
    color: #FFFFFF;
    margin-left:20px;
    margin-left:20px;
    font-size: 20px;
    margin-bottom: 80px;
}

.footer-icon:hover {
    color: var(--main-theme-color);
}
/*./ COntact CSS END Here*/
/*Footer*/
footer {
    width: 100%;
    height: auto;
    padding: 5px;
    margin-top: 0px;
    background-color: #000000;
    text-align: center;
}

footer p {
    color: #FFFFFF;
}

/**/edited
.title {
  font-size: 50px;color: #16163F;
}


@media only screen and (max-width: 1000px){

    .title{
    font-size: 2em; 
    }
}

