/*
Theme Name: Ifoster
Text Domain: ifoster
Version: 1.5
Requires at least: 4.7
Requires PHP: 5.2.4
Description: Our default theme for 2020 is designed to take full advantage of the flexibility of the block editor. Organizations and businesses have the ability to create dynamic landing pages with endless layouts using the group and column blocks. The centered content column and fine-tuned typography also makes it perfect for traditional blogs. Complete editor styles give you a good idea of what your content will look like, even before you publish. You can give your site a personal touch by changing the background colors and the accent color in the Customizer. The colors of all elements on your site are automatically calculated based on the colors you pick, ensuring a high, accessible color contrast for your visitors.
Tags: blog, one-column, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, block-styles, wide-blocks, accessibility-ready
Author: the WordPress team
Author URI: https://wordpress.org/
Theme URI: https://wordpress.org/themes/ifoster/
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

All files, unless otherwise stated, are released under the GNU General Public
License version 2.0 (http://www.gnu.org/licenses/gpl-2.0.html)

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned
with others.
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

	0. 	CSS Reset
	1. 	Document Setup
	2. 	Element Base
	3. 	Helper Classes
	4. 	Site Header
	5. 	Menu Modal
	6. 	Search Modal
	7. 	Page Templates
		a. 	Template: Cover Template
		c. 	Template: Full Width
	8.  Post: Archive
	9.  Post: Single
	10. Blocks
	11. Entry Content
	12. Comments
	13. Site Pagination
	14. Error 404
	15. Widgets
	16. Site Footer
	17. Media Queries

----------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */

/*	0. CSS Reset
/* -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@500;700;900&family=Roboto:wght@300;400;500;900&display=swap');

:root {
    --primary-blue:#008CCE;
    --primary-orange:#FF9E35;
    --secondary-purple: #AB50B1;
    --secondary-purple-light:rgba(171,80,177, 0.09);
    --secondary-teal: #1EB4B7;
    --secondary-teal-light: rgb(30, 180, 183, 0.09);
    --secondary-yellow: #FDD913;
    --secondary-yellow-light: rgb(253, 217, 19, 0.09);
    --secondary-green:#5AC230;
    --secondary-green-light:rgb(90, 194, 48, 0.09);
    --secondary-red:#FF5D1D;
    --secondary-red-light:rgb(255, 93, 29, 0.09);
    --secondary-blue:#6C63FF;
    --secondary-blue-light:hsla(243, 100%, 69%, 0.9);
    --primary-txt-color:#474747;
    --txt-light-color:#ebebeb;
    --white-color:#ffffff;
    }

.icon-red{filter: hue-rotate(-186deg);}
.icon-purple{filter: hue-rotate(80deg);}
.icon-green{filter: hue-rotate(290deg);}
.icon-teal{filter: hue-rotate(30deg);}
.icon-orange{filter: hue-rotate(0deg) invert(1);}

/*layout style start here*/
*{
	padding:0;
	margin:0;
}
.clearfix{
    clear: both;
}
.m-0{
    margin:0px !important;
}
.mt-0{
    margin-top:0px !important;
}

.mb-0{
    margin-bottom:0px !important;
}

.p-0{
    padding:0px !important;
}
.p-both-10{
    padding:10px 0px !important;
}
.p-both-15{
    padding:15px 0px !important;
}
.p-both-20{
    padding:20px 0px !important;
}
.p-both-30{
    padding:30px 0px !important;
}
.p-both-40{
    padding:40px 0px !important;
}
.p-10{
    padding:10px !important;
}
.p-15{
    padding:15px !important;
}
.p-20{
    padding:20px !important;
}
.p-30{
    padding:30px !important;
}
.p-40{
    padding:40px !important;
}
.d-inline{
    display: inline-block;
}
.line-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.img-60{
    width:60px;
    height:60px;
}

.img-80{
    width:80px !important;
    height:80px !important;
}
.btn.active, .btn:active {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
.navbar-header {
    float: none !important;
}
 a{
 	text-decoration:none;
 	color:#212121;
 }
 a:hover, a:focus{
     text-decoration:none;    
    }
a:focus, .btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus{
    outline: 0 !important;
}

.btn-outline-warning{
    border-color: var(--primary-orange);
    color:var(--primary-orange);
    border-radius: 0px;
    font-family: 'Roboto Slab', serif;
    padding: 8px 24px;
	font-size:16px;
}
.btn-outline-warning:hover, .btn-outline-warning:focus{
    color: #ffffff;
    background: var(--primary-orange);
}
.btn-warning{
    background:var(--primary-orange) !important;
    border-color: var(--primary-orange);
    border-radius: 0px;
    color: #ffffff;
	font-size:16px;
}
.btn-warning:hover, .btn-warning:focus{
    background:var(--primary-orange);
    color: #ffffff;
    border-color: var(--primary-orange);
}
.rouned-blue-btn{
    background:#008CCE;
    color:#fff;
    padding:12px 24px;
    border-radius: 50px;
	font-size:16px;
}
.rouned-blue-btn:hover, .rouned-blue-btn:focus{
    color:#fff;
    box-shadow: 0px 10px 16px rgba(0, 0, 0, 0.09);
    background: #049BE2;
}

.bg-purple-light{
    background-color: rgba(171,80,177, 0.09) !important;
}
.bg-teal-light{
    background:rgba(30, 180, 183, 0.09) !important;
}
.bg-teal-dark{
    background-color: var(--secondary-teal) !important;
}
.bg-green-dark{
    background-color:var(--secondary-green) !important;
}

.bg-red-dark{
    background-color:var(--secondary-red) !important;
    
}
.bg-blue-dark{
    background-color:var(--secondary-blue) !important;
}

.heading{
   font-family: 'Roboto Slab', serif;
   color:var(--primary-txt-color);
   font-size:22px;
   margin-bottom:20px;
}
.heading-sm{
    font-family: 'Roboto Slab', serif;
   color:var(--primary-txt-color);
   font-weight: 600;
   font-size:18px;
   margin-top:20px;
   margin-bottom:10px;
}
 ul{
 	list-style: none;
    margin: 0;
    padding: 0;
 }
 hr {
    border-top: 1px dotted rgba(0,0,0,.1);
}

.inner-wrapper{
    padding:48px 0px;
}
ul.listing li, ol.listing li, .blogPage ul li{
    margin-left:1.2em;
    margin-bottom:10px;
	font-size:16px;
}
ul.listing li::before{
  content: "\2022";
  color: #6C63FF;
  font-weight: bold;
  display: inline-block; 
  font-size: 16px;
  width: 1em;
  margin-left: -1em;
}
.img-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.blogPage ul{
	list-style:disc !important;
}
.breadcrumb {
    background: transparent !important;
}
body{
	font-size:16px;
    font-family: 'Roboto', sans-serif;
	line-height:1.5;
	font-weight:300;
	font-kerning: normal;
	text-rendering:optimizeSpeed;
	background: #ffffff;
}

.main-header{
    min-height:100px;
    background-color: rgba(171, 80, 177, 0.96);
    position: fixed;
    width: 100%;
    top:0px;
    z-index:999;
}
.navbar{border:0px !important;}
.navbar-default {
    background-color: transparent !important;
    border-color: transparent !important;
    border-radius: 0px !important;
    margin-bottom: 0px;
    min-height: auto;
}
.brand-centered {
    display: flex;
    justify-content: center;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
  }
  .navbar-brand {
    display: flex;
    align-items: center;
    height:auto;
  }


.navbar-default .navbar-nav>li>a{
    color:#ffffff;
    text-transform: uppercase;
    padding:5px 10px;
    line-height: 90px;
}
.btn-donate{
    font-weight:600;
}
.navbar-default .navbar-nav>li{
    min-width:110px;
    text-align: center;
}
.navbar-default .navbar-nav>li>a{
    text-decoration: none;
	font-size: 16px !important;
}
.navbar-default .navbar-nav>li>a:focus, .navbar-default .navbar-nav>li>a:hover, a.active, .navbar-nav>li.current-menu-item>a{
    color: #fff;
    background-color: var(--primary-orange);
}

   .div-futures-podcast{position: absolute; top: -68px;}
	.div-futures-podcast > .btn{
		border-radius: 5px;
		padding: 10px 20px;
	}

.hero-banner{
    position: relative;
    padding-top:210px;
    padding-bottom:120px;
    width:100%;
    height:100vh;
/*     background: url(../../../wp-content/uploads/2020/09/HomePage1.jpg)  no-repeat center center; 
	  background: url(../../../wp-content/uploads/2023/05/home-banner-1.png)  no-repeat center center; */
      background: url(../../../wp-content/uploads/2024/05/2024-VOC-Adaptive-Cover-White-1.png) no-repeat center center;
    background-size:cover;
}
.hero-banner:before{
    content: '';
    display: block;
    width: 100%;
    height: 100vh;
    min-height: 100%;
/*     background:rgba(0,0,0, 50%); 
	background-image:linear-gradient(15Deg, rgba(0,0,0, 50%), rgb(0 0 0 / 15%));*/
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    margin: 0 auto;
}
.hero-banner .hero-txt{
    color: var(--primary-orange);
    font-size:32px;
    font-weight: 300;
    margin-top:40px;
    margin-bottom: 40px;
}
.hero-banner .hero-title{
    color: #ffffff;
    font-size:48px;
    margin-top: 20px;
    font-weight: 300;
    line-height:1.4;
    margin-bottom: 30px;
}
.hero-sub-title{
    color:#ffffff;
    font-size:26px;
    font-weight: 500;
}
.login-wrap{
    margin-top:0px;
    color:#ffffff;
}

.login-wrap .btn-warning {
    padding: 10px 24px;
    font-size: 20px;
    display: block;
}

.login-wrap .btn-warning:hover{
	background: #FF9800 !important;
/*     box-shadow: 0px 5px 4px 0px rgb(0 0 0 / 35%); */
}
.login-wrap p{
    font-size:14px;
    font-weight:500;
    margin-top:15px;
}
.login-wrap .register-btn{
    color:#ffffff;
    padding:3px 10px !important;
    font-weight:300;
	margin-left:10px;
}
.blue-box-wrap{
	background-color: rgb(0 140 206 / 90%);
    padding:10px 25px;
    margin-top:50px;
}
.blue-box-wrap:hover{
    background-color: var(--primary-blue);
}

.blue-box-wrap .title{
    font-size:30px;
    font-weight: 300;
    letter-spacing: 2px;
}
.line{
    width:50px;
    height:8px;
    background: #ffffff;
    margin-top:10px;
    margin-bottom:10px;
}

.btn-contact{
    color:#FFF;
}
.btn-contact:hover,.btn-contact:focus{
    color:#FFF;
}

.all-resources-wrap{
    padding:40px 0px;
}
.all-resources-wrap .owl-theme .media{
    padding: 12px;
    text-align: center;
    color: #ffffff;
    justify-content: center;
    margin-top: 0px;
}
.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
    display: none !important;
}
.owl-nav button {
    position: absolute;
    top: 50%;
    background-color: #000;
    color: #fff;
    margin: 0;
    transition: all 0.3s ease-in-out;
  }
  .owl-nav button.owl-prev {
    left: -4.5%;
  }
  .owl-nav button.owl-next {
    right: -4.5%;
  }
  
  .owl-dots {
    display: none
  }
  .owl-dots button.owl-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    background: #ccc;
    margin: 0 3px;
  }
  .owl-dots button.owl-dot.active {
    background-color: #000;
  }
  .owl-dots button.owl-dot:focus {
    outline: none;
  }
  .owl-nav button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.38) !important;
  }
  .owl-nav button:focus {
      outline: none;
  }

.what-we-do-wrap{
    position: relative;
    overflow: hidden;
}
.what-we-do-wrap .bg-image{
    background: url(../../../wp-content/uploads/2022/05/HP6-SP4-2-scaled.jpg) no-repeat;
    background-position: center right;
    height: 100%;
    background-size: 100% 100%;
    position: absolute;
    z-index: 1;
    right: -25%;
    width: 100%;
    min-height: 360px;
}
.what-we-do-wrap .bg-image1{
    background: url(../../../wp-content/uploads/2022/05/HP8-SP6.jpg) no-repeat;
    background-position: center right;
    height: 100%;
    background-size: 100% 100%;
    position: absolute;
    z-index: 1;
    right: -25%;
    width: 100%;
    min-height: 360px;
}
.what-we-do-wrap .bg-image2{
    background: url(../../../wp-content/uploads/2022/05/HP10-SP8.jpg) no-repeat;
    background-position: center right;
    height: 100%;
    background-size: 100% 100%;
    position: absolute;
    z-index: 1;
    right: -25%;
    width: 100%;
    min-height: 360px;
}
.what-we-do-wrap .inner-wrapper{
    background-color:rgb(247, 239, 248);
}
.what-we-do-wrap .bg-purple-light, .how-you-can-Help-wrap .bg-teal-light{
	overflow:hidden;
}
.how-you-can-Help-wrap .listing, .what-we-do-wrap .listing{
    margin-top:10px;
    margin-bottom: 35px;
    font-size: 16px;
}

.more-details{
    margin-top:80px;
    margin-bottom:80px;
}

.cards {
    overflow: hidden;
}
.cards img{
    max-width: 100%;
    width: 100%;
}
.how-you-can-Help-wrap{
    position: relative;
    overflow: hidden;
}
.how-you-can-Help-wrap .bg-image{
    background: url(../../../wp-content/uploads/2022/05/HP5-SP3-scaled.jpg) no-repeat;
    background-position: center left;
    height: 100%;
    background-size: 100% 100%;
    position: absolute;
    z-index: 1;
    left: -28%;
	min-width:430px;
    width: 100%;
    min-height: 360px;
}
.how-you-can-Help-wrap .bg-image1{
    background: url(../../../wp-content/uploads/2022/05/HP7-SP5-scaled.jpg) no-repeat;
    background-position: center left;
    height: 100%;
    background-size: 100% 100%;
    position: absolute;
    z-index: 1;
    left: -28%;
	min-width:430px;
    width: 100%;
    min-height: 360px;
}
.how-you-can-Help-wrap .bg-image2{
    background: url(../../../wp-content/uploads/2022/05/HP9-SP7.jpg) no-repeat;
    background-position: center left;
    height: 100%;
    background-size: 100% 100%;
    position: absolute;
    z-index: 1;
    left: -28%;
	min-width:430px;
    width: 100%;
    min-height: 360px;
}
.how-you-can-Help-wrap .inner-wrapper{
    background-color:rgb(235, 248, 249);
}


.company-history{
    padding-top:80px;
    padding-bottom:60px;
    background: url("assets/images/bg-histroy.png") no-repeat center center;
    background-size: 100% 100%;
}
.team-wrap{
    border:1px dotted #A2A2A2;
}
.team-disc{
    padding:5px 10px 15px;
}
.team-posotion{
    color: #A2A2A2;
}
.footer-links{
    text-align: center;
    padding:100px 40px;
}
.footer-links a{
    padding:12px 20%;
    font-size: 22px;
}
.footer-links a:hover{
    text-decoration: none;
}
footer{
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    padding:40px 0px 10px;
    background-color: var(--secondary-purple);
}
footer ul li{
  margin-bottom:5px;
}
footer ul li a {color:#ffffff;}
.social-icons li a{
    color:#ffffff;
	background:none;
}
.social-icons li a:hover{
    color:#f3f3f3;
    text-decoration: none;
}
.social-icons li a span{
    margin-left:15px;
}
.footer-logo{
    vertical-align: text-bottom;
    margin-right:25px;
}
footer .copyright{
    text-align: center;
    margin-top: 20px;
    margin-bottom: 0px;
}

.modal.fade.in {
    background: rgba(0, 0, 0, 0.46);
}
.modal-dialog {
    width:980px;
    margin: 40px auto;
}
.modal-header{
    border-bottom:0px;
}
.modal-header .close {
    background:var(--secondary-red);
    border-radius: 50%;
    opacity: 1;
    width: 40px;
    height: 40px;
    text-shadow:none;
    color: #fff;
    transition: all 0.3s ease;
}
.modal-header .close:hover{
    background-color: #ff814f;
}
.modal-header .close:focus{
    outline: none;
}
.modal-body{
    padding:0px 40px 20px;
}
.ForgetPwd{
    color: var(--primary-blue);
}
label{
    font-weight:300;
}

.login-form .form-control {
    display: inline-block;
    width: calc(100% - 112px);
    vertical-align: middle;
    margin-left:15px;
    border-color:#707070;
    border-radius: 0px;
    height: 40px;
}


/**inner-slider-heading **/
.inner-slider{
margin-top:100px;
background-color: #1EB4B7;
height:240px;
text-align: center;
padding-top:80px;
}
.inner-slider-heading{
    font-family: "Roboto Slab", serif;
    font-size:48px;
    color: #fff;
    font-weight: 300;
}
.bg-color1{
background-color: #FFFBF7;
margin-top:50px;
}
.bg-color2{
    background-color:#F7FCF6;
    margin-top:50px;
}

.bg-color1 img, .bg-color2 img{
	width:100%;
}
.content{
    padding:40px 30px 10px;
}
.content .heading-sm{
	    font-family: 'Roboto Slab', serif;
    color: var(--primary-txt-color);
    font-size: 22px;
        font-weight: normal!important;
      margin-top:0px !important;
    margin-bottom: 20px;
}


.bg-color1 ul li .img-80 , .bg-color2 ul li .img-80 {
    margin-right:20px;
	width:100px !important;
}
.bg-color1 ul.p-40 li, .bg-color2 ul.p-40 li{
	    display: table-row;
}

.bg-color1 ul li div.p-10, .bg-color2 ul li div.p-10 {
    display: table-cell;
    vertical-align: middle;
	 padding-left: 20px !important;
}

.media-wrap {
    background: var(--secondary-yellow-light);
    padding: 15px;
}
@media (min-width:1200px){
	body,
	ul.listing li, ol.listing li,
	.container .col-sm-12 p, .form-wrapper {
	 font-size:18px;
	}
	
	.bg-color1 .col-md-3 img, .bg-color2  .col-md-3 img {
		padding: 45px 10px 10px!important;
		 
	}
	.bg-color1 .col-md-9.content, .bg-color2 .col-md-9.content{
	    width:60%;
	}
	.bg-color1 .col-md-3, .bg-color2 .col-md-3 {
	    width:40%;;
	}
.bg-color1 .embed-responsive-4by3, .bg-color2 .embed-responsive-4by3{
    margin-top: 23px;
}
	.xl-big-title{
     font-size: 38px !important;
     line-height: 1.4;
 }
}

.google-app-download{
    text-align: center;
    padding:20px;
    border-top:1px solid #ebebee;
}
.google-app-download a{
    color:#000;
    font-size:24px;
}

.slider-bg-purple{
    background-color:rgb(192 124 197);
}
.latest-news-wrap{
	padding-top: 80px;
    padding-bottom: 60px;
    background: url(assets/images/bg-histroy.png) no-repeat center center;
    background-size: 100% 100%;
}
.owl-carousel .owl-stage-outer{
	min-height:270px;
}
.latest-news-wrap .media{
	padding:20px;
	background:url(assets/images/bg-overlay.png) no-repeat center center;
	border-radius:9px;
	padding-bottom:50px
}
.latest-news-wrap .media .post-date{
	color:#474747;
	font-size: 14px;
	margin-top:15px;
}
.latest-news-wrap .media .news-titles{
	font-size:18px;
	font-family: 'Roboto Slab', serif;
	margin-top:20px;
	margin-bottom:40px;
}
.view-all-press-release{
	text-align:center;
	margin-top: 50px;
}
.view-all-press-release .btn{
	font-size:18px;
	padding:6px 22px;
	transition:all 0.3s ease-in-out;
}
.view-all-press-release .btn:hover{
	    box-shadow: 0px 4px 10px -4px rgba(0,0,0,0.5);
}
@media(max-width:767px){
	.latest-news-wrap .media {
    	padding: 20px 60px;
	}
	.owl-carousel .owl-stage-outer {
    	 height: inherit !important;
	}
	.card-header{
		margin-bottom:15px;
	}
}
/*team page*/

.team-card{ 
    background-color: #fff; 
    border: 1px solid transparent; 
    border-radius: 2px; 
    padding:15px;
    text-align: center;
    transition: all 0.2s ease-in-out;
    margin:15px;
}
.team-card:hover{ 
    background-color: #f1f1f1; 
    border-color:#ebebeb; 
}
.img-team{
    max-width: 100%;
    border-radius:50%;
    border:2px solid #ebebeb;
}
.team-name{
    color: #212121;
}
.team-position{
    color: #212121;
    font-size: 14px;
	white-space: nowrap;
}

.modal-body .col-sm-9 > p.p-20{
	padding:0px !important;
}
.modal-body p > a{
	color:#008CCE;
	font-weight:500;
}
/* .container .col-sm-12 p, .form-wrapper{
	font-size: 16px;
} */
.form-wrapper .col-sm-6.form-group{
	width:100% !important;
}
.textarea.form-control,
.form-wrapper input.form-control {
    font-size: 16px !important;
}
.all-latest-blogs .cards{
	min-height:auto !important;
	margin:20px 0px !important;
}
.all-latest-blogs .card-header > img{
	border:1px solid #ececec;
}

@media (max-width: 1023px){
    .navbar-left, .navbar-right{
        width: 100%;
        float: none !important;
        margin-right:0px !important;
    }
    .navbar-default .navbar-toggle {
        border-color: #fff;
        z-index: 1111;
        position: relative;
        top: 32px;
        display: block !important;
    }
    .navbar-default .navbar-toggle .icon-bar {
        background-color: #fff;
    }
    .navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
        background-color: #93279a;
    }
    .navbar-collapse{
        margin-top: 100px;
    }
    .navbar-collapse.collapse {
        display: none!important;
    }
    .navbar-collapse.collapse.in{
        display: block!important;
    }
    .navbar-default .navbar-nav>li {
        min-width:100%;
        text-align: left;
    }
    .navbar-default .navbar-nav>li>a {
        line-height:1.5;
    }
    .modal-dialog {
        width:90%;
    }
		.team-position {
    	white-space: inherit;
	}
}

@media screen and (max-width: 1026px) and (min-width: 981px){
    .hero-banner .hero-title {
        font-size: 54px;
        line-height: 60px;
    }
    .blue-box-wrap {
        padding: 10px;
     }
    .join-wrap {
        padding: 24px 50px;
    }
    .join-wrap .title{
        font-size: 24px;
    }
    .owl-nav button.owl-prev {
        left:-22px;
    }
    .owl-nav button.owl-next {
        right: -22px;
    }
	.what-we-do-wrap .bg-image {
		right: -15%;
	}
}
@media screen and (max-width: 1024px){
	.team-card {min-height: 320px;}
	.team-name {font-size: 17px;}
	.img-team {max-width: 150px}
}

@media(max-width:980px){
    .hero-banner .hero-title {
    font-size: 32px;
    line-height: 42px;
    }
    .blue-box-wrap {
        padding: 10px;
     }
    .join-wrap{
        padding:20px;
    }
    .join-wrap .btn-outline-warning{
        padding: 10px 22px;
    }
    .owl-nav button.owl-prev {
        left:-22px;
    }
    .owl-nav button.owl-next {
        right: -22px;
    }
    .cards{
        margin-bottom:40px;
    }
	.how-you-can-Help-wrap .bg-image{
		min-width:auto;
	}

}

@media(max-width:767px){
	.inner-slider {
		height: 160px;
		padding-top: 40px;
	}
	.inner-slider-heading {
    	font-size: 32px;
	}
    .main-header .container{
        width: 100%;
    }
    .main-header .col-md-12{
        margin-left: -15px;
        margin-right: -15px;
    }
    .navbar-default .navbar-brand{
        width: 80%;
    }
    .hero-banner{
        padding-top:160px;
        padding-bottom:50px;
		    height: 100%;
    }
	.hero-banner:before{
		height:inherit;
	}
    .hero-banner .hero-txt{
        margin-top:30px;
        margin-bottom:30px;
    }
    .login-wrap{
        margin-top:40px;
    }
    .login-form .form-control {
        width: 100%;
        margin-left: 0;
    }
    .modal-body {
        padding: 0px 24px 15px;
    }
	.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
		display: block !important;
	}
	.owl-nav button {
    transform: translateY(-50%) scale(2.5);
    background: rgb(255 158 53 / 80%) !important;
    width: 20px;
	}
     .owl-nav button.owl-prev {
        left:5px;
    }
    .owl-nav button.owl-next {
        right: 5px;
    }
    .bg-purple-light {
        padding-bottom: 40px;
    }
    .what-we-do-wrap .bg-image{
        position: relative;
        right: auto;
        min-height: 500px;
    }
    .bg-teal-light{
        padding-top:40px;
    }
    .how-you-can-Help-wrap .bg-image{
        position: relative;
        left: auto;
        min-height: 500px;
    }
	.modal-dialog img.img-responsive {
   	 margin: 0px auto;
	}
    .footer-links a {
        padding: 12px 20%;
        font-size: 16px;
        display: block;
        margin-bottom: 20px;
    }
    footer .col-sm-4{
        border-bottom: 1px dotted #fafafa;
        padding-bottom:15px;
        margin-bottom:20px;
    }
	
.bg-color1 .embed-responsive{
	        margin-right: 15px;
	}
.bg-color2 .embed-responsive{
	    margin-left: 15px;
	}
.bg-color1 > ul.p-40 {
    padding: 40px 20px!important;
	}
.all-news-listing, .load-more-wrapper{
    margin-bottom: 50px;
	}
}

@media(min-width:1350px){
		.bg-color1 .col-md-3 img, .bg-color2  .col-md-3 img {
			height: 365px;
		 }
	.bg-color1 .col-md-9.content, .bg-color2 .col-md-9.content{
	    width:60%;
	}
	.bg-color1 .col-md-3, .bg-color2 .col-md-3 {
	    width:40%;;
	}
	.bg-color1 ul li .img-80, .bg-color2 ul li .img-80 {
		width: 120px !important;
		height: 90px !important;
	}
.img-team{
	width:197px;
	height:234px;
 }
}

.download-app-mobile-popup{
	display: none;
    overflow: hidden;
    max-height: 48px;
    position: relative;
    z-index: 9999;
    background: #fff;
    line-height: 48px;
	padding: 0px 10px;
}
.download-app-mobile-popup h4{
	line-height:30px;
}
.download-app-mobile-popup svg{
	width: 34px;
    height: 34px;
    margin-top: 8px;
    margin-left: 15px;
}
.download-app-mobile-popup .close{
    top: 10px;
    right: 15px;
    position: absolute;
    background: #ff2d2d;
    color: #fff;
    width: 30px;
    height: 30px;
    opacity: 1;
    border-radius: 30px;
    line-height: 30px;
    font-size: 28px;
}
.ios-icon{
	display:none;
}
@media (max-width:680px){
	.download-app-mobile-popup{
		display: flex;
	}
}