/* start global style */

:root{
    --main-color: #2FAADF;
    --color-text: #333;
    --color-grey: #a3a3a3;
}
body{
    font-family: 'Open Sans', sans-serif !important;
}
h1, h2, h3, h4, h5, h6{
    font-family: 'Open Sans', sans-serif !important;
}
a,a:hover{
    text-decoration: none;
}
button:focus{
    box-shadow: none!important;
    outline: 0;
}

/* scrollbar styling */

* {
    scrollbar-color: rgba(var(--second-color-rgb),.5) #1f2029 ;
    scrollbar-width: thin;
}

*::-webkit-scrollbar {
    width: 12px;
}

*::-webkit-scrollbar-track {
    background: rgba(var(--second-color-rgb),.5);
    width: 12px;
}

*::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
    width: 16px;
    height: 16px;
    border-radius: 16px;
    border-left: 1px solid rgba(var(--second-color-rgb),.5);
}


section{
    padding-top: 60px;
    padding-bottom: 60px;
}

/* title of section */

.section-title{
    text-align: center;
}
.section-title-NoCenter{
    text-align: left;
}
.section-title span{
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.5em;
    padding-bottom: 15px;
    margin-bottom: 60px;
    text-transform: uppercase;
    position: relative;
}
.section-title span:after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    height: 5px;
    width: 70px;
    transform: translateX(-50%);
    background-color: var(--main-color);
    z-index: 2;
}
.section-title-NoCenter span:after{
    left: 0;
    transform: translateX(0);
}

/* z-index for modal */

.modal{
    z-index: 10000;
}


/* button scroll to top */

.scroll-top{
    position: fixed;
    bottom: 60px;
    right: 10px;
    z-index: 100;
    border: 0;
    background: var(--main-color);
    display: none;
    outline: none;
    padding: 10px;
    width: 45px;
    height: 45px;
    justify-content: center;
    align-items: center;
    border-radius: .25rem;
    box-shadow: 0 0 9px 2px rgba(255,255,255,.5);
    transition: all .2s ease-in-out;
}
.scroll-top i{
    color: #fff;
    margin-bottom: 0;
    font-size: 1.3rem;
    transition: all .2s ease-in-out;
}
.scroll-top:hover i{
    transform: translateY(-5px);
}
.scroll-top:focus{
    outline: 0;
    border: 0;
}
.scroll-top.animate-btn{
    animation: fadeInUp ease 1s both;
}
.pattern-box{
    position: absolute;
}
.dollar-after:after{
    /*content: '$';*/
    /*margin-left: 2px;*/
}

button,
button:focus{
    outline: 0;
    box-shadow: none;
}

p:first-letter{
    text-transform: capitalize;
}

/* donate-link */

.donate-link{
    background: var(--main-color);
    color: #fff;
    border: 1px solid var(--main-color);
    padding: 5px 10px;
    text-transform: capitalize;
    border-radius: .5rem;
    transition: all .3s ease-in-out;
}
.donate-link:hover{
    background: transparent;
    color: var(--main-color);
}

/* view-more-link */

.view-more-link{
    display: flex;
    justify-content: center;
    width: max-content;
    background: var(--main-color);
    color: #fff;
    border: 1px solid var(--main-color);
    padding: 5px 15px;
    text-transform: capitalize;
    border-radius: .5rem;
    margin: 40px auto 0;
    transition: all .3s ease-in-out;
}
.view-more-link:hover{
    background: transparent;
    color: var(--main-color);
}

/* progress with caret */

.progress-caret{
    display: flex;
    position: relative;
    overflow: visible;
    width: 50%;
    background: #c5edff;
    border-radius: 0.5rem;
}
.progress-caret .progress-bar{
    //width: 50%;
    background: var(--main-color);
    border-radius: 0.5rem;
}
.progress-caret > span:nth-child(2){
    position: absolute;
    top: -100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translate(-50%,-65%);
}
.progress-caret > span:nth-child(3){
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    left: 100%;
    width: 56%;
    top: -50%;
    transform: translateY(-50%);
}
.progress-caret > span:nth-child(2) > span:nth-child(1),
.progress-caret > span:nth-child(3) > span:nth-child(1){
    font-weight: 700;
    color: var(--color-text);
    font-size: 1.25rem;
}
.progress-caret > span:nth-child(3) > span:nth-child(2){
    text-transform: capitalize;
    color: var(--color-grey);
    text-align: center;
    font-size: .95rem;
}
.progress-caret i.fa-caret-down{
    margin-top: -5px;
}

/* progress without caret */

.progress-without-caret{
    display: flex;
    position: relative;
    overflow: visible;
    width: 25vw;
    background: #c5edff;
    border-radius: 0.5rem;
}
.progress-without-caret .progress-bar{
    //width: 50%;
    background: var(--main-color);
    border-radius: 0.5rem;
}
.progress-without-caret > span:nth-child(2){
    position: absolute;
    top: -100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(-75%);
}
.progress-without-caret > span:nth-child(3){
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    right: 0;
    top: -100%;
    transform: translateY(-75%);
}
.progress-without-caret > span:nth-child(2) > span:nth-child(1),
.progress-without-caret > span:nth-child(3) > span:nth-child(1){
    font-weight: 700;
    color: var(--color-text);
    font-size: 1.25rem;
}
.progress-without-caret > span:nth-child(2) > span:nth-child(2),
.progress-without-caret > span:nth-child(3) > span:nth-child(2){
    text-transform: capitalize;
    color: var(--color-grey);
    font-size: .95rem;
}

/* model box */

.box-model{
    display: block;
    margin-bottom: 30px;
    transition: all .3s ease-in-out;
}
.box-model img{
    width: 100%;
    height: auto;
    border-radius: 25px 25px 0 0;
    box-shadow: 7px 10px 20px rgb(12 12 12 / 11%);
}
.box-model-wrapper{
    background: #fff;
    padding: 25px 25px 35px;
    border-radius: 25px;
    box-shadow: 7px 10px 20px rgb(12 12 12 / 11%);
    transform: translateY(-30px);
    height: 265px;
}
.box-model .box-model-content{
    text-align: center;
    margin-bottom: 45px;
}
.box-model .box-model-content h4{
    font-weight: 600;
    text-transform: capitalize;
    color: var(--color-text);
    font-weight: 700;
    margin-bottom: 25px;
}
.box-model .box-model-content p{
    color: var(--color-grey);
    line-height: 1.7;
}
.box-model .box-model-action{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.box-model .box-model-action > span{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--color-text);
    font-weight: 700;
}
.box-model .box-model-action > span > span:nth-child(1){
    font-size: 1.2rem;
}
.box-model .box-model-action > span > span:nth-child(2){
    font-size: .85rem;
}
.box-model .box-model-action .box-model-link{
    background: var(--main-color);
    color: #fff;
    border: 1px solid var(--main-color);
    padding: 5px 15px;
    text-transform: capitalize;
    border-radius: 1rem;
    transition: all .3s ease-in-out;
}
.box-model .box-model-action .box-model-link:hover{
    background: transparent;
    color: var(--main-color);
}


/* end global style */


/* start header */

header{

}
header nav .logo a.logo-link img{
    width: auto;
}


/* navbar */

header nav{
    background: #fff!important;
    padding-top: .75rem!important;
    padding-bottom: .75rem!important;
    transition: all .45s;
}
header .navbar-wrapper{
    display: flex;
    align-items: center;
    width: 100%;
}
header .navbar-wrapper .navbar-nav{
    width: 75%;
    justify-content: space-between;
    align-items: center;
}
.navbar-inferior-lg{
    padding-top: 5px!important;
    padding-bottom: 5px!important;
}
.navbar-inferior-lg .btn-offcanvas{
    background: var(--main-color);
    border-radius: 0.5rem;
    border: 0;
    font-size: 1.5rem;
    padding: 0.25rem 0.75rem;
    transition: all .3s ease-in-out;
}
.navbar-inferior-lg .btn-offcanvas i{
    color: #fff;
    transition: all .3s ease-in-out;
}
nav.sticky .btn-offcanvas:hover{
    background: #fff;
}
nav.sticky .btn-offcanvas:hover i{
    color: var(--main-color);
}
.navbar-inferior-lg > .container-fluid{
    justify-content: flex-end;
}
.navbar-inferior-lg .offcanvas-header{
    justify-content: flex-end;
}
nav .navbar-nav{
//align-items: center;
}
.navbar-light .navbar-nav .nav-link{
    text-transform: capitalize;
    color: var(--color-text);
    font-weight: 500;
    position: relative;
}
.navbar-light .navbar-nav .nav-link:after{
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--main-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: all .4s ease-in-out;
}
.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show>.nav-link,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover{
    color: var(--color-text);
    font-weight: 500;
}
.navbar-light .navbar-nav .active>.nav-link:after,
.navbar-light .navbar-nav .nav-link.active:after,
.navbar-light .navbar-nav .nav-link.show:after,
.navbar-light .navbar-nav .show>.nav-link:after,
.navbar-light .navbar-nav .nav-link:focus:after,
.navbar-light .navbar-nav .nav-link:hover:after{
    transform: scaleX(1);
}
.lang-login-wrapper{
    width: 20%;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 0;
}
.lang-login-wrapper .lang{
    display: flex;
    align-items: center;
    border-right: 3px solid var(--main-color);
    padding-right: 5px;
}
.lang-login-wrapper .lang svg{
    width: 30px;
    transition: all .5s ease-in-out;
}
.lang-login-wrapper .lang button{
    background: transparent;
    border: 0;
    text-transform: capitalize;
    color: var(--main-color);
    margin-left: 5px;
}
.lang-login-wrapper .lang:hover svg{
    transform: rotate(360deg);
}
.lang-login-wrapper .lang .dropdown-menu{
    left: auto;
    right: 10px;
    padding: 0;
    min-width: max-content;
    border-color: var(--main-color);
    animation: slideInUp ease .4s both;
//box-shadow: 0 0 8px 2px rgb(255 255 255 / 50%);
}
.lang-login-wrapper .lang .dropdown-menu .dropdown-item{
    background: var(--main-color);
    padding: 6px 12px;
    color: #fff;
    border-radius: 0.25rem;
    transition: all .3s ease-in-out;
}
.lang-login-wrapper .lang .dropdown-menu .dropdown-item:hover{
    background: #fff;
    color: var(--main-color);
}
header nav.sticky .lang-login-wrapper .lang .dropdown-menu .dropdown-item{
    background: #fff;
    color: var(--main-color);
}
header nav.sticky .lang-login-wrapper .lang .dropdown-menu .dropdown-item:hover{
    background: var(--main-color);
    color: #fff;
    border-color: #fff;
    box-shadow: 0 0 4px 2px rgb(255 255 255 / 40%);
}
header nav.sticky{
    padding-top: 0!important;
    padding-bottom: 0!important;
    background: var(--main-color)!important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 0rem 1rem rgba(0,0,0,.25)!important;
    margin-top: 0;
    margin-bottom: 0;
    z-index: 9999;
    transition: all .45s;
}
header nav.sticky .navbar-nav .nav-link,
header nav.sticky .navbar-nav .active>.nav-link,
header nav.sticky .navbar-nav .nav-link.active,
header nav.sticky .navbar-nav .nav-link.show,
header nav.sticky .navbar-nav .show>.nav-link,
header nav.sticky .navbar-nav .nav-link:focus,
header nav.sticky .navbar-nav .nav-link:hover{
    color: #fff;
}
header nav.sticky .navbar-nav .active>.nav-link:after,
header nav.sticky .navbar-nav .nav-link.active:after,
header nav.sticky .navbar-nav .nav-link.show:after,
header nav.sticky .navbar-nav .show>.nav-link:after,
header nav.sticky .navbar-nav .nav-link:focus:after,
header nav.sticky .navbar-nav .nav-link:hover:after{
    background: #fff;
}
header nav .login{
    margin-left: 15px;
}
header nav .login > a{
    background: var(--main-color);
    color: #fff;
    border-radius: .5rem;
    text-transform: capitalize;
    padding: 7px 12px;
    border: 1px solid var(--main-color);
    transition: all .3s ease-in-out;
}
header nav .login > a:hover{
    background: transparent;
    color: var(--main-color);
}
header nav.sticky .lang-login-wrapper .lang{
    border-right-color: #fff;
}
header nav.sticky .lang-login-wrapper .lang svg path{
    fill: #fff;
}
header nav.sticky .lang-login-wrapper .lang button{
    color: #fff
}
header nav.sticky .login a{
    background: #fff;
    border-color: #fff;
    color: var(--main-color);
}
header nav.sticky .login a:hover{
    background: transparent;
    color: #fff;
}
.lang-login-wrapper .connected-item .dropdown-menu,
header nav .login .dropdown-menu{
    left: auto;
    right: 0;
    padding: 0;
    margin-top: 10px;
    min-width: max-content;
    border-color: var(--main-color);
    border-radius: 0.25rem;
    animation: slideInUp ease .4s both;
//box-shadow: 0 0 8px 2px rgb(255 255 255 / 50%);
}
.lang-login-wrapper .connected-item .dropdown-menu .dropdown-item,
header nav .login .dropdown-menu .dropdown-item{
    background: var(--main-color);
    padding: 6px 12px;
    color: #fff;
    border-radius: 0;
    font-size: 0.95rem;
    text-transform: capitalize;
    transition: all .3s ease-in-out;
}
.lang-login-wrapper .connected-item .dropdown-menu .dropdown-item:first-child,
header nav .login .dropdown-menu .dropdown-item:first-child{
    border-radius: .25rem .25rem 0 0;
    border-bottom: 1px solid rgba(255,255,255,.4);
}
.lang-login-wrapper .connected-item .dropdown-menu .dropdown-item:last-child,
header nav .login .dropdown-menu .dropdown-item:last-child{
    border-radius: 0 0 .25rem .25rem;
}
.lang-login-wrapper .connected-item .dropdown-menu .dropdown-item i{
    margin-right: 5px;
}
.lang-login-wrapper .connected-item .dropdown-menu .dropdown-item:hover,
header nav .login .dropdown-menu .dropdown-item:hover{
    background: #fff;
    color: var(--main-color);
}
header nav .connected-item{
    margin-left: 15px;
}
header nav .connected-item > a{
    color: var(--main-color);
    border-radius: 0;
    text-transform: capitalize;
    border: 0;
    transition: all .3s ease-in-out;
}
header nav.sticky  .connected-item > a,
header.header-otherPages nav .connected-item > a{
    color: #fff;
}
header nav .connected-item .dropdown-menu a:hover,
header.header-otherPages nav .connected-item .dropdown-menu a:hover{
    background: transparent;
    color: var(--main-color);
}
header nav.sticky .connected-item .dropdown-menu,
header.header-otherPages nav .connected-item .dropdown-menu,
header nav.sticky .login .dropdown-menu,
header.header-otherPages nav .login .dropdown-menu{
    box-shadow: 0 0 3px 3px rgb(255 255 255 / 35%);
}
header nav.sticky .connected-item .dropdown-menu a,
header.header-otherPages nav .connected-item .dropdown-menu a{
    background: #fff;
    border-color: #fff;
    color: var(--main-color);
}
header nav.sticky .connected-item .dropdown-menu a:hover,
header.header-otherPages nav .connected-item .dropdown-menu a:hover{
    background: transparent;
    color: #fff;
}

/* for tablet & mobile */

.navbar-inferior-lg-wrapper{
    width: 100%;
    align-items: center;
}
.navbar-inferior-lg-wrapper .lang-login-wrapper{
    margin-bottom: 0;
    justify-content: space-around;
    width: 60%;
    flex-direction: row-reverse;
}
.navbar-inferior-lg-wrapper .lang-login-wrapper .lang{
    border-right: 0;
    padding-right: 0;
    margin-left: 10px;
}
.navbar-inferior-lg-wrapper .lang-login-wrapper .lang button{
    padding-left: 5px;
    margin-left: 0;
}
.navbar-inferior-lg-wrapper .lang-login-wrapper .lang svg{
    width: 25px;
}

/* end header */


/* start section : jumbotron */

.jumbotron{
    display: flex;
    align-items: center;
    padding-top: 15px;
//position: relative;
}
.jumbotron > div{
    width: 50%;
}
.jumbotron-content{
    position: relative;
}
.jumbotron-content .pattern-box img{
    transform: rotateY(180deg);
}
.jumbotron-content .rect-pattern{
    top: -43%;
    z-index: -2;
}
.jumbotron-content .rect-pattern img{
    width: 60%;
}
.jumbotron-content .circle-pattern{
    top: 0;
    z-index: -3;
}
.jumbotron-content .circle-pattern img{
    width: 55%;
}
.jumbotron-content .jumbotron-desc{
    padding-left: 18%;
}
.jumbotron-content .jumbotron-desc{
    display: none;
}
.jumbotron-content .jumbotron-desc.active{
    display: block;
    animation: zoomIn ease 1s both;
}
.jumbotron-content .jumbotron-desc h1{
    text-transform: capitalize;
    color: var(--main-color);
    font-weight: 600;
    margin-top: 11%;
}
.jumbotron-content .jumbotron-desc p{
    color: var(--color-text);
    font-weight: 700;
}
.jumbotron .slider,
.about-img-wrapper {
    height: 40vw;
    width: 40vw;
    display: block;
    position: relative;
}
.jumbotron .slider:after{
    content: '';
    position: absolute;
    top: 10%;
    left: 25%;
    width: 75%;
    height: 75%;
    background: var(--main-color);
    box-shadow: 26px -11px 17px -6px rgb(0 0 0 / 12%);
    border-radius: 70px;
    transform: rotate(3deg);
    z-index: -1;
}
.jumbotron .imgs-slides {
    width: 100%;
    height: 100%;
    position: relative;
}
.jumbotron .imgs-slides input{
    display: none;
}
.jumbotron .slide,
.about-img-wrapper .about-img{
    width: 100%;
    transition: 1.5s;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    display: flex;
    justify-content: flex-end;
}
.jumbotron .slide{
    opacity: 0;
}
.jumbotron .slide.active{
    opacity: 1;
//animation: zoomIn ease 1s both;
}
.jumbotron .slide > img,
.about-img-wrapper .about-img > img{
    width: 80%;
    height: 80%;
    border-radius: 70px;
    transform: rotate(3deg);
    margin: 0 auto;
    display: block;
    box-shadow: -5px 0 10px 2px rgb(0 0 0 / 35%);
    position: relative;
}
/*.jumbotron .slide:before{
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    clip-path: circle(160px at bottom);;
    z-index: 3;
    background: #fff;
}*/

/* css for slide navigation */
.jumbotron .navigation{
    position: absolute;
    width: max-content;
    display: flex;
    justify-content: center;
    right: 0%;
    transform: rotate(-87deg) translateY(7px);
    bottom: 45%;
}

.jumbotron .navigation-btn{
    border: 2px solid #fff;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: .5s;
}

.jumbotron .navigation-btn:not(:last-child){
    margin-right: 5px;
}
.jumbotron .navigation-btn.active,
.jumbotron .navigation-btn:hover{
    background: #fff;
}

/* The checked attribute is used with
reference to <input type="radio">,
when radio button is clicked the
class will shift w.r.t  left margin
as mentioned which results in image
slider */
/*.jumbotron #radio1:checked~.active{
    opacity: 1;
    z-index: 0;
}

.jumbotron #radio2:checked~.active{
    opacity: 1;
    z-index: 1;
}

.jumbotron #radio3:checked~.active{
    opacity: 1;
    z-index: 2;
}

.jumbotron #radio4:checked~.active{
    opacity: 1;
    z-index: 3;
}*/

/* slide video */
.jumbotron .slide-video .btn-player{
    position: absolute;
    right: 7%;
    bottom: 15%;
    border: 0;
    background: transparent;
    padding: 0;
    transform: rotate(3deg);
    z-index: 5;
}
.jumbotron .slide-video .btn-player > span.fa-stack{
    color: #45c0f5;
    font-size: 2.2em;
}
.jumbotron .slide-video .btn-player span.fa-stack .fa-inverse{
    color: #fff;
}
@media (min-width: 576px){
    .jumbotron .modal-dialog{
        max-width: 70%;
    }
}
.jumbotron .modal .modal-header{
    border-bottom: 0;
}
.jumbotron .modal video{
    width: 100%;
}
.jumbotron .imgs-slides > div:not(.slide-video) button.btn-player{
    display: none;
}

/* end section : jumbotron */



/* start section : stats */

.stats{
    padding-top: 30px;
}
.stats .stats-list{
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #fff;
    padding: 50px 20px;
    box-shadow: 16px 25px 50px #D7D7D7;
    border-radius: 10px;
    width: 60%;
    margin: auto;
}
.stats .stats-list .stats-item{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.stats .stats-list .stats-item span.stats-val{
    color: var(--main-color);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.1rem;
}
.stats .stats-list .stats-item span.stats-val:before{
    content: '+';
}
.stats .stats-list .stats-item span.stats-title{
    color: var(--color-grey);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    text-transform: capitalize;
}
.stats .stats-list .stats-item span.stats-title svg{
    width: 25px;
    margin-right: 5px;
}

/* end section : stats */



/* start section : state */

.state{
    padding-top: 60px;
    position: relative;
}
.state-box{

}
.state-box img{
    width: 100%;
    height: auto;
    border-radius: 30px;
    transform: translateY(30px);
}
.state-box-wrapper{
    background: #fff;
    padding: 25px 25px 35px;
    border-radius: 0 0 30px 30px;
    box-shadow: 16px 32px 35px rgb(12 12 12 / 11%);
}
.state-box .state-box-content{
    text-align: left;
    margin-bottom: 45px;
    margin-top: 30px;
}
.state-box .state-box-content h4{
    font-weight: 600;
    text-transform: capitalize;
}
.state-box .state-box-content p{
    color: var(--color-text);
}
.state-box .state-box-action{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.state .circle-pattern{
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: -10;
}
.state .circle-pattern img{

}

/* end section : state */



/* start section : bails */

.bails{
    position: relative;
}
.bails .row > div:nth-child(2) .box-model{
    transform: translateY(30px);
}
.bails .view-more-link{
    margin-top: 70px;
}
.bails .circle-pattern{
    top: 80%;
    z-index: -5;
}
.bails .circle-pattern img{
    height: 400px;
    transform: rotateY(180deg);
}
.bails .rect-pattern{
    right: 0;
    top: 75%;
    transform: rotateY(180deg);
    z-index: -5;
}
.bails .rect-pattern img{
    height: 335px;
}


/* end section : bails */



/* start section : shelter */

.shelter{
    position: relative;
    padding-top: 120px;
}
.shelter h2{
    margin-bottom: 60px;
}
.shelter .row > div:nth-child(2) .box-model{
    transform: translateY(-30px);
}
.shelter .rect-pattern{
    top: 72%;
    z-index: -5;
    left: -5%;
}
.shelter .rect-pattern img{
    height: 335px;
    transform: rotateY(180deg) rotateZ(8deg);
}

/* end section : shelter */




/* start section : about */

.about{
    position: relative;
    padding-top: 140px;
}
.about-wrapper{
    display: flex;
    align-items: center;
}
.about-content{
    width: 45%;
    margin-left: 10%;
    padding-left: 25px;
    border-left: 3px solid var(--main-color);
}
.about-content .about-description{
    margin-bottom: 40px;
}
.about-content .about-description h4{
    color: var(--color-text);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: capitalize;
}
.about-content .about-description p{
    width: 95%;
    color: var(--color-text);
    line-height: 1.7;
}
.about-img{
    position: relative;
    width: 45%;
}
.about-img img{
    width: 100%;
    height: auto;
}
.about-img .btn-player{
    position: absolute;
    right: 20%;
    bottom: 15%;
    border: 0;
    background: transparent;
    padding: 0;
    z-index: 5;
}
.about-img .btn-player > span.fa-stack{
    color: #45c0f5;
    font-size: 2.2em;
}
.about-img .btn-player span.fa-stack .fa-inverse{
    color: #fff;
}
@media (min-width: 576px){
    .about-img .modal-dialog{
        max-width: 70%;
    }
}
.about-img video{
    width: 100%;
}
.about .logo-pattern{
    top: 50%;
}
.about .logo-pattern img{
    transform: rotateY(180deg);
    height: 540px;
}

/* end section : about */



/* start section : latest-news */

.latest-news{
    padding-top: 100px;
}
.latest-news h2{
    margin-bottom: 90px;
}
.latest-news .row > div:nth-child(2) .box-model{
    transform: translateY(-60px);
}
.latest-news .box-model .box-model-action > span{
    flex-direction: row;
    align-items: center;
}
.latest-news .box-model .box-model-action > span i{
    margin-right: 5px;
}

/* end section : latest-news */



/* start section : ideas */

.ideas{
    position: relative;
}
.ideas h2{
    margin-bottom: 90px;
}
.ideas-wrapper{
    display: flex;
    justify-content: space-between;
    padding-left: 5%;
    padding-right: 5%;
}
.idea-box{
    display: block;
    width: 40vw;
    background: #fff;
    padding: 15px 15px 30px;
    box-shadow: 3px 3px 13px rgba(0, 0, 0, 0.11);
    border-radius: 30px;
}
.idea-box-up{
    display: flex;
}
.idea-box-up .rect-pattern{
    transform: translate(-15%,-25%);
    width: 41%;
}
.idea-box-up .rect-pattern img{
    transform: translate(-20%,-15%);
    width: 16vw;
}
.idea-box-up .idea-box-content{
    margin-left: -10px;
    width: 100%;
    min-height: max-content;
}
.idea-box-up .idea-box-content h4{
    color: var(--color-text);
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: capitalize;
}
.idea-box-up .idea-box-content p{
    font-size: 0.9rem;
    color: var(--color-text);
}
.idea-box-up .map-beneficiaries{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 25px;
    margin-bottom: 25px;
}
.idea-box-up .map-beneficiaries > span{
    display: flex;
    align-items: center;
}
.idea-box-up .map-beneficiaries > span svg{
    width: 25px;
    margin-right: 5px;
}
.idea-box-up .map-beneficiaries > span svg path{
    fill: #727272;
}
.idea-box-up .map-beneficiaries > span span{
    color: var(--color-text);
    font-size: 0.95rem;
    font-weight: 700;
}
.idea-box-up .map-beneficiaries .beneficiaries-title{
    display: none;
}
.idea-box-down{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 35px;
}
.ideas .view-more-link{
    margin-top: 60px;
}
.ideas .half-circle-pattern{
    top: 0;
    right: 0;
    z-index: -5;
}
.ideas .half-circle-pattern img{
    height: 320px;
    transform: rotateY(180deg);
}

/* end section : ideas */



/* start section : training */

.training{
    position: relative;
    padding-top: 120px;
}
.training h2.training-title{
    padding-left: 10%;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--main-color);
    width: max-content;
    margin-bottom: 20px;
    text-transform: capitalize;
    font-weight: 700;
    color: var(--color-text);
}
.training p.training-under-title{
    color: var(--color-text);
    padding-left: 8%;
}
.training-boxes-wrapper{
    margin-top: 70px;
}
.training-box{
    position: relative;
    display: flex;
    margin-bottom: 60px;
    background: #fff;
    width: 80%;
}
.training-img{

}
.training-img img{
    width: 230px;
    transform: scaleY(1.1);
    transform-origin: bottom;
    border: 4px solid var(--main-color);
    border-radius: 0px 30px 30px 0px;
    height: 100%;
}
.training-content{
    padding: 25px 25px 25px 60px;
    transform: translateX(-30px);
    border-radius: 0px 30px 30px 0px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
}
.training-content .training-description{

}
.training-content .training-description h4{
    color: var(--color-text);
    text-transform: capitalize;
    font-weight: 700;
}
.training-content .training-description p{
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 65px;
    min-height: max-content;
}
.training-content .map-progress{
    display: flex;
    align-items: flex-end;
    margin-top: 40px;
}
.training-content .map-progress .map{
    margin-right: 25px;
}
.training-content .map-progress .map span{
    color: var(--color-text);
}
.training-box .donate-link{
    position: absolute;
    right: 0;
    bottom: 0;
}
.training .circle-pattern{
    top: 0;
}
.training .circle-pattern img{
    height: 320px;
    transform: rotateY(180deg);
}

/* end section : training */



/* start section : different-day */

.different-day{
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
}
.different-day h2.different-day-title{
    padding-bottom: 20px;
    border-bottom: 2px solid var(--main-color);
    width: 50%;
    margin-bottom: 20px;
    text-transform: capitalize;
    font-weight: 700;
    color: var(--color-text);
    margin-left: auto;
}
.different-day p.different-day-under-title{
    color: var(--color-text);
    width: 50%;
    margin-left: auto;
}
.different-day-boxes-wrapper{
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.different-day-box{
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    margin: 0 auto 60px;
    background: #fff;
    width: 75%;
}
.different-day-img{
    position: relative;
}
.different-day-overlay{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0,0,0,.3);
    z-index: 1;
    transform: scaleY(1.1);
    transform-origin: bottom;
    border-radius: 30px;
}
.different-day-img > img{
    width: 230px;
    transform: scaleY(1.1);
    transform-origin: bottom;
    border: 4px solid var(--main-color);
    border-radius: 30px;
    height: 100%;
}
.different-day-img-content{
    position: absolute;
    top: 0;
    left: 15px;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    justify-content: space-between;
    z-index: 5;
}
.different-day-img-content .map svg path{
    fill: #fff;
}
.different-day-img-content .logo-date{
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}
.different-day-img-content .logo-date .date{
    position: absolute;
    bottom: 10px;
    right: 25px;
    font-size: 0.85rem;
}
.different-day-img-content .logo-date img{
    width: 40px;
}
.different-day-img-content span{
    color: #fff;
}
.different-day-content{
    padding: 25px 60px 25px 25px;
    transform: translateX(30px);
    border-radius: 30px 0px 0px 30px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}
.different-day-content .different-day-description{

}
.different-day-content .different-day-description h4{
    color: var(--color-text);
    text-transform: capitalize;
    font-weight: 700;
}
.different-day-content .different-day-description p{
    color: var(--color-text);
    line-height: 1.7;
}
.different-day-content .different-day-date i{
    color: var(--main-color);
}
.different-day-content .different-day-date span{
    text-transform: capitalize;
    color: var(--color-text);
    font-weight: 700;
    margin-left: 5px;
}
.different-day-boxes-wrapper > a:nth-child(even){
    flex-direction: row;
    width: 75%;
}
.different-day-boxes-wrapper > a:nth-child(even) .different-day-content{
    padding: 25px 25px 25px 60px;
    transform: translateX(-30px);
    border-radius: 0px 30px 30px 0px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}
.different-day .rect-double-pattern{
    bottom: 0;
    left: -11%;
    z-index: -5;
}
.different-day .rect-double-pattern img{
    height: 320px;
    transform: rotateY(180deg);
}

/* end section : different-day */



/* start footer */

footer{
    background: linear-gradient(-259.41deg, #0085BE 2.6%, rgba(2, 158, 225, 0.36) 97.3%);
    padding-top: 60px;
    position: relative;
}
footer ul.quick-links li{
    margin-bottom: 10px;
}
footer ul.quick-links li a{
    text-transform: capitalize;
    color: #fff;
    position: relative;
    display: inline-block;
    padding-left: 0;
    transition: all .3s ease-in-out;
}
footer ul.quick-links li a:after{
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #42c6ff;
    transform: scaleX(.25);
    transform-origin: left;
    transition: all .3s ease-in-out;
}
footer ul.quick-links li a:hover:after{
    transform: scaleX(1);
}
footer ul.quick-links li a:hover{
    color: #fff;
}
footer h4.contact-us-title{
    text-transform: capitalize;
    color: #fff;
    margin-bottom: 25px;
    padding-bottom: 10px;
    position: relative;
}
footer h4.contact-us-title:after{
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #42c6ff;
    transform: scaleX(.25);
    transform-origin: left;
}
footer ul.contact-us li{
    margin-bottom: 10px;
}
footer ul.contact-us li > span.fa-stack{
    color: #fff;
}
footer ul.contact-us li > span.fa-stack .fa-inverse{
    color: var(--color-text);
}
footer ul.contact-us li > span:last-child{
    color: #fff;
    margin-left: 5px;
}
footer ul.social-networks{
    align-items: center;
    margin-top: 25px;
}
footer ul.social-networks li{
    margin-right: 20px;
}
footer ul.social-networks li:last-child{
    margin-right: 0;
}
footer ul.social-networks li a{
    display: inline-flex;
    transition: all .3s ease-in-out;
}
footer ul.social-networks li a:hover{
    transform: translateY(-5px);
}
footer ul.social-networks li a svg{
    width: 30px;
}
footer .logo-pattern{
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -5;
}
footer .logo-pattern img{
    height: 100%;
}
/*footer .row > div:last-child{
    background: url(../images/patterns/logo-pattern.png);
    background-blend-mode: darken;
}*/
footer .copyright{
    margin-top: 60px;
    background: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 8px;
    padding-bottom: 8px;
}
footer .copyright p{
    color: #f2f2f2;
    margin-bottom: 0;
}

/* end footer */


/* ============= start pages styling ============= */

/* global style */

header.header-otherPages nav{
    background: var(--main-color)!important;
}
header.header-otherPages nav .navbar-nav .nav-link,
header.header-otherPages nav .navbar-nav .active>.nav-link,
header.header-otherPages nav .navbar-nav .nav-link.active,
header.header-otherPages nav .navbar-nav .nav-link.show,
header.header-otherPages nav .navbar-nav .show>.nav-link,
header.header-otherPages nav .navbar-nav .nav-link:focus,
header.header-otherPages nav .navbar-nav .nav-link:hover{
    color: #fff;
}
header.header-otherPages nav .navbar-nav .active>.nav-link:after,
header.header-otherPages nav .navbar-nav .nav-link.active:after,
header.header-otherPages nav .navbar-nav .nav-link.show:after,
header.header-otherPages nav .navbar-nav .show>.nav-link:after,
header.header-otherPages nav .navbar-nav .nav-link:focus:after,
header.header-otherPages nav .navbar-nav .nav-link:hover:after{
    background: #fff;
}
header.header-otherPages nav .lang-login-wrapper .lang{
    border-right-color: #fff;
}
header.header-otherPages nav .lang-login-wrapper .lang svg path{
    fill: #fff;
}
header.header-otherPages nav .lang-login-wrapper .lang button{
    color: #fff
}
header.header-otherPages nav .lang-login-wrapper .lang .dropdown-menu .dropdown-item{
    background: #fff;
    color: var(--main-color);
}
header.header-otherPages nav .lang-login-wrapper .lang .dropdown-menu .dropdown-item:hover{
    background: var(--main-color);
    color: #fff;
    border-color: #fff;
    box-shadow: 0 0 4px 2px rgb(255 255 255 / 40%);
}
header.header-otherPages nav .login a{
    background: #fff;
    border-color: #fff;
    color: var(--main-color);
}
header.header-otherPages nav .login a:hover{
    background: transparent;
    color: #fff;
}
/* search model */
.search-model{
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 30px;
    margin-bottom: 60px;
}
.search-model form{
    display: flex;
    width: 50%;
    position: relative;
}
.search-model form button{
    border-radius: 25px;
    padding: 6px 25px;
    position: absolute;
    background: var(--main-color);
    color: #fff;
    border: 0;
    transition: all .3s ease-in-out;
}
.search-model form button i{
//color: #fff;
    transition: all .3s ease-in-out;
}
.search-model form input{
    border: 0;
    color: var(--color-text);
    padding-left: 75px;
    font-size: 0.9rem;
    border: 1px solid var(--color-grey);
    border-left: 0;
    border-radius: 25px;
}
.search-model form input:placeholder{
    color: var(--color-grey);
    font-size: 0.9rem;
}
.search-model form input:focus{
    border-color: var(--main-color);
    box-shadow: none;
    outline: 0;
}
.search-model form button:hover{
    background: transparent;
    color: var(--main-color);
}
/* accordion model */
.accordion-model .accordion-item{
    background: transparent;
    border: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #dbdbdb;
    border-radius: 0!important;
}
.accordion-model .accordion-header button{
    color: var(--color-text);
    font-weight: 700;
    padding-left: 0;
    border-radius: 0!important;
    background: transparent;
}
.accordion-model .accordion-header button:first-letter{
    text-transform: capitalize;
}
.accordion-model .accordion-header button:after{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232faadf'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")
}
.accordion-model .accordion-button:not(.collapsed){
    background: transparent;
    box-shadow: none;
}
.accordion-model .accordion-body ol li{
    background: #fff;
    padding: 20px;
    box-shadow: 4px 4px 20px 0px rgb(0 0 0 / 10%);
    border-radius: 15px;
    list-style-position: inside;
    margin-bottom: 25px;
}
.accordion-model .accordion-body ol li h5{
    display: inline-block;
    color: #6d6d6d;
    margin-bottom: 20px;
}
.accordion-model .accordion-body ol li p{
    color: var(--main-color);
    padding: 15px 10px 5px 25px;
    line-height: 1.7;
    border-top: 2px solid #f0f0f0;
}
/* search filter */
.search-filter{
    display: flex;
    justify-content: center;
    margin-bottom: 0;
    width: 30%;
    margin-right: 5%;
}
.search-filter form{
    display: flex;
    background: #fff;
    position: relative;
    box-shadow: 0px 4px 18px rgb(148 148 148 / 25%);
    border-radius: 50px!important;
    width: 100%;
    padding-bottom: 3px;
    padding-top: 3px;
}
.search-filter form button{
    border-radius: 0;
    padding: 6px 13px;
    background: transparent;
    color: var(--color-text);
    border: 0;
    transition: all .3s ease-in-out;
}
.search-filter form button i{
//color: #fff;
    transition: all .3s ease-in-out;
}
.search-filter form input{
    border: 0;
    color: var(--color-text);
    padding-left: 5px;
    font-size: 0.9rem;
    border-left: 0;
    border-radius: 0 50px 50px 0;
}
.search-filter form input:placeholder{
    color: var(--color-grey);
    font-size: 0.9rem;
}
.search-filter form input:focus{
    border-color: var(--main-color);
    box-shadow: none;
    outline: 0;
}
.search-filter form button:hover{
    background: transparent;
    color: var(--main-color);
}
/* filter date */
.filter-date{
    width: 30%;
}
.filter-date .input-group{
    position: relative;
    background: #fff;
    box-shadow: 0px 4px 18px rgb(148 148 148 / 25%);
    border-radius: 50px;
    align-items: center;
    width: 100%;
    padding-bottom: 3px;
    padding-top: 3px;
}
.filter-date .input-group-prepend{
    border-radius: 0;
    border: 0;
}
.filter-date .input-group-prepend span{
    background: transparent;
    border: 0;
}
.filter-date input{
    border: 0!important;
    color: var(--color-text);
    padding-left: 5px;
    font-size: 0.9rem;
    border-radius: 25px;
}
.filter-date input:placeholder{
    color: var(--color-grey);
    font-size: 0.9rem;
}
.filter-date input:focus{
    border-color: var(--main-color);
    box-shadow: none;
    outline: 0;
}
.tab-content>.active{
    animation: zoomIn ease .7s both;
}
/* box-model-objectMedia */
.box-model-objectMedia{
    display: flex;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 20px;
    padding: 8px;
    box-shadow: 3px 4px 20px rgb(0 0 0 / 14%);
}
.box-model-objectMedia > img{
    width: 30%;
    height: 100%;
    border-radius: 20px;
}
.box-model-objectMedia > div{
    padding: 10px 10px 10px 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}
.box-model-objectMedia > div > div:first-child{

}
.box-model-objectMedia > div > div:first-child h4{
    text-transform: capitalize;
    color: var(--color-text);
    font-weight: 600;
}
.box-model-objectMedia > div > div:first-child p{
    color: var(--color-grey);
    line-height: 1.7;
}
.box-model-objectMedia > div > div:last-child{
    display: flex;
    justify-content: flex-start;
}
.box-model-objectMedia > div > div:last-child > span:first-child{
    display: flex;
    align-items: center;
    margin-right: 30px;
}
.box-model-objectMedia > div > div:last-child > span:first-child i{
    color: var(--main-color);
    margin-right: 5px;
}
.box-model-objectMedia > div > div:last-child > span:first-child span{
    color: var(--color-text);
    font-weight: 700;
}
.box-model-objectMedia > div > div:last-child > span:last-child{
    display: flex;
    align-items: center;
}
.box-model-objectMedia > div > div:last-child > span:last-child i{
    color: var(--color-grey);
    margin-right: 5px;
}
.box-model-objectMedia > div > div:last-child > span:last-child span{
    color: var(--color-grey);
}
.box-model-two{
    display: flex;
    margin-bottom: 60px;
}
.box-model-two > div{

}
.box-model-two > div.box-left{
    width: 40%;
}
.box-model-two > div.box-left img{
    width: 100%;
    border: 4px solid #2FAADF;
    border-radius: 30px;
}
.box-model-two > div.box-right{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px 0 15px 30px;
    width: 45%;
}
.box-model-two > div.box-right .box-right-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.box-model-two > div.box-right .box-right-top > span{
    display: flex;
    flex-direction: column;
}
.box-model-two .progress-without-caret{
    width: 100%;
}
.box-model-two > div.box-right .box-right-top > span > span:first-child{
    color: var(--main-color);
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.2rem;
}
.box-model-two > div.box-right .box-right-top > span > span:last-child{
    color: var(--color-grey);
    text-transform: capitalize;
    font-size: 0.95rem;
}
.box-model-two > div.box-right .box-right-top > span > span:last-child svg{
    width: 20px;
    height: 20px;
}
.box-model-two > div.box-right .box-right-top > span > span:last-child svg path{
    fill: var(--color-grey);
}
.box-model-two > div.box-right .box-right-under-top{
    display: flex;
    justify-content: flex-start;
    margin-bottom: 50px;
}
.box-model-two > div.box-right .box-right-under-top > span{
    display: flex;
    flex-direction: column;
}
.box-model-two > div.box-right .box-right-under-top > span > span:first-child{
    color: var(--main-color);
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.2rem;
}
.box-model-two > div.box-right .box-right-under-top > span > span:last-child{
    color: var(--color-grey);
    text-transform: capitalize;
    font-size: 0.95rem;
}
.box-model-two > div.box-right .box-right-under-top > span > span:last-child svg{
    width: 20px;
    height: 20px;
}
.box-model-two > div.box-right .box-right-under-top > span > span:last-child svg path{
    fill: var(--color-grey);
}
.box-model-two .donate-link{
    width: max-content;
}
.box-model-two > div.box-right > span.date{
    display: flex;
    flex-direction: column;
}
.box-model-two > div.box-right > span.date > span:first-child{
    color: var(--main-color);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.2rem;
}
.box-model-two > div.box-right > span.date > span:last-child{
    color: var(--color-grey);
    text-transform: capitalize;
    font-size: 0.95rem;
}
.box-model-two > div.box-right > span.date > span:last-child svg{
    width: 20px;
    height: 20px;
}
.box-model-two > div.box-right > span.date > span:last-child svg path{
    fill: var(--color-grey);
}

/* ====== start page about ====== */


/* start section : whoAreWe-enterpriseIdea */

.whoAreWe-enterpriseIdea{
    padding-bottom: 50px;
    position: relative;
}
.whoAreWe-enterpriseIdea .whoAreWe{
    margin-bottom: 80px;
}
.whoAreWe-enterpriseIdea .whoAreWe .who-are-we-desc{
    background: #fff;
    box-shadow: 8px 20px 100px rgba(0, 0, 0, 0.13);
    border-radius: 30px;
    color: var(--color-text);
    text-align: center;
    padding: 40px 20px;
    line-height: 1.8;
}
.enterpriseIdea .enterpriseIdea-desc{
    color: var(--color-text);
    text-align: center;
    line-height: 1.8;
}
.whoAreWe-enterpriseIdea .logo-pattern{
    top: 0;
    z-index: -3;
}
.whoAreWe-enterpriseIdea .logo-pattern img{
    transform: rotateY(180deg);
    height: 710px;
}

/* end section : whoAreWe-enterpriseIdea */



/* start section : map-contact */

.map-contact{
    display: flex;
}
.map-contact #myMap{
    width: 60%;
}
.map-contact .contact-us-wrapper{
    background: #fff;
    width: 40%;
    height: 100%;
    padding: 8% 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0px 4px 100px rgba(0, 0, 0, 0.13);
}
.map-contact .contact-us-wrapper h4.contact-us-title{
    text-transform: capitalize;
    color: var(--color-text);
    font-weight: 600;
    margin-bottom: 25px;
}
.map-contact .contact-us-wrapper ul.contact-us li{
    margin-bottom: 10px;
}
.map-contact .contact-us-wrapper ul.contact-us li > span.fa-stack{
    color: var(--main-color);
}
.map-contact .contact-us-wrapper ul.contact-us li > span.fa-stack .fa-inverse{
    color: #fff;
}
.map-contact .contact-us-wrapper ul.contact-us li > span:last-child{
    color: var(--main-color);
    margin-left: 5px;
}
.map-contact .contact-us-wrapper ul.social-networks{
    align-items: center;
    margin-top: 25px;
}
.map-contact .contact-us-wrapper ul.social-networks li{
    margin-right: 20px;
}
.map-contact .contact-us-wrapper ul.social-networks li:last-child{
    margin-right: 0;
}
.map-contact .contact-us-wrapper ul.social-networks li a{
    display: inline-flex;
    transition: all .3s ease-in-out;
}
.map-contact .contact-us-wrapper ul.social-networks li a:hover{
    transform: translateY(-5px);
}
.map-contact .contact-us-wrapper ul.social-networks li a svg{
    width: 30px;
}
.map-contact .contact-us-wrapper ul.social-networks li a svg path{
    fill: var(--main-color);
}

/* end section : map-contact */



/* start section : enterprise-team */

.enterprise-team{
    position: relative;
    padding-bottom: 20px;
}
.enterprise-team h2.enterprise-team-title{
    margin-bottom: 70px;
}
.enterprise-team .box-member{
    background: #fff;
    border-radius: 30px 30px 10px 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.13);
    text-align: center;
    margin-bottom: 80px;
    padding: 0 10px 20px;
    transition: all .3s ease-in-out;
}
.enterprise-team .box-member:hover{
    transform: scale(1.1);
    transform-origin: bottom;
}
.enterprise-team .box-member img{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    transform: translateY(-50%);
    border: 2px solid #fff;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 13%)
}
.enterprise-team .box-member .box-member-info{
    margin-top: -20px;
}
.enterprise-team .box-member .box-member-info h4{
    text-transform: capitalize;
    font-weight: 600;
    color: var(--color-text);
    margin: 10px;
}
.enterprise-team .box-member .box-member-info span{
    color: var(--color-text);
    text-transform: capitalize;
}
.enterprise-team .half-circle-pattern{
    top: 50%;
    z-index: -5;
}

/* end section : enterprise-team */



/* start section : enterprise-stats */

.enterprise-stats{
    padding-bottom: 140px;
}
.enterprise-stats .stats-list{
    position: relative;
}
.enterprise-stats .enterprise-stats-title{
    position: absolute;
    top: 0;
    left: 5%;
    transform: translateY(-50%);
    text-transform: capitalize;
    font-size: 0.95rem;
    font-weight: 700;
}

/* end section : enterprise-stats */

/* end page about */



/* start page usagePolicy */

/* start section : usage-policy */

.usage-policy{
    position: relative;
}
.usage-policy-list{

}
.usage-policy-list > li{
    margin-bottom: 40px;
}
.usage-policy-list > li h4{
    text-transform: capitalize;
    color: var(--color-text);
    font-weight: 700;
    margin-bottom: 20px;
    padding: 10px;
    position: relative;
}
.usage-policy-list > li h4:after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 5px;
    width: 5%;
    background-color: var(--main-color);
    z-index: 2;
}
.usage-policy-list > li ol{

}
.usage-policy-list > li ol li{
    color: var(--color-grey);
    margin-bottom: 20px;
}
.usage-policy .half-circle-oblic-pattern{
    top: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: -5;
}
.usage-policy .half-circle-oblic-pattern img{
    height: 320px;
    transform: rotateY(180deg);
}
.usage-policy .logo-pattern{
    top: 20%;
    z-index: -5;
}
.usage-policy .logo-pattern img{
    height: 600px;
    transform: rotateY(180deg);
}

/* end section : usage-policy */



/* start section : map-contact-with-title */

.map-contact-with-title{
    margin-bottom: 50px;
}
.map-contact-with-title .map-contact-title{
    text-transform: capitalize;
    color: var(--color-text);
    font-weight: 700;
    margin-bottom: 30px;
}
.map-contact-with-title .map-contact-wrapper{
    display: flex;
    position: relative;
}
.map-contact-with-title .map-contact-wrapper #myMap{
    width: 100%;
    height: 500px;
}
.map-contact-with-title .map-contact-wrapper .contact-us-wrapper{
    background: var(--main-color);
//width: 40%;
    height: 78%;
    padding: 5%;
//box-shadow: 0px 4px 100px rgba(0, 0, 0, 0.13);
    position: absolute;
    bottom: 0;
    right: 5%;
}
.map-contact-with-title .map-contact-wrapper .contact-us-wrapper h4.contact-us-title{
    text-transform: capitalize;
    color: #fff;
    font-weight: 600;
    margin-bottom: 25px;
}
.map-contact-with-title .map-contact-wrapper .contact-us-wrapper ul.contact-us li{
    margin-bottom: 10px;
}
.map-contact-with-title .map-contact-wrapper .contact-us-wrapper ul.contact-us li > span.fa-stack{
    color: #fff;
}
.map-contact-with-title .map-contact-wrapper .contact-us-wrapper ul.contact-us li > span.fa-stack .fa-inverse{
    color: var(--main-color);
}
.map-contact-with-title .map-contact-wrapper .contact-us-wrapper ul.contact-us li > span:last-child{
    color: #fff;
    margin-left: 5px;
}
.map-contact-with-title .map-contact-wrapper .contact-us-wrapper ul.social-networks{
    align-items: center;
    margin-top: 25px;
}
.map-contact-with-title .map-contact-wrapper .contact-us-wrapper ul.social-networks li{
    margin-right: 20px;
}
.map-contact-with-title .map-contact-wrapper .contact-us-wrapper ul.social-networks li:last-child{
    margin-right: 0;
}
.map-contact-with-title .map-contact-wrapper .contact-us-wrapper ul.social-networks li a{
    display: inline-flex;
    transition: all .3s ease-in-out;
}
.map-contact-with-title .map-contact-wrapper .contact-us-wrapper ul.social-networks li a:hover{
    transform: translateY(-5px);
}
.map-contact-with-title .map-contact-wrapper .contact-us-wrapper ul.social-networks li a svg{
    width: 30px;
}
.map-contact-with-title .map-contact-wrapper .contact-us-wrapper ul.social-networks li a svg path{
    fill: #fff;
}

/* end section : map-contact-with-title */


/* end page usagePolicy */



/* start page commonQuestions */


/* start section : frequently-questions */

.frequently-questions{
    padding-top: 50px;
    padding-bottom: 300px;
    position: relative;
}
.frequently-questions .half-circle-oblic-pattern{
    top: 0;
    transform: translateY(-50%);
    z-index: -5;
}
.frequently-questions .half-circle-oblic-pattern img{
    height: 320px;
}
.frequently-questions .logo-pattern{
    top: 15%;
    right: 0;
    z-index: -5;
}
.frequently-questions .logo-pattern img{
    height: 600px;
}
.frequently-questions .rect-circle-pattern{
    bottom: 0;
    z-index: -5;
}
.frequently-questions .rect-circle-pattern img{
    height: 300px;
}

/* end section : frequently-questions */


/* end page commonQuestions */



/* start page howToDonate */


/* start section : howToDonate */

.howToDonate{
    padding-top: 50px;
    padding-bottom: 300px;
    position: relative;
}
.howToDonate .accordion-model .accordion-item{
    background: #fff;
    padding: 10px 20px;
    box-shadow: 4px 4px 20px 0px rgb(0 0 0 / 10%);
    border-radius: 15px;
    margin-bottom: 25px;
    border-bottom: 0;
}
.howToDonate .accordion-model .accordion-header button{
    padding: .5rem 1.25rem;
}
.howToDonate .accordion-model .accordion-body p{
    padding-top: 15px;
    padding-left: 10px;
    border-top: 2px solid #f0f0f0;
    color: var(--color-text);
    line-height: 1.7;
}
.howToDonate .half-circle-oblic-pattern{
    top: 0;
    transform: translateY(-50%);
    z-index: -5;
}
.howToDonate .half-circle-oblic-pattern img{
    height: 320px;
}
.howToDonate .logo-pattern{
    top: 15%;
    right: 0;
    z-index: -5;
}
.howToDonate .logo-pattern img{
    height: 600px;
}
.howToDonate .rect-circle-pattern{
    bottom: 0;
    z-index: -5;
}
.howToDonate .rect-circle-pattern img{
    height: 300px;
}

/* end section : howToDonate */


/* end page howToDonate */



/* star page contact */


/* start section : contact */

.contact{
    padding-top: 50px;
    padding-bottom: 300px;
    position: relative;
}
.contact .contact-wrapper{
    display: flex;
}
.contact .contact-wrapper .contact-img{
    width: 45%;
}
.contact .contact-wrapper .contact-img img{
    width: 100%;
    height: 100%;
}
.contact .contact-us-wrapper{
    background: var(--main-color);
    width: 55%;
    padding: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact .contact-us-wrapper h4.contact-us-title{
    text-transform: capitalize;
    color: #fff;
    font-weight: 600;
    margin-bottom: 25px;
}
.contact .contact-us-wrapper ul.contact-us li{
    margin-bottom: 10px;
}
.contact .contact-us-wrapper ul.contact-us li > span.fa-stack{
    color: #fff;
}
.contact .contact-us-wrapper ul.contact-us li > span.fa-stack .fa-inverse{
    color: var(--main-color);
}
.contact .contact-us-wrapper ul.contact-us li > span:last-child{
    color: #fff;
    margin-left: 5px;
}
.contact .contact-us-wrapper ul.social-networks{
    align-items: center;
    margin-top: 25px;
}
.contact .contact-us-wrapper ul.social-networks li{
    margin-right: 20px;
}
.contact .contact-us-wrapper ul.social-networks li:last-child{
    margin-right: 0;
}
.contact .contact-us-wrapper ul.social-networks li a{
    display: inline-flex;
    transition: all .3s ease-in-out;
}
.contact .contact-us-wrapper ul.social-networks li a:hover{
    transform: translateY(-5px);
}
.contact .contact-us-wrapper ul.social-networks li a svg{
    width: 30px;
}
.contact .contact-us-wrapper ul.social-networks li a svg path{
    fill: #fff;
}
.contact .half-circle-oblic-pattern{
    top: 0;
    transform: translateY(-50%);
    z-index: -5;
}
.contact .half-circle-oblic-pattern img{
    height: 320px;
}
.contact .logo-pattern{
    top: 15%;
    right: 0;
    z-index: -5;
}
.contact .logo-pattern img{
    height: 600px;
}
.contact .rect-circle-pattern{
    bottom: 0;
    z-index: -5;
}
.contact .rect-circle-pattern img{
    height: 300px;
}

/* end section : contact */


/* end page contact */



/* star page transparencyFile */


/* start section : transparency-file */

.transparency-file{
    padding-top: 50px;
    padding-bottom: 300px;
    position: relative;
}
.transparency-file .transparency-file-box{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background: #fff;
    box-shadow: 8px 10px 50px rgba(0, 0, 0, 0.27);
    border-radius: 15px;
    width: 65%;
    margin: 40px auto 70px;
}
.transparency-file .transparency-file-box > div{
    display: flex;
    width: 100%;
}
.transparency-file .transparency-file-box > div:first-child{
    border-bottom: 1px solid rgba(85, 85, 85, 0.1);
}
.transparency-file .transparency-file-box > div label{
    text-transform: capitalize;
    padding: 20px;
    background: var(--main-color);
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    width: 50%;
    text-align: center;
}
.transparency-file .transparency-file-box > div:first-child label{
    border-radius: 15px 0 0 0;
}
.transparency-file .transparency-file-box > div:last-child label{
    border-radius: 0 0 0 15px;
}
.transparency-file .transparency-file-box > div span{
    color: #8b8b8b;
    font-weight: 700;
    font-size: 1.7rem;
    padding: 20px;
    width: 50%;
    text-align: center;
}
.view-donations-box{
    text-align: center;
}
.view-donations-box a{
    display: inline-block;
    padding: 8px 20px;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    color: #fff;
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 1rem;
    transition: all .3s ease-in-out;
}
.view-donations-box a:hover{
    background: transparent;
    color: var(--main-color);
}
.transparency-file .half-circle-oblic-pattern{
    top: 0;
    transform: translateY(-50%);
    z-index: -5;
}
.transparency-file .half-circle-oblic-pattern img{
    height: 320px;
}
.transparency-file .logo-pattern{
    top: 15%;
    right: 0;
    z-index: -5;
}
.transparency-file .logo-pattern img{
    height: 600px;
}
.transparency-file .rect-circle-pattern{
    bottom: 0;
    z-index: -5;
}
.transparency-file .rect-circle-pattern img{
    height: 300px;
}

/* end section : transparency-file */

/* end page transparencyFile */



/* star page viewDonations */

/* start section : view-donations */

.view-donations{
    padding-top: 50px;
    padding-bottom: 300px;
    position: relative;
}
.view-donations .view-donations-filter{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}
.view-donations-tab-wrapper .nav-tabs{
    justify-content: center;
    border: 0;
    background: #fff;
    box-shadow: 0px 4px 18px rgb(148 148 148 / 25%);
    width: max-content;
    margin: 15px auto 60px;
    border-radius: 50px;
}
.view-donations-tab-wrapper .nav-tabs > li{
    width: 50%;
}
.view-donations-tab-wrapper .nav-tabs .nav-link{
    border: 0;
    color: var(--color-text);
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 50px;
    padding: 0.75rem 1.75rem;
    transition: all .3s ease-in-out;
}
.view-donations-tab-wrapper .nav-tabs .nav-item.show .nav-link,
.view-donations-tab-wrapper .nav-tabs .nav-link.active,
.view-donations-tab-wrapper .nav-tabs .nav-link:hover{
    background: var(--main-color);
    color: #fff;
}
.view-donations-tab-wrapper .total-amount-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: max-content;
    margin: 20px auto 40px;
}
.view-donations-tab-wrapper .total-amount-box .total-amount-val{
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--main-color);
}
.donated-amount-val{
    transform: translate(-50%);
}
.view-donations-tab-wrapper .total-amount-box .total-amount-title{
    color: var(--color-grey);
    text-transform: capitalize;
    font-weight: 600;
}
.view-donations-tab-wrapper table{
    border-collapse: separate;
    border-spacing: 0 15px;
    table-layout: fixed
}
.view-donations-tab-wrapper table tr{
    background: #fff;
    box-shadow: 0 3px 8px rgb(0 0 0 / 10%);
    text-align: center;
    transition: all .3s ease-in-out;
}
.view-donations-tab-wrapper table tbody tr:hover{
    background: var(--main-color);
}
.view-donations-tab-wrapper table tbody tr:hover td{
    color: #fff!important;
}
td:first-child,
th:first-child {
    border-radius: 10px 0 0 10px;
}
td:last-child,
th:last-child {
    border-radius: 0 10px 10px 0;
}
.table-bordered>:not(caption)>*>*{
    border-width: 0;
}
.view-donations-tab-wrapper .table>:not(caption)>*>*{
    padding: 1rem;
}
.view-donations-tab-wrapper table thead tr th{
    color: var(--color-text);
    font-weight: 600;
    text-transform: capitalize;
}
.view-donations-tab-wrapper table tbody tr td{
    font-weight: 700;
    color: var(--color-text);
}
.view-donations-tab-wrapper table tbody tr td.bond-number-val{
    color: var(--main-color);
}
.view-donations-tab-wrapper table tbody tr td.amount-val{
    color: #14cb3c;
}
.view-donations .half-circle-oblic-pattern{
    top: 0;
    transform: translateY(-50%);
    z-index: -5;
}
.view-donations .half-circle-oblic-pattern img{
    height: 320px;
}
.view-donations .logo-pattern{
    top: 15%;
    right: 0;
    z-index: -5;
}
.view-donations .logo-pattern img{
    height: 600px;
}
.view-donations .rect-circle-pattern{
    bottom: 0;
    z-index: -5;
}
.view-donations .rect-circle-pattern img{
    height: 300px;
}

/* end section : view-donations */

/* end page viewDonations */



/* star page bails & shelter */


/* start section : bails-page & shelter-page */

.bails-page,
.shelter-page{
    padding-top: 50px;
    padding-bottom: 300px;
    position: relative;
}
.bails-page .bails-brief-box,
.shelter-page .shelter-brief-box{
    background: #fff;
    box-shadow: 3px 4px 20px rgb(0 0 0 / 14%);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 65px;
}
.bails-page .bails-brief-box h4,
.shelter-page .shelter-brief-box h4{
    text-transform: capitalize;
    margin-bottom: 20px;
    font-weight: 600;
}
.bails-page .bails-brief-box p,
.shelter-page .shelter-brief-box p{
    line-height: 1.7;
    padding-left: 15px;
    border-left: 4px solid var(--main-color);
    margin-bottom: 0;
}
.bails-page .bails-filter,
.shelter-page .shelter-filter{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}
.bails-page .bails-filter .bails-categories-filter,
.shelter-page .shelter-filter .shelter-categories-filter{
    width: 30%;
    margin-left: 5%;
}
.bails-page .bails-filter .bails-categories-filter .dropdown,
.shelter-page .shelter-filter .shelter-categories-filter .dropdown{
    width: 100%;
    position: relative;
    background: #fff;
    box-shadow: 0px 4px 18px rgb(148 148 148 / 25%);
    border-radius: 50px;
    align-items: center;
    width: 100%;
    padding-bottom: 0.5px;
    padding-top: 0.5px;
}
.bails-page .bails-filter .bails-categories-filter .dropdown-toggle::after,
.shelter-page .shelter-filter .shelter-categories-filter .dropdown-toggle::after{
    content: "";
    margin-left: 0;
    display: inline-block;
    border-left: 2px solid var(--main-color);
    border-bottom: 2px solid var(--main-color);
    width: 12px;
    height: 12px;
    transform: rotate(-45deg) translateY(-100%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-top: 0;
    border-right: 0;
}
.bails-page .bails-filter .bails-categories-filter .dropdown .dropdown-menu,
.shelter-page .shelter-filter .shelter-categories-filter .dropdown .dropdown-menu{
    padding-top: 0;
    padding-bottom: 0;
    background: #fff;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    border: 0;
    max-width: 100%;
    width: 100%;
    margin-top: 10px;
}
.bails-page .bails-filter .bails-categories-filter .dropdown .dropdown-menu li,
.shelter-page .shelter-filter .shelter-categories-filter .dropdown .dropdown-menu li{

}
.bails-page .bails-filter .bails-categories-filter .dropdown .dropdown-menu li a,
.shelter-page .shelter-filter .shelter-categories-filter .dropdown .dropdown-menu li a{
    text-transform: capitalize;
    display: inline-block;
    padding: 9px 13px;
    margin: 0;
    border-bottom: 1px solid #e1e1e1;
    border-radius: 10px;
}
.bails-page .bails-filter .bails-categories-filter .dropdown .dropdown-menu li:last-child a,
.shelter-page .shelter-filter .shelter-categories-filter .dropdown .dropdown-menu li:last-child a{
    border-bottom: 0;
}
.bails-page .bails-filter .bails-categories-filter .dropdown .dropdown-menu li a:hover,
.shelter-page .shelter-filter .shelter-categories-filter .dropdown .dropdown-menu li a:hover{
    background: var(--main-color);
    color: #fff;
}
.result-val-bails-filter,
.result-val-shelter-filter{
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 50px;
}
.result-val-bails-filter > div,
.result-val-shelter-filter > div{
    width: 25%;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
}
.result-val-bails-filter > div > span:first-child,
.result-val-shelter-filter > div > span:first-child{
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--main-color);
}
.result-val-bails-filter > div > span:last-child,
.result-val-shelter-filter > div > span:last-child{
    color: var(--color-grey);
    text-transform: capitalize;
    font-weight: 600;
}
.bails-page .box-model:hover,
.shelter-page .box-model:hover{
    transform: scale(1.05);
}
.bails-page .half-circle-pattern,
.shelter-page .half-circle-pattern{
    top: 2%;
    right: 0;
    transform: rotateY(-180deg);
    z-index: -5;
}
.bails-page .half-circle-pattern img,
.shelter-page .half-circle-pattern img{
    height: 320px;
}
.shelter-page .rect-circle2-pattern{
    bottom: 2%;
    right: 0;
    transform: rotateY(-180deg);
    z-index: -5;
}
.shelter-page .rect-circle2-pattern img{
    height: 320px;
}

/* end section : bails-page & shelter-page  */

/* end page bails & shelter */



/* star page loginRegister */

/* start section : loginRegister */

.loginRegister{
    padding-top: 50px;
    padding-bottom: 300px;
    position: relative;
}
.loginRegister-wrapper .nav-tabs{
    justify-content: center;
    border: 0;
    background: #fff;
    box-shadow: 0px 4px 18px rgb(148 148 148 / 25%);
    width: max-content;
    margin: 15px auto 60px;
    border-radius: 15px;
}
.loginRegister-wrapper .nav-tabs > li{
    width: 50%;
}
.loginRegister-wrapper .nav-tabs .nav-link{
    border: 0;
    color: var(--color-text);
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 15px;
    padding: 0.75rem 1.75rem;
    width: 100%;
    white-space: nowrap;
    transition: all .3s ease-in-out;
}
.loginRegister-wrapper .nav-tabs .nav-item.show .nav-link,
.loginRegister-wrapper .nav-tabs .nav-link.active,
.loginRegister-wrapper .nav-tabs .nav-link:hover{
    background: var(--main-color);
    color: #fff;
}
.loginRegister-wrapper .tab-content form{
    width: 50%;
    margin: auto;
}
.loginRegister-wrapper .tab-content form > div{
    margin-bottom: 40px;
}
.loginRegister-wrapper .tab-content form > div label{
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-text);
}
.loginRegister-wrapper .tab-content form > div input{
    width: 100%;
    border: 0;
    border-radius: 25px;
    padding-left: 20px;
    box-shadow: 0px 4px 18px rgb(148 148 148 / 25%);
}
.loginRegister-wrapper .forgot-password-link{
    display: flex;
    justify-content: flex-end;
    margin-top: -30px;
    color: var(--main-color);
    transition: all .3s ease-in-out;
}
.loginRegister-wrapper .forgot-password-link:hover{
    text-decoration: underline!important;
}
.loginRegister-wrapper .btn-submit{
    background: var(--main-color);
    color: #fff;
    display: flex;
    width: max-content;
    margin: 20px auto;
    border: 1px solid var(--main-color);
    padding: 7px 25px;
    text-transform: capitalize;
    border-radius: 25px;
    transition: all .3s ease-in-out;
}
.loginRegister-wrapper .btn-submit:hover{
    background: transparent;
    color: var(--main-color);
}
.loginRegister-wrapper .separate{
    display: flex;
    width: max-content;
    margin: 30px auto;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 1.1rem;
    position: relative;
}
.loginRegister-wrapper .separate:before,
.loginRegister-wrapper .separate:after{
    content: '';
    width: 40px;
    height: 2px;
    position: absolute;
    background: #c4c4c4;
}
.loginRegister-wrapper .separate:before{
    top: 50%;
    left: -40px;
}
.loginRegister-wrapper .separate:after{
    top: 50%;
    right: -40px;
}
.loginRegister-wrapper .login-with{
    display: flex;
    width: max-content;
    margin: 30px auto;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 1.1rem;
}
.loginRegister-wrapper .social-media{
    display: flex;
    justify-content: center;
    align-items: center;
}
.loginRegister-wrapper .social-media li:first-child{
    margin-right: 15px;
}
.loginRegister-wrapper .social-media li a{
    transition: all .3s ease-in-out;
}
.loginRegister-wrapper .social-media li a img{
    width: 50px;
    transition: all .3s ease-in-out;
}
.loginRegister-wrapper .social-media li a:hover img{
    transform: translateY(-10px);
}
.loginRegister .rect-circle2-pattern{
    bottom: 2%;
    right: 0;
    transform: rotateY(-180deg);
    z-index: -5;
}
.loginRegister .rect-circle2-pattern img{
    height: 320px;
}

/* end section : loginRegister  */

/* end page loginRegister */


/* star page latestNews */

/* start section : latest-news */

.latest-news{
    padding-top: 50px;
    padding-bottom: 300px;
    position: relative;
}
.latest-news .latest-news-filter{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}
.latest-news .latest-news-filter .latest-news-categories-filter{
    width: 30%;
    margin-left: 5%;
}
.latest-news .latest-news-filter .latest-news-categories-filter .dropdown{
    width: 100%;
    position: relative;
    background: #fff;
    box-shadow: 0px 4px 18px rgb(148 148 148 / 25%);
    border-radius: 50px;
    align-items: center;
    width: 100%;
    padding-bottom: 0.5px;
    padding-top: 0.5px;
}
.latest-news .latest-news-filter .latest-news-categories-filter .dropdown-toggle::after{
    content: "";
    margin-left: 0;
    display: inline-block;
    border-left: 2px solid var(--main-color);
    border-bottom: 2px solid var(--main-color);
    width: 12px;
    height: 12px;
    transform: rotate(-45deg) translateY(-100%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-top: 0;
    border-right: 0;
}
.latest-news .latest-news-filter .latest-news-categories-filter .dropdown .dropdown-menu{
    padding-top: 0;
    padding-bottom: 0;
    background: #fff;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    border: 0;
    max-width: 100%;
    width: 100%;
    margin-top: 10px;
}
.latest-news .latest-news-filter .latest-news-categories-filter .dropdown .dropdown-menu li{

}
.latest-news .latest-news-filter .latest-news-categories-filter .dropdown .dropdown-menu li a{
    text-transform: capitalize;
    display: inline-block;
    padding: 9px 13px;
    margin: 0;
    border-bottom: 1px solid #e1e1e1;
    border-radius: 10px;
}
.latest-news .latest-news-filter .latest-news-categories-filter .dropdown .dropdown-menu li:last-child a{
    border-bottom: 0;
}
.latest-news .latest-news-filter .latest-news-categories-filter .dropdown .dropdown-menu li a:hover{
    background: var(--main-color);
    color: #fff;
}
.latest-news .half-circle-oblic-pattern{
    top: 0;
    right: 0;
    transform: rotateY(-180deg) translateY(-50%);
    z-index: -5;
}
.latest-news .half-circle-oblic-pattern img{
    height: 320px;
}

/* end section : latest-news  */

/* end page latestNews */



/* star page newsDetails */

/* start section : news-details */

.news-details{
    padding-top: 70px;
    padding-bottom: 30px;
    position: relative;
}
.news-details-box{
    width: 85%;
    margin: auto;
}
.news-details-box > img{
    width: 60%;
    margin: 10px auto 40px;
    display: block;
    border-radius: 20px;
}
.news-details-box > div{
    margin-bottom: 50px;
}
.news-details-box > div > div:not(.modal){
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.news-details-box > div > div > h4{
    text-transform: capitalize;
    color: var(--color-text);
    font-weight: 700;
}
.news-details-box > div > div > button{
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 0;
    background: transparent;
}
.news-details-box > div > div > button.active > span:first-child{
    color: #fff;
    box-shadow: 0px 0px 10px rgb(47 170 223 / 63%);
    border-radius: 50%;
}
.news-details-box > div > div > button.active > span:first-child .fa-inverse{
    color: var(--main-color);
}

.news-details-box > div > div > button.disable > span:first-child{
    color: #fff;
    box-shadow: 0px 0px 10px rgb(163 163 163 / 63%);
    border-radius: 50%;
}
.news-details-box > div > div > button.disable > span:first-child .fa-inverse{
    color: var(--color-grey);
}
.news-details-box > div > div > button > span:last-child{
    color: var(--color-text);
    font-weight: 700;
    margin-top: 3px;
}
.news-details-box > div > p,
.news-details-box-desc{
    color: var(--color-text);
    line-height: 1.7;
}
.article-content img{
    max-width: 100%;
    height: auto;
    display: block;
    margin: 15px auto;
}
.article-content table{
    width: 100%;
    max-width: 100%;
}
.article-content iframe,
.article-content video{
    max-width: 100%;
}
.news-details-box > div.news-details-box-action{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.news-details-box > div.news-details-box-action > button{
    display: flex;
    align-items: center;
    border: 0;
    background: transparent;
}
.news-details-box > div.news-details-box-action > button > span:first-child{
    color: #fff;
    box-shadow: 0px 0px 4px rgb(47 170 223 / 63%);
    border-radius: 50%;
}
.news-details-box > div.news-details-box-action > button > span:first-child .fa-inverse{
    color: var(--main-color);
}
.news-details-box > div.news-details-box-action > button > span:last-child{
    color: var(--color-text);
    font-weight: 700;
    margin-left: 8px;
    text-transform: capitalize;
}
.news-details-box > div.news-details-box-action > span{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.news-details-box > div.news-details-box-action > span > span:first-child{
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 5px;
}
.news-details-box > div.news-details-box-action > span > span:last-child{
    color: var(--color-grey);
}
.news-details-box > div.news-details-box-action ul.social-networks{
    margin-bottom: 0;
}
.news-details-box > div.news-details-box-action ul.social-networks li:not(:last-child){
    margin-right: 10px;
}
.news-details-box > div.news-details-box-action ul.social-networks li a{
    display: inline-block;
    transition: all .3s ease-in-out;
}
.news-details-box > div.news-details-box-action ul.social-networks li a > span.fa-stack{
    color: #fff;
    box-shadow: 0px 0px 10px rgb(152 152 152 / 25%);
    border-radius: 50%;
}
.news-details-box > div.news-details-box-action ul.social-networks li a > span.fa-stack .fa-inverse{
    color: var(--main-color);
}
.news-details-box > div.news-details-box-action ul.social-networks li a:hover{
    transform: translateY(-10px);
}
#addCommentModal .modal-header{
    border-bottom: 0;
}
#addCommentModal .modal-header h5{
    text-transform: capitalize;
    font-weight: 700;
    color: var(--color-text);
}
#addCommentModal textarea.form-control{
    min-height: 250px;
    max-height: 250px;
}
#addCommentModal .btn-addComment-submit{
    display: flex;
    text-transform: capitalize;
    width: max-content;
    margin: 30px auto 10px;
    background: var(--main-color);
    color: #fff;
    font-weight: 600;
    border: 1px solid var(--main-color);
    border-radius: .5rem;
    padding: 5px 15px;
}

/* end section : news-details */


/* start section : news-details-comments */

.news-details-comments{
    padding-top: 20px;
}
.news-details-comments h3.news-details-comments-title{
    text-transform: capitalize;
    color: var(--color-text);
    font-weight: 700;
    margin-bottom: 30px;
}
.news-details-comments .news-details-comment-box{
    background: #f3f3f3;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 30px;
}
.news-details-comments .news-details-comment-box h5{
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 15px;
}
.news-details-comments .news-details-comment-box p{
    line-height: 1.7;
    color: #555;
}

/* end section : news-details-comments */

/* end page newsDetails */



/* star page ideas */

/* start section : ideas-page */

.ideas-page{
    padding-top: 50px;
    padding-bottom: 300px;
    position: relative;
}
.ideas-page p.ideas-under-title{
    text-align: center;
    margin-top: -40px;
}
.ideas-page .ideas-filter{
    display: flex;
    justify-content: center;
    margin-top: 60px;
    margin-bottom: 120px;
}
.ideas-page .idea-box{
    margin-bottom: 100px;
}
.ideas-page .view-more-link{
    margin-top: -40px;
}
.ideas-page .circle-pattern{
    top: 0;
    transform: rotateY(-180deg);
    z-index: -5;
}
.ideas-page .circle-pattern img{
    height: 320px;
}
.ideas-page .rect-circle2-pattern{
    bottom: 0;
    right: 0;
    transform: rotateY(-180deg);
    z-index: -5;
}
.ideas-page .rect-circle2-pattern img{
    height: 320px;
}

/* end section : ideas-page */

/* end page ideas */



/* star page ideaDetails */

/* start section : idea-details */

.idea-details{
    padding-top: 50px;
    padding-bottom: 30px;
    position: relative;
}
.idea-details .idea-details-description{

}
.idea-details .idea-details-description p{
    color: #555;
    line-height: 1.7;
    margin-top: -35px;
}
.idea-details .half-circle-oblic2{
    top: 0;
    transform: rotate(135deg) translateY(50%);
    z-index: -5;
}
.idea-details .half-circle-oblic2 img{
    height: 320px;
}

/* end section : idea-details */


/* start section : idea-owner */

.idea-owner{

}
.idea-owner h2{
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 40px;
}
.idea-owner .idea-owner-box{
    background: #eee;
    padding: 15px;
    border-radius: 10px;
    position: relative;
}
.idea-owner .idea-owner-box h4{
    text-transform: capitalize;
    font-weight: 600;
    padding-bottom: 10px;
    width: max-content;
    margin-bottom: 20px;
    position: relative;
}
.idea-owner .idea-owner-box h4:after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25%;
    height: 5px;
    background: var(--main-color);
}
.idea-owner .idea-owner-box p{
    line-height: 1.7;
}
.idea-owner .idea-owner-box ul{
    position: absolute;
    bottom: 0;
    right: 5%;
    transform: translateY(50%);
    margin-bottom: 0;
}
.idea-owner .idea-owner-box ul li a{
    display: inline-block;
    transition: all .3s ease-in-out;
}
.idea-owner .idea-owner-box ul li a:hover{
    transform: translateY(-10px);
}
.idea-owner .idea-owner-box ul li a > span.fa-stack{
    color: #aaa;
    width: 2.5em;
    height: 2.5em;
    line-height: 2.5em;
}
.idea-owner .idea-owner-box ul li a > span.fa-stack .fa-stack-2x{
    font-size: 2.5em;
}
.idea-owner .idea-owner-box ul li a > span.fa-stack .fa-inverse{
    color: var(--color-text);
}

/* end section : idea-owner */



/* start section : objective-purposer & characteristics-outputs-idea */

.objective-purpose-idea,
.characteristics-outputs-idea{

}
.characteristics-outputs-idea{
    padding-top: 0;
    padding-bottom: 120px;
}
.objective-purpose-idea p,
.characteristics-outputs-idea p{
    line-height: 1.7;
    margin-top: -35px;
}

/* end section : objective-purposer & characteristics-outputs-idea */

/* end page ideaDetails */



/* start page projects */

/* start section : projects */

.projects{
    position: relative;
}
.projects p.projects-under-title{
    text-align: center;
    margin-top: -35px;
    margin-bottom: 90px;
}
.projects .box-model-objectMedia > img{
    transform: translateX(-20%);
}
.projects .box-model-objectMedia > div{
    transform: translateX(-5%);
}
.project-box .project-date-val{
    color: var(--color-text)!important;
    font-weight: 700px!important;
    margin-left: 5px;
}
.projects .circle-pattern{
    top: 0;
    right: 0;
    z-index: -5;
}
.projects .circle-pattern img{
    height: 320px;
}
.projects .half-circle-oblic2-pattern{
    bottom: -5%;
    left: -5%;
    z-index: -5;
}
.projects .half-circle-oblic2-pattern img{
    height: 320px;
}

/* end section : projects */

/* end page projects */



/* start page projectDetails */

/* start section : project-details */

.project-details{
    padding-top: 50px;
    padding-bottom: 400px;
    position: relative;
}
.project-details .project-details-description .project-desc{
    margin-top: -30px;
    line-height: 1.7;
}
.project-details .half-circle-oblic{
    top: 0;
    z-index: -5;
}
.project-details .half-circle-oblic img{
    height: 320px;
    transform: translateY(-50%);
}
.project-details .rect-circle{
    bottom: 0;
    z-index: -5;
}
.project-details .rect-circle img{
    height: 320px;
}

/* end section : project-details */

/* end page projectDetails */



/* start page objectives */

/* start section : objectives */

.objectives{
    padding-bottom: 100px;
    position: relative;
}
.objectives p.objectives-under-title{
    text-align: center;
    margin-top: -35px;
    margin-bottom: 90px;
}
.objectives .nav-tabs{
    justify-content: center;
    border: 0;
    background: #fff;
    box-shadow: 0px 4px 18px rgb(148 148 148 / 25%);
    width: max-content;
    margin: 15px auto 60px;
    border-radius: 50px;
}
.objectives .nav-tabs > li{
    width: auto;
}
.objectives .nav-tabs .nav-link{
    border: 0;
    color: var(--color-text);
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 50px;
    padding: 0.75rem 1.75rem;
    transition: all .3s ease-in-out;
}
.objectives .nav-tabs .nav-item.show .nav-link,
.objectives .nav-tabs .nav-link.active,
.objectives .nav-tabs .nav-link:hover{
    background: var(--main-color);
    color: #fff;
}
.objectives .box-model-objectMedia > img{
    transform: translateX(-20%);
}
.objectives .box-model-objectMedia > div{
    transform: translateX(-5%);
}
.objective-box .objective-date-val{
    color: var(--color-text)!important;
    font-weight: 700px!important;
}
.objectives .circle-pattern{
    top: 0;
    right: 0;
    z-index: -5;
}
.objectives .circle-pattern img{
    height: 320px;
}

/* end section : objectives */

/* end page objectives */



/* start page objectiveDetails */

/* start section : objective-details */

.objective-details{
    padding-top: 50px;
    padding-bottom: 400px;
    position: relative;
}
.objective-details .objective-details-description .objective-desc{
    margin-top: -30px;
    line-height: 1.7;
}
.objective-details .half-circle-oblic{
    top: 0;
    z-index: -5;
}
.objective-details .half-circle-oblic img{
    height: 320px;
    transform: translateY(-50%);
}
.objective-details .rect-circle{
    bottom: 0;
    z-index: -5;
}
.objective-details .rect-circle img{
    height: 320px;
}

/* end section : project-details */

/* end page objectiveDetails */



/* start page trainings */

/* start section : trainings-page */

.trainings-page{
    padding-bottom: 100px;
    position: relative;
}
.trainings-page .nav-tabs{
    justify-content: center;
    border: 0;
    background: #fff;
    box-shadow: 0px 4px 18px rgb(148 148 148 / 25%);
    width: max-content;
    margin: 15px auto 60px;
    border-radius: 50px;
}
.trainings-page .nav-tabs > li{
    width: auto;
}
.trainings-page .nav-tabs .nav-link{
    border: 0;
    color: var(--color-text);
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 50px;
    padding: 0.75rem 1.75rem;
    transition: all .3s ease-in-out;
}
.trainings-page .nav-tabs .nav-item.show .nav-link,
.trainings-page .nav-tabs .nav-link.active,
.trainings-page .nav-tabs .nav-link:hover{
    background: var(--main-color);
    color: #fff;
}
.trainings-page .training-box{
    position: relative;
    display: flex;
    margin: 0 auto 60px;
    background: #fff;
    box-shadow: 5px 5px 20px rgb(0 0 0 / 10%);
    border-radius: 20px;
    padding: 15px;
    width: 90%;
}
.trainings-page .training-img img{
    width: 230px;
    transform: scaleY(1) translateX(-20%);;
    transform-origin: bottom;
    border: 0;
    border-radius: 20px;
    height: auto;
}
.trainings-page .training-content{
    padding: 0 0 0 30px;
    transform: translateX(-5%);
    border-radius: 0;
    box-shadow: none;
}
.trainings-page .half-circle-pattern{
    top: 50px;
    right: 0;
    z-index: -5;
}
.trainings-page .half-circle-pattern img{
    height: 320px;
    transform: rotateY(180deg);
}

/* end section : trainings-page */

/* end page trainings */


/* start page trainingDetails */

/* start section : sections similars */

.training-details{
    padding-top: 70px;
    padding-bottom: 25px;
    position: relative;
    text-align: center;
}
.training-details #trainingDetailsCarousel .carousel-item img{
    width: 40%;
}
.training-details #trainingDetailsCarousel ol.carousel-indicators{
    display: flex;
    justify-content: center;
    align-items: center;
    position: static;
    margin-top: 30px;
}
.training-details #trainingDetailsCarousel ol.carousel-indicators li a img{
    width: 80px;
    height: 80px;
    border-radius: 5px;
}
.training-details .progress-caret{
    width: 50%;
    margin: 85px auto 0;
}
.training-details .donate-link{
    margin-top: 60px;
    display: inline-block;
}
.training-details .half-circle{
    top: 50px;
    right: 0;
    z-index: -5;
}
.training-details .half-circle img{
    height: 320px;
    transform: rotateY(180deg);
}
.training-details-description,
.characteristics-training,
.training-specifications,
.training-importance,
.training-conditions{
    padding-top: 25px;
    padding-bottom: 25px;
}
.training-conditions{
    padding-bottom: 120px;
}
.training-details-description{
    margin-top: 30px;
}
.training-details-description p,
.characteristics-training p,
.training-specifications p{
    line-height: 1.7;
    margin-top: -30px;
    text-align: left;
}
.training-details .training-finished{
    text-align: initial;
}
.training-specifications .training-specifications-box{
    background: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 20px;
}
.training-importance .training-importance-title span{
    margin-bottom: 25px;
}
.training-importance .container > div{
    margin-bottom: 30px;
}
.training-importance .container > div > h4{
    text-transform: capitalize;
    color: var(--main-color);
    font-weight: 600;
}
.training-importance .container > div > p{
    line-height: 1.7;
}
.training-conditions .training-conditions-title span{
    margin-bottom: 25px;
}
.training-conditions .training-conditions-list-wrapper{
    display: flex;
    background: var(--main-color);
    border-radius: 20px;
    padding: 15px 0;
}
.training-conditions .training-conditions-list-wrapper > ol,
.training-conditions .training-conditions-list-wrapper > ul{
    list-style: none;
    width: 50%;
    padding: 40px;
}
.training-conditions .training-conditions-list-wrapper ol:first-child,
.training-conditions .training-conditions-list-wrapper ul:first-child{
    border-right: 1px solid #fff;
}
.training-conditions .training-conditions-list-wrapper ol li,
.training-conditions .training-conditions-list-wrapper ul li{
    color: #fff;
    margin-bottom: 15px;
}
.suggest-someone-to-join-training-box{
    margin-top: 50px;
}
.suggest-someone-to-join-training-box h3{
    margin-bottom: 50px;
    text-align: center;
    text-transform: capitalize;
    font-weight: 600;
}
.suggest-someone-to-join-training-box form{
    width: 50%;
    margin: auto;
    background: #fff;
    box-shadow: 0px 4px 18px rgb(148 148 148 / 25%);
    padding: 25px;
    border-radius: 20px;
}
.suggest-someone-to-join-training-box form > div{
    margin-bottom: 40px;
}
.suggest-someone-to-join-training-box form > div label{
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-text);
}
.suggest-someone-to-join-training-box form > div input{
    width: 100%;
    border: 0;
    border-radius: 25px;
    box-shadow: 0px 4px 18px rgb(148 148 148 / 25%);
}
.suggest-someone-to-join-training-box form .btn-submit{
    background: var(--main-color);
    color: #fff;
    display: flex;
    width: max-content;
    margin: 20px auto;
    border: 1px solid var(--main-color);
    padding: 7px 25px;
    text-transform: capitalize;
    border-radius: 25px;
    transition: all .3s ease-in-out;
}
.suggest-someone-to-join-training-box form .btn-submit:hover{
    background: transparent;
    color: var(--main-color);
}

/* end section : trainings-page */

/* end page trainingDetails */



/* start page myAccount */

/* start section : myAccount */

.myAccount{
    padding-top: 50px;
    padding-bottom: 400px;
    position: relative;
}
.myAccount-wrapper .nav-tabs{
    justify-content: center;
    border: 0;
    background: #fff;
    box-shadow: 0px 4px 18px rgb(148 148 148 / 25%);
    width: max-content;
    margin: 15px auto 60px;
    border-radius: 15px;
}
.myAccount-wrapper .nav-tabs > li{
    width: 50%;
}
.myAccount-wrapper .nav-tabs .nav-link{
    border: 0;
    color: var(--color-text);
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 15px;
    padding: 0.75rem 1.75rem;
    width: 100%;
    transition: all .3s ease-in-out;
}
.myAccount-wrapper .nav-tabs .nav-item.show .nav-link,
.myAccount-wrapper .nav-tabs .nav-link.active,
.myAccount-wrapper .nav-tabs .nav-link:hover{
    background: var(--main-color);
    color: #fff;
}
.myAccount-wrapper .tab-content form.register-form{
    width: 50%;
    margin: auto;
}
.myAccount-wrapper .tab-content form.register-form > div{
    margin-bottom: 40px;
}
.myAccount-wrapper .tab-content form.register-form > div label{
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-text);
}
.myAccount-wrapper .tab-content form.register-form > div input{
    width: 100%;
    border: 0;
    border-radius: 25px;
    padding-left: 20px;
    box-shadow: 0px 4px 18px rgb(148 148 148 / 25%);
}
.myAccount-wrapper .tab-content form.register-form .form-password .input-group{
    flex-direction: row-reverse;
    width: 100%;
    border: 0;
    border-radius: 25px;
    box-shadow: 0px 4px 18px rgb(148 148 148 / 25%);
}
.myAccount-wrapper .tab-content form.register-form .form-password input{
    box-shadow: none;
}
.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}
.myAccount-wrapper .tab-content form.register-form .form-password span.input-group-text{
    border: 0;
    border-radius: 0;
    background: transparent;
    position: relative;
    z-index: 5;
    cursor: pointer;
}
.myAccount-wrapper .tab-content form.register-form .btn-submit{
    background: var(--main-color);
    color: #fff;
    display: flex;
    width: max-content;
    margin: 20px auto;
    border: 1px solid var(--main-color);
    padding: 7px 25px;
    text-transform: capitalize;
    border-radius: 25px;
    transition: all .3s ease-in-out;
}
.myAccount-wrapper .tab-content form.register-form .btn-submit:hover{
    background: transparent;
    color: var(--main-color);
}
.myAccount #donations .donations-tab-title{
    text-align: center;
    margin-top: -30px;
    margin-bottom: 70px;
}
.myAccount .view-donations-filter{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}
.myAccount .view-donations-filter .categories-filter{
    width: 30%;
    margin-right: 5%;
}
.myAccount .view-donations-filter .categories-filter .dropdown{
    width: 100%;
    position: relative;
    background: #fff;
    box-shadow: 0px 4px 18px rgb(148 148 148 / 25%);
    border-radius: 50px;
    align-items: center;
    width: 100%;
    padding-bottom: 0.5px;
    padding-top: 0.5px;
}
.myAccount .view-donations-filter .categories-filter .dropdown-toggle::after{
    content: "";
    margin-left: 0;
    display: inline-block;
    border-left: 2px solid var(--main-color);
    border-bottom: 2px solid var(--main-color);
    width: 12px;
    height: 12px;
    transform: rotate(-45deg) translateY(-100%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-top: 0;
    border-right: 0;
}
.myAccount .view-donations-filter .categories-filter .dropdown .dropdown-menu{
    padding-top: 0;
    padding-bottom: 0;
    background: #fff;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    border: 0;
    max-width: 100%;
    width: 100%;
    margin-top: 10px;
}
.myAccount .view-donations-filter .categories-filter .dropdown .dropdown-menu li{

}
.myAccount .view-donations-filter .categories-filter .dropdown .dropdown-menu li a{
    text-transform: capitalize;
    display: inline-block;
    padding: 9px 13px;
    margin: 0;
    border-bottom: 1px solid #e1e1e1;
    border-radius: 10px;
}
.myAccount .view-donations-filter .categories-filter .dropdown .dropdown-menu li:last-child a{
    border-bottom: 0;
}
.myAccount .view-donations-filter .categories-filter .dropdown .dropdown-menu li a:hover{
    background: var(--main-color);
    color: #fff;
}
.myAccount #donations table{
    border-collapse: separate;
    border-spacing: 0 15px;
    table-layout: fixed
}
.myAccount #donations table tr{
    background: #fff;
    box-shadow: 0 3px 8px rgb(0 0 0 / 10%);
    text-align: center;
    transition: all .3s ease-in-out;
}
.myAccount #donations table tbody tr:hover{
    background: var(--main-color);
}
.myAccount #donations table tbody tr:hover td{
    color: #fff!important;
}
td:first-child,
th:first-child {
    border-radius: 10px 0 0 10px;
}
td:last-child,
th:last-child {
    border-radius: 0 10px 10px 0;
}
.table-bordered>:not(caption)>*>*{
    border-width: 0;
}
.myAccount #donations .table>:not(caption)>*>*{
    padding: 1rem;
}
.myAccount #donations table thead tr th{
    color: var(--color-text);
    font-weight: 600;
    text-transform: capitalize;
}
.myAccount #donations table tbody tr td{
    font-weight: 700;
    color: var(--color-text);
}
.myAccount #donations table tbody tr td.bond-number-val{
    color: var(--main-color);
}
.myAccount #donations table tbody tr td.amount-val{
    color: #14cb3c;
}
.myAccount .logo-pattern{
    top: -55px;
    right: 0;
    z-index: -5;
}
.myAccount .logo-pattern img{
    height: 600px;
}
.myAccount .rect-circle2{
    bottom: 0;
    z-index: -5;
}
.myAccount .rect-circle2 img{
    height: 320px;
}

/* end section : myAccount */

/* end page myAccount */



/* start page bailDetails */

/* start section : bail-info */

.bail-info{
    padding-top: 50px;
    position: relative;
}
.bail-info .box-model-two{
    margin-bottom: 0;
}
.bail-info .box-model-two > div.box-right .box-right-under-top{
    flex-direction: column;
}
.bail-info .box-model-two > div.box-right .box-right-under-top > span:first-child{
    color: var(--main-color);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.2rem;
}
.bail-info .box-model-two > div.box-right .box-right-under-top > span:last-child{
    color: var(--color-grey);
    text-transform: capitalize;
    font-size: 0.95rem;
}
.bail-info .half-circle-oblic2-pattern{
    top: 0;
    z-index: -5;
}
.bail-info .half-circle-oblic2-pattern img{
    height: 320px;
    transform: rotate(-90deg);
}

/* end section : bail-info */


/* start section : bail-description */

.bail-description{
    position: relative;
}
.bail-description .bail-description-title{
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 25px;
}
.bail-description .bail-description-text{
    line-height: 1.7;
}
.bail-description .bail-action{
    display: flex;
    align-items: center;
    margin-top: 30px;
}
.bail-description .bail-action > button.bail-btn{
    border: 1px solid var(--main-color);
    background: var(--main-color);
    color: #fff;
    padding: 6px 15px;
    border-radius: .5rem;
    text-transform: capitalize;
    margin-right: 15px;
    transition: all .3s ease-in-out;
}
.bail-description .bail-action > button.bail-btn:hover{
    background: transparent;
    color: var(--main-color);
}
.bail-description .bail-action ul.social-networks{
    margin-bottom: 0;
}
.bail-description .bail-action ul.social-networks li:not(:last-child){
    margin-right: 10px;
}
.bail-description .bail-action ul.social-networks li a{
    display: inline-block;
    transition: all .3s ease-in-out;
}
.bail-description .bail-action ul.social-networks li a > span.fa-stack{
    color: #fff;
    box-shadow: 0px 0px 10px rgb(152 152 152 / 25%);
    border-radius: 50%;
}
.bail-description .bail-action ul.social-networks li a > span.fa-stack .fa-inverse{
    color: var(--main-color);
}
.bail-description .bail-action ul.social-networks li a:hover{
    transform: translateY(-10px);
}
.bail-description .rect-circle2-pattern{
    bottom: 0;
    right: 0;
    transform: translateY(50%);
    z-index: -5;
}
.bail-description .rect-circle2-pattern img{
    height: 290px;
}

/* start modals style */

#loginRegisterModal .nav-tabs{
    justify-content: center;
    border: 0;
    background: #fff;
    box-shadow: 0px 4px 18px rgb(148 148 148 / 25%);
    width: max-content;
    margin: 15px auto 60px;
    border-radius: 15px;
}
#loginRegisterModal .nav-tabs > li{
    width: 50%;
}
#loginRegisterModal .nav-tabs .nav-link{
    border: 0;
    color: var(--color-text);
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 15px;
    padding: 0.75rem 1.75rem;
    width: 100%;
    white-space: nowrap;
    transition: all .3s ease-in-out;
}
#loginRegisterModal .nav-tabs .nav-item.show .nav-link,
#loginRegisterModal .nav-tabs .nav-link.active,
#loginRegisterModal .nav-tabs .nav-link:hover{
    background: var(--main-color);
    color: #fff;
}
#loginRegisterModal .tab-content form{
    width: 60%;
    margin: auto;
}
#loginRegisterModal .tab-content form > div{
    margin-bottom: 40px;
}
#loginRegisterModal .tab-content form > div label{
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-text);
}
#loginRegisterModal .tab-content form > div input{
    width: 100%;
    border: 0;
    border-radius: 25px;
    padding-left: 20px;
    box-shadow: 0px 4px 18px rgb(148 148 148 / 25%);
}
#loginRegisterModal .forgot-password-link{
    display: flex;
    justify-content: flex-end;
    margin-top: -30px;
    color: var(--main-color);
    transition: all .3s ease-in-out;
}
#loginRegisterModal .forgot-password-link:hover{
    text-decoration: underline!important;
}
#loginRegisterModal .btn-submit{
    background: var(--main-color);
    color: #fff;
    display: flex;
    width: max-content;
    margin: 20px auto;
    border: 1px solid var(--main-color);
    padding: 7px 25px;
    text-transform: capitalize;
    border-radius: 25px;
    transition: all .3s ease-in-out;
}
#loginRegisterModal .btn-submit:hover{
    background: transparent;
    color: var(--main-color);
}
#loginRegisterModal .separate{
    display: flex;
    width: max-content;
    margin: 30px auto;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 1.1rem;
    position: relative;
}
#loginRegisterModal .separate:before,
#loginRegisterModal .separate:after{
    content: '';
    width: 40px;
    height: 2px;
    position: absolute;
    background: #c4c4c4;
}
#loginRegisterModal .separate:before{
    top: 50%;
    left: -40px;
}
#loginRegisterModal .separate:after{
    top: 50%;
    right: -40px;
}
#loginRegisterModal .login-with{
    display: flex;
    width: max-content;
    margin: 30px auto;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 1.1rem;
}
#loginRegisterModal .social-media{
    display: flex;
    justify-content: center;
    align-items: center;
}
#loginRegisterModal .social-media li:first-child{
    margin-right: 15px;
}
#loginRegisterModal .social-media li a{
    transition: all .3s ease-in-out;
}
#loginRegisterModal .social-media li a img{
    width: 50px;
    transition: all .3s ease-in-out;
}
#loginRegisterModal .social-media li a:hover img{
    transform: translateY(-10px);
}
.bail-description .modal{
    background: rgba(0,0,0,.45);
}
.bail-description .modal-content{
    box-shadow: 0px 4px 100px 3000px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
}
.bail-description .modal-footer{
    justify-content: center;
    border-top: 0;
}
.modal-footer > button:first-child{
    margin-right: 30px;
}
.modal-footer > button.btn-finish{
    margin-right: 0;
}
.modal-footer > button{
    text-transform: capitalize;
}
.modal-footer > button.btn-next,
.modal .btn-finish{
    background: var(--main-color);
    color: #fff;
    border: 1px solid var(--main-color);
    transition: all .3s ease-in-out;
}
.modal-footer > button.btn-next:hover,
.modal .btn-finish:hover{
    background: transparent;
    color: var(--main-color);
}
.modal .btn-arrowNext{
    border: 0;
    background: transparent;
    color: var(--main-color);
}

#donationOptions .modal-content,
#epaymentDonation .modal-content,
#donationCash .modal-content,
#representativeDonation .modal-content{
    padding-left: 20px;
    padding-right: 20px;
}
#donationOptions .modal-title,
#epaymentDonation .modal-title,
#donationCash .modal-title,
#representativeDonation .modal-title{
    text-transform: capitalize;
    font-weight: 700;
}
#donationOptions .btn-close{
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232faadf'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat
}
#donationOptions .btn-option{
    background: var(--main-color);
    color: #fff;
    padding: 15px;
    width: 100%;
    border: 0;
    border-radius: 20px;
    margin-bottom: 20px;
}
#donationOptions .btn-option .donationOption-box{
    display: flex;
    align-items: center;
    width: 100%;
}
#donationOptions .btn-option .donationOption-box > img{
    width: 90px;
}
#donationOptions .btn-option .donationOption-box-content{
    display: flex;
    flex-direction: column;
    padding-left: 25px;
    justify-content: flex-start;
}
#donationOptions .btn-option .donationOption-box-content h4{
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: capitalize;
    text-align: left;
}
#donationOptions .btn-option .donationOption-box-content span{
    color: #fff;
    text-align: left;
}
#epaymentDonation .contributeAmountTitle-selectCurrency{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
#epaymentDonation .contributeAmountTitle-selectCurrency h6{
    color: var(--color-grey);
    text-transform: capitalize;
}
#epaymentDonation .contributeAmountTitle-selectCurrency h6:after{
    content: ':';
    margin-left: 3px;
}
#epaymentDonation .contributeAmountTitle-selectCurrency select{
    background: var(--main-color);
    color: #fff;
    width: max-content;
}
#epaymentDonation .contributeAmountTitle-selectCurrency select.form-select{
    appearance: auto;
}
#epaymentDonation .contributeAmountTitle-selectCurrency select:focus{
    box-shadow: none;
}
#epaymentDonation #currencyTabContent .tab-pane,
#epaymentDonation #currencyTabContent .tab-pane{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-areas:
            "a b c"
            "d e ."
            "f f .";
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-items: stretch;
    align-items: stretch;
    padding-bottom: 30px;
}
#epaymentDonation .radio1{
    grid-area: a;
}
#epaymentDonation .radio2{
    grid-area: b;
}
#epaymentDonation .radio3{
    grid-area: c;
}
#epaymentDonation .radio4{
    grid-area: d;
}
#epaymentDonation .radio5{
    grid-area: e;
}
#epaymentDonation .another-amount-input{
    grid-area: f;
}
#epaymentDonation .form-check-input:checked{
    background-color: var(--main-color);
    border-color: var(--main-color);
}
#epaymentDonation .another-amount-input{
    visibility: hidden;
}
#donationCash .modal-body{
    padding-bottom: 30px;
}
#donationCash .modal-body h6{
    font-weight: 700;
    text-transform: capitalize;
    margin-top: 30px;
}
#donationCash .modal-body div label{
    color: var(--color-grey);
    margin-bottom: 20px;
}
#donationCash .modal-body div input{

}
#successOperation,
#successOperationDelivery{
    text-align: center;
}
#successOperation .modal-content,
#successOperationDelivery .modal-content{
    border: 0;
}
#successOperation .modal-body img,
#successOperationDelivery .modal-body img{
    margin-bottom: 40px;
}
#successOperation .modal-body .successOperation-title,
#successOperationDelivery .modal-body .successOperationDelivery-title{
    color: var(--main-color);
    font-weight: 700;
    text-transform: capitalize;
}
#successOperation .modal-footer{
    border-top: 0;
}
#representativeDonation .modal-content{
    border: 0;
}
#representativeDonation .modal-body .minimum-amount{
    color: #7a7a7a;
}
#representativeDonation .modal-body .minimum-amount > span{
    color: var(--main-color);
    font-weight: 600;
}
#representativeDonation .modal-body form{
    padding-top: 30px;
    padding-bottom: 30px;
}
#representativeDonation .modal-body form > div{
    margin-bottom: 30px;
}
#representativeDonation .modal-body form > div label{
    text-transform: capitalize;
    color: var(--color-text);
    font-weight: 700;
    margin-bottom: 10px;
}
#representativeDonation .modal-body form > div input:placeholder{
    color: var(--color-grey);
    text-transform: capitalize;
}
.modal .form-switch{
    margin-top: 40px;
}
.modal .form-switch label{
    margin-bottom: 0!important;
    color: #444!important;
    font-weight: 400!important;
    display: block;
}
.modal .form-switch label:first-letter{
    text-transform: capitalize;
}
.modal .form-switch .form-check-input:focus{
    box-shadow: none;
}

.bail-description .modal-content{
    animation: fadeInDown ease 1s both;
}

/* start modals style */


/* end section : bail-description */



/* start section : similar-bails */

.similar-bails{
    padding-top: 80px;
}
.similar-bails .container{
    max-width: 95%;
}
.similar-bails .similar-bails-title{
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 35px;
}
.similar-bails .owl-theme .owl-dots .owl-dot.active span,
.similar-bails .owl-theme .owl-dots .owl-dot:hover span{
    background: var(--main-color);
}

/* end section : similar-bails */


/* end page bailDetails */

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

.page-link {
    margin-right: 10px;
    border-radius: 0.25rem;
}

.page-item.active .page-link {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.page-link:hover{
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}


/* ============= end pages styling ============= */
