/*******************************/
/********* General CSS *********/
/*******************************/
@font-face {
  font-family: 'minerva-modern';
  src: url(https://use.typekit.net/af/2d15e1/00000000000000003b9afd25/27/l?subset_id=2&fvd=n4&v=3);
}


@font-face {
    font-family: 'Minerva Modern Black';
    font-style: normal;
    font-weight: normal;
    src: local('Minerva Modern Black'), url('fonts/MinervaModern Black.woff') format('woff');
    }
    

    @font-face {
    font-family: 'Minerva Modern Black Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Minerva Modern Black Italic'), url('fonts/MinervaModern BlackItalic.woff') format('woff');
    }
    

    @font-face {
    font-family: 'Minerva Modern Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Minerva Modern Bold'), url('fonts/MinervaModern Bold.woff') format('woff');
    }
    

    @font-face {
    font-family: 'Minerva Modern Bold Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Minerva Modern Bold Italic'), url('fonts/MinervaModern BoldItalic.woff') format('woff');
    }
    

    @font-face {
    font-family: 'Minerva Modern Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Minerva Modern Italic'), url('fonts/MinervaModern Italic.woff') format('woff');
    }

body {
    color: #777777;
    font-weight: 500;
    background: #ffffff;
    font-family: 'Quicksand', sans-serif;
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    /*color: #fbfbfb;*/
    color: var(--bs-text-primary);
}

a {
    color: #c1c1c1;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    /*color: #FDBE33;
    color: #FEE715FF;*/
    color: tomato;
    outline: none;
    text-decoration: none;
}

.btn.btn-custom {
    padding: 12px 20px;
    text-align: center; 
   font-size: 16px;
    font-weight: 500;
    color: #777777;
    border-radius: 0;
        /*color: #FDBE33;
    border: 2px solid #FDBE33;
    box-shadow: inset 0 0 0 0 #FDBE33;
    transition: ease-out 0.3s;
    -webkit-transition: ease-out 0.3s;
    -moz-transition: ease-out 0.3s;
*/
    border: 2px solid tomato;
    box-shadow: inset 0 0 0 0 rgb(2, 1, 48);
    transition: ease-out 0.3s;
    -webkit-transition: ease-out 0.3s;
    -moz-transition: ease-out 0.3s;
}

.btn.btn-custom:hover {
    color: #20212B;
    /*box-shadow: inset 0 0 0 30px #FEE715FF;*/
    box-shadow: inset 0 0 0 30px #cdcdcde4;
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

.container-fluid {
    max-width: 1366px;
}

[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {   
    font-size: inherit;
    margin-left: 0;
}


/**********************************/
/****** Loader & Back to Top ******/
/**********************************/
#loader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s ease-out, visibility 0s linear .3s;
    -o-transition: opacity .3s ease-out, visibility 0s linear .3s;
    transition: opacity .3s ease-out, visibility 0s linear .3s;
    z-index: 999;
}

#loader.show {
    -webkit-transition: opacity .6s ease-out, visibility 0s linear 0s;
    -o-transition: opacity .6s ease-out, visibility 0s linear 0s;
    transition: opacity .6s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

#loader .loader {
    position: relative;
    width: 45px;
    height: 45px;
    border: 5px solid #dddddd;
    /*border-top: 5px solid #FDBE33;*/
    border-top: 5px solid tomato;
    border-radius: 50%;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.back-to-top {
    position: fixed;
    display: none;
    /*background: #FDBE33;*/
    background: #cdcdcde4;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
    /*border: 2px solid #FEE715FF;*/
    border: 2px solid tomato;
}

.back-to-top i {
    color: #4a4c70;
    padding-top: 10px;
}

.back-to-top:hover {
    background: #20212B;
}

.back-to-top:hover i {
    color: #f9b41d;
}


/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
    position: absolute;
    height: 45px;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 3;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.top-bar .top-bar-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.top-bar .top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar .text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    height: 45px;
    padding: 0 10px;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, .3);
}

.top-bar .text:last-child {
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.top-bar .text i {
    font-size: 16px;
    color: #FDBE33;
    margin-right: 5px;
}

.top-bar .text p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.top-bar .social {
    display: flex;
    height: 45px;
    font-size: 0;
    justify-content: flex-end;
}

.top-bar .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 100%;
    font-size: 16px;
    color: #FDBE33;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.top-bar .social a:first-child {
    border-left: 1px solid rgba(255, 255, 255, .3);
}

.top-bar .social a:hover {
    color: #ffffff;
    background: #FDBE33;
}

@media (min-width: 992px) {
    .top-bar {
        padding: 0 60px;
    }
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.navbar {
    position: relative;
    transition: .5s;
    z-index: 999;
}

.navbar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    transition: .5s;
}

.navbar .navbar-brand {
    margin: 0;
    color: #ffffff;
    font-size: 45px;
    line-height: 0px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.navbar .navbar-brand img {
    max-width: 100%;
    max-height: 40px;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    padding: 10px 15px 8px 15px;
    color: #ffffff;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #FDBE33;
    transition: none;
}

.navbar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}

@media (min-width: 992px) {
    .navbar {
        position: absolute;
        width: 100%;
        top: 45px;
        padding: 20px 60px;
        background: transparent !important;
        border-bottom: 1px solid rgba(255, 255, 255, .3);
        z-index: 9;
    }
    
    .navbar.nav-sticky {
        padding: 10px 60px;
        background: #20212B !important;
        border-bottom: none;
    }
    
    .page .navbar {
        background: #20212B !important;
    }
    
    .navbar a.nav-link {
        padding: 8px 15px;
        font-size: 16px;
        letter-spacing: 1px;
    }
}

@media (max-width: 991.98px) {   
    .navbar {
        padding: 15px;
        background: #20212B !important;
    }
    
    .navbar a.nav-link {
        padding: 5px;
    }
    
    .navbar .dropdown-menu {
        box-shadow: none;
    }
}

/********************************************************/
/******************** handburger menu start **********************************

.headerMenu {
    display: flex;
    flex-direction: row;
    align-items: center;

    margin: 0;
  width: 100%;
  background-color: #ededed91;
  position: fixed;
  height: 75px!important;
  z-index: 20;
}
.headerMenu 
{

    justify-content: flex-start !important; 
}
**/

#menuid a
{
  font-family: 'minerva-modern';
  font-weight: 500;
  
  text-decoration: none;
  color: #020202;
  
  transition: color 0.3s ease;
}

#menuid a:hover
{
  color: tomato;
}

#menuid  .active
{
  color: rgb(129, 130, 128);
  pointer-events: none;
}
#menuToggle
{
  display: block;
  position: absolute;
  top: 30px;
  right: 50px;
  
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #0d0100;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.05s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #111111;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  opacity: 1;
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menuid
{
  position: fixed;
  width: 500px;
  margin: -100px 0 0 0;
  padding: 50px;
  padding-top: 145px;
  right: -100px;
  height:104vh;
  background: #ffffff;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;

  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);

  border-radius:0px 0px 0px 3px;
-moz-border-radius:0px 0px 0px 3px;
-webkit-border-radius:0px 0px 0px 3px;
-webkit-box-shadow: -1px 8px 13px -9px rgba(0,0,0,0.4); 
box-shadow: -1px 8px 13px -9px rgba(0,0,0,0.4);
}

#menuid li
{
  padding: 10px 0;
  font-size: 32px;
}
#menuToggle input:checked~#menuid a {

    animation-name: slideLeftToRight;
  animation-duration: 5s; 
    display: block;
} 
@keyframes slideLeftToRight {
  /*from {transform: translateX(-100px)} 
  to {transform: translateX(100px)}*/
  from {transform: translateX(190px)}
  to {transform: translateX(0px)} 
}
/*
 * And let's fade it in from the left
 */
#menuToggle input:checked ~ ul
{
    transition: transform 2s ease-in-out; 
  transform: scale(1.0, 1.0);
  opacity: 1;
}
.logocenter img{
    width: 80%;

  }

@media screen and (max-width: 640px) {
    .logocenter img{
    margin-top: 1.3vh;
    width: 50%;
  }
  .headerMenu{
    width: 100vw;
  }


}


/********************************************************/
/******************** handburger menu end ************************************/

/*******************************/
/********** Hero CSS ***********/
/*******************************/
.carousel {
    position: relative;
    width: 100%;
    min-height: 300px;
    background: #ffffff;
    margin-bottom: 45px;
}

.carousel .container-fluid {
    padding: 0;
}

.carousel .carousel-item {
    position: relative;
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.carousel .carousel-img {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
    text-align: right;
    overflow: hidden;
}

.carousel .carousel-img::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

.carousel .carousel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .carousel-text {
    position: absolute;
    max-width: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
}

.carousel .carousel-text h1 {
    text-align: center;
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
}

.carousel .carousel-text p {
    color: #ffffff;
    text-align: center;
    font-size: 20px;
    margin-bottom: 25px;
}

.carousel .carousel-btn .btn.btn-custom {
    color: #ffffff;
}

.carousel .carousel-btn .btn.btn-custom:hover {
    color: #20212B;
}

.carousel .carousel-btn .btn:first-child {
    margin-right: 15px;
}

.carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 60px;
    top: calc(50% - 30px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 9;
}

.carousel .owl-nav .owl-prev,
.carousel .owl-nav .owl-next {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FDBE33;
    background: rgba(256, 256, 256, .2);
    font-size: 22px;
    transition: .3s;
}

.carousel .owl-nav .owl-prev:hover,
.carousel .owl-nav .owl-next:hover {
    color: #ffffff;
    background: #FDBE33;
}

.carousel .owl-nav .owl-prev {
    margin-right: 2px;
}

.carousel .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .carousel .carousel-text h1 {
        font-size: 35px;
    }
    
    .carousel .carousel-text p {
        font-size: 16px;
    }
    
    .carousel .carousel-text .btn {
        padding: 12px 30px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 767.98px) {
    .carousel .carousel-text h1 {
        font-size: 30px;
    }
    
    .carousel .carousel-text .btn {
        padding: 10px 25px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-text h1 {
        font-size: 25px;
    }
    
    .carousel .carousel-text .btn {
        padding: 8px 20px;
        font-size: 14px;
        letter-spacing: 0;
    }
}


/*******************************/
/******* Page Header CSS *******/
/*******************************/

/******************************************* about hero header image start *****************************************************/
.page-hero-about {
    position: relative;
    margin-bottom: 45px;
    padding: 80vh 0 90px 0; /* hero image width and heidht top padding is 80vh, right padding is 0px bottom padding is 90px left padding is 0px*/
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.03), rgba(255, 255, 255, 0.024)), url(../img/hero/1.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}



.page-hero-about h2 {
    position: relative;
    color: #FDBE33;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.page-hero-about h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #FDBE33;
}

.page-hero-about a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    color: #ffffff;
}

.page-hero-about a:hover {
    color: #FDBE33;
}

.page-hero-about a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: #ffffff;
}

.page-hero-about a:last-child::after {
    display: none;
}

@media (max-width: 991.98px) {
    .page-hero-about {
        padding: 88vh 0 90px 0; /* hero image width and heidht top padding is 720px, right padding is 0px bottom padding is 90px left padding is 0px*/
    }
    
    .page-hero-about h2 {
        font-size: 45px;
    }
    
    .page-hero-about a {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    .page-hero-about {
        padding: 50vh 0;
    }
    
    .page-hero-about h2 {
        font-size: 35px;
    }
    
    .page-hero-about a {
        font-size: 18px;
    }
}
/*********************************************** about hero header image end  *************************************************/

/*******************************************  development journey hero header image start *****************************************************/
.page-hero-development-journey {
    position: relative;
    margin-bottom: 45px;
    padding: 80vh 0 90px 0; /* hero image width and heidht top padding is 80vh, right padding is 0px bottom padding is 90px left padding is 0px*/
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.03), rgba(255, 255, 255, 0.024)), url(../img/hero/2.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}



.page-hero-development-journey h2 {
    position: relative;
    color: #FDBE33;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.page-hero-development-journey h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #FDBE33;
}

.page-hero-development-journey a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    color: #ffffff;
}

.page-hero-development-journey a:hover {
    color: #FDBE33;
}

.page-hero-development-journey a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: #ffffff;
}

.page-hero-development-journey a:last-child::after {
    display: none;
}

@media (max-width: 991.98px) {
    .page-hero-development-journey {
        padding: 88vh 0 90px 0; /* hero image width and heidht top padding is 88vh, right padding is 0px bottom padding is 90px left padding is 0px*/
    }
    
    .page-hero-development-journey h2 {
        font-size: 45px;
    }
    
    .page-hero-development-journey a {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    .page-hero-development-journey {
        padding: 50vh 0;
    }
    
    .page-hero-development-journey h2 {
        font-size: 35px;
    }
    
    .page-hero-development-journey a {
        font-size: 18px;
    }
}
/*********************************************** development journey hero header image end  *************************************************/

/*******************************************  Project Gallery  hero header image start *****************************************************/
.page-hero-Project-Gallery {
    position: relative;
    margin-bottom: 45px;
    padding: 80vh 0 90px 0; /* hero image width and heidht top padding is 80vh, right padding is 0px bottom padding is 90px left padding is 0px*/
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.03), rgba(255, 255, 255, 0.024)), url(../img/hero/3.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}



.page-hero-Project-Gallery h2 {
    position: relative;
    color: #FDBE33;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.page-hero-Project-Gallery h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #FDBE33;
}

.page-hero-Project-Gallery a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    color: #ffffff;
}

.page-hero-Project-Gallery a:hover {
    color: #FDBE33;
}

.page-hero-Project-Gallery a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: #ffffff;
}

.page-hero-Project-Gallery a:last-child::after {
    display: none;
}

@media (max-width: 991.98px) {
    .page-hero-Project-Gallery {
        padding: 88vh 0 90px 0; /* hero image width and heidht top padding is 88vh, right padding is 0px bottom padding is 90px left padding is 0px*/
    }
    
    .page-hero-Project-Gallery h2 {
        font-size: 45px;
    }
    
    .page-hero-Project-Gallery a {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    .page-hero-Project-Gallery {
        padding: 50vh 0;
    }
    
    .page-hero-Project-Gallery h2 {
        font-size: 35px;
    }
    
    .page-hero-project-gallery a {
        font-size: 18px;
    }
}
/*********************************************** Project Gallery hero header image end  *************************************************/

/*******************************************  Contact Us  hero header image start *****************************************************/
.page-hero-contact-us {
    position: relative;
    margin-bottom: 45px;
    padding: 80vh 0 90px 0; /* hero image width and heidht top padding is 80vh, right padding is 0px bottom padding is 90px left padding is 0px*/
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.03), rgba(255, 255, 255, 0.024)), url(../img/hero/4.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}



.page-hero-contact-us h2 {
    position: relative;
    color: #FDBE33;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.page-hero-contact-us h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #FDBE33;
}

.page-hero-contact-us a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    color: #ffffff;
}

.page-hero-contact-us a:hover {
    color: #FDBE33;
}

.page-hero-contact-us a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: #ffffff;
}

.page-hero-contact-us a:last-child::after {
    display: none;
}

@media (max-width: 991.98px) {
    .page-hero-contact-us {
        padding: 88vh 0 90px 0; /* hero image width and heidht top padding is 720px, right padding is 0px bottom padding is 90px left padding is 0px*/
    }
    
    .page-hero-contact-us h2 {
        font-size: 45px;
    }
    
    .page-hero-contact-us a {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    .page-hero-contact-us {
        padding: 50vh 0;
    }
    
    .page-hero-contact-us h2 {
        font-size: 35px;
    }
    
    .page-hero-contact-us a {
        font-size: 18px;
    }
}
 @media only screen and (max-width: 575.98px) {
    .page-hero-contact-us {
        padding: 50vh 0 90px 0; /* hero image width and heidht top padding is 720px, right padding is 0px bottom padding is 90px left padding is 0px*/
    }
 }
/*********************************************** Contact us hero header image end  *************************************************/




.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 80vh 0 90px 0; /* hero image width and heidht top padding is 80vh, right padding is 0px bottom padding is 90px left padding is 0px*/
    text-align: center;
    /*background: linear-gradient(rgba(0, 0, 0, 0.03), rgba(255, 255, 255, 0.024)), url(../img/contact-header.jpg);*/
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}



.page-header h2 {
    position: relative;
    color: #FDBE33;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.page-header h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #FDBE33;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    color: #ffffff;
}

.page-header a:hover {
    color: #FDBE33;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: #ffffff;
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 991.98px) {
    .page-header {
        padding: 88vh 0 90px 0; /* hero image width and heidht top padding is 720px, right padding is 0px bottom padding is 90px left padding is 0px*/
    }
    
    .page-header h2 {
        font-size: 45px;
    }
    
    .page-header a {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 50vh 0;
    }
    
    .page-header h2 {
        font-size: 35px;
    }
    
    .page-header a {
        font-size: 18px;
    }
}



.page-header2 {
    position: relative;
    margin-bottom: 45px;
    padding: 720px 0 44% 0; /* hero image width and heidht */
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.278), rgba(255, 255, 255, 0.225)), url(../img/page-header.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header2 h2 {
    position: relative;
    color: #FDBE33;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.page-header2 h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #FDBE33;
}

.page-header2 a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    color: #ffffff;
}

.page-header2 a:hover {
    color: #FDBE33;
}

.page-header2 a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: #ffffff;
}

.page-header2 a:last-child::after {
    display: none;
}

@media (max-width: 991.98px) {
    .page-header2 {
        padding: 60px 0;
    }
    
    .page-header2 h2 {
        font-size: 45px;
    }
    
    .page-header2 a {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    .page-header2 {
        padding: 45px 0;
    }
    
    .page-header2 h2 {
        font-size: 35px;
    }
    
    .page-header2 a {
        font-size: 18px;
    }
}
/*******************************/
/*******************************/
/************* Welcome section *******************/
/*******************************/
.gap{
    padding:120px 0;position:relative;
    }
    
    .no-top {
        padding-top: 0;
        background-color: #0505055c;
        z-index: 0;
    }
.about-style-one .about-data-left {
    /*padding-top: 60px;*/
    padding-top: 10%;
    display: flex;
    align-items: flex-end;
    position: relative
}

.about-style-one .about-data-left img {
    width: 90%;
    border-radius: 5px 5px 5px 5px;
    -moz-border-radius: 5px 5px 5px 5px;
    -webkit-border-radius: 5px 5px 5px 5px;
    -webkit-box-shadow: -1px 2px 22px 0px rgba(15, 170, 15, 0.59); 
box-shadow: -1px 2px 22px 0px rgba(15, 33, 170, 0.59); 
}

.about-style-one .about-data-left .about-image1 {
    margin-left: 15px;
    margin-bottom: 370px;

}
.about-style-one .about-data-left .about-image1 {
    width:30%;
    }
    .about-style-one .about-data-left .about-image2 {
        margin-left: 15px;
        margin-bottom: 70px;

    }
    .about-style-one .about-data-left .about-image2 {
            margin-bottom: -10
        }

.about-style-one .about-data-left figure:nth-child(2) {
    width: 55%
}

.about-style-one .about-data-left:before {
    content: "";
    /*width: 350px;
    width: 85%;
    height: 130%;*/
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) skew(-20deg, 0deg);
    z-index: -1
}
/*.about-data-left:before{
     yellow cross horizental line 
    background-color: #fdbd3337
}*/


.about-style-one .about-data-right span {
    font-size: 16px;
    color: #0b013c;
    font-family: Epilogue, sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900
}
.about-style-one .about-data-right h2 {
    font-size: 50px;
    line-height: 60px;
    margin-top: 10px;
    color: #0b013c;
    margin-bottom: 50px
}
.about-style-one .about-data-right h3 {
    font-size: 35px;
    line-height: 60px;
    margin-top: 10px;
    color: #0b013c;
    margin-bottom: 40px
}

.about-style-one .about-data-right h4 {
    font-size: 25px;
    font-weight: 600;
    line-height: 30px;
    color: #0b013c;
    margin-bottom: 10px
}
.about-style-one .about-data-right {
    /*padding-top: 130px;*/
    padding-top: 16%;
}

@media (min-width:576px) {
    .about-style-one .about-data-right {
        /*padding-top: 130px;*/
        padding-top: 10%;
    }
}

@media (min-width:768px) {
    .about-style-one .about-data-right {
        /*padding-top: 130px;*/
        padding-top: 16%;
    }
}

@media (min-width:992px) {
    .about-style-one .about-data-right {
        /*padding-top: 130px;*/
        padding-top: 16%;
    }
}

@media (min-width:1200px) {
    .about-style-one .about-data-right {
        /*padding-top: 130px;*/
        padding-top: 10%;
    }
}
.about-style-one .about-data-right .about-info {
    padding-left: 40px;
    color: #e0e0e0;
}

.about-style-one .about-data-right .about-info p {
    font-size:24px;
    font-family: 'minerva-modern';
    /*font-size: 16px;
    margin-bottom: 20px; 
    color: #010007;*/
    margin-bottom: 10px;
    padding-right: 55px;
}

.about-style-one .about-data-right .about-info h3,
.about-style-one .about-data-right .about-info h4 {
    font-size: 16px;
    line-height: 26px;
    font-family: Epilogue, sans-serif
}

.about-style-one .about-data-right .about-info h3 {
    font-weight: 700;
    margin-top: 5px;
    /*margin-top: 13px*/
}
/************* Welcome section ends *******************/

   /**************** Core Planning  section*********************/
/*******************************//*******************************/



   .light-d .service-style-one .light-d section .gap .no-top .about-style-one
   {
       background-color:#232222;z-index:0
   }
       .gap{padding:80px 0}
   .gap{padding:60px 0}

   .service-style-one .service-data .icon,
.service-style-one .service-data .svg-icon:before,
.service-style-one .service-data:before,
.service-style-two .service-two-box .service-two-icon i,
.service-style-two .service-two-box .service-two-icon svg,
.service-style-two .service-two-box .service-two-icon:before,
.service-style-two .service-two-box.last a span,
.service-style-two .service-two-box:before,
button.scrollTopStick i {
   transition: .3s ease-in-out
}
.service-style-one .service-data:hover:before,
button.scrollTopStick.active {
   background-color: #ffbc025d
}
.service-style-one .service-data:hover .svg-icon:before,
.service-style-two .service-two-box.last span,
.service-style-two .service-two-box:hover:before,
.sidebar .box h3:before,
.sidebar .box.recent-posts ul li:hover a,
.team-detail .image figure:before,
.team-style-one .open .team-data .team-image:before,
.team-style-one .team-slider-nav button:hover:before,
.team-style-two .team-data:before,
.team-style-two .team-social-medias>a,
.theme-btn,
.theme-btn:hover i:after,
.video-popup:before,
.what-we-build .wwb-ul li.active figure:before {
   background-color: #ffbc02;
}
.service-style-one .service-data .icon,
.service-style-one .service-data .svg-icon:before,
.team-style-one .team-slider-nav button:hover,
.theme-btn,
.video-play-btn,
textarea:focus,
textarea:focus-visible {
   border-color: #ffee02;
}

.service-style-one .service-data {
       width: 100%
   }

   .service-style-one .service-data:before {
       height: 100%
   }

   .service-style-one .service-data h3 {
       margin-top: 30px
   }

   .service-style-one .service-data p {
       margin-bottom: 20px
   }

   .service-style-one .service-data .svg-icon {
       width: 120px;
       height: 120px
   }

   .service-style-one .service-data .svg-icon img {
       width: 55px;
       height: 55px
   }

   .service-style-one .service-data .icon {
       transform: unset;
       opacity: 1;
       visibility: visible
   }
   .service-style-one .service-data {
       margin-bottom: 40px
   }

   .service-style-one .service-data {
   width: 80%;
   margin: auto;
   position: relative
}

.service-style-one .service-data h3 {
   margin-bottom: 15px;
   margin-top: 50px
}

.service-style-one .service-data h3 a {
   color: #000
}

.service-style-one .service-data p {
   margin-bottom: 30px
}

.service-style-one .service-data .icon {
   width: 50px;
   height: 50px;
   display: flex;
   justify-content: center;
   align-items: center;
   border: 1px solid;
   border-radius: 100%;
   margin: auto;
   background: #fff;
   transform: translateX(-10px);
   opacity: 0;
   visibility: hidden
}

.service-style-one .service-data:hover .icon {
   transform: translateX(0);
   opacity: 1;
   visibility: visible
}

.service-style-one .service-data .icon i {
   color: #000;
   font-size: 12px
}

.service-style-one .service-data .svg-icon {
   width: 140px;
   height: 150px;
   position: relative;
   margin: auto
}

.service-style-one .service-data .svg-icon img {
   position: relative;
   width: 70px;
   height: 70px
}

.service-style-one .service-data .svg-icon:before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   border: 1px solid;
   width: 100%;
   height: 100%;
   transform: skew(-20deg, 0deg);
   background: #fff;
   border-color: #ffee02;
}

.service-style-one .service-data:before {
   content: "";
   width: 190px;
   height: 380px;
   background: #f7f6f2;
   position: absolute;
   left: 50%;
   top: 50%;
   transform: translate(-50%, -50%) skew(-20deg, 0deg);
   z-index: -1
}


img.light-icon {
   display: block
}
body.light-d img.light-icon {
   display: none
}
img.dark-icon {
   display: none
}
body.light-d img.dark-icon {
   display: block
}
.d-flex-all {
   display: flex;
   align-items: center;
   justify-content: center;
   color: #fff
}
/**************** Core Planning  section end *********************/
/*******************************/




/*******************************/
/********** About section CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.about .section-header {
    margin-top: 15px;
    margin-bottom: 40px;
    margin-left: 0;
}

.about .about-img {
    width: 100%;
    height: 110;
}
@media (min-width:576px) {
    .about .about-img {
        width: 100%;
        height: 70vh;
    }
}

@media (min-width:768px) {
    .about .about-img {
        width: 100%;
        height: 60vh;
    }
}

@media (min-width:992px) {
    .about .about-img {
        width: 100%;
        height: 90vh;
    }
}

@media (min-width:1200px) {
    .about .about-img {
        width: 100%;
        height: 100vh;
    }
}
.about-style-one .about-data-right .about-info {
    padding-left: 50px;
    color: #e0e0e0;
}

.about .about-tab {
    width: 100%;
}

.about .about-tab .nav.nav-pills .nav-link {
    padding: 8px;
    font-family: 'minerva-modern';
    font-size: larger;
    font-weight: 900;
    background: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
    transition: none;
}

.about .about-tab .nav.nav-pills .nav-link:hover,
.about .about-tab .nav.nav-pills .nav-link.active {
    /*color: #FDBE33;
    padding-bottom: 7px;
    border-bottom: 3px solid #FDBE33;*/
    color: var(--bs-text-primary);
    padding-bottom: 7px;
    border-bottom: 3px solid tomato;
}

.about .about-tab .tab-content {
    font-family: 'minerva-modern';
    padding: 15px 0 0 0;
    background: transparent;
}

.about .about-tab .tab-content .container {
    padding: 0;
}

@media (max-width: 991.98px) {
    .about .section-header {
        margin-top: 10px;
    }
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.service .service-item {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 45px;
    transition: .3s;
}

.service .service-icon {
    position: relative;
    width: 60px;
}

.service .service-icon i {
    position: relative;
    display: block;
    color: #FDBE33;
    font-size: 60px;
    line-height: 60px;
    margin-top: 5px;
}

.service .service-text {
    position: relative;
    margin-left: 20px;
    padding-left: 20px;
}

.service .service-text::before {
    position: absolute;
    content: "";
    width: 1px;
    height: calc(100% - 10px);
    top: 5px;
    left: 0;
    background: rgba(0, 0, 0, .1);
}

.service .service-text::after {
    position: absolute;
    content: "";
    width: 3px;
    height: 40px;
    top: calc(50% - 20px);
    left: -1px;
    background: #FDBE33;
}

.service .service-text h3 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

.service .service-text p {
    margin: 0;
}


/*******************************/
/********* Donate CSS **********/
/*******************************/
.donate {
    position: relative;
    width: 100%;
    margin: 45px 0;
    background: rgba(0, 0, 0, .5);
}

.donate .donate-content {
    padding: 45px 0 15px 0;
}

.container .donate {
    margin: 90px 0;
}

.container .donate .donate-content {
    padding: 45px 30px 15px 30px;
}

.donate .donate-content .section-header {
    margin-bottom: 30px;
}

.donate .donate-content .section-header h2 {
    color: #ffffff;
}

.donate .donate-text p {
    color: #ffffff;
    font-size: 18px;
}

.donate .donate-form {
    padding: 90px 30px;
    background: #FDBE33;
}

.donate .donate-form .control-group {
    margin-bottom: 15px;
}

.donate .donate-form .form-control {
    height: 60px;
    color: #ffffff;
    padding: 0 15px;
    border-radius: 0;
    border: 1px solid #ffffff;
    background: transparent;
}

.donate .donate-form .form-control::placeholder {
    color: #ffffff;
    opacity: 1;
}

.donate .donate-form .form-control:-ms-input-placeholder,
.donate .donate-form .form-control::-ms-input-placeholder {
    color: #ffffff;
}

.donate .donate-form .btn-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.donate .donate-form .btn.btn-custom {
    padding: 15px 0;
    width: 100%;
    height: 60px;
    color: #ffffff;
    border: 1px solid #ffffff;
    box-shadow: inset 0 0 0 0 #ffffff;
}

.donate .donate-form .btn.btn-custom:hover,
.donate .donate-form .btn.btn-custom.active {
    color: #FDBE33;
    border: 1px solid #ffffff;
    box-shadow: inset 0 0 0 30px #ffffff;
}



/*******************************/
/********** Causes CSS *********/
/*******************************/
.causes {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.causes .causes-carousel {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
}

.causes .causes-item {
    margin: 0 15px;
    overflow: hidden;
    background: #f3f6ff;
}

.causes .causes-img {
    overflow: hidden;
}

.causes .causes-img img {
    width: 100%;
    transition: .3s;
}

.causes .causes-item:hover img {
    transform: scale(1.1);
}


.causes .causes-progress {
    width: 100%;
    margin-top: 32px;
    padding: 30px 30px 20px 30px;
}

.causes .progress {
    height: 10px;
    border-radius: 0;
    background: #dddddd;
    overflow: visible;
}

.causes .progress .progress-bar {
    position: relative;
    width: 0px;
    background: #FDBE33;
    overflow: visible;
    transition: 2s;
}

.causes .progress-bar span {
    position: absolute;
    top: -32px;
    right: 0;
    height: 23px;
    display: inline-block;
    padding: 2px 6px;
    background: #FDBE33;
    color: #20212B;
}

.causes .progress-bar span::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 23px;
    left: calc(50% - 6px);
    border: 6px solid;
    border-color: #FDBE33 transparent transparent transparent;
}

.causes .progress-text {
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
}

.causes .progress-text p {
    margin: 0;
}

.causes .causes-text {
    padding: 0 30px;
}

.causes .causes-text h3 {
    font-size: 22px;
    font-weight: 700;
}

.causes .causes-text p {
    margin: 0;
}

.causes .causes-btn {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
}

.causes .causes-btn .btn {
    padding: 10px 0;
    width: 50%;
}

.causes .causes-btn .btn:last-child {
    color: #20212B;
    background: #FDBE33;
}

.causes .causes-btn .btn:last-child:hover {
    color: #ffffff;
}



/*******************************/
/********** Facts CSS **********/
/*******************************/
.facts {
    position: relative;
    width: 100%;
    min-height: 400px;
    margin: 45px 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .5);
}

.facts .facts-item {
    display: flex;
    flex-direction: row;
    margin: 25px 0;
}

.facts .facts-item i {
    margin-top: 10px;
    font-size: 60px;
    line-height: 60px;
    color: #FDBE33;
}

.facts .facts-text {
    padding-left: 20px;
}

.facts .facts-text h3 {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 45px;
    font-weight: 700;
}

.facts .facts-text h3::after {
    position: absolute;
    top: 0px;
    color: #ffffff;
    font-size: 25px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.facts .facts-text h3.facts-plus::after {
    content: "\f067";
    right: -25px;
}

.facts .facts-text h3.facts-dollar::after {
    content: "\f155";
    right: -18px;
}

.facts .facts-text p {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}


/************************************************* team start ***********************************************/
.team {
    /* font-family: "Poppins", sans-serif;*/
     font-weight: 300;
     font-style: normal;
     padding-block: min(20vh, 6rem);
     text-align: center;
     width: calc(min(90rem, 80%));
     margin-inline: auto;
   }
   .team span,
   .team p,
   .team h1,
   .team h2,
   .team h3 {
     letter-spacing: 0.035rem;
     margin: 0 auto;
   }
   .team p {
     line-height: 1.6;
     color: #faf9f9;
     max-width: 50rem;
     margin: 0 auto;
     font-size: clamp(0.9rem, 0.825rem + 0.3vw, 1.2rem);
   }
   .team .bg-watermark {
     color: #1f1f1f;
     font-size: clamp(6rem, 1.3333rem + 14.9333vw, 8rem);
     font-weight: 800;
     position: absolute;
     z-index: -1;
     left: 50%;
     transform: translatex(-52%) translatey(-25%);
     user-select: none;
     letter-spacing: 0.5rem;
   }
   .team span {
     text-transform: uppercase;
     display: block;
     font-size: 1.2rem;
     color: #a3a3a3;
   }
   .team h2 {
     font-size: clamp(3.5rem, 3rem + 1.6vw, 5rem);
     margin-top: -0.625rem;
     color: #fff;
   }
   .team .cards {
     margin-top: 7rem;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(min(12rem, 100%), 1fr));
     gap: 2rem;
   }
   @media screen and (min-width: 51rem) {
     .team .cards {
       gap: 0;
       padding-bottom: 2.5rem;
     }
   }
   .team .cards .card {
     position: relative;
     cursor: pointer;
   }
   .team .cards .card h3,
   .team .cards .card p {
     text-transform: capitalize;
   }
   .team .cards .card h3 {
     font-size: clamp(1rem, 0.9167rem + 0.2667vw, 1.25rem);
     font-weight: 400;
     color: #f6f6f6;
   }
   .team .cards .card p {
     font-size: clamp(0.85rem, 0.75rem + 0.32vw, 1.15rem);
     letter-spacing: 0.12rem;
     font-weight: 300;
     max-width: 100%;
   }
    /*.team .cards .card::before {
    position: absolute;
     content: "";
     width: 5rem;
     height: 6.25rem;
     z-index: 0;
     transition: 0.3s ease-in-out;
     background: #f2709c;
     background: -webkit-linear-gradient(to left, #ff9472, #f2709c);
     background: linear-gradient(to left, #ff9472, #f2709c);
     top: -0.375rem;
     left: -0.375rem;
   }*/
   .team .cards .card::after {
     position: absolute;
     inset: 0;
     content: "";
     width: 100%;
     height: 100%;
     background: #232526;
     background: -webkit-linear-gradient(to bottom, rgba(65, 67, 69, 0.2), rgba(8, 8, 8, 0.9));
     background: linear-gradient(to bottom, rgba(65, 67, 69, 0.2), rgba(8, 8, 8, 0.9));
   }
   .team .cards .card img {
     filter: grayscale(90%);
     transition: 0.5s ease;
   }
   .team .cards .card-content {
     position: absolute;
     bottom: 0;
     z-index: 99;
     left: 0;
     color: #fff;
     width: 100%;
     padding: 1.875rem 1.25rem;
     text-align: center;
   }
   
   .team .cards .card-content ul {
        list-style: none;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 0.625rem;
     margin-top: 1.25rem;
   }
   .team .cards .card:hover img {
     filter: grayscale(0%);
   }
   .team .cards .card:hover::before {
     transform: scale(1.03);
   }
   .team .cards .card:nth-child(1)::before {
     top: -0.375rem;
     left: -0.375rem;
   }
   @media screen and (min-width: 31.25rem) {
     .team .cards .card:nth-child(2) {
        transform: translatey(0%);
     }

   }
   .team .cards .card:nth-child(2)::before {
     bottom: -0.375rem;
     left: -0.375rem;
    
   }
   .team .cards .card:nth-child(3)::before {
     top: -0.375rem;
     left: -0.375rem;
   }
   /********************************************* team ends *************************************/           
   /************************************************************************************************/


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.testimonial .testimonials-carousel {
    position: relative;
    width: calc(100% + 30px);
    margin: 0 -15px;
}

.testimonial .testimonial-item {
    position: relative;
    width: 100%;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.testimonial .testimonial-profile {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.testimonial .testimonial-profile img {
    width: 80px;
    margin-bottom: -1px;
}

.testimonial .testimonial-name {
    padding-left: 15px;
    width: calc(100% - 95px);
}

.testimonial .testimonial-name h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial .testimonial-name p {
    margin: 0;
    font-style: italic;
}

.testimonial .testimonial-text p {
    margin: 0;
}

.testimonial .owl-dots {
    margin-top: 15px;
    text-align: center;
}

.testimonial .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 0;
    background: #FDBE33;
}

.testimonial .owl-dot.active {
    background: #20212B;
}


/*******************************/
/******** Volunteer CSS ********/
/*******************************/
.volunteer {
    position: relative;
    width: 100%;
    margin: 45px 0;
    background: rgba(0, 0, 0, .5);
}

.volunteer .volunteer-content {
    padding: 30px 0 45px 0;
}

.container .volunteer {
    margin: 90px 0;
}

.container .volunteer .volunteer-content {
    padding: 45px 30px 15px 30px;
}

.volunteer .volunteer-content .section-header {
    margin-bottom: 30px;
}

.volunteer .volunteer-content .section-header h2 {
    color: #ffffff;
}

.volunteer .volunteer-text p {
    color: #ffffff;
    font-size: 18px;
}

.volunteer .volunteer-form {
    padding: 90px 30px;
    background: #FDBE33;
}

.volunteer .volunteer-form .control-group {
    margin-bottom: 15px;
}

.volunteer .volunteer-form .form-control {
    height: 60px;
    color: #ffffff;
    padding: 0 15px;
    border-radius: 0;
    border: 1px solid #ffffff;
    background: transparent;
}

.volunteer .volunteer-form textarea.form-control {
    height: 120px;
    padding: 15px;
}

.volunteer .volunteer-form .form-control::placeholder {
    color: #ffffff;
    opacity: 1;
}

.volunteer .volunteer-form .form-control:-ms-input-placeholder,
.volunteer .volunteer-form .form-control::-ms-input-placeholder {
    color: #ffffff;
}

.volunteer .volunteer-form .btn.btn-custom {
    padding: 15px 0;
    width: 100%;
    height: 60px;
    color: #ffffff;
    border: 1px solid #ffffff;
    box-shadow: inset 0 0 0 0 #ffffff;
}

.volunteer .volunteer-form .btn.btn-custom:hover {
    color: #FDBE33;
    border: 1px solid #ffffff;
    box-shadow: inset 0 0 0 30px #ffffff;
}


/*******************************/
/********** Event CSS **********/
/*******************************/
.event {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.event .event-item {
    margin-bottom: 30px;
    background: #f3f6ff;
}

.event .event-item img {
    width: 100%;
}

.event .event-content {
    padding: 30px;
    display: flex;
}

.event .event-meta {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.event .event-meta p {
    position: relative;
    margin-bottom: 8px;
    padding-bottom: 8px;
    white-space: nowrap;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.event .event-meta p:last-child {
    border-bottom: none;
}

.event .event-meta i {
    color: #4a4c70;
    width: 25px;
}

.event .event-text {
    position: relative;
    margin-left: 20px;
    padding-left: 20px;
}

.event .event-text::before {
    position: absolute;
    content: "";
    width: 1px;
    height: calc(100% - 5px);
    top: 6px;
    left: 0;
    background: rgba(0, 0, 0, .15);
}

.event .event-text::after {
    position: absolute;
    content: "";
    width: 3px;
    height: 40px;
    top: calc(50% - 20px);
    left: -1px;
    background: #FDBE33;
}

.event .event-text h3 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
}

.event .event-text p {
    margin: 0;
}

.event .btn.btn-custom {
    margin-top: 20px;
    padding: 8px 30px;
}

@media (max-width: 575.98px) {
    .event .event-content {
        flex-direction: column;
    }
    
    .event .event-meta {
        flex-direction: row;
    }
    
    .event .event-meta p {
        font-size: 14px;
        padding-right: 7px;
    }
    
    .event .event-meta p:last-child {
        border-bottom: 1px solid rgba(0, 0, 0, .15);
    }
    
    .event .event-meta i {
        width: 18px;
    }
    
    .event .event-text {
        margin: 0;
        padding: 0;
    }
    
    .event .event-text::before,
    .event .event-text::after {
        display: none;
    }
}



/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.blog .blog-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    background: #f3f6ff;
}

.blog .blog-img {
    width: 100%;
}

.blog .blog-img img {
    width: 100%;
}

.blog .blog-text {
    padding: 30px 30px 15px 30px;
}

.blog .blog-text h3 {
    font-size: 22px;
    font-weight: 700;
}

.blog .blog-text h3 a {
    color: #4a4c70;
}

.blog .blog-text h3 a:hover {
    color: #FDBE33;
}

.blog .blog-text p {
    margin: 0;
}

.blog .blog-meta {
    margin: 0 30px;
    padding-top: 15px;
    display: flex;
    border-top: 1px solid rgba(0, 0, 0, .15);
}

.blog .blog-meta p {
    margin: 0;
    color: #777777;
    padding: 0 30px;
    border-right: 1px solid rgba(0, 0, 0, .15);
}

.blog .blog-meta p:first-child {
    padding-left: 0;
}

.blog .blog-meta p:last-child {
    padding-right: 0;
    border: none;
}

.blog .blog-meta i {
    color: #4a4c70;
    margin-right: 8px
}

.blog .pagination {
    margin-bottom: 15px;
}

.blog .pagination .page-link {
    color: #4a4c70;
    border-radius: 0;
    border-color: #4a4c70;
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: #FDBE33;
    background: #4a4c70;
}

.blog .pagination .disabled .page-link {
    color: #999999;
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.contact .contact-img {
    position: relative;
    width: 100%;
}

.contact .contact-img img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

.contact .contact-form {
    position: relative;
    width: 100%;
    margin: 0 auto;
    
    padding: 30px;
    background: #edecec24;
}


@media (max-width: 991.98px) {
    .contact .contact-form {
        max-width: 600px;
    }
}

@media (max-width: 767.98px) {
    .contact .contact-form {
        max-width: 400px;
    }
}

@media (max-width: 575.98px) {
    .contact .contact-form {
        max-width: 300px;
    }
}

.contact .contact-form input {
    padding: 15px;
    background: none;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .contact-form textarea {
    height: 150px;
    padding: 8px 15px;
    background: none;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .contact-form .btn.btn-custom {
    width: 100%;
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}


/*******************************/
/******* Single Post CSS *******/
/*******************************/
.single {
    position: relative;
    padding: 45px 0;
}

.single .single-content {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.single .single-content img {
    margin-bottom: 20px;
    width: 100%;
}

.single .single-tags {
    margin: -5px -5px 41px -5px;
    font-size: 0;
}

.single .single-tags a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 500;
    color: #4a4c70;
    border: 1px solid #4a4c70;
}

.single .single-tags a:hover {
    color: #ffffff;
    background: #FDBE33;
    border-color: #FDBE33;
}

.single .single-bio {
    margin-bottom: 45px;
    padding: 30px;
    background: #f3f6ff;
    display: flex;
}

.single .single-bio-img {
    width: 100%;
    max-width: 100px;
}

.single .single-bio-img img {
    width: 100%;
    border: 15px solid #ffffff;
}

.single .single-bio-text {
    padding-left: 30px;
}

.single .single-bio-text h3 {
    font-size: 20px;
    font-weight: 700;
}

.single .single-bio-text p {
    margin: 0;
}

.single .single-related {
    margin-bottom: 45px;
}

.single .single-related h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .related-slider {
    position: relative;
    margin: 0 -15px;
    width: calc(100% + 30px);
}

.single .related-slider .post-item {
    margin: 0 15px;
}

.single .post-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.single .post-item .post-img {
    width: 100%;
    max-width: 80px;
}

.single .post-item .post-img img {
    width: 100%;
}

.single .post-item .post-text {
    padding-left: 15px;
}

.single .post-item .post-text a {
    font-size: 16px;
    font-weight: 600;
}

.single .post-item .post-text a:hover {
    color: #FDBE33;
}

.single .post-item .post-meta {
    display: flex;
    margin-top: 8px;
}

.single .post-item .post-meta p {
    display: inline-block;
    margin: 0;
    padding: 0 3px;
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
}

.single .post-item .post-meta p a {
    margin-left: 5px;
    color: #999999;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
}

.single .related-slider .owl-nav {
    position: absolute;
    width: 90px;
    top: -55px;
    right: 15px;
    display: flex;
}

.single .related-slider .owl-nav .owl-prev,
.single .related-slider .owl-nav .owl-next {
    margin-left: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a4c70;
    background: #FDBE33;
    font-size: 16px;
    transition: .3s;
}

.single .related-slider .owl-nav .owl-prev:hover,
.single .related-slider .owl-nav .owl-next:hover {
    color: #FDBE33;
    background: #4a4c70;
}

.single .single-comment {
    position: relative;
    margin-bottom: 45px;
}

.single .single-comment h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .comment-list {
    list-style: none;
    padding: 0;
}

.single .comment-child {
    list-style: none;
}

.single .comment-body {
    display: flex;
    margin-bottom: 30px;
}

.single .comment-img {
    width: 60px;
}

.single .comment-img img {
    width: 100%;
    border-radius: 0;
}

.single .comment-text {
    padding-left: 15px;
    width: calc(100% - 60px);
}

.single .comment-text h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 3px;
}

.single .comment-text span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.single .comment-text .btn {
    padding: 3px 10px;
    font-size: 14px;
    font-weight: 500;
    color: #4a4c70;
    background: #dddddd;
    border-radius: 0;
}

.single .comment-text .btn:hover {
    background: #FDBE33;
}

.single .comment-form {
    position: relative;
}

.single .comment-form h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .comment-form form {
    padding: 30px;
    background: #f3f6ff;
}

.single .comment-form form .form-group:last-child {
    margin: 0;
}

.single .comment-form input,
.single .comment-form textarea {
    border-radius: 0;
}

.single .comment-form input:focus,
.single .comment-form textarea:focus {
    border-color: #FDBE33;
}


/**********************************/
/*********** Sidebar CSS **********/
/**********************************/
.sidebar {
    position: relative;
    width: 100%;
}

@media(max-width: 991.98px) {
    .sidebar {
        margin-top: 45px;
    }
}

.sidebar .sidebar-widget {
    position: relative;
    margin-bottom: 45px;
}

.sidebar .sidebar-widget .widget-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 5px;
    font-size: 25px;
    font-weight: 700;
}

.sidebar .sidebar-widget .widget-title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #FDBE33;
}

.sidebar .sidebar-widget .search-widget {
    position: relative;
}

.sidebar .search-widget input {
    height: 50px;
    border: 1px solid #dddddd;
    border-radius: 0;
}

.sidebar .search-widget input:focus {
    box-shadow: none;
    border-color: #FDBE33;
}

.sidebar .search-widget .btn {
    position: absolute;
    top: 6px;
    right: 15px;
    height: 40px;
    padding: 0;
    font-size: 25px;
    color: #FDBE33;
    background: none;
    border-radius: 0;
    border: none;
    transition: .3s;
}

.sidebar .search-widget .btn:hover {
    color: #4a4c70;
}

.sidebar .sidebar-widget .recent-post {
    position: relative;
}

.sidebar .sidebar-widget .tab-post {
    position: relative;
}

.sidebar .tab-post .nav.nav-pills .nav-link {
    color: #4a4c70;
    background: #FDBE33;
    border-radius: 0;
}

.sidebar .tab-post .nav.nav-pills .nav-link:hover,
.sidebar .tab-post .nav.nav-pills .nav-link.active {
    color: #FDBE33;
    background: #4a4c70;
}

.sidebar .tab-post .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
}

.sidebar .tab-post .tab-content .container {
    padding: 0;
}

.sidebar .sidebar-widget .category-widget {
    position: relative;
}

.sidebar .category-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar .category-widget ul li {
    margin: 0 0 12px 22px; 
}

.sidebar .category-widget ul li:last-child {
    margin-bottom: 0; 
}

.sidebar .category-widget ul li a {
    display: inline-block;
    line-height: 23px;
}

.sidebar .category-widget ul li::before {
    position: absolute;
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #FDBE33;
    left: 1px;
}

.sidebar .category-widget ul li span {
    display: inline-block;
    float: right;
}

.sidebar .sidebar-widget .tag-widget {
    position: relative;
    margin: -5px -5px;
}

.single .tag-widget a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 500;
    color: #4a4c70;
    border: 1px solid #4a4c70;
    border-radius: 0;
}

.single .tag-widget a:hover {
    color: #ffffff;
    background: #FDBE33;
    border-color: #FDBE33;
}

.sidebar .image-widget {
    display: block;
    width: 100%;
    overflow: hidden;
}

.sidebar .image-widget img {
    max-width: 100%;
    transition: .3s;
}

.sidebar .image-widget img:hover {
    transform: scale(1.1);
}


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 45px;
    padding-top: 90px;
    /*background: #20212B;*/
    background: #7b7b7b17;
}

.footer .footer-contact,
.footer .footer-link,
.footer .footer-newsletter {
    position: relative;
    margin-bottom: 45px;
    color: black;
}

.footer .footer-contact h2,
.footer .footer-link h2,
.footer .footer-newsletter h2 {
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 700;
    /*color: #FDBE33;*/
    color: black;

}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: black;
    transition: .3s;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .footer-link a:hover {
    /*color: #FDBE33;*/
    color: tomato;
    letter-spacing: 1px;
}

.footer .footer-contact p i {
    width: 25px;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
}

.footer .footer-social a {
    width: 40px;
    height: 40px;
    padding: 6px 0;
}

.footer .footer-social a {
    margin-top: 5px;
}
.footer .footer-link .disabled {
    pointer-events: none;
    cursor: default;
    opacity: 0.6;
}
.footer .footer-newsletter a {
    color: black;
}

.footer .footer-newsletter a::before {
    position: relative;
    font-weight: 900;
    margin-right: 10px;
}

.footer .footer-newsletter a:hover {
    /*color: #FDBE33;*/
    color: tomato;
}
.footer .footer-newsletter a {
    position: relative;
    width: 100%;
}
.footer .footer-newsletter input {
    margin-bottom: 15px;
    height: 60px;
    border: none;
    border-radius: 0;
}

.footer .footer-newsletter label {
    margin-top: 5px;
    color: black;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer .footer-newsletter .btn.btn-custom {
    width: 100%;
    padding: 15px 0;
}

.footer .copyright {
    padding: 0 30px;
}

.footer .copyright .row {
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright p {
    margin: 0;
    color: black;
    font-size: small;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: black;
}

.footer .copyright p a:hover {
    /*color: #FDBE33;*/
    color: tomato;
}

@media (max-width: 767.98px) {
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}


.zoomIn-img1  {
    /*width: 100%;*/
    transition: .3s;
}
.zoomIn-img1:hover {
    transform: scale(1.10); /* (110% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
    
  }

/* Control Icon Color  for jQuery*/
.fa-color {
    /*color: #e5ac31;*/
    color: #040300;
  }
  
  /* Control Icon Color on Hover (scripted)
  .fa-hover-color {
    color: #e82c2c;
  } */
  
  
  .zoomIn-img1:hover .fas {
    color: #7b7b7b;
  }  
  .zoomIn-img2  {
    width: 100%;
    transition: .3s;
}
.zoomIn-img2:hover {
    transform: scale(1.25); /* (125% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
  }
  .zoomIn-img3  {
    width: 100%;
    transition: .3s;
}
.zoomIn-img3:hover {
    transform: scale(1.5); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
  }

.anchorHover :hover{
    color: tomato;
}
  /*********************************************************/
  /************************** Video  ******************************
  .video-bottom-border { margin: 50px auto; position: relative;
    display: block;}
    .video-bottom-border {
      border-bottom: 5px solid transparent;
      box-shadow: 0px 20px 20px -10px #4e4e4e;
      border-image: linear-gradient(to right, #e6e6e6 20%, #666dd6 20%, #2e40e6 40%, #21e01e 40%, #015f17 60%, #baa98f 60%, #fa9601 80%, #f8627b 80%, #c90122 100%);
    
      border-image-slice: 1;
    } */
    /* video animated border 
    .video-border-shadow {
        -webkit-box-shadow: 0px 0px 18px 1px rgba(0,0,0,0.51); 
        box-shadow: 0px 0px 18px 1px rgba(0,0,0,0.51);
    }
   */
      /************************** Video  *******************************/
        /*********************************************************/


