@charset "UTF-8";
 
/* CSS Document */

/* ==================== 
Main Font Family From Google 
==================== */
/* 
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&display=swap'); */

@import url("https://fonts.googleapis.com/css2?family=Kanchenjunga:wght@400;500;600;700&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap");

/*------------------------------------------*/
/*   1. Reset Style
/*------------------------------------------*/

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

:root {
  scroll-behavior: inherit;
  --font-heading: "Merriweather", serif;
  --font-body: "Kanchenjunga", sans-serif;
  --primary-color: #12413c;
  --primary-rgb: 213, 155, 45;
  --secondary-color: #fe9818 ;
  --color-accent: #fe9818 ;
  --secondary-rgb: 71, 119, 99;
  --bistre-color: #31231e;
  --bistre-rgb: 49, 35, 30;
  --cadet-color: #1c2339;
  --cadet-rgb: 28, 35, 57;
  --white: #fff;
  --white-rgb: 255, 255, 255;
}
.text-accent {
    color: var(--color-accent) ;
}
/*------------------------------------------*/
/*   2. Body Elements
/*------------------------------------------*/
html {
  font-size: 16px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: #232323;
  background: #f8f4f3;
  line-height: 1.5;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -ms-overflow-style: scrollbar;
  box-sizing: border-box;
  font-size: 100%;
  height: 100%;
}
*,
:after,
:before {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  width: 100%;
}

label {
  font-size: 0.875rem;
}
p:last-child {
  margin-bottom: 0;
}
p{
  font-size: 16px;
  line-height: 1.5em;
  /*letter-spacing: 0.6px;*/
}
/*   Links Setting   */
a {
  color: #000;
  text-decoration: none;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
a:hover {
  color: #666;
  text-decoration: none;
}
a:focus {
  outline: none;
  text-decoration: none;
}

#yearText {
  color: var(--white);
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.white-bg {
  background: #fff;
}
/*------------------------------------------*/
/*   3. Headers/Navbars
/*------------------------------------------*/

/*   3.1 Headers Styles   */
.header-fullpage {
  background: rgba(255, 255, 255, 0.9);
  padding-right: 0 !important;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
  z-index: 9;
}
.search-section .navigation-links .icon {
  color: var(--secondary-color);
}
/*search section*/




@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1200px;
  }
}
@media (min-width: 991.99px) {
  .header-fullpage.fixed {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow:
      rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
      rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
    z-index: 1099;
  }
  .header-style-fullwidth.fixed {
    background-color: rgba(5, 5, 5, 0.7);
    box-shadow: 0px 0px 70px 0px rgb(0 0 0 / 20%);
  }
  /* .header-fullpage.fixed .top-bar-right{
        height: 0px;
        overflow: hidden;
        opacity: 0;
        border: 0;
        padding: 0;
        min-height: auto;

        -webkit-transition: all 0.15s linear;
        -moz-transition: all 0.15s linear;
        -o-transition: all 0.15s linear;
        transition: all 0.15s linear;
    } */
  .header-fullpage.fixed.top-transparent {
    padding-bottom: 0;
  }
}
.header-fullpage.fixed .navbar-brand {
  width: 140px;
}
    .mega-dropdown h3 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 30px 7px;
    font-size: 22px;
    font-weight: 700;
    color: #000;
  }
/* 3.1 Headers Styles End */

/*top head start*/
.header-style-fullwidth .top-head {
  background: #1a89d4;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}
.header-style-fullwidth .top-head .top-head-content{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  color: #fff;
}
.header-style-fullwidth .top-head .top-head-content a{
  text-decoration: underline;
  color: #fff;
  font-weight: bold;
}
.header-style-fullwidth .top-head .top-head-content a:hover {
  color: #000;
  opacity: 0.5;

}
/*top head end */

/*------------------------------------------*/
/*    3.2 Navbars Styles
/*------------------------------------------*/

@media (min-width: 991.99px) {
  .dropdown-submenu .dropdown-menu-right {
    left: auto;
    right: 100%;
  }
  .dropdown-menu.show {
    -webkit-animation: fadeIn 0.3s alternate;
    /* Safari 4.0 - 8.0 */
    animation: fadeIn 0.3s alternate;
  }
  .dropdown-toggle::after {
    content: "\e920";
    width: auto;
    padding-left: 0.2rem;
  }
  .dropdown-submenu-toggle::after {
    text-align: center;
    content: "\e922";
  }
  .dropdown-submenu-toggle.icon-left::after {
    content: "";
  }
  .dropdown-submenu-toggle.icon-left::before {
    text-align: center;
    content: "\e921";
  }

  .dropdown-submenu {
    position: relative;
  }
  a.dropdown-submenu {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
  }
  .dropdown-submenu .dropdown-menu-right {
    left: auto;
    right: 100%;
  }

  .nav-item.dropdown.dropdown-mega {
    position: static;
  }

  /* ================================
   HEADER BASE
================================ */
  .header-style-fullwidth {
    position: relative;
    z-index: 1000;
  }

  /* ================================
   FULL PAGE WHITE BACKGROUND
================================ */
  .header-style-fullwidth::before {
/*    content: "";*/
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70vh; /* full screen */
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
    z-index: -1;
  }

  /* Activate background on hover */
  .header-style-fullwidth:has(.hover-dropdown:hover)::before {
    opacity: 1;
    visibility: visible;
  }

  /* Keep header content above bg */
/*  .header-style-fullwidth > * {
    position: relative;
    z-index: 2;
  }*/



  /* Icons (SVG / bars) */
 /* .header-style-fullwidth:has(.hover-dropdown:hover) svg,
  .header-style-fullwidth:has(.hover-dropdown:hover) i {
    color: #000 !important;
  }*/

  .navbar-nav > .hover-dropdown {
    position: relative;
  }

  .mega-dropdown {
   position: fixed;
    top: 100%;
    left: 0;
    width: 100vw;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 9;
    overflow-y: auto;
    overflow-x: auto;
      transform: translateY(0px);
      padding: 30px 0;
  }


  /* show on hover */
  @media (min-width: 992px) {
    .hover-dropdown:hover .mega-dropdown {
      opacity: 1;
      visibility: visible;
    }
    .mega-column h6 {
        font-size: 14px;
        font-weight: 800;
        color: var(--secondary-color);
        text-transform: uppercase;
        padding: 0 9px;
    }
      }

  .mega-inner {
    max-width: 1200px;
    margin: 0 auto;
/*    padding: 40px 20px;*/
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .dropdown-images .mega-inner {
      display: flex;
      gap: 1.4rem;
      flex-wrap: wrap;
      width: 100%;
  }
.dropdown-images .mega-column {
  width: calc((100% - 5.6rem) / 5);
}
.dropdown-images .mega-column.small-column {
  width: calc((100% - 9.8rem) / 8);
}
.dropdown-images .mega-column.top-column{
          width: calc((100% - 7rem) / 6);
        height: fit-content;
}
.dropdown-images .travel-seasons-column{
  align-items: flex-start;
}
.dropdown-images .travel-seasons-column .mega-column {
  width: 47%;
  max-height: 122px;
}
.dropdown-images .seasons {
    display: flex;
    width: 50%;
    flex-wrap: wrap;
    gap: 25px;
}
.dropdown-images .months{
  width: 47%;
}
.dropdown-images .mega-dropdown .dropdown-nav {
    display: flex;
}
.dropdown-images .mega-dropdown .list-column {
  box-shadow: 0 2px 7px 0px rgb(0 0 0 / 20%);
  border-radius: 5px;
    padding: 0.6rem 1.4rem 1rem 1.4rem;
    background-color: #fff;
    margin-top: 12px;
}
.dropdown-images .mega-dropdown .travel-seasons-column .list-column{
  margin-top: 0;
}
.dropdown-images .mega-dropdown .list-column ul{
  display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: .5rem 2.5rem;
}
.dropdown-images .mega-dropdown .list-column li {
  width: calc((100% - 12.5rem) / 6);
}
.dropdown-images .mega-dropdown .months .list-column li {
  width: 100%;
}
.dropdown-images .mega-dropdown .list-column li a:hover {
  text-decoration: underline;
}
.dropdown-images .mega-dropdown ul li .title {
    display: inline-block;
    font-weight: bold;
}
.mega-column .content {
  border-radius: 5px;
  position: relative;
  width: 100%;
}
.dropdown-images .mega-column .content:before{
      content: "";
    position: absolute;
     border-radius: 5px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(69, 43, 51, .3);
    transition: background-color .5s ease;
    pointer-events: none;
    z-index: 6;
}
.dropdown-images .mega-column .content img {
  border-radius: 5px;
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.dropdown-images .mega-column .content:hover:before{
  background: rgba(69,43,51,.5);
}
.mega-column .text-over {
    position: absolute;
    color: #fff;
    font-weight: 800;
    letter-spacing: -.02rem;
    text-decoration: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    z-index: 9;
    pointer-events: none;
    font-size: 1.2rem;
}
.dropdown-images .mega-column.top-column .text-over{
      top: 0;
    left: 0;
    padding: .8rem;
    text-align: left;
    /* width: 80%; */
    transform: inherit;
}
.dropdown-images .mega-dropdown ul li {
    position: relative;
}

.mega-dropdown ul li {
  list-style: none;
}
  .mega-column h6,
   .mega-dropdown .title {
    font-size: 14px;
    font-weight: 800;
    color: var(--secondary-color);
    text-transform: uppercase;
  }

  .dropdown-images .mega-dropdown .dropdown-nav{
        margin-bottom: 30px;
        border-bottom: 1px solid #fafafa;
        margin-left: 15px;
        padding-bottom: 10px;
        gap: 50px;
  }
  .dropdown-images .mega-dropdown .dropdown-nav .title{
    color: #000;
    background: #fafafa;
    padding: 5px 20px;
    border-radius: 50px;
    text-transform: capitalize;
  }
   .dropdown-images .mega-dropdown .dropdown-nav .title h6 {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 14px;
   }
  .dropdown-images .mega-column h6:hover,  
  .dropdown-images .mega-dropdown .dropdown-nav .title:hover,
  .dropdown-images .mega-dropdown .dropdown-nav .title.active{
      background: var(--secondary-color);
  }
  .mega-column li {
    padding: 10px 10px;
    list-style-type: none;
  }
  .mega-column a {
    display: flex;
/*    justify-content: space-between;*/
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
    align-items: center;
    gap: 5px;
    height: 100%;
  }

  .mega-column li:hover {
    background: #fafafa;
    border-radius: 50px;
  }

  .mega-column a .arrow {
    font-weight: bold;
    margin-left: 10px;
    color: #007bff;
  }



  .btn-outline-primary,
  .btn-outline-primary svg,
  .btn-outline-primary i {
    background-color: transparent;
  }

  /* disable bootstrap dropdown */
  .nav-item.dropdown .dropdown-menu {
    display: none !important;
  }


  

 

 
}
  @media (max-width: 992px) {
    .mega-dropdown h3{
      font-size: 16px;
    }
        .mega-column h6 {
        font-size: 12px;
        font-weight: 500;
        color: var(--secondary-color);
        text-transform: uppercase;
        padding: 10px 0 5px 0;
        margin-bottom: 0;
    }

  }
/* ANIMATED X */
.navbar-toggler .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}
.navbar-toggler .icon-bar + .icon-bar {
  margin-top: 4px;
}
.navbar-toggler .icon-bar {
  width: 22px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.navbar-toggler .icon-bar {
  background-color: #27304b;
}

.close-nav {
  display: none;
}
.logo-small {
  display: none;
}
/* ANIMATED X COLLAPSED */

.main-header {
  position: sticky;
  z-index: 9;
}
.main-header header.header-fixed {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
}

.site-header.header-fixed {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
}

/* END ANIMATED X */
/*.logo-brand {
  width: 225px;
  flex-basis: 120px;
}*/
.offcanvas-body {
  display: flex;
  justify-content: center;
}

.navbar-brand {
  flex-shrink: 0;
}
.cl-logo {
  position: relative;
  z-index: 10;
  width: auto;
  max-width: 210px;
}
  @media (max-width: 992px) {
    .mega-dropdown h3{
      font-size: 14px;
      padding: 10px 0 10px 0;
      color: #fff;
    }
    .mega-column li {
        padding: 10px 10px;
        list-style-type: none;
    }
    .mega-column li:hover {
        background: #fafafa;
        border-radius: 50px;
    }
    .mega-column a {
      color: #fff;
        display: block;
        font-size: 14px;
        text-decoration: none;
        transition: color 0.2s;
    }
  }

/*.navbar-expand-lg .navbar-nav .nav-item:not(:last-child) {
  margin-right: 30px;
}*/
.navbar-expand-lg .navbar-nav .nav-link {
 color: #000;
    text-transform: capitalize;
    padding: 7px 17px;
    font-weight: 500;
    font-size: 14px;
    border-radius: 0.375rem;
    font-weight: bold;
    margin-right: 0.25rem;
    text-transform: uppercase;
}

.dropdown-toggle-arrow,
.dropdown-submenu-toggle.icon-left::before,
.dropdown-submenu-toggle::after,
.dropdown > a::after {
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  position: relative;
  color: #2b5f37;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
  font-size: 18px;
  margin: 0;
  top: 1px;
  border: none;
  margin-left: 2px;
}
 .header-style-fullwidth .navbar-nav .nav-link:hover::after{
  color: #31231e;
 }

.dropdown-submenu > a::after {
  text-align: center;
  content: "\eaa0";
}
.navbar-expand-lg .navbar-nav .dropdown.nav-item .nav-link {
/*  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;*/
  outline: none;
}
.navbar-expand-lg .navbar-nav .dropdown.nav-item .nav-link:focus {
  box-shadow: none;
  outline: none;
}
.navbar-nav .nav-item:hover .nav-link,
.navbar-nav .active .nav-link,
.navbar-nav .active .nav-link:hover,
.navbar-nav .nav-link:hover {
  color: var(--primary-color);
  /* background: var(--primary-color); */
}
.navbar-nav .dropdown-menu {
  padding: 0;
  min-width: 200px;
  background: var(--white);
  margin: 0;
  border: 0;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1) !important;
  border-radius: 7px;
}
.navbar-nav .dropdown-menu .dropdown-submenu .dropdown-menu {
  border-radius: 0.375rem;
}
@media (min-width: 992px) {
  .show > .dropdown-menu {
    display: block;
  }
}
.dropdown-menu li > .dropdown-menu:after {
  display: none;
}
.dropdown-menu a,
.dropdown-menu li > a {
  font-size: 0.875rem;
  padding: 0.5rem 0.9rem;
  text-transform: capitalize;
  color: #27304b;
  text-decoration: none;
  border-bottom: 1px solid #d9e7db;
  font-weight: 500;
}
.dropdown-menu li:last-child > a {
  border: none;
}
.dropdown-item.active,
.dropdown-item:focus,
.dropdown-item:hover,
.dropdown-item:active,
.dropdown-menu > li.show > a,
.dropdown-submenu:hover > a {
  text-decoration: none;
  border-radius: 0;
  color: var(--primary-color);
  background: transparent;
}
.dropdown-menu > li > a {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  position: relative;
  margin: 0;
}
.navbar-toggler-icon {
  background-image: url(../images/download.svg);
}

.dropdown-item-icon {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  font-size: 0.8125rem;
  min-width: 1rem;
  max-width: 1rem;
  margin-right: 0.5rem;
}
/*   3.2 Navbars Styles End  */

/*------------------------------------------*/
/*   3.3 Top Bars
/*------------------------------------------*/
.top-bar-right,
.icon-box-1,
.icon-box-1 .text,
.navbar-brand {
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
/*.top-border .top-bar-right {
    color: #1f1f1f !important;
    background: #fafafa;
    border-bottom: 4px solid #fafafa;
}*/
.top-border .top-bar-right svg {
  color: var(--primary-color);
}
.top-border .top-bar-right .top-text small {
  color: rgba(6, 22, 58, 0.5);
}
.top-border .lang-toggle a.btn {
  background: #f4f4f4;
}
.header-logo-top.top-transparent .navbar-nav .nav-link {
  color: var(--white);
}
.header-logo-top .request-btn a#search_home {
  color: var(--white);
}
.top-transparent.top-border .lang-toggle a {
  color: #000;
  border: transparent;
}

.top-bar-right {
  padding: 0.4rem 0;
  background: var(--bistre-color);
  font-size: 0.775rem;
  font-weight: normal;
  color: var(--white);
  box-shadow: 0px 0px 57px 0px rgba(0, 0, 0, 0.15);
}
.top-bar-right a {
  color: #ffffff;
  font-size: 18px;
  margin-right: 25px;
}
.top-bar-right .licence {
  color: #ffffff;
  font-size: 17px;
  margin-right: 25px;
}
.top-bar-right a:hover {
  color: var(--primary-color);
}
.top-bar-right .contact-info svg {
  margin-right: 0.3rem;
  margin-top: -2px;
  color: var(--white);
}
.top-bar-right .contact-info div {
  margin-right: 1rem;
}
/* .top-bar-right .social-icons{
    margin: 0 .5rem
} */
.top-bar-right .social-icons a {
  color: var(--white);
  font-size: 1.2rem;
  margin: 0 0.2rem;
  transition: all 0.3s;
  text-decoration: none;
}
.top-bar-right .social-icons a:hover {
  color: var(--primary-color);
}
/*.request-btn {
  margin-left: 9px;
}*/
.request-btn a#search_home {
  border-radius: 100px;
  padding: 0.5rem 0.9rem;
}
.request-btn a#search_home svg,
.request-btn a#search_home i {
  margin: 0;
  font-size: 30px;
}
.request-btn a#search_home:hover {
  background-color: #01865f;
  color: var(--white);
  border-color: #01865f;
}
/* Header With Top Bar Transparent */

/* Header With Top Bordered */
.bordered-nav .top-bar-right {
  padding: 1rem 0;
  background: #f1fbff;
  color: #000;
}
.bordered-nav.top-transparent nav {
  background: transparent !important;
}
.bordered-nav .navbar .bdr-nav {
  border-width: 1px 0 0 0;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
}
.bordered-nav .navbar-brand {
  background: transparent;
  padding: 0;
}
.bordered-nav .navbar-expand-md .navbar-nav .nav-item,
.bordered-nav .navbar-expand-lg .navbar-nav .nav-item {
  padding: 0.49rem 0.19rem 1rem;
}
.bordered-nav .top-text {
  margin-right: 1.5rem;
}
.top-text small {
  display: block;
  font-weight: 700;
  color: #06163a;
}
.bordered-nav .top-text a {
  color: var(--primary-color);
}
.top-text a:hover {
  text-decoration: underline;
}
.bordered-nav.header-fullpage.fixed .navbar-brand {
  padding: 0;
}
.bordered-nav.header-fullpage.fixed {
  padding: 0.2rem 0;
}
.bordered-nav.header-fullpage.fixed .navbar .bdr-nav {
  border-width: 0;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.2);
  padding-top: 0;
}
/* 3.3 Top Bars End */

/*------------------------------------------*/
/*   3.4 Page Breadcrumbs Style 
/*------------------------------------------*/
.breadcrumbs-page-wrap {
  position: relative;
}
.breadcrumbs-page-wrap:before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: -99;
}
.breadcrumbs-page {
  background-image: url(../images/breadcrumbs_bg.jpg);
  background-repeat: no-repeat;
  background-position: center !important;
  max-width: 100%;
  margin: 0 auto;
  z-index: 2;
  position: relative;
  border-radius: 0;
  background-color: var(--cadet-color);
}
.breadcrumbs-page:before {
  position: absolute;
  content: "";
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(251deg, rgba(36, 55, 70, 0) 36.93%, #243746 100%);
  mix-blend-mode: multiply;
  z-index: -1;
  border-radius: 0;
}
.breadcrumb-wrap {
  position: absolute;
  bottom: -25px;
  padding: 0.7rem 1.2rem;
  background: var(--primary-color);
  border-radius: 4px;
}
.breadcrumbs-page .breadcrumb {
  background: transparent;
  color: #eeeeee;
  padding: 0;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0;
  line-height: 1;
}
.breadcrumbs-page .breadcrumb-item {
  display: -ms-flexbox;
  display: flex;
  min-height: 30px;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 700;
}
.breadcrumbs-page .breadcrumb a {
  color: var(--white);
  padding: 0;
  border-radius: 0;
  position: relative;
}
.breadcrumbs-page .breadcrumb-item + .breadcrumb-item::before,
.breadcrumb-item.active {
  color: var(--white);
  content: none;
}
.breadcrumbs-page .breadcrumb-item + .breadcrumb-item::before {
  top: 2px;
  position: relative;
  content: "\eaca";
  color: var(--white);
  font-size: 1rem;
  font-family: IcoFont !important;
}
.breadcrumbs-page h1 {
  color: var(--white);
  text-transform: capitalize;
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 1;
  padding: 10rem 0;
}
/* 3.4 Page Breadcrumbs Style End */

/*------------------------------------------*/
/*   4. Typography
/*------------------------------------------*/
h1,
.h1 {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  font-style: italic;
}
h2,
.h2 {
  font-size: 1.438rem;
  font-family: var(--font-heading);
  font-style: italic;
}
h3,
.h3 {
  font-size: 1.25rem;
  font-family: var(--font-heading);
  font-style: italic;
}
h4,
.h4 {
  font-size: 1.125rem;
  font-family: var(--font-heading);
  font-style: italic;
}
h5,
.h5 {
  font-size: 1rem;
  font-family: var(--font-heading);
}
h6,
.h6 {
  font-size: 0.875rem;
  font-family: var(--font-heading);
}

/* Header H5 */
h5.h5-xs {
  font-size: 0.875rem;
} /* 14px */
h5.h5-sm {
  font-size: 1rem;
} /* 16px */
h5.h5-md {
  font-size: 1rem;
} /* 16px */
h5.h5-lg {
  font-size: 1.125rem;
} /* 18px */
h5.h5-xl {
  font-size: 1.25rem;
} /* 20px */

/* Header H4 */
h4.h4-xs {
  font-size: 1rem;
} /* 16px */
h4.h4-sm {
  font-size: 1.125rem;
} /* 18px */
h4.h4-md {
  font-size: 1.125rem;
} /* 18px */
h4.h4-lg {
  font-size: 1.25rem;
} /* 20px */
h4.h4-xl {
  font-size: 1.5rem;
} /* 24px */

/* Header H3 */
h3.h3-xs {
  font-size: 1rem;
} /* 16px */
h3.h3-sm {
  font-size: 1.375rem;
} /* 22px */
h3.h3-md {
  font-size: 1.375rem;
} /* 22px */
h3.h3-lg {
  font-size: 1.5rem;
} /* 24px */
h3.h3-xl {
  font-size: 1.75rem;
} /* 28px */

/* Header H2 */
h2.h2-xs {
  font-size: 1rem;
} /* 16px */
h2.h2-sm {
  font-size: 1.125rem;
} /* 18px */
h2.h2-md {
  font-size: 1.125rem;
} /* 18px */
h2.h2-lg {
  font-size: 1.25rem;
} /* 20px */
h2.h2-xl {
  font-size: 1.5rem;
} /* 24px */

/* Font Weight = fw */
.fw-3 {
  font-weight: 300;
}
.fw-4 {
  font-weight: 400;
}
.fw-5 {
  font-weight: 500;
}
.fw-6 {
  font-weight: 600;
}
.fw-7 {
  font-weight: 700;
}
/*------------------------------------------*/
/*   4.1 Heading Style
/*------------------------------------------*/
.heading-main {
  /*color: var(--primary-color);
  font-size: 2.8rem;
  position: relative;
  font-weight: 800;
  z-index: 1;*/
  /*margin-bottom: 3rem;*/
  font-weight: bold;
    color: #0d1b2a;
    font-size: 36px;
    margin-bottom: 15px;
}
.heading-main small {
  color: var(--secondary-color);
  font-family: var(--font-heading);
  position: relative;
  text-transform: capitalize;
  margin-bottom: 15px;
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
}
.heading-main small::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 41px;
  background: var(--secondary-color);
  top: 50%;
  left: -60px;
  transform: translateY(-50%);
}
.light-mode.heading-main small {
  color: var(--white);
  position: relative;
}
.light-mode.heading-main {
  color: var(--white);
}
.light-mode.heading-main i {
  opacity: 0.4;
}
.heading-main.green small {
  color: var(--white);
}
.heading-main.green small::after {
  background: var(--white);
}
.heading-main.orange small {
  color: var(--primary-color);
}
.heading-main.orange small::after {
  background: var(--primary-color);
}
/* 4.1 Heading Style End */

/*------------------------------------------*/
/*   4.2 Link Styles
/*------------------------------------------*/
.read-more-line {
  font-size: 0.875rem;
  align-items: center;
  font-weight: 700;
  text-align: right;
  color: var(--secondary-color);
}
.read-more-line span {
  position: relative;
  margin-left: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0;
}
.read-more-line span:after {
  position: absolute;
  content: "";
  left: -30px;
  top: calc(50% + 1px);
  width: 20px;
  border-bottom: 2px solid var(--bistre-color);
  transform: translateY(-50%);
}
.read-more-line:hover {
  color: var(--primary-color);
}
/* 4.2 Link Styles End */

/*------------------------------------------*/
/*   4.3 Text Colors
/*------------------------------------------*/
.txt-blue {
  color: #27304b;
}
.txt-orange {
  color: var(--primary-color);
}
.txt-green {
  color: var(--secondary-color);
}
.txt-ligt-gray {
  color: #424242;
}
.txt-white {
  color: var(--white);
}
.txt-black {
  color: #000;
}
.txt-sky-blue {
  color: #f1fbff;
}
/* 4.3 Text Colors End */

/*------------------------------------------*/
/*   4.4 Background Colors
/*------------------------------------------*/
.bg-orange {
  background: var(--primary-color);
}
.bg-theme {
  background: var(--white);
}
.bg-green {
  background: #d9e7db;
}
.bg-navy-blue {
  background: var(--bistre-color);
}

.pos-rel {
  position: relative;
}
.bg-overlay {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  left: 0;
  z-index: 1;
}
.bg-overlay.blue {
  background-color: #27304b;
}
.bg-overlay.orange {
  background-color: var(--primary-color);
}
.bg-overlay.black {
  background-color: #000;
}
.bg-overlay.green {
  background-color: #d9e7db;
}
.bg-overlay.white {
  background-color: var(--white);
}

.bg-overlay.opacity-20 {
  opacity: 0.2;
}
.bg-overlay.opacity-30 {
  opacity: 0.3;
}
.bg-overlay.opacity-40 {
  opacity: 0.4;
}
.bg-overlay.opacity-50 {
  opacity: 0.5;
}
.bg-overlay.opacity-60 {
  opacity: 0.6;
}
.bg-overlay.opacity-70 {
  opacity: 0.7;
}
.bg-overlay.opacity-80 {
  opacity: 0.8;
}
/* 4.4 Background Colors End */

/*------------------------------------------*/
/*   4.5 Background Images
/*------------------------------------------*/
.bg-scroll {
  width: 100%;
  background-attachment: fixed !important;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.bg-fixed {
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.callout_bg {
  background-image: url(../images/callout_bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
}
.bg-img-6 {
  background-image: url(../images/callout_bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
}
.bg-img-7 {
  background-image: url(../images/breadcrumbs_bg.jpg);
  background-repeat: no-repeat;
  background-position: left center !important;
}
.bg-img-1 {
  background-image: url(../images/bg_1.jpg);
  background-repeat: no-repeat;
  background-position: left center !important;
}
.pattern-green {
  background-image: url(../images/topography-background.png);
  background-repeat: repeat;
  background-color: var(--secondary-color);
  background-size: 210px;
}
.pattern-orange {
  background-image: url(../images/topography-background.png);
  background-repeat: repeat;
  background-color: var(--primary-color);
  background-size: 210px;
}
.map-bg {
  background-image: url(../images/map_bg.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  margin-top: 7rem;
}
/* 4.5 Background Images End */

/*------------------------------------------*/
/*   4.6 Spacing Utilites
/*------------------------------------------*/
.wide-tb-150 {
  padding-top: 150px;
  padding-bottom: 150px;
}
.wide-tb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}
.wide-tb-90 {
  padding-top: 90px;
  padding-bottom: 90px;
}
.wide-tb-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}
.wide-tb-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}
.wide-tb-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}
.wide-tb-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}
.wide-tb-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}
.wide-tb-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}
.wide-tb-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

/*   Spacer For Gap   */
.spacer-70 {
  min-height: 70px;
}
.spacer-60 {
  min-height: 60px;
}
.spacer-50 {
  min-height: 50px;
}
.spacer-40 {
  min-height: 40px;
}
.spacer-30 {
  min-height: 30px;
}
.spacer-20 {
  min-height: 20px;
}
.spacer-10 {
  min-height: 10px;
}


/*------------------------------------------*/
/*   4.8 List Icon Style
/*------------------------------------------*/
.icons-listing li {
  padding: 0 0 20px 30px;
  position: relative;
  font-size: 1rem;
  line-height: 1.3;
}
.icons-listing li:last-child {
  padding-bottom: 0;
}
.icons-listing li::before {
  position: absolute;
  left: 0;
  top: -1px;
  font-size: 1.2rem;
  content: "\eaa0";
  font-family: IcoFont !important;
}
.icons-listing.arrow li::before {
  content: "\f054";
}
.icons-listing.square li::before {
  content: "\effc";
  font-size: 1rem;
  top: 2px;
}
.icons-listing.circle li::before {
  content: "\f111";
}
.icons-listing.theme-orange li::before {
  color: var(--primary-color);
}

.icons-listing.theme-green li::before {
  color: var(--secondary-color);
}

/* 4.8 List Icon Style End */

/*------------------------------------------*/
/*   4.9 Dropcap Style
/*------------------------------------------*/
.dropcap {
  font-size: 32px;
  margin: 0px 15px 0 0;
  color: #303030;
}
.dropcap2 {
  color: var(--white);
  margin-right: 15px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
}
.dropcap,
.dropcap2 {
  float: left;
}
.dropcap,
.dropcap2 {
  font-weight: 700;
}
.dropcap,
.dropcap2 {
  font-size: 32px;
}
/* 4.9 Dropcap Style End */

/*------------------------------------------*/
/*   4.10 Buttons Styles
/*------------------------------------------*/

.btn {
  display: inline-flex;
  justify-content: center;
  padding: 0.719rem 1.9rem;
  font-size: 1rem;
  outline: none;
  align-items: center;
  position: relative;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
  text-transform: capitalize;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0;
  overflow: hidden;
}
.btn:before {
  background-color: rgba(255, 255, 255, 0.15);
  position: absolute;
  top: -4px;
  left: 60%;
  right: 60%;
  bottom: -4px;
  opacity: 0;
  content: "";
  z-index: 1;
  -webkit-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  transition: 0.5s all ease;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.btn:hover::before {
  left: -4px;
  right: -4px;
  opacity: 1;
  -webkit-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
/*.btn svg,
.btn i,
.btn span {
  margin-right: 8px;
}*/

/* 4.10 Buttons Styles End */


/* 5.1 Page Loader Style End */

/*------------------------------------------*/
/*   5.2 Back To Top Style
/*------------------------------------------*/
#mkdf-back-to-top {
  visibility: hidden;
  position: fixed;
  right: 25px;
  bottom: 25px;
  border-radius: 7px;
  margin: 0;
  width: 60px;
  height: 60px;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  z-index: 99;
  color: var(--white);
  text-align: center;
  -webkit-box-shadow: 0px 14px 47px 0px rgba(28, 28, 28, 0.24);
  -moz-box-shadow: 0px 14px 47px 0px rgba(28, 28, 28, 0.24);
  box-shadow: 0px 14px 47px 0px rgba(28, 28, 28, 0.24);
  background-color: rgba(49, 35, 30, 0.9);
  backdrop-filter: blur(10px);
  box-sizing: border-box;
  -webkit-transition:
    opacity 0.2s ease-out,
    visibility 0.2s ease-out,
    color 0.2s ease-out,
    background-color 0.2s ease-out,
    right 0.1s ease-out;
  -moz-transition:
    opacity 0.2s ease-out,
    visibility 0.2s ease-out,
    color 0.2s ease-out,
    background-color 0.2s ease-out,
    right 0.1s ease-out;
  transition:
    opacity 0.2s ease-out,
    visibility 0.2s ease-out,
    color 0.2s ease-out,
    background-color 0.2s ease-out,
    right 0.1s ease-out;
}
#mkdf-back-to-top:hover {
  background-color: rgba(var(--primary-rgb), 0.8);
}
#mkdf-back-to-top.on {
  opacity: 1;
  visibility: visible;
}
#mkdf-back-to-top:hover .mkdf-icon-stack {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px);
}
#mkdf-back-to-top:hover .mkdf-back-to-top-text {
  opacity: 0;
}
.scrollup {
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  text-indent: -9999px;
  background: url("icon_top.png") no-repeat;
  background-color: #000;
}
.scrollup.open {
  display: block;
}
/* 5.2 Back To Top Style End */

/*------------------------------------------*/
/*   5.3 Pagination Style
/*------------------------------------------*/
.pagination .page-item {
  margin-right: 1rem;
}
.pagination .page-item .page-link {
  color: #000;
  height: 45px;
  width: 45px;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  background: var(--white);
  border-color: var(--white);
  box-shadow: none;
  outline: none;
  font-weight: 600;
  border-radius: 4px;
}
.pagination .page-item.disabled {
  opacity: 0.5;
}
.pagination .page-item.active .page-link,
.pagination .page-item .page-link:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}
.page-item:first-child .page-link {
  margin-left: 0;
  border-radius: 4px;
}
/* 5.3 Pagination Style End */

/*------------------------------------------*/
/*   5.4 Map Styles
/*------------------------------------------*/
.map-bg {
  position: relative;
}
.map-shadow {
  border-style: solid;
  border-width: 4px;
  border-color: rgb(255, 255, 255);
  border-radius: 7px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 7px 46px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: -120px;
}
.map-shadow #map-holder {
  height: 350px !important;
}
#map-holder,
#map-holder-contact {
  margin: 0;
  background: var(--white);
  padding: 0;
  height: 400px;
}
#map_extended {
  height: 100%;
  left: 0;
  line-height: inherit;
  position: relative;
  top: 0;
  width: 100%;
}
#map_extended img {
  max-width: inherit;
}
#map_extended .gm-style div {
  font:
    13px/20px "Open Sans",
    "Lucida Sans Unicode",
    "Lucida Grande",
    sans-serif;
}
#map_extended .gmap_marker address {
  width: 300px;
}
#map_extended .gmap_marker address > div {
  width: 100%;
  display: inline-block;
}
#map_extended .gmap_marker address div div {
  float: right;
  width: 70%;
}
#map_extended .gmap_marker address div div:first-child {
  width: 30%;
  float: left;
}
/* 5.4 Map Styles End */

/*------------------------------------------*/
/*   5.5 Footers Styles
/*------------------------------------------*/

/* 5.5 Footers Styles End */
.site-footer {
  font-size: 16px;
  position: relative;
  color: #e2e5f0;
  line-height: 1.714;
  background: var(--primary-color);
  background-size: cover;
    padding-top: 80px;
    background: linear-gradient(rgb(18, 65, 60), 120px, transparent) 0px 0px no-repeat, 
    url(../../assets/images/bg.dpng) right bottom -45px no-repeat rgb(18, 65, 60);
    background-position: 0px 0px, right bottom 150px;
    margin-top: 90px;
/*        background-attachment: fixed;*/
    background-blend-mode: hue;
}
.footer-bg{
  background: url(../../assets/images/footer-bg.png) no-repeat;
  position: absolute;
  background-color: #12413b;
  top: -96px;
  left: 0;
  width: 100%;
  height: 96px;
  background-size: contain;
  background-repeat: repeat-x;
  z-index: 1;
}
.newsletter-wrap {
/*      display: flex;
    justify-content: space-between;
    align-items: center;*/
    margin-bottom:40px;
    border-bottom: 1px solid #ebebec1a;
    padding-bottom:40px;
}
.newsletter-title {
  font-style: normal;
      font-weight: bold;
    font-size: 40px;
}
.newsletter-wrap .form-group{
      width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
}
.newsletter-wrap .form-group input {
  border-radius: 30px;
  padding: 15px 24px;
}
.newsletter-wrap .form-group .btn {
  border-radius: 30px;
    padding: 17px 35px;
    border-color: var(--secondary-color);
}
.footer-payment{
  display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
    gap: 20px;
}
.footer-payment a{
  background: #fff;
    border-radius: 5px;
}
.site-footer .foot-title{
      margin-bottom: 30px;
}
.footer-payment .foot-title,
.footer-payment .foot-title h6 {
  margin-bottom: 0;
}

.site-footer .foot-title h6,
.footer-certificate .foot-title h6 {
    font-weight: 800;
    font-size: 24px;
    color: #fff;
}
.footer-certificate .foot-title h6{
  color: #0d1b2a;
}
.site-footer .foot-title .line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
}
.site-footer .foot-title .line span {
    background-color: var(--secondary-color);
    height: 2px;
    width: 10px;
}
.site-footer .foot-title .line  .large-line {
    width: 50px;
}
.footer-link ul {
  padding-left: 0;
  list-style: none;
}
.footer-link .quick-link li,
.footer-link .contact-link li
{
  margin-bottom: 12px;
}
.footer-link .quick-link a,
.footer-link .contact-link li a  {
    color: #fff;
    font-weight: 500;

}
.footer-link .quick-link a i {
      margin-right: 10px;
}
.footer-link .quick-link li a:hover {
    color: var(--secondary-color);
    -webkit-padding-start: 12px;
    padding-inline-start: 12px;
}
.footer-link .contact-link {
  border-top: 1px solid #ebebec1a;
    padding: 40px 20px;
    margin-top: 40px;
    padding-bottom: 10px;
}
.footer-link .contact-link ul {
  margin-bottom: 0;
}
.footer-link .contact-link li {
    display: flex;
    align-items: center;
    gap: 17px;
    /*opacity: 0.4;*/
    margin-bottom: 0;
}
.footer-link .contact-link li i {
  font-size: 40px;
}
.footer-link .contact-link li a:hover {
  color: var(--secondary-color);
}
.logo-footer {
  max-width: 171px;
  margin-bottom: 25px;
}

.footer-heading {
  font-size: 1.125rem;
  color: var(--white);
  line-height: 1.714;
  margin-bottom: 1.5rem;
  font-weight: 800;
  position: relative;
}
.footer-certificate{
  padding-top: 0px;
}
.footer-certificate ul {
      display: flex;
    list-style: none;
    padding-left: 0;
    align-items: center;
    gap: 40px;
}
.footer-certificate ul li {
  width: 100px;
}
.footer-certificate ul li img {
  height: 92px;
    width:90px;
}
.footer-bottom ul {
  display: flex;
  list-style: none;
  color: #fff;
  padding-left: 0;
}
.footer-bottom .link {
  gap: 30px;
}
.footer-bottom .link li a {
  border-right: 1px solid #000;
  padding-right: 30px;
  font-weight: bold;
}
.footer-bottom .link li:last-child a{
  padding-right: 0;
  border-right: 0;
}
.footer-bottom .row{
  align-items: center;
}
.footer-bottom{
  background: var(--secondary-color);
  padding: 30px 0;
  position: relative;
  z-index: 1;
  border-top-right-radius: 50px;
  margin-top: 30px;
  padding-inline-end: 50px;
  color: #000;
}
.footer-bottom:after {
content: "";
  width: 200%;
  height: 100%;
  height: auto;
  background: var(--secondary-color);
  position: absolute;
  left: -24px;
  height: 100%;
  top: 0;
  z-index: -1;
  inset-inline-end: 100%;
    inset-inline-start: unset;
}
.footer-bottom .social-icons {
  gap: 10px;
  justify-content: end;
  margin-bottom: 0;
}
.footer-bottom .social-icons a {
    width: 46px;
    min-width: 46px;
    height: 46px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 16px;
    background-color: #000;
    color: #fff;
}

footer .social-icons a:hover {
  background: var(--primary-color);
}
.footer-bottom p {
  font-size: 16px;
  font-weight: normal;
}
.copyright-wrap a{
  margin: 0 5px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 16px;
}

.copyright-wrap a:hover {
  color: #fff;
}
.copyright-wrap .row {
  position: relative;
  z-index: 11;
}
.copyright-wrap .copyright-links a {
  color: #faf0e7;
  font-weight: 500;
  display: inline-block;
  margin: 0 3px;
}
.copyright-wrap .copyright-links a:last-of-type {
  margin-right: 0;
}
.copyright-wrap .copyright-links a:first-of-type {
  margin-left: 0;
}
.copyright-wrap .copyright-links a:hover {
  opacity: 0.7;
}

.footer-second {
  background: var(--primary-color);
  overflow: hidden;
}
.footer-second .bg-effect .row {
  position: relative;
}
.footer-second .footer-subscribe h3 {
  color: var(--white);
}
.footer-second .give-us-call {
  position: relative;
  box-shadow: none;
  padding: 0;
  left: 0;
  top: 20px;
  text-align: left;
  padding-left: 40px;
  background: transparent;
}
.footer-second .give-us-call h4 {
  margin-bottom: 0;
  font-size: 1rem;
}
.footer-second .give-us-call h3 {
  font-size: 1.5rem;
}
.footer-second .give-us-call svg {
  color: var(--white);
  opacity: 0.5;
  left: 0;
  width: 35px;
  height: 35px;
  top: 10px;
}
.footer-second .footer-widget-menu ul li a {
  color: var(--white);
}
.footer-second .footer-widget-menu ul li a:hover span,
.footer-second .footer-widget-menu ul li a:hover i {
  color: #27304b;
}

.footer-second .bg-effect:before {
  content: "";
  width: calc(150% - 80px);
  height: calc(100% + 52%);
  position: absolute;
  bottom: -16%;
  right: 63%;
  top: -70px;
  background: var(--white) url(../images/footer_bg_2.jpg) no-repeat right center;
  background-size: contain;
  box-shadow: 0px 4px 59px 0px rgba(0, 0, 0, 0.09);
}

.footer-second #instagram-feed5 a {
  display: inline-flex;
  width: 26%;
  margin: 0 4% 4% 0;
  border-radius: 5px;
  overflow: hidden;
}
.footer-second h3 {
  color: var(--white);
}

.footer-style-3 {
  color: var(--white);
  padding-top: 0;
  margin-top: 5rem;
  padding-bottom: 0;
  background: var(--secondary-color);
}
.footer-style-3 .top-row {
  top: -5rem;
  position: relative;
}
.footer-style-3 .logo-footer {
  margin: 0;
}
.footer-style-3 .copyright-wrap::after {
  background: #27304b;
}
.footer-style-3 .copyright-wrap .copyright-text a {
  color: var(--primary-color);
}
.footer-style-3 .footer-heading {
  color: var(--primary-color);
}
.footer-style-3 .popular-post ul li small {
  color: #000;
}
.footer-style-3 .popular-post ul li h6 a {
  color: #fdf3ea;
}
.footer-style-3 .popular-post ul li h6 a:hover {
  color: #d9e7db;
}
.footer-style-3 .footer-widget-menu ul li a * {
  color: var(--white);
}
.footer-style-3 .footer-widget-menu ul li a:hover span,
.footer-style-3 .footer-widget-menu ul li a:hover i {
  color: #d9e7db;
}

.footer-subscribe-white {
  border-radius: 20px;
  background-color: #d9e7db;
  box-shadow: 0px 0px 128px 0px rgba(0, 0, 0, 0.15);
  padding: 2.5rem;
}
.footer-subscribe-white h2 {
  color: #27304b;
  position: relative;
  padding: 0 0 10px 50px;
  font-size: 1.25rem;
}
.footer-subscribe-white .form-control {
  background: var(--white);
  position: relative;
  z-index: 7;
}
.footer-subscribe-white h2 svg {
  position: absolute;
  left: -18px;
  top: -13px;
  color: var(--secondary-color);
  width: 60px;
  height: 60px;
  opacity: 0.2;
  z-index: 1;
}
.footer-style-3 .give-us-call {
  position: relative;
  top: 20px;
  background: transparent;
  box-shadow: none;
  text-align: left;
  padding: 0 0 0 50px;
  right: auto;
  left: 0;
}
.footer-style-3 .give-us-call svg {
  width: 40px;
  height: 40px;
  left: 0;
  top: 5px;
  color: var(--white);
  opacity: 1;
}
.footer-style-3 .give-us-call h4 {
  color: var(--primary-color);
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1rem;
}

.footer-style-3 .give-us-call h3 {
  color: var(--white);
  font-size: 1.5rem;
}

.footer-style-3 .social-icons a {
  border: 1px solid var(--white);
  padding: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-style-3 .social-icons a:hover {
  background: var(--white);
  color: var(--primary-color);
}
.footer-style-3 .social-icons li:not(:last-child) a {
  margin-right: 15px;
}
/*------------------------------------------*/
/*   5.6 Footers Widgets Styles
/*------------------------------------------*/
.footer-widget-menu {
  font-size: 0.975rem;
  font-weight: 400;
}
.footer-widget-menu ul {
  margin: 0;
}
.footer-widget-menu ul li:not(:last-child) {
  padding: 0px 0 1rem 0;
}
.footer-widget-menu ul li * {
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;

  color: var(--white);
  font-weight: 600;
  text-decoration: none !important;
}
.footer-widget-menu ul li a span {
  text-decoration: underline;
}
.footer-widget-menu ul li a i {
  padding: 0;
  color: var(--white);
  text-decoration: none !important;
}
.footer-widget-menu ul li a:hover i {
  padding: 0 0 0 10px;
}

.footer-widget-menu ul li a:hover i,
.footer-widget-menu ul li a:hover span {
  color: var(--primary-color);
}
.footer-widget-contact ul li {
  color: var(--white);
  display: flex;
  margin-bottom: 1rem;
}
.footer-widget-contact svg {
  font-size: 24px;
  margin-right: 20px;
}
.footer-widget-contact a {
  color: var(--primary-color);
  font-weight: 400;
}
.footer-widget-contact a:hover {
  color: var(--white);
}
.footer-widget-tweet i {
  color: #99a0a3;
  margin-right: 18px;
}
.footer-widget-tweet .btn-theme {
  background: #1c95de;
  font-size: 13px;
  margin-top: 30px;
}
.footer-widget-tweet .btn-theme i {
  margin: 0;
  color: var(--white);
}
/* 5.6 Footers Widgets Styles End */

/*------------------------------------------*/
/*   5.7 Partners Logos Styles
/*------------------------------------------*/
#home-clients .owl-dots {
  margin-top: 1.5rem;
}
.owl-carousel .owl-item .clients-logo img {
  display: inline-block;
  width: auto;
}
.clients-logo {
  background: var(--white);
  border-radius: 7px;
  padding: 1rem;
  text-align: center;
}
.clients-logo img {
  opacity: 0.7;
  cursor: pointer;

  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
.clients-logo:hover img {
  opacity: 1;
}

.clients-rounded-wrap {
  margin-bottom: 8rem;
}
.clients-rounded {
  border-radius: 40px;
  background-color: var(--white);
  box-shadow: 0px 0px 16px 0px rgba(39, 48, 75, 0.14);
  max-width: 1230px;
  margin: -2rem auto 0;
  padding: 3rem 0;
  position: relative;
  bottom: -6rem;
}
.footer-second .photo-thumbs {
  margin-top: 1.375rem;
}
.photo-thumbs {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.photo-thumbs li {
  list-style: none;
  float: left;
  margin: 0 8px 8px 0;
  padding: 0px;
  background: var(--white);
  width: 75px;
}
.photo-thumbs li img {
  display: block;
}
.photo-thumbs li a img {
  border: none;
}
/* 5.7 Partners Logos Styles End */

/*------------------------------------------*/
/*   blog
/*------------------------------------------*/
.charity-section .image-wrap {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}
.charity-section .image-wrap .img-block:last-child {
      width: 230px;
}
.charity-section .image-wrap .img-block img {
  border-radius: 12px;
  object-fit: cover;
}
/*------------------------------------------*/
/*   packg theme Styles
/*------------------------------------------*/
.themepkg-section  {
  padding-bottom: 4rem !important;
}
.themepkg-section .owl-item:nth-child(even){
  margin-top: 30px;
}
.themepkg-section .package-wrap{
  position: relative;
  z-index: 1;
}
.themepkg-section .package-wrap:after {
  content: "";
  background-color: #000000b3;
  border-radius: 5px;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 1;
  opacity: 0;
   transition: all ease-in-out .5s;
}
.themepkg-section .package-wrap .img-wrap{
  height: 400px;
}
.themepkg-section .package-wrap img {
  border-radius: 5px;
  object-fit: cover;
  height: 100%;
}
.themepkg-section .package-wrap .heading {
      position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 11;
    transition: all ease-in-out .5s;
}
.themepkg-section .package-wrap .heading a {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04))drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1));
  display: block;
}
.themepkg-section .package-wrap .heading span {
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  opacity: 0;
}
.themepkg-section .package-wrap:hover:after{
  opacity: 1;
   transition: all ease-in-out .5s;
}
.themepkg-section .package-wrap:hover .heading {
  transform: translate(0%, 50%);
  bottom: 50%;
  transition: all ease-in-out .5s;
}
.themepkg-section .package-wrap:hover .heading span {
  opacity: 1;
}
/*------------------------------------------*/
/*   upcomming trip Styles
/*------------------------------------------*/
.upcomming-section {
  background: #12413c;
  position: relative;
  margin: 70px 0;
}
.background-image-botom,
.background-image-top{
  background: url(../../assets/images/footer-bg.png) no-repeat;
  position: absolute;
  background-color: #12413b;
  left: 0;
  width: 100%;
  height: 96px;
  background-size: contain;
  background-repeat: repeat-x;
  z-index: 1;
}
.background-image-top{
top: -90px;
}
.background-image-botom{
  bottom: -90px;
    transform: rotate(-180deg);
}
.info-wrapper h2.title{
  font-weight: bold;
    color: #0d1b2a;
    font-size: 30px;
    margin-bottom: 15px;
}
.upcomming-section .common-title .title,
.upcomming-section .common-title span,
.upcomming-section .common-title i,
.upcomming-section .common-title .icon-wrap span{
  color: #fff;
}
.upcomming-section .common-title .icon-wrap span{
  background: #fff;
}
.upcomming-tab .nav-pills{
  gap: 10px;
}
.upcomming-tab .nav-pills .nav-link{
  background: #ede8e6;
  color: #000;
  padding: 6px 15px;
    font-size: 14px;
}
.upcomming-tab .nav-pills .nav-link.active,
.upcomming-tab .nav-pills .show>.nav-link{
background: var(--primary-color);
color: #fff;
}
.custom-table {
      text-align: center;
    font-size: 14px;
}
.custom-table th {
  background: #12413c;
  color: #bdac9f;
padding: 20px;
border-color: rgba(237,232,230,.25);
}
.upcomming-tab .custom-table td{
  border-bottom: 1px solid rgba(237,232,230,.25);
  background: #12413c;
  color: #ede8e6;
  padding: 20px;
  vertical-align: middle;
}
/*.upcomming-tab .custom-table tr:last-child td{
  border-bottom: none;
}*/
.upcomming-tab .custom-table td span {
      display: block;
    font-size: 14px;
    color: #a2e1b1;
}
.upcomming-tab .custom-table td strong {
  margin-right: 10px;
  color: #a2e1b1;
}

.upcomming-tab .custom-table td .badge {
  display: inline-block;
  font-size: 9px;
  background: #e2e2e2 !important;
  color: #000;
}
.upcomming-tab .btn-1{
  border-color: var(--secondary-color);
}
/*------------------------------------------*/
/*   package Styles
/*------------------------------------------*/

.package-section .package-wrap .img-wrap{
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  position: relative;
}
.package-section .package-wrap .img-wrap img{
  transform: scale(1.1);
  transition: all ease-in-out .4s;
  border-radius: 8px 8px 0 0;
  height: 250px;
  width: 100%;
  object-fit: cover;
}
.package-section .package-wrap .img-wrap .top-overlay{
      position: absolute;
    bottom: 0;
    background: #fff;
    padding: 4px 10px;
    border-radius: 4px 4px 0 0;
    right: 30px;
    border-bottom: 1px solid oklch(92.8% .006 264.531);
}
.package-section .package-wrap .content-wrap{
      background: #fff;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 15%);
    padding: 20px;
    border-radius: 0 0 8px 8px;
    margin-bottom: 20px;
}
.package-section .package-wrap .badge {
  background: var(--primary-color) !important;
  color: #fff !important;
}
.package-section .package-wrap .heading {
      margin: 17px 0;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
/*    display: flex;*/
    align-items: center;
    justify-content: space-between;
}
.package-section .package-wrap .heading .title{
  display: inline;
    font-size: 20px;
    /* color: #6f6f6f; */
    font-weight: bold;
    font-style: normal;
}
.package-section .package-wrap .trip-fact {
padding-left: 0;
}
.package-section .package-wrap .trip-fact li {
    align-items: center;
    display: inline-flex;
    margin-bottom: 15px;
    text-align: left;
    width: calc(50% - 15px);
    white-space: normal;
    gap: 10px;
    font-size: 14px;
}
.package-section .package-wrap .trip-fact li:nth-child(odd) {
    border-right: 1px solid #ddd;
    margin-right: 5px;
}
.package-section .package-wrap .trip-fact li i {
  color: var(--secondary-color);
}
.package-section .package-wrap .trip-fact li span {
  color: var(--primary-color);
  font-weight: bold;
}
.package-section .package-wrap:hover .img-wrap img{
transform: scale(1);
transition: all ease-in-out .4s;
}
.package-section .package-wrap:hover .heading .title {
  color: var(--primary-color);
}
.popular-section{
  background:  url(../images/destination/trek-valle-de-katmandou.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}
.popular-section:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  top: 0;
  background: rgb(0 0 0 / 43%);
  z-index: -1;
}
.popular-section .common-title span,
.popular-section .common-title i,
.popular-section .common-title .title,
.popular-section .btn-outline-dark{
  color: #fff;
}
.popular-section .common-title .icon-wrap span{
  background: #fff;
}
.popular-section .btn-outline-dark{
  border-color: #fff;
}
/*------------------------------------------*/
/*   5.8 Client Testimonials Styles
/*------------------------------------------*/
/*.home-blog-post-wrap{
  background-color: #fff;
}*/
.testimonial-section .review-btn {
  max-width: 240px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border: 2px solid rgba(0, 69, 64, 0.1);
    border-radius: 20px;
}
.testimonial-section .review-btn img {
    width: 44px;
    height: 44px;
}
.testimonial-section  .review-btn span{
      color: var(--primary-color);
    font-weight: 500;
    line-height: 24px;
}
.testimonial-section  .review-btn:hover,
.testimonial-section  .review-btn:hover span{
  color: var(--secondary-color);
}
.testimonial-wrapper {
    position: relative;
    overflow: hidden; 
    padding: 20px 0; 
}
.testi-carousel .owl-stage-outer{
      overflow: visible !important;
    padding: 20px 0;
}

.testi-carousel .owl-item {
  transition: all 0.4s ease-in-out;
    transform: scale(0.8); 
    opacity: 0.5;
    z-index: 1;
}
.testi-carousel .owl-item  .item {
 width: 105%;
}
.testi-carousel .owl-item .item ,
.testi-carousel .owl-item:not(.center) .item{
  border-radius: 20px;
}
.testi-carousel .owl-item.center {
   transform: scale(0.9); 
    opacity: 1;
    z-index: 99 
}

.testimonial-card {
    background: #003d33; 
    padding: 23px;
    display: flex;
    align-items: center;
    gap: 30px;
    color: #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border-radius: 20px;
}


.testi-carousel .owl-item:not(.center) .testimonial-card {
    background: #a6b7b5 !important;
    box-shadow: none;
    border-radius: 20px;
}
@media (max-width: 767px) {
    .testimonial-card {
        flex-direction: column;
        text-align: center;
    }
    .testi-carousel .owl-stage-outer {
        padding: 0; 
    }
}
.testimonial-card .thumb {
    width: 250px;
    position: relative;
    height: 300px;
}
.testimonial-card .thumb img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    border-radius: 12px;
}
.testimonial-card .card-content {
    flex: 1;
    color: #fff;
}
.testimonial-card .card-content .rating {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 4px 11px #004540, inset -1px -4px 23.1px rgba(0, 24, 25, 0.28);
    backdrop-filter: blur(23.9px);
    border-radius: 53px;
    margin-bottom: 20px;
}
.testimonial-card .card-content .rating p {
    margin-bottom: 0;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}
.testimonial-card .card-content .rating i {
    font-size: 12px;
    line-height: 20px;
    color:  #ffe175;;
}
.testimonial-card .card-content .rating span {
    color:  #ffe175;
    font-weight: 500;
    line-height: 20px;
}
.testimonial-card .video-thumb .video-play-btn{
      width: 60px;
    height: 60px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    color: #fff;
}

.testimonial-card .card-content .member-name h5{
      margin-bottom: 0;
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
}
.testimonial-card .card-content .member-name span {
    font-size: 14px;
    font-weight: 200;
    color: #f5f5f5;
    margin-bottom: 0;
}
  .testimonial-section .content .btn-wrap{
      display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
  }

.client-testimonial {
  padding: 0 2rem;
  background-color: rgb(255, 255, 255);
  border-radius: 7px 7px 0 7px;
  color: #434b56;
  margin-bottom: 50px;
}
.client-testimonial-icon {
  margin-top: 20px;
  display: flex;
  align-items: center;
}
.client-testimonial-icon .text {
  margin-bottom: -32px;
  font-family: var(--font-heading);
}
.client-testimonial-icon .name {
  color: #27304b;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 15px 0 0 0;
}
.client-testimonial-icon .post {
  display: block;
  font-weight: 500;
  color: var(--secondary-color);
  font-size: 0.875rem;
}
.owl-carousel .owl-item .client-testimonial-icon img {
  width: 75px !important;
  overflow: hidden;
  margin-right: 20px;
  position: relative;
  height: 75px;
  border-style: solid;
  border-width: 3px;
  border-color: rgb(255, 255, 255);
  background-color: rgb(255, 255, 255);
  border-radius: 7px;
  margin-bottom: -25px;
  box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 10%);
  object-fit: cover;
}
.client-testimonial i {
  color: #d9e7db;
  font-size: 3rem;
  top: -10px;
  position: relative;
}

#home-client-testimonials .owl-stage {
  display: flex;
}
#home-client-testimonials .owl-stage .owl-item {
  display: flex;
  flex-direction: column;
  height: auto;
}
#home-client-testimonials .owl-stage .item {
  height: 100%;
}
#home-client-testimonials .owl-stage .item .client-testimonial {
  height: calc(100% - 50px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.client-testimonial.dark {
  background: #e9eaed;
}
.client-testimonial.dark i {
  color: var(--white);
}
.home-second-testimonials-wrap {
  position: relative;
}
.home-second-testimonials-wrap::after {
  position: absolute;
  bottom: 0;
  z-index: 1;
  background: #f8f4f3;
  height: 150px;
  content: "";
  width: 100%;
  left: 0;
  z-index: 1;
}
.home-second-testimonials-wrap #home-second-testimonials {
  position: relative;
  z-index: 3;
}
.home-welcome {
  margin-top: -90px;
}
.client-testimonial-alternate {
  background: var(--white);
  text-align: center;
  margin-bottom: 70px;
  border-radius: 20px;
  padding: 4rem;
  box-shadow: 0px 0px 57px 0px rgba(0, 0, 0, 0.1);
}
.client-testimonial-alternate .client-testimonial-icon {
  flex-direction: column;
}
.client-testimonial-alternate .client-testimonial-icon .text {
  margin-bottom: 0;
}
.client-testimonial-alternate .client-inner-content {
  font-family: var(--font-heading);
  font-style: italic;
  position: relative;
  padding-bottom: 1.2rem;
  font-size: 1.6rem;
  color: #27304b;
  font-weight: 400;
  line-height: 1.5;
}
.client-testimonial-alternate .client-inner-content i {
  position: absolute;
  width: 100%;
  font-size: 7rem;
  top: -20px;
  opacity: 0.05;
  text-align: center;
  left: 0;
}
.client-testimonial-alternate .client-testimonial-icon .name {
  color: var(--primary-color);
}
.owl-carousel
  .owl-item
  .client-testimonial-alternate
  .client-testimonial-icon
  img {
  margin: 0;
}
/* 5.8 Client Testimonials Styles End */

/*------------------------------------------*/
/*   6. Forms Elements
/*------------------------------------------*/

/*------------------------------------------*/
/*   6.1  Default Style
/*------------------------------------------*/
.input-group-text {
  border-radius: 50px;
  background: #fff;
  color: #fec101;
  border: none;
}
.input-group-text.link{
      background: #fdbf02;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 230px;
    border-radius: 50px !important;
    position: relative;
    margin-left: -50px !important;
    z-index: 9;
}

.input-group-text.link a {
  display: flex;
  gap: 15px;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1;
}
.input-group-text i {
  font-size: 26px;
}
.input-group-text.link:hover {
  background: #2b5f37;
}
.input-group-text.link:hover a {
  color: #fff;
}
.cl-search-trip {
    border-radius: 35px;
    width: 750px;
    box-shadow: 0 10px 15px 8px rgb(0 0 0 / 28%);
}
.cl-search-trip input {
  border: none;
  padding: 30px 30px 30px 16px;
    border-radius: 0 35px 35px 0;
}
.cl-search-trip input:focus {
  border: none
}
.travel-section-text .nav-quick-link{
    display: flex;
    gap: 15px;
    padding-left: 0;
    margin-top: 25px;
    justify-content: center;
}
.travel-section-text .nav-quick-link li {
  display: inline-block;
  list-style-type: none;
  margin-top: 30px;
}
.travel-section-text .nav-quick-link li a {
  background: var(--secondary-color);
  border-radius: 100px;
  color: #FFF;
  font-size: 14px;
  padding: 6px 15px;
  position: relative;
  overflow: hidden;
}
.travel-section-text .nav-quick-link li:nth-child(even) a{
  background: var(--primary-color);
}
.travel-section-text .nav-quick-link li a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s ease-in-out;
 background: var(--primary-color);
  border-radius: 50px;
  height: 100%;
  width: 0;
  visibility: hidden;
  z-index: 1;
}
.travel-section-text .nav-quick-link li a span {
  position: relative;
  z-index: 9;
}
.travel-section-text .nav-quick-link li a:hover::after {
  visibility: visible;
  width: 102%;
  opacity: 0.7;
}
.travel-section-text .nav-quick-link li:nth-child(even) a:hover::after{
  background: var(--secondary-color);
}
.form-control {
  border: none;
  box-shadow: none;
  font-size: 1rem;
  border: 1px solid #c5bdb2;
  outline: none;
  color: #5b5b5b;
  background-color: var(--white);
  height: auto;
  appearance: auto;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  box-shadow: 0px 0px 147px 0px rgba(0, 0, 0, 0.07);

  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
::placeholder {
  font-family: "DM Sans", sans-serif !important;
}

.form-control::placeholder {
  font-family: "DM Sans", sans-serif !important;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  font-family: "DM Sans", sans-serif !important;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  font-family: "DM Sans", sans-serif !important;
}
.form-control:focus {
  border: 1px solid #e9e1dc;
  background: var(--white);
  box-shadow: none;
}
.form-control:disabled,
.form-control[readonly] {
  opacity: 0.6;
}

::-webkit-input-placeholder {
  /* Edge */
  color: #5b5b5b;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #5b5b5b;
}

::placeholder {
  color: #5b5b5b;
}
.custom-control-label {
  position: relative;
  cursor: pointer;
  margin-bottom: 0;
  vertical-align: top;
  padding: 4px 0 0 5px;
  font-weight: 500;
}
.custom-control-input {
  cursor: pointer;
  width: 20px;
  top: 4px;
}
.custom-control-input {
  cursor: pointer;
}
.custom-checkbox .custom-control-label::before {
  border-radius: 5px;
  width: 20px;
  height: 20px;
  background-color: var(--white);
}
.custom-radio .custom-control-label::before {
  width: 20px;
  height: 20px;
  -webkit-transition: all 100ms ease-in-out;
  -moz-transition: all 100ms ease-in-out;
  -o-transition: all 100ms ease-in-out;
  -ms-transition: all 100ms ease-in-out;
  transition: all 100ms ease-in-out;
  border-color: #d4d6db;
  background: var(--white);
  border-width: 2px;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
  background-color: var(--white);
  -webkit-transition: all 100ms ease-in-out;
  -moz-transition: all 100ms ease-in-out;
  -o-transition: all 100ms ease-in-out;
  -ms-transition: all 100ms ease-in-out;
  transition: all 100ms ease-in-out;
}
.custom-control-label::before {
  border-color: #d4d6db;
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #d4d6db;
}

.custom-radio
  .custom-control-input:focus:not(:checked)
  ~ .custom-control-label::before {
  border-color: #d4d6db;
  background-color: var(--white);
  border-width: 2px;
}
.custom-radio .custom-control-label::after {
  display: none;
}
.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: none;
}
.custom-control-input:checked ~ .custom-control-label::before,
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: var(--white);
  border-color: var(--primary-color);
  background-color: var(--primary-color);
  border-width: 4px;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: none;
  content: "\eed8";
  color: var(--white);
  padding: 0px 0 0 1px;
  font-size: 1.2rem;
  margin: -5px 0 0 0;
  font-family: IcoFont !important;
}
.custom-control-input:disabled ~ .custom-control-label,
.custom-control-input[disabled] ~ .custom-control-label {
  color: #6c757d;
  opacity: 0.5;
}

.form-check-input {
  width: 1.125rem;
  height: 1.125rem;
  background: var(--white);
  border: none;
  cursor: pointer;
  transition: all 400ms ease-in-out 0s;
}
.form-check-input:checked {
  transition: all 400ms ease-in-out 0s;
}
.form-check-inline {
  display: inline-flex;
  align-items: center;
}
.form-check .form-check-label {
  padding-top: 0.18rem;
  margin-left: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--label-color);
}
.form-check-input:focus {
  box-shadow: none;
  outline: none;
  border: none;
}
.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.form-check-input:checked[type="checkbox"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type="radio"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2.8' fill='%23fff'/%3e%3c/svg%3e");
}
/* 6.1  Default Style End */

/*------------------------------------------*/
/*   6.2  Form Light
/*------------------------------------------*/
.form-light.form-control {
  font-size: 0.9375rem;
  outline: none;
  color: #131313;
  background-color: var(--white);
  height: auto;
  padding: 0.8rem 1rem;
  border-radius: 5px;
  box-shadow: none;
  border: none;
}
.form-light.form-control:disabled,
.form-light.form-control[readonly] {
  opacity: 0.6;
}

.form-light::-webkit-input-placeholder {
  /* Edge */
  color: #5b5b5b;
}

.form-light:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #5b5b5b;
}

.form-light::placeholder {
  color: #5b5b5b;
}
.form-light .custom-control {
  color: #5b5b5b;
}
.form-light.custom-checkbox .custom-control-label::before,
.form-light.custom-checkbox .custom-control-label::after {
  border-radius: 5px;
  width: 20px;
  height: 20px;
}
.form-light.custom-radio .custom-control-label::before {
  width: 20px;
  height: 20px;
}
.form-light .custom-control-label::before {
  border-color: #d4d6db;
  background: #d4d6db;
}
.form-light .custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: none;
}
.form-light
  .custom-control-input:focus:not(:checked)
  ~ .custom-control-label::before {
  border-color: #d4d6db;
}
.form-light .custom-control-input:checked ~ .custom-control-label::before,
.form-light
  .custom-control-input:not(:disabled):active
  ~ .custom-control-label::before {
  color: var(--white);
  border-color: var(--primary-color);
  background-color: var(--primary-color);
  border-width: 4px;
}

.form-light
  .custom-checkbox
  .custom-control-input:checked
  ~ .custom-control-label::after {
  background-image: none;
  content: "\f00c";
  font-family: "FontAwesome";
  color: var(--white);
  padding: 2px 0 0 5px;
  font-size: 0.9rem;
  font-weight: 900;
}
/* 6.2  Form Light End */

/*------------------------------------------*/
/*   6.3  Select Dropdown
/*------------------------------------------*/
.theme-combo,
.theme-combo {
  width: 100%;
}
.select2-container {
  z-index: 99;
}
/* Default Theme */
.select2-container.select2-container .select2-selection--single {
  padding: 0.8rem;
  height: auto;
  border-radius: 5px;
  background: #e9eaed;
  z-index: 3;
  position: relative;
}
.select2-container.select2-container--open .select2-selection--single {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom: 0;
  background-color: #e9eaed;
}
.select2-container.select2-container .select2-selection--single:focus {
  /* box-shadow: none; */
  outline: none;
}
.select2-container .select2-selection--single .select2-selection__arrow {
  height: 100%;
  position: absolute;
  top: 1px;
  right: 10px;
  width: 30px;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
.select2-container.select2-container--open
  .select2-selection--single
  .select2-selection__arrow {
  transform: rotate(180deg);
}
.select2-container .select2-selection--single .select2-selection__arrow::after {
  position: absolute;
  font-size: 0.87rem;
  font-style: normal;
  left: 50%;
  top: 50%;
  color: #acacac;
  font-weight: 900;
  height: 100%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  font-family: "IcoFont" !important;
  content: "\ea99";
}

.select2-container .select2-dropdown {
  border: none;
  z-index: 9999;
}
.select2-container .select2-dropdown li {
  border-bottom: 1px solid var(--white);
  font-size: 0.875rem;
  color: #5b5b5b;
  padding: 0.8rem 1.3rem;
}
.select2-container .select2-dropdown li:hover {
  background-color: var(--white);
  color: #0a0a0a;
}

.select2-container .select2-dropdown ul {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  background-color: #e9eaed;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: -1px;
  border-top: 1px solid var(--white);
}
.select2-container .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-container .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
/* Default Theme */
/* Light Theme */
.select2-container--form-light.select2-container .select2-selection--single {
  padding: 0.58rem;
  height: auto;
  box-shadow: 0px 0px 147px 0px rgba(0, 0, 0, 0.07);
  border-radius: 5px;
  background: var(--white);
  z-index: 3;
  position: relative;
  border: none;
}
.select2-container--form-light.select2-container--open
  .select2-selection--single {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom: 0;
  background-color: var(--white);
}
.select2-container--form-light.select2-container
  .select2-selection--single:focus {
  /* box-shadow: none; */
  outline: none;
}
.select2-container--form-light
  .select2-selection--single
  .select2-selection__arrow {
  height: 100%;
  position: absolute;
  top: 1px;
  right: 10px;
  width: 30px;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
.select2-container--form-light.select2-container--open
  .select2-selection--single
  .select2-selection__arrow {
  transform: rotate(180deg);
}
.select2-container--form-light
  .select2-selection--single
  .select2-selection__arrow::after {
  position: absolute;
  font-size: 0.87rem;
  font-style: normal;
  font-family: IcoFont !important;
  content: "\ea99";
  left: 50%;
  top: 50%;
  color: #005b5c;
  font-weight: 900;
  height: 100%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
}

.select2-container--form-light .select2-dropdown {
  border: none;
  z-index: 9999;
}
.select2-container--form-light .select2-dropdown li {
  border-top: 1px solid #eeeeee;
  font-size: 0.875rem;
  color: #5b5b5b;
  padding: 0.8rem 1.3rem;
}
.select2-container--form-light .select2-dropdown li:hover {
  background-color: #f6f6f6;
  color: #0a0a0a;
}
.select2-container--form-light .select2-dropdown ul {
  box-shadow: 0px 0px 147px 0px rgba(0, 0, 0, 0.07);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  background: var(--white);
}
.select2-container--form-light
  .select2-selection--single
  .select2-selection__arrow
  b {
  display: none;
}

.select2-container--form-light .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
/* Light Theme */
/* 6.3  Select Dropdown End */

/*------------------------------------------*/
/*   7. home-gallery-section Styles
/*------------------------------------------*/
.home-gallery-section{
  padding-bottom: 620 !important;
}

.home-gallery-section .content-wrapper {
  position: relative;
}
.home-gallery-section ul {
  padding-left: 0;
  list-style: none;
}
.home-gallery-section ul img {
  position: absolute;
  border-radius: 5px;
  border: 10px solid #fff;
  width: 500px;
  object-fit: cover;
}
.home-gallery-section li:nth-child(1) img{
      left: 38%;
    top: 15%;
    width: 550px;
    z-index: 1;
    object-fit: cover;
    height: 320px;
}
.home-gallery-section li:nth-child(2) img{
 right: 0;
/*    width: 450px;*/
    z-index: 2;
}
.home-gallery-section li:nth-child(3) img{
     left: 28%;
    z-index: 1;
    top: 220%;
    width: 600px;
    height: 330px;

}
.home-gallery-section li:nth-child(4) img{
    margin-top: 25px;
}
/*------------------------------------------*/
/*   7.1 Accordian Style
/*------------------------------------------*/
.faq-section .theme-collapse .toggle{
      display: flex;
    align-items: center;
    border-top: 1px solid #dddd;
}
.faq-section .theme-collapse .toggle .icon{
      margin-left: auto;
    transform: rotate(-45deg);
    font-weight: normal;
}
.theme-accordian .panel-group .panel {
  border-radius: 0;
  border: none;
  box-shadow: none;
}
.theme-accordian .panel-default > .panel-heading {
  background-color: #f07039;
  border-radius: 0;
  padding: 0;
}
.theme-accordian .panel-heading {
  background: #47bdcc;
  padding: 0;
  border-radius: 3px;
}
.theme-accordian .panel-title > a {
  padding: 12px 15px;
  outline: 0;
  display: block;
  color: var(--white);
  text-transform: capitalize;
  outline: none;
  position: relative;
}
.theme-accordian .panel-title > a i {
  margin-right: 8px;
}
.theme-accordian .panel-body,
.theme-accordian-rounded .panel-body {
  padding: 0 0 20px 0;
  font-size: 0.827rem;
}
.panel {
  padding: 0 0 0 20px;
}
.panel,
.panel-group .panel-heading + .panel-collapse > .list-group,
.panel-group .panel-heading + .panel-collapse > .panel-body {
  background: none;
  border: none;
  box-shadow: none;
}
.theme-accordian.white {
  background: none;
}
.theme-accordian.white .panel-heading {
  background: var(--white);
}
.theme-accordian.white .panel-title > a {
  color: #343434;
}
.theme-accordian.white .panel-title > a i {
  color: #47bdcc;
}
.theme-accordian-rounded .panel-title > a i {
  text-align: center;
  margin-right: 12px;
  color: #ff3514;
  font-size: 0.875rem;
  position: absolute;
  left: -26px;
  top: 2px;

  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
}
.theme-accordian-rounded .panel-heading {
  padding: 0 0 5px 0;
}
.panel-title {
  font-size: 1rem;
  position: relative;
}
.theme-collapse {
  padding: 0;
}
.theme-collapse.light .toggle.arrow-down,
.theme-collapse.light .toggle {
  color: #fdf3ea;
}
.theme-collapse .toggle {
  color: #27304b;
  font-size: 16px;
  padding: 20px 0 20px 0px;
  text-transform: capitalize;
  position: relative;
  cursor: pointer;
  font-weight: 600;
  line-height: 1;
  gap: 15px;
  font-family: var(--font-heading);
  transition: all 400ms ease-in-out;
}
.theme-collapse .toggle .num {
  font-size: 0.875rem;
  width: 30px;
  height: 30px;
  border-radius: 100px;
  background: #d8d8d8;
  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 400ms ease-in-out;
}

.theme-collapse .toggle:hover {
  color: var(--primary-color);
}
.theme-collapse .toggle:hover .num,
.theme-collapse .toggle.arrow-down .num {
  background: var(--primary-color);
  color: #fff;
}
.theme-collapse .toggle.arrow-down{
  color: var(--primary-color);
}

.theme-collapse .toggle.arrow-down .icofont-plus:before {
  content: "\ef9a";
}

/* .theme-collapse .toggle.arrow-down .icon i{
    transform: rotate(180deg);
} */
.theme-collapse .content {
  padding: 0 0 15px 0;
  position: relative;
}
.theme-collapse a {
  display: block;
  font-size: 14px;
  color: #7b7b7b;
  text-transform: capitalize;
  margin-bottom: 7px;
}
.theme-collapse a:hover {
  color: #24547f;
}
.theme-collapse a:last-child {
  margin: 0;
}
/* Right Icon With Border */
.arrow-right-border.theme-collapse {
  padding: 0;
}
.arrow-right-border.theme-collapse .toggle i {
  left: auto;
  right: 0;
}
.arrow-right-border.theme-collapse .toggle {
  border-bottom: 1px solid #dddddd;
  margin-bottom: 15px;
  padding-right: 20px;
}
/* Right Icon With Border */
/* Accordian Style Capsules */
.capsules.theme-collapse {
  padding: 0;
}
.capsules.theme-collapse .toggle {
  background: #ff3514;
  margin-bottom: 15px;
  padding: 10px 10px 10px 40px;
  color: var(--white);
  font-size: 0.875rem;

  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}
.capsules.theme-collapse .toggle i {
  left: 15px;
  color: var(--white);
  transform: translateY(-50%) rotate(0deg);
  top: 50%;
}
.capsules.theme-collapse .toggle.arrow-down {
  background: #2f3985;
}
.capsules.theme-collapse .toggle i {
  left: 15px;
  color: var(--white);
  transform: translateY(-50%) rotate(0deg);
  top: 50%;
}

.capsules.theme-collapse .toggle.arrow-down i {
  transform: translateY(-50%) rotate(180deg);
}

.capsules.theme-collapse .content {
  padding: 0 20px 15px 25px;
}
/* 7.1 Accordian Style End */

/*------------------------------------------*/
/*   7.2 Tabbing Style
/*------------------------------------------*/
.light.theme-tabbing.nav-pills .nav-link {
  background: var(--secondary-color);
}
.theme-tabbing.nav-pills .nav-link {
  border-radius: 7px;
  background: var(--secondary-color);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  margin-right: 15px;
  font-size: 1rem;
  font-weight: 400;
  position: relative;
}
.theme-tabbing.nav-pills .nav-link.active,
.theme-tabbing.nav-pills .nav-link:hover {
  background: var(--primary-color);
  color: var(--white);
}
.theme-tabbing.nav-pills .nav-link i {
  padding-right: 6px;
}
.tab-content.theme-tabbing .tab-pane {
  padding-top: 1.25rem !important;
}
/* 7.2 Tabbing Style End */

/*------------------------------------------*/
/*   7.3 Animated Bars Style
/*------------------------------------------*/
.skillbar-wrap {
  padding: 0 0 20px 0;
  color: #7d7d7d;
  font-weight: 500;
}
.skillbar-wrap .clearfix {
  margin-bottom: 10px;
  font-weight: 400;
  color: #707070;
}
.skillbar-percent {
  position: absolute;
  padding: 2px 0;
  font-size: 0.8125rem;
  top: -35px;
  font-weight: 400;
  right: 0;
  color: var(--primary-color);
}
.skillbar {
  position: relative;
  display: block;
  width: 100%;
  background-color: #dee1e6;
  height: 4px;
  border-radius: 2px;
  -webkit-transition: 0.4s linear;
  -moz-transition: 0.4s linear;
  -ms-transition: 0.4s linear;
  -o-transition: 0.4s linear;
  transition: 0.4s linear;
}
.skillbar-bar {
  height: 4px;
  border-radius: 2px;
  width: 0px;
  background: var(--secondary-color);
  margin: 10px 0 0 0;
  position: relative;
  overflow: visible !important;
}
.skill-bar-percent {
  color: #303030;
}
/* 7.3 Animated Bars Style End */

/*------------------------------------------*/
/*   7.4 Overlay Styles Style
/*------------------------------------------*/
.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 9999;
  left: 0;
  background: rgba(39, 48, 75, 0.8);
}
.overlay .overlay-close i {
  padding: 0 !important;
  /*width: 80px;
    height: 80px;
    position: absolute;
    right: 20px;
    top: 20px;
    overflow: hidden;
    border: none;
    color: var(--white);
    outline: none;
    z-index: 100;
    line-height: 80px;
    text-align: center;*/
}

.overlay form {
  text-align: center;
  position: relative;
  top: 50%;
  font-size: 22px;
  color: #b2b2b2;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.overlay .form-inner {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  height: 100%;
  position: relative;
}
.overlay .form-inner input[type="text"] {
  box-shadow: none !important;
  border: none;
  position: relative;
  top: -2px;
  background-color: transparent;
}
/* Effects */
.overlay-hugeinc {
  opacity: 0;
  visibility: hidden;
  -webkit-transition:
    opacity 0.5s,
    visibility 0s 0.5s;
  transition:
    opacity 0.5s,
    visibility 0s 0.5s;
}
.overlay-hugeinc.open {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.overlay-hugeinc form {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.overlay-hugeinc form .form-inner {
  opacity: 0.4;
  -webkit-transform: translateY(-25%) rotateX(35deg);
  transform: translateY(-25%) rotateX(35deg);
  -webkit-transition:
    -webkit-transform 0.5s,
    opacity 0.5s;
  transition:
    transform 0.5s,
    opacity 0.5s;
}
.overlay-hugeinc form .form-inner {
  width: 450px;
  padding: 0 15px;
}
.overlay-hugeinc.open form .form-inner {
  opacity: 1;
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
}
.overlay-hugeinc form .form-inner-div {
  padding: 0.75rem;
  background: var(--white);
  border-radius: 70px;
  min-width: 100%;
}
.overlay-hugeinc.close form .form-inner {
  -webkit-transform: translateY(25%) rotateX(-35deg);
  transform: translateY(25%) rotateX(-35deg);
}
.overlay-hugeinc form .form-inner i.icofont-search {
  padding: 0 1rem 0 0.5rem;
}
.overlay-hugeinc form .form-inner .overlay-close {
  padding: 0 0.5rem 0 0.8rem;
  color: var(--secondary-color);
}
.overlay-hugeinc form .form-inner .overlay-close:hover {
  color: var(--primary-color);
}
/* 7.4 Overlay Styles Style End */

/*------------------------------------------*/
/*   7.5 Callout Style
/*------------------------------------------*/
.contact-callout {
  color: #fefefe;
}
.callout-style-1 {
  font-size: 14px;
  color: var(--white);
}
.callout-style-1 .container {
  position: relative;
  z-index: 2;
}
.center-text {
  padding: 0 4rem;
}

/* Callout Center Style Start */
.callout-style-side-img {
  background-color: var(--white);
  box-shadow: 0px 0px 54px 0px rgba(39, 48, 75, 0.26);
}
.callout-style-side-img .img-callout {
  width: 350px;
  overflow: hidden;
}
.callout-style-side-img .text-callout {
  padding: 1.5rem 2rem;
  font-size: 1rem;
  flex-grow: 1;
}
.callout-style-side-img .text-callout .heading {
  flex-grow: 1;
}
.callout-style-side-img .text-callout .icon {
  flex-shrink: 1;
}
.callout-style-side-img .text-callout .icon .btn {
  white-space: nowrap;
  margin-left: 1.5rem;
}
.callout-style-side-img .text-callout .heading h2 {
  color: #27304b;
  font-weight: 800;
  font-size: 1.875rem;
  margin: 0;
}
/* 7.5 Callout Style End */

/*------------------------------------------*/
/*   7.6 Icon Box Style
/*------------------------------------------*/
/* Box Style One */
.icon-box-1 {
  display: flex;
}
.icon-box-1 i {
  font-size: 4.5rem;
  margin-right: 1.5rem;
  color: var(--primary-color);
}
.icon-box-1 h3 {
  color: #27304b;
  font-size: 1.25rem;
  font-weight: 800;
}
/* Box Style Two */

/* Box Style Two */
.icon-box-2 {
  border-radius: 6px;
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  padding: 1.8rem;
}
.icon-box-2 .icon-font {
  font-size: 6.5rem;
  margin-right: 2rem;
  line-height: 1.4;
  color: var(--secondary-color);
}

.icon-box-2 h3 {
  font-size: 1.25rem;
  color: var(--primary-color);
  font-weight: 800;
}

/* Icon Box 3 */
.icon-box-3 {
  text-align: center;
}
.icon-box-3 i {
  font-size: 6rem;
  color: #cdced4;
  display: block;
  margin-bottom: 1.5rem;
}
.icon-box-3 h3 {
  font-size: 1.5rem;
  font-family: "Changa", sans-serif;
  color: var(--primary-color);
  font-weight: bold;
  position: relative;
  margin-top: 3rem;
}
.icon-box-3 h3:after {
  position: absolute;
  content: "";
  top: -20px;
  left: 50%;
  height: 1px;
  width: 40px;
  background: #27304b;
  transform: translateX(-50%);
}
/* Icon Box 3 */

/* Icon Box 4 */
.icon-box-4 {
  text-align: left;
  padding: 1.7rem 1.25rem 1.7rem 4rem;
  position: relative;
  border-radius: 7px;
  overflow: hidden;

  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
.icon-box-4 svg {
  color: #beafb1;
  display: block;
  stroke-width: 1px;
  position: absolute;
  width: 60px;
  height: 60px;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
}
.icon-box-4 h3 {
  font-size: 1.25rem;
  color: #27304b;
  font-weight: 800;
  position: relative;
}
.icon-box-4 a[href^="mailto:"] {
  color: var(--primary-color);
  text-decoration: underline;
}
.icon-box-4 a[href^="mailto:"]:hover {
  color: #27304b;
  text-decoration: none;
}
.icon-box-4.bg-orange {
  background: rgba(213, 155, 45, 0.2);
}
.icon-box-4.bg-green {
  background: #d9e7db;
}
.icon-box-4.bg-gray {
  background: rgba(90, 58, 59, 0.07);
}
/* Icon Box 4 */

/* Icon Box With Image */
.icon-box-with-img {
  position: relative;
  background: var(--white);
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 0px 43px 0px rgba(0, 0, 0, 0.08);

  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
.icon-box-with-img .text {
  padding: 1.563rem 1.25rem;
}
.icon-box-with-img .img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.icon-box-with-img .img a {
  display: block;
  height: 100%;
}
.icon-box-with-img .img a img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  transform: scale(1.01);
}
.icon-box-with-img .img a:hover img {
  transform: scale(1.07);
}
.icon-box-with-img h3 {
  font-size: 1.25rem;
  color: var(--secondary-color);
  font-weight: 800;
}
.icon-box-with-img .read-more-line {
  color: var(--primary-color);
}
.icon-box-with-img .read-more-line:hover {
  color: #00a475;
}
/* 7.6 Icon Box Style End */

/*------------------------------------------*/
/*   7.7 Team Section Styles
/*------------------------------------------*/

.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 0;
}
.owl-carousel .owl-dots button span {
  display: block;
  width: 10px;
  height: 10px;
  margin: 0px 3px;
  border-radius: 15px;
  background: var(--primary-color);
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
  outline: none;
  position: relative;
}
.owl-carousel .owl-dot.active span,
.owl-controls.clickable .owl-dot:hover span,
.owl-carousel .owl-dot:hover span {
  background: var(--secondary-color);
}
.owl-carousel .owl-dot.active span {
  width: 20px;
}
.team-section .team-para,
.faq-section .faq-para {
  position: relative;
}
.team-section .element-icon,
.faq-section .element-icon{
  transform: rotate(-180deg) scaleX(-1);
  position: absolute;
  right: 100px;
  bottom: -20px;
}
.team-section .element-icon svg,
.faq-section .element-icon svg{
      width: 155px;
    height: 160px;
    fill: var(--secondary-color);
}
.team-section .element-icon svg .wdt-cus-rocket-fill-icon,
.faq-section .element-icon svg .wdt-cus-rocket-fill-icon{
  stroke: var(--secondary-color);
    stroke-width: 1;
    stroke-miterlimit: 10;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.team-section .element-icon-wrapper,
.faq-section .element-icon-wrapper{
  overflow: hidden;
}
.team-section .element-icon-wrapper.aos-animate  .wdt-cus-rocket-fill-icon,
.faq-section .element-icon-wrapper.aos-animate  .wdt-cus-rocket-fill-icon{
    animation: stroke-path 1.5s linear forwards;
}
@keyframes stroke-path {
    0% {
        stroke-dashoffset: 500;
    }

    100% {
        stroke-dashoffset: 0;
    }

}
.team-section .member-name {
    background: linear-gradient(rgba(0, 0, 0, 0), #000000);
    bottom: 0;
    color: #fff;
    left: 0px;
    padding: 16px;
    position: absolute;
    width: 100%;
    letter-spacing: 1px;
}
.team-section .team-img {
  height: 400px;
}
.team-section .team-img img {
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.team-section .member-name  h5 {
      font-weight: 700;
    font-size: 18px;
 }
 .team-section .member-name span {
    font-size: 13px;
 }
 .team-carousel.owl-carousel .owl-dots {
  margin-top: 30px;
 }
 .team-carousel.owl-carousel .owl-dots button span{
    background: var(--secondary-color);
  }
   .team-carousel.owl-carousel .owl-dots .active span{
    background: var(--primary-color);
   }
 .team-carousel .video-thumb .video-play-btn  {
      width: 60px;
    height: 60px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    color: #fff;
}
.team-carousel .owl-nav{
position: unset;
}
.team-carousel.owl-carousel .owl-nav button.owl-prev, 
.team-carousel.owl-carousel .owl-nav button.owl-next{
    border: none;
    font-size: 24px;
    position: absolute;
    top: calc(50% - 60px);
    background: var(--secondary-color);
    border-radius: 1px;
    display: flex;
    color: #fff;
    width: 40px;
    height: 45px;
    justify-content: center;
    line-height: 35px;
}
.team-carousel.owl-carousel .owl-nav button.owl-prev{
  margin-left: -15px;
}
.team-carousel.owl-carousel .owl-nav button.owl-next {
  margin-right: -15px;
}
.team-section-wrap {
  background: var(--white);
  box-shadow: 0px 0px 97px 0px rgba(0, 0, 0, 0.12);
  padding: 1.5rem;
  border-radius: 7px;
  margin-bottom: 3rem;
}
.team-section-wrap .img {
  text-align: center;
  margin: 1rem auto 2.5rem;
  position: relative;
  border-radius: 50%;
  height: 160px;
  width: 160px;
  overflow: hidden;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
.team-section-wrap .img img {
  width: 160px;
  margin: 0 auto 25px;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
.team-section-wrap:hover .img {
  background: rgba(0, 0, 0, 1);
}
.team-section-wrap .img .social-icons {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  text-align: center;
  transform: translate(-50%, -50%);
  z-index: 99;

  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
.team-section-wrap:hover .img .social-icons {
  opacity: 1;
  color: var(--white);
}
.team-section-wrap:hover .img .social-icons a {
  color: var(--white);
  font-size: 1.2rem;
  margin: 0 0.3rem;
}
.team-section-wrap:hover .img .social-icons a:hover {
  color: var(--primary-color);
}
.team-section-wrap:hover .img img {
  opacity: 0.3;
  transform: scale(1.2);

  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
.team-section-wrap .img.green {
  box-shadow: 0px 0px 0px 12px rgba(0, 166, 118, 0.1);
}
.team-section-wrap .img.navy-blue {
  box-shadow: 0px 0px 0px 12px rgba(37, 45, 70, 0.1);
}
.team-section-wrap .img.orange {
  box-shadow: 0px 0px 0px 12px rgba(255, 99, 85, 0.1);
}
.team-section-wrap .img.beige {
  box-shadow: 0px 0px 0px 12px rgba(250, 240, 231, 0.7);
}

.team-section-wrap h4 {
  color: var(--primary-color);
  font-weight: 800;
  font-size: 1.25rem;
}
.team-section-wrap h5 {
  color: #6e7c90;
  font-weight: 500;
  margin-bottom: 1rem;
}
.team-image {
  padding-right: 5rem;
  width: 100%;
  overflow: hidden;
  max-height: 500px;
}
.team-image img {
  height: 100%;
  object-fit: cover;
}
/*my css*/
.tg-header-contact-number .tg-header-contact-icon {
   font-size: 20px;
    color: #646464;
    /*background: #1a89d4;*/
    padding: 5px;
    border-radius: 100px;
}
.tg-header-contact-number span {
  font-size: 14px;
  text-transform: capitalize;
/*  color: #fff;*/
  display: flex;
  line-height: 1;
  font-weight: 500;
}
.tg-header-contact-number a {
    text-transform: capitalize;
/*    color: #fdfc15;*/
    font-weight: bold;
    letter-spacing: -.2px;
}
.switch-lang {
  display: flex;
  align-items: center;
  gap: 6px;
}
.switch-lang img {
  border-radius: 100%;
  height: 22px;
  width: 22px;
  cursor: pointer;
}
.social-iconsx  {
  display: inline-flex;
  list-style: none;
  gap: 18px;
  margin-bottom: 0;
}
.social-iconsx li a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: #646464;
}
.social-iconsx li a:hover {
  color: #fff;
  border-color: unset;
}
.social-iconsx .icon-facebook:hover {
  color: #3B5998;
}
.social-iconsx .icon-messenger:hover {
  color: #0084FF;
}
.social-iconsx .icon-instagram:hover {
  color: #b16c4f;
}
.social-iconsx .icon-youtube:hover {
  color: #FF0000;
}
.social-iconsx .icon-tripadvisor:hover {
  color: #34E0A1;
}
.tg-header-contact-number {
    display: flex;
    align-items: center;
    gap: 15px;
}
.lang-dropdown {
  position: relative;
      display: flex;
    align-items: center;
    justify-content: end;
/*    color: #fff;*/
}
.lang-dropdown img{
     width: 12px;
    margin: 0 7px;
}
.lang-dropdown i{
  font-size: 12px;

}
.lang-dropdownmenu{
    position: absolute;
    width: 170px;
    right: 0;
    background: #fff;
    color: #000;
    border-radius: 3px;
    z-index: 11;
    top: 30px;
    padding-left: 0;
    display: none;
}
.lang-dropdownmenu li {
  border-bottom: 1px solid #ddd;
  list-style-type: none;
}
.lang-dropdownmenu li a{
  border-radius: 3px;
  padding: 12px 20px;
  font-size: .8375rem;
  display: flex;
  align-items: center;
  justify-content: space-between;

}
.lang-dropdownmenu li a span {
  color: #172541d9;
    font-size: 15px;
    font-weight: bold;

}
.lang-dropdownmenu li:last-child {
  border-bottom: none;

}
.lang-dropdownmenu li a img {
 width: 15px;
 margin-left: 20px;
}
.lang-dropdownmenu li a:hover {
  background: #f3f3f3;
}
.offcanvas-body ul {
  padding-left: 7rem;
}
.navbar-collapse .offcanvas-body ul {
  padding-left: 0;
  align-items: center;
}
.nav-item .top-button{
  margin: 7px 0;
  margin-left: 20px;
}
@media (max-width: 991px) {
  .team-image {
    padding-right: 0;
    margin-bottom: 0;
  }
}
.social-icons-team {
  padding: 2rem 0 0 0;
  font-size: 1.2rem;
}
.social-icons-team a {
  background: var(--secondary-color);
  color: var(--white);
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.social-icons-team a:hover {
  background: var(--primary-color);
}
.social-icons-team a:not(:last-child) {
  margin-right: 0.5rem;
}
/* 7.7 Team Section Styles End */

/*------------------------------------------*/
/*   7.8 Footer Subscribe Styles
/*------------------------------------------*/
.footer-subscribe {
  padding: 0 0 3.5rem 0;
  border-radius: 6px;
  color: var(--white);
}
.footer-subscribe h3 {
  line-height: 1;
  font-size: 1.125rem;
  position: relative;
  font-weight: 400;
  color: var(--primary-color);
  margin: 0 0 0.5rem 0;
}
.footer-subscribe h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 1rem 0;
}
.footer-subscribe input[type="text"] {
  border: none;
  color: #27304b;
  margin-right: 1.5rem;
  padding: 0.8rem 50px 0.8rem 1rem;
  font-weight: normal;
  background: transparent;
  box-shadow: none !important;
  background: #f8f4f3;
  border-radius: 4px;
  font-size: 00.875rem;
  flex-grow: 1;
}
.footer-subscribe input[type="text"]:focus,
.footer-subscribe input[type="text"]:active {
  border-width: 0 0 1px 0;
  box-shadow: none;
  outline: none;
}

.footer-subscribe .input-wrap {
  position: relative;
  display: flex;
}
.footer-subscribe .input-wrap button {
  flex-shrink: 0;
}
.footer-subscribe ::-webkit-input-placeholder {
  /* Edge */
  color: #27304b;
}

.footer-subscribe :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #27304b;
}

.footer-subscribe ::placeholder {
  color: #27304b;
}
/* 7.8 Footer Subscribe Styles End */

/*------------------------------------------*/
/*   7.9 Give Us Call Styles
/*------------------------------------------*/
.give-us-call {
  position: absolute;
  width: auto;
  top: 0px;
  padding: 3rem 0;
  color: var(--white);
  right: 15px;
  border-radius: 0px;
  text-align: right;
}
.give-us-call svg {
  position: absolute;
  width: 35px;
  height: 35px;
  color: var(--white);
  left: 30px;
  z-index: 1;
  opacity: 0.5;
  stroke-width: 1px;
}
.give-us-call h4,
.give-us-call h3 {
  position: relative;
  z-index: 2;
}
.give-us-call h4 {
  font-size: 1.25rem;
  font-weight: 500;
}
.give-us-call h3 {
  font-size: 2rem;
  font-weight: 800;
  margin: 0;
  color: var(--white);
}
.give-us-call h3 a {
  color: var(--white);
}

/* 7.9 Give Us Call Styles End */

/*------------------------------------------*/
/*   7.10 Counter Text Animation Styles
/*------------------------------------------*/
.counter-style-box {
  padding: 1.7rem;
  font-weight: 400;
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0px 0px 147px 0px rgba(0, 0, 0, 0.07);
  color: #6e7c90;
  height: 100%;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  position: relative;
  z-index: 2;
}
.counter-style-box .counter-txt {
  color: #27304b;
  line-height: 1;
  font-size: 3rem;
  position: relative;
  font-weight: 800;
  z-index: 2;
  padding: 0 0 0 20px;
  margin: 1.4rem 0;
  font-family: var(--font-heading);
}
.counter-style-box .counter-txt:before {
  position: absolute;
  content: "";
  top: -12px;
  left: 0;
  height: 70px;
  width: 70px;
  background: var(--primary-color);
  z-index: -1;
  border-radius: 10px;
  opacity: 0.2;
}
.counter-img-bg .counter-style-box i {
  color: var(--white);
}
.counter-img-bg .counter-style-box .counter-txt:before {
  background: var(--white);
}
.counter-img-bg .counter-style-box .counter-txt {
  color: #98cb46;
}
.counter-style-box.small-box {
  background: transparent;
  box-shadow: none;
  padding: 0;
  display: flex;
  align-items: center;
  font-weight: 700;
  line-height: 1.2;
  color: #27304b;
  font-size: 1.125rem;
}
.counter-style-box.small-box .counter-txt {
  color: var(--primary-color);
  margin-right: 1.5rem;
  min-width: 100px;
}
.counter-style-box.small-box .counter-txt:before {
  background: var(--white);
  opacity: 1;
}
/* 7.10 Counter Text Animation Styles End */

/*------------------------------------------*/
/*   7.11 Owl Slider Arrow Styles
/*------------------------------------------*/
.owl-nav {
  text-align: center;
  margin-top: 0px;
  position: absolute;
  top: -90px;
  right: 0;
  gap: 15px;
  display: flex;
  z-index: 9;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  position: relative;
  height: 52px;
  width: 52px;
  outline: none;
  display: inline-block;
  color: #868681;
  font-size: 1.9rem;
  font-weight: 100;
  border: 2px solid var(--bistre-color);
  line-height: 1;

  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;

  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
.owl-carousel .owl-nav button:hover,
.owl-carousel .owl-nav button:hover {
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.owl-carousel.nav-light .owl-nav button.owl-prev,
.owl-carousel.nav-light .owl-nav button.owl-next {
  border: 2px solid var(--white);
  color: var(--white);
}

.owl-carousel.nav-light .owl-nav button.owl-prev:hover,
.owl-carousel.nav-light .owl-nav button.owl-next:hover {
  border: 2px solid #27304b;
  color: #27304b;
}

.pattern-green .owl-carousel.nav-light .owl-nav button.owl-prev:hover,
.pattern-green .owl-carousel.nav-light .owl-nav button.owl-next:hover {
  border: 2px solid var(--primary-color);
  color: var(--white);
  background-color: var(--primary-color);
}

.owl-carousel .owl-dots button {
  outline: none;
}

/*.owl-carousel .owl-nav button.owl-prev {
  margin-right: 15px;
}*/
.owl-carousel .owl-nav button.owl-next {
  right: 0;
}

.testimonial-rounded .owl-carousel .owl-nav button.owl-prev {
  left: -60px;
}
.testimonial-rounded .owl-carousel .owl-nav button.owl-next {
  right: -60px;
}

.testimonial-side-img .owl-carousel .owl-nav button.owl-prev {
  left: -80px;
}
.testimonial-side-img .owl-carousel .owl-nav button.owl-next {
  right: -80px;
}


/* 7.11 Owl Slider Arrow Styles End */

/*------------------------------------------*/
/*   8. Pages Styles
/*------------------------------------------*/

/*------------------------------------------*/
/*   8.1 Home Pages
/*------------------------------------------*/
/*   Pages : Home Page First Start   */
.funds-committed {
  position: absolute;
  bottom: -70px;
  z-index: 99;
  font-size: 0.875rem;
  font-weight: 700;
  color: #000;
  border-radius: 15px;
  background-color: var(--white);
  box-shadow: 0px 0px 57px 0px rgba(255, 255, 255, 0.32);
  padding: 1.8rem;
  min-width: 235px;
  left: 15px;
  text-align: center;
}
.funds-committed small {
  display: block;
  font-size: 100%;
  font-weight: 700;
}
.funds-committed .counter {
  color: var(--secondary-color);
  font-size: 2.7rem;
  line-height: 1.2;
  padding-left: 30px;
  position: relative;
  font-weight: 900;
  letter-spacing: -2px;
  font-family: var(--font-heading);
}
.funds-committed .counter::after {
  position: absolute;
  z-index: 1;
  content: "$";
  font-family: var(--font-heading);
  left: 0;
}

.Funds_Committed_Bg {
  position: absolute;
  left: 245px;
  top: 810px;
  width: 225px;
  height: 119px;
  z-index: 171;
}
.welcome-home-first {
  font-size: 1rem;
}

.welcome-home-first .icon-box-1 h3 {
  color: var(--primary-color);
  font-weight: 500;
}
.welcome-home-first .icon-box-1 i {
  font-size: 3.5rem;
}
.welcome-broke-grid {
  position: relative;
  z-index: 1;
}
.welcome-broke-grid::after {
  position: absolute;
  top: 0;
  z-index: 1;
  background: #f8f4f3;
  height: 188px;
  content: "";
  width: 100%;
  left: 0;
}
.welcome-broke-grid.green::after {
  background: #d9e7db;
}
.welcome-icon {
  position: absolute;
  right: 100px;
  z-index: -1;
  font-size: 350px;
  opacity: 0.1;
  top: -350px;
  pointer-events: none;
}
.welcome-broke-grid.green .welcome-icon {
  color: #000;
}
.featured-heart-icon-hidden {
  overflow: hidden;
}
.featured-heart-icon {
  position: absolute;
  right: 100px;
  z-index: -9;
  font-size: 350px;
  opacity: 0.1;
  bottom: -360px;
  transform: scaleX(-1) rotate(-25deg);
  line-height: 1;
}
.welcome-broke-grid .container {
  position: relative;
  z-index: 999;
}
/*   Pages : Home Page First End   */

/*   Main Banner Slider Start   */
.main-banner {
  position: relative;
  margin-bottom: 100px;
}
.main-banner::after {
  position: absolute;
  top: 50%;
  z-index: 1;
  background: #d9e7db url(../images/topography-background.png) repeat center
    center;
  height: 85%;
  content: "";
  width: 100%;
  transform: translateY(-50%);
  left: 0;
}
.main-banner::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 90%;
  background: var(--white);
  z-index: -99;
}
.main-banner .container.start {
  position: relative;
  z-index: 99;
}

@media (min-width: 576px) {
  .main-banner .container.start {
    max-width: 98%;
  }
}
@media (min-width: 768px) {
  .main-banner .container.start {
    max-width: 98%;
  }
}
@media (min-width: 992px) {
  .main-banner .container.start {
    max-width: 98%;
  }
}
@media (min-width: 1200px) {
  .main-banner .container.start {
    max-width: 98%;
  }
}
@media (min-width: 1400px) {
  .main-banner .container.start {
    max-width: 98%;
  }
}
@media (min-width: 1920px) {
  .main-banner .container.start {
    max-width: 90%;
  }
}
.main-banner .owl-nav {
  /* text-align: center;
    margin-top: 0px;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 100px; */
}
.slides-wrap {
  /*background*/
  -color: rgb(0, 0, 0);
  box-shadow: 0px 40px 57px 0px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  overflow: hidden;
}
.slides-wrap img {
  opacity: 0.7;
}
.slides-wrap .owl-item.active .slider-text span {
  animation: 1s 0.1s fadeInUpBig both;
}

.slides-wrap .owl-item.active .slider-text h1 {
  animation: 2s 0.2s fadeInUpBig both;
}

.slides-wrap .owl-item.active .slider-text p {
  animation: 3s 0.3s fadeInUpBig both;
}

.slides-wrap .owl-item.active .slider-text .slider-btn {
  animation: 4s 0.4s fadeInUpBig both;
}
.slides-wrap .owl-slide-text h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 15px;
}
.slides-wrap .owl-slide-text h1 {
  color: var(--white);
  font-weight: bold;
  font-size: 3.8rem;
  line-height: 1;
  margin-bottom: 4px;
}

.slides-wrap .owl-carousel .owl-nav button.owl-prev,
.slides-wrap .owl-carousel .owl-nav button.owl-next {
  color: var(--white);
  pointer-events: all;
  border-color: var(--white);
  position: relative;
}

.slides-wrap .owl-carousel .owl-nav button.owl-prev:hover,
.slides-wrap .owl-carousel .owl-nav button.owl-prev:hover svg,
.slides-wrap .owl-carousel .owl-nav button.owl-next:hover,
.slides-wrap .owl-carousel .owl-nav button.owl-next:hover svg {
  color: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
.bread-para {
  text-align: center;
  color: #fff;
}
.bread-para p {
  margin-bottom: 4px;
}
.bread-para p span {
  text-align: center;
  color: #fff;
  font-size: 28px;
  font-weight: 500;
}
.bread-para small a {
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}
/*   Main Banner Slider End   */

/*   Home Page Second Start   */
.header-style-fullwidth,
.header-style-fullwidth .top-bar-right {
  background: transparent;
  box-shadow: none;
}
.header-style-fullwidth {
  background: transparent;
  box-shadow: none;
  z-index: 9;
/*  position: fixed;*/
  top: 0;
  width: 100%;
  height: auto !important;
}
.header-style-fullwidth.header-effect {
  background: #fff;
  backdrop-filter: blur(16px);
}
.header-style-fullwidth .navbar {
  background-color: transparent;
  backdrop-filter: unset;
/*  position: fixed;*/
  padding: 0px;
}

.header-style-fullwidth .navbar-expand-lg .navbar-collapse {
  flex-basis: unset;
}
.top-header {
/*  color: white;
  display: flex;
  padding: 5px 0px;*/
/*  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 1;*/
}
.cl-header{
  border-bottom: 1px solid #c3c3c3;
  padding: 10px 0;
  display: flex;
align-items: center;
}
.cl-header .right-header {
  margin-left: auto;
}
/*.top-nav {
  display: flex;
  gap: 18px;
  margin-right: auto;
}*/
.top-header .top-nav ul {
  list-style: none;
  display: inline-flex;
  gap: 20px;
  align-items: center;
}
.top-header .top-nav a {
/*  color: white;*/
  font-size: 16px;
  font-weight: bold;
}
.top-header .top-nav a:hover {
  color: var(--secondary-color);
}
.top-header  .license{
  font-size: 15px;
  color: var(--primary-color);
/*  margin-right: 25px;*/
}
.top-button {
    background: transparent;
    padding: 8px 32px;
    border-color: var(--primary-color);
    font-size: 15px;
    font-weight: normal;
    /*letter-spacing: 1;*/
    gap: 10px;
/*    width: 175px;*/
}
.search-form{
  width: 80%;
  display: inline-block;
}
.top-button:hover {
  background: #f9820c;
  color: #fff;
  border-color: #f9820c;
}
.btn-1 {
    background: #fe9818;
    /*padding: 8px 32px;*/
    color:#fff;
    border-color:#fff;
    font-size: 15px;
    font-weight: normal;
     letter-spacing: 1; */
    gap: 10px;
     }
.btn-1:hover {
background: #fe9818;
color:#fff;
    border-color:#fff;
}
.nav-item .top-button {
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
}
.header-style-fullwidth .fixed.navbar {
  background-color: #fff;
  box-shadow: 0px 0px 43px 0px rgb(0 0 0 / 28%);
  z-index: 1040;
  backdrop-filter: blur(10px);
  padding: 0.5rem 0;
}
.header-style-fullwidth .fixed.navbar .mega-dropdown{
  top: 65px;
}
.top-banner-section{
  position: relative;
    height: 700px;
    display: flex;
    align-items: end;
    justify-content: center;
}
.top-banner-section:before{
/*     content: "";*/
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    height: 100%;
}
.top-banner-section video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: 100%;
    z-index: 0;
    object-fit: cover;
}
.travel-section-text{
  color: #fff;
  position: relative;
    z-index: 1;
}
.cl-banner-section {
  position: fixed;
  top: 0;
}
.top-banner-section video {
  width: 100%;
}
.home-style-second.main-banner {
  margin: 0;
  /*min-height: 700px;*/
  /*background-color: var(--bistre-color);*/
}
.home-style-second.main-banner::before,
.home-style-second.main-banner::after {
  display: none;
}
.home-style-second.main-banner .container.start {
  max-width: 100%;
  padding: 0 !important;
}
.home-style-second .slides-wrap {
  border-radius: 0;
  box-shadow: none;
}
.home-style-second.main-banner .slides-wrap .owl-carousel .owl-slide {
  min-height: 100vh;
}
.home-style-second.main-banner .slides-wrap .owl-carousel .owl-nav {
  /* max-width: 1350px;
    position: absolute;
    margin: auto;
    right: 227px;
    height: 10px;
    left: 0; */
}
.home-style-second.main-banner
  .slides-wrap
  .owl-carousel
  .owl-nav
  button.owl-prev {
  /* left: auto;
    right: 61px; */
}
.header-style-fullwidth .request-btn a#search_home {
  /*background: rgba(255, 255, 255, 0.3);*/
  border: none;
  color: var(--bistre-color);
  padding: 0.7rem 0.1rem;
}
.header-style-fullwidth .request-btn a#search_home:hover {
  background: none;
  opacity: 0.5;
}
.header-style-fullwidth .navbar-expand-lg .navbar-nav .nav-link {
/*  color: var(--white);*/
  border-radius: 3px;
}

.header-style-fullwidth .navbar-nav .nav-item:hover .nav-link,
.header-style-fullwidth .navbar-nav .active .nav-link,
.header-style-fullwidth .navbar-nav .active .nav-link:hover,
.header-style-fullwidth .navbar-nav .nav-link:hover {
  background: #f3f3f3;
  border-radius: 100px;
  color: #31231e;
}
/*.header-style-fullwidth .navbar-expand-lg .navbar-nav .nav-item {
  padding: 0.5rem 0;
}
.header-style-fullwidth .navbar-expand-lg .navbar-nav .nav-item.dropdown{
  padding: 0.5rem
}*/
.header-style-fullwidth .dropdown-menu:after {
  /* position: absolute;
    top: -7px;
    left: 20px;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 7px 7px 7px;
    border-color: transparent transparent var(--white) transparent; */
}
.header-style-fullwidth .navbar.fixed-nav {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0; 
  z-index: 1030; 
  background-color: #ffffff; 
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
  animation: slideDown 0.3s ease-out;
  padding-bottom: 20px; 
  overflow: visible; 
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.header-fullpage.fixed-nav .mega-dropdown {
    z-index: 1031;
}
.home-second-welcome .icon-box-1 {
  align-items: center;
}
.home-second-welcome .icon-box-1 h3 {
  color: var(--secondary-color);
}
.home-second-welcome .icon-box-1 h3 span {
  color: #27304b;
  display: block;
  padding-top: 6px;
}
.home-second-donation-form {
  position: relative;
  z-index: 99;
}
.home-second-donation-form .funds-committed {
  position: relative;
  top: 0;
  border-radius: 15px 15px 0 0;
  padding-left: 130px;
  background: var(--secondary-color);
  display: flex;
  align-items: center;
  color: var(--white);
  left: 0;
  overflow: hidden;
  margin-top: -109px;
  box-shadow: none;
}
.home-second-donation-form .funds-committed small {
  max-width: 100px;
  line-height: 1.3;
  margin-right: 10px;
}
.home-second-donation-form .funds-committed .counter {
  color: var(--white);
}
.home-second-donation-form .gift-icon {
  position: absolute;
  font-size: 6rem;
  color: var(--white);
  left: 20px;
  z-index: 99;
  top: 32px;
  opacity: 0.3;
  line-height: 1;
}
#body-content.body-non-overflow {
  overflow-y: visible;
}
.home-second-donation-form .form-style {
  background-image: url(../images/topography-background.png);
  background-color: var(--bistre-color);
  background-repeat: repeat;
  padding: 4rem 3rem;
  border-radius: 0 0 10px 10px;
  margin-bottom: -109px;
}
.home-second-donation-form .form-style label {
  color: var(--white);
}
.home-second-donation-form .form-style .form-group {
  margin-bottom: 1.375rem;
}
.home-second-donation-form.img .form-style {
  background-image: url(../images/form_bg_img.jpg);
  background-repeat: repeat;
  background-size: cover;
}
/*   Home Page Second End   */

/*   Home Page Third Start   */
.homestyle-third {
  background: transparent;
  z-index: 999;
  position: absolute;
  width: 100%;
  top: 0;
}
.homestyle-third .navbar {
  background: transparent;
  backdrop-filter: unset;
}
.homestyle-third .navbar.fixed-top {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}
.homestyle-third .request-btn a#search_home {
  padding: 0.719rem 1.9rem;
}
.homestyle-third .request-btn a#search_home:hover {
  background: transparent;
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}
.static-banner {
  padding: 11rem 0 7rem;
  position: relative;
  box-shadow: 0px 0px 57px 0px rgba(0, 0, 0, 0.5);
}

.static-banner .slider-link {
  color: #27304b;
  font-weight: 700;
  text-transform: capitalize;
  font-family: var(--font-heading);
  display: inline-flex;
  align-items: center;
}
.static-banner .slider-link i {
  margin-left: 7px;
}
.banner-img .funds-committed {
  background: var(--white);
  left: auto;
  right: 80px;
}
.banner-img .funds-committed small {
  color: #27304b;
}
.static-banner::after {
  position: absolute;
  content: "";
  top: 0;
  width: 40%;
  height: calc(100% + 5rem);
  background: #d9e7db;
  right: 0;
  z-index: 1;
  border-radius: 0 0 0 10px;
}
.static-banner .container {
  position: relative;
  z-index: 99;
}
.banner-img {
  position: relative;
}
.banner-img img {
  border-radius: 0;
  width: 100%;
  max-height: 460px;
  object-fit: cover;
}
.banner-text h1 {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 4.5rem;
  line-height: 1;
  margin-bottom: 35px;
}
.welcom-section-3 {
  padding: 7rem 0 7rem;
  position: relative;
  background: var(--bistre-color) url(../images/topography-background.png)
    repeat;
}
.welcom-section-3 .hand-heart {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.welcom-section-3 .container {
  position: relative;
  z-index: 8;
}
.welcom-section-3 .col-md-6:first-of-type .icon-box-2,
.welcom-section-3 .col-md-6:last-of-type .icon-box-2 {
  background: #f8f4f3;
}
.welcom-section-3 .icon-box-2 {
  margin-bottom: 2rem;
}
.welcom-section-3 .home-second-welcome .icon-box-1 h3 span,
.welcom-section-3 .home-second-welcome .icon-box-1 h3 {
  color: var(--white);
}

/*recommend by css /*/
.recommend-section .h-6{
  height: 24px;
}
.recommend-section .h-4{
  height: 16px;
  width: auto;
}
.recommend-section .w-5{
  width: 20px;
}
.recommend-section .inline-block{
  display: inline-block;
}
.recommend-section .text-sm {
  font-size: 14px;
}
.recommend-section .d-flex{
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 2.5rem;
}
@media(max-width: 991px){
  .recommend-section .d-flex{
    flex-wrap: wrap;
  }
}
/*recoomend end*/
.featured-causes-img-2 {
  margin-bottom: -5rem;
  height: 100%;
  position: relative;
}

.featured-causes-img-2 img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
  box-shadow: 0px 0px 57px 0px rgba(0, 0, 0, 0.25);
  width: 100%;
  height: calc(100% + 5rem);
  object-fit: cover;
}
.featured-causes-img-content {
  margin-bottom: 5rem;
}
.become-volunteers-links {
  height: 100%;
  position: relative;
  z-index: 2;
}
.featured-causes-img-content .featured-cause-timer {
  padding: 1.5rem 2rem;
  left: 0;
  transform: none;
  min-width: 100%;
}
.featured-causes-img-content .featured-cause-timer #featured-cause span {
  font-size: 2.5rem;
}
.become-volunteers-links a {
  color: var(--white);
  text-align: center;
  margin-bottom: 0;
  display: block;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--white);
  border-radius: 10px;
  padding: 2rem 1rem;
  width: calc(100% + 53.333333%);
}
.become-volunteers-links a i {
  width: 60px;
  height: 60px;
  justify-content: center;
  align-items: center;
  display: flex;
  border-radius: 50%;
  font-size: 1.5rem;
  border: 2px solid var(--white);
  margin-bottom: 1.5rem;
}
.bg-green.counter-style-box {
  background: var(--secondary-color);
  color: var(--white);
  height: 100%;
}
.bg-orange.counter-style-box {
  background: var(--primary-color);
  color: #27304b;
  height: 100%;
}
.bg-dark-shade.counter-style-box .counter-txt {
  color: var(--white);
}
.bg-dark-shade.counter-style-box .counter-txt:before {
  background: #27304b;
  opacity: 0.3;
}

.our-donator-slider {
  background: var(--white);
  padding: 0.5rem 1.5rem 0;
  margin: 2rem 0 4rem 0;
  border-radius: 5px;
}
.our-donator-slider-warp {
  top: 1rem;
  position: relative;
}
.our-donator-slider-warp h3 {
  color: #27304b;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.our-donators-slide {
  display: flex;
}
.our-donators-slide .name {
  font-size: 1rem;
  color: var(--primary-color);
  margin-bottom: 4px;
  font-weight: 700;
}
.our-donators-slide .money {
  font-weight: 600;
  font-size: 0.875rem;
  color: #6e7c90;
}
.our-donators-slide img {
  margin-right: 1.5rem;
  border-radius: 0 0 20px 0;
}

.owl-carousel .owl-item .our-donators-slide img {
  width: auto;
}
/*   Home Page Third End   */

/* 8.1 Home Pages Style End */
.common-title .top-title {
  display: flex;
    align-items: center;
    gap: 7px;
        margin-bottom: 5px;
    font-weight: bold;
}
.common-title i {
  color: #868681;
}

.common-title span {
    align-items: center;
    color: #868681;
    display: flex;
    gap: 10px;
    text-transform: uppercase;
}
.common-title .icon-wrap {
     display: flex;
    gap: 7px;
    align-items: center;
    margin-top: 5px;
}
.common-title .dash-track {
  display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 1px;
}
.common-title .icon-wrap span {
    display: inline-block;
    width: 5px;
    height: 1.2px;
    background-color: #868681;
    animation: dashMove 1s linear infinite;
}
.common-title .icon-wrap span:nth-child(2){
    animation-delay:0.2s;
}
.common-title .icon-wrap span:nth-child(3){
    animation-delay:0.4s;
}
.common-title .icon-wrap span:nth-child(4){
    animation-delay:0.6s;
}
@keyframes dashMove{
   /* 0%{
        transform:translateX(0);
    }*/
    100%{
        transform:translateX(10px);
    }
}
.common-title .title {
    font-weight: bold ;
    color: #0d1b2a;
    font-size:36px;
    margin-bottom: 15px;
}

/*------------------------------------------*/
/*   8.2 About Page
/*------------------------------------------*/
.about-section {
      background-image: url(../../assets/images/why-us-bg.webp);
          background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
}
.about-section ul {
      display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    padding: 2px 0 10px 0;
}
.about-section li {
    list-style: none;
    width: 45%;
    display: flex;
    gap: 6px;
    align-items: center;
}
.about-section ul li i{
  font-size: 24px;
    background-color: #fe9818;
    width: 25px;
    height: 25px;
    border-radius: 100%;
    color: #fff;
    margin-right: 7px;
    text-align: center;
}
.about-section .button-wrap {
  display: flex;
    align-items: center;
    gap: 25px;
}
.about-phone {
  display: flex;
  align-items: center;

}
.about-phone a {
    color: #636886;
}
.about-phone a:hover {
  color: var(--secondary-color);
}
.about-phone i {
  color: #160647;
      font-size: 35px;
    width: 35px;
    height: 35px;
}
.light-color.about-phone {
  color: var(--white);
}
.light-color.about-phone svg {
  color: var(--white);
}
.about-phone svg {
  margin-right: 1rem;
  color: var(--secondary-color);
  width: 30px;
  height: 30px;
}
.about-us-2 {
  border-radius: 0;
}
.since-year {
  border-radius: 20px;
  color: var(--white);
  font-size: 4.5rem;
  background-color: var(--primary-color);
  background-color: rgba(var(--secondary-rgb), 0.7);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  position: absolute;
  bottom: 40px;
  right: -70px;
  padding: 1.8rem 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.since-year span {
  display: block;
  color: var(--white);
  font-size: 1rem;
  font-weight: 400;
}
.btn-team {
  position: relative;
  top: -3rem;
}
.about-img-small {
  position: relative;
     height: 475px;
     margin-left: 25px;
     z-index: 1;
     margin-bottom: 150px;
}
.about-img-small .thumb-1 img {
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  width: 75%;
}

.about-img-small .thumb-2{
  position: absolute;
    right: 37px;
    border-radius: 5px;
    bottom: -70px;
}
.about-img-small .thumb-2 img {
      border-radius: 5px;
      width: 270px;
}
.experience-shape-2 {
      display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background-color: var(--secondary-color);
    border-radius: 12px;
    position: absolute;
    top: 84px;
    right: 50px;
    z-index: 2;
}
.experience-shape-2 h3 {
    margin-bottom: 0;
    color: transparent;
    -webkit-text-stroke: 1px var(--primary-color);
    font-size: 50px;
    font-weight: 600;
}
 .experience-shape-2 p {
    max-width: 92px;
    width: 100%;
    font-weight: 600;
    font-size: 17px;
    color: var(--primary-color);
}
 .video-thumb .video-play-btn {
    width: 80px;
    height: 80px;
    text-align: center;
    color: #fff;
    padding: 30px 20px;
    border-radius: 100%;
    background: rgba(255, 255, 255, 0.015);
    backdrop-filter: blur(13px);
    -webkit-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    animation: animate-pulse 3s linear infinite;
        display: flex;
    align-items: center;
    justify-content: center;
          width: 80px;
    height: 80px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-160%, -50%);
}

.about-section .thumb-2 .thumb-2-wrap .video-thumb .video-play-btn  {
      width: 40px;
    height: 40px;
    padding: 30px 30px;
}
.about-section .thumb-1,
.about-section .thumb-2 .thumb-2-wrap {
  position: relative;
}
.about-section .thumb-1 .box-shape,
.about-section .thumb-2 .thumb-2-wrap .box-shape{
    position: absolute;
    bottom: -32px;
    left: -16px;
    z-index: -1;
}
.about-section .thumb-2 .thumb-2-wrap .box-shape{
      right: -14px;
    left: auto;
    bottom: 50px;
}
.about-section .thumb-1 .box-shape img,
.about-section .thumb-2 .box-shape img {
  width: 100%;
}
.about-section .thumb-2 .thumb-2-wrap .video-thumb .video-play-btn{
      top: 100%;
    transform: translate(-50%, -220%);
}

@keyframes animate-pulse{
  0% {
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8), 0 0 0 0 rgba(255, 255, 255, 0.5);
  }
  40% {
      box-shadow: 0 0 0 50px rgba(255, 109, 74, 0), 0 0 0 0 rgba(255, 255, 255, 0.5);
  }
  80% {
      box-shadow: 0 0 0 50px rgba(255, 109, 74, 0), 0 0 0 30px rgba(255, 109, 74, 0);
  }
  100% {
      box-shadow: 0 0 0 0 rgba(255, 109, 74, 0), 0 0 0 30px rgba(255, 109, 74, 0);
  }
}

/*------------------------------------------*/
/*   why us
/*------------------------------------------*/
.whyus-section{
  background-color: #fff;
}
.whyus-section li {
  list-style: none;
  margin-bottom: 30px;
}
.whyus-section li i {
 background: var(--secondary-color);
 width: 45px;
 height: 45px;
 display: flex;
 font-size: 22px;
 align-items: center;
 color: #fff;
 justify-content: center;
 border-radius: 100%;
}
.whyus-section li .title {
      font-size: 17px;
    margin-bottom: 0;
    color: var(--primary-color)
}
.whyus-section li p{
      /*display: -webkit-box;*/
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /*text-overflow: ellipsis;*/
}
.team-bg {
  background-image: url(../images/hands_bg.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
  padding-bottom: 14rem !important;
}

.video-popup-wrap {
  margin-top: 150px;
}
.video-popup {
  padding: 9rem 0;
  margin-top: -150px;
  margin-bottom: 70px;
  background: url(../images/popup_bg.jpg) no-repeat top center;
  overflow: hidden;
  color: var(--white);
  border-radius: 6px;
  background-size: cover;
  box-shadow: 0px 31px 51px 0px rgba(0, 0, 0, 0.25);
}
.video-popup a {
  color: var(--white);
  display: block;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--white);
  font-size: 3rem;
  margin-left: 14rem;
}
.video-popup a i {
  position: relative;
  left: 4px;
}
.img-icon img {
  max-width: 100px;
  border-radius: 50%;
  box-shadow: 0px 6px 10px 0px rgba(255, 53, 20, 0.2);
  border: 5px solid var(--white);
  margin-right: 25px;
}
.img-icon h3 {
  font-size: 1.25rem;
  color: var(--primary-color);
  font-weight: 700;
}
.img-icon h3 span {
  display: block;
  font-size: 0.875rem;
  color: #999;
  font-weight: 500;
}

.bordered-img {
  box-shadow: 0px 6px 10px 0px rgba(255, 53, 20, 0.2);
  border: 10px solid var(--white);
}
.map-icon {
  margin-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: -4rem;
  padding-bottom: 2.5rem;
}
.map-icon .icon-box-1 {
  display: flex;
  align-items: center;
}
.map-icon .icon-box-1 i {
  color: #27304b;
  font-size: 4rem;
}
.map-icon .icon-box-1 h3 {
  color: var(--white);
}
/*  cloudbanner css start */
/*------------------------------------------*/
/*   cloudbanner
/*------------------------------------------*/
/*.cloudbanner {
  background: url(../../assets/images/mountain.jpg) no-repeat;
  bacground0-image:linear-gradient(to top,#12413c,120px,transparent),url(../../assets/images/mountain.jpg);
    background-position: center;
    background-size: cover;
        background-repeat: no-repeat, no-repeat;
    background-position: 0 0, center bottom;
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding: 18% 0;
}*/
.cloudbanner{
  padding: 18% 0;
    background: url(../../assets/images/mountain.jpg) no-repeat center bottom #fff;
/*    background-image: linear-gradient(to top, #12413c, 10px, transparent), url(../../assets/images/mountain.jpg);*/
    background-repeat: no-repeat, no-repeat;
    background-position: 0 0, center bottom;
    overflow: hidden;
    position: relative;
    z-index: 1;
    background-size: cover;
}
#clouds .x1,
#clouds .x2,
#clouds .x3,
#clouds .x4,
#clouds .x5 {
    position: absolute;
    top: 0;
    background: url(../../assets/images/cloud.png) no-repeat;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    -webkit-animation: moveclouds 30s linear infinite;
    -moz-animation: moveclouds 30s linear infinite;
    -o-animation: moveclouds 30s linear infinite;
    z-index: -1;
}
#clouds .x2 {
  left: 700px;
  top: 30px;
  -webkit-transform: scale(0.6);
  -moz-transform: scale(0.6);
  transform: scale(0.6);
  opacity: 0.6;
}
#clouds .x3 {
    left: 500px;
    top: 200px;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0.8;
    -webkit-animation: moveclouds 40s linear infinite;
    -moz-animation: moveclouds 40s linear infinite;
    -o-animation: moveclouds 40s linear infinite;
}
#clouds .x4 {
    left: 250px;
    top: 50px;
    -webkit-transform: scale(0.75);
    -moz-transform: scale(0.75);
    transform: scale(0.75);
    opacity: 0.6;
    -webkit-animation: moveclouds 45s linear infinite;
    -moz-animation: moveclouds 45s linear infinite;
    -o-animation: moveclouds 45s linear infinite;
}
#clouds .x5 {
    left: 470px;
    top: 150px;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0.6;
    -webkit-animation: moveclouds 40s linear infinite;
    -moz-animation: moveclouds 40s linear infinite;
    -o-animation: moveclouds 40s linear infinite;
}
@keyframes moveclouds {
  0% {margin-left: 1000px;}
  100% {margin-left: -1000px;}
}
@-webkit-keyframes moveclouds {
  0% {margin-left: 1000px;}
  100% {margin-left: -1000px;}
}
@-moz-keyframes moveclouds {
  0% {margin-left: 1000px;}
  100% {margin-left: -1000px;}
}
@-o-keyframes moveclouds {
  0% {margin-left: 1000px;}
  100% {margin-left: -1000px;}
}
.snow_content{
      padding: 30px;
      text-align: center;
    /*display: flex;
    align-items: center;
    justify-content: flex-end;*/
}
.snow_content h1{
      color: #ffff;
    font-size: 70px;
    font-style: normal;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    line-height: 1.3;
    text-shadow: 0 5px 15px rgba(33, 120, 128, 0.2784313725);
    letter-spacing: 0.1em;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: #fff;
    -webkit-text-stroke-width: 2px;
}
/*------------------------------------------*/
/*   8.3 Causes
/*------------------------------------------*/
.causes-wrap {
  border-radius: 10px;
  background: var(--white);
  margin: 0 0 70px 0;
  width: 100%;
  box-shadow: 0px 0px 43px 0px rgba(2, 2, 2, 0.1);
}
.causes-wrap .img-wrap {
  position: relative;
}
.causes-wrap .img-wrap > a {
  position: relative;
  overflow: hidden;
  max-height: 325px;
  display: block;
}
.causes-wrap .img-wrap img {
  border-radius: 10px 10px 0 0;
  width: 100%;
  object-fit: cover;
  width: 100%;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  transform: scale(1.01);
}
.causes-wrap .img-wrap a:hover img {
  transform: scale(1.07);
}
.raised-progress {
  padding: 0rem 1.2rem;
  position: absolute;
  bottom: -30px;
  width: 100%;
  pointer-events: none;
}
.raised-progress .skillbar-wrap {
  padding: 0.7rem 1.2rem;
  border-radius: 4px;
  background-color: var(--white);
  box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.17);
}
.causes-wrap .content-wrap {
  padding: 3.4rem 1.2rem 0;
}
.causes-wrap .content-wrap .tag {
  text-transform: uppercase;
  background-color: #f4f4f6;
  color: #27304b;
  font-size: 0.75rem;
  padding: 0.2rem 1rem;
  display: inline-block;
  border-radius: 50px;
  margin-bottom: 12px;
  font-weight: 600;
}
.causes-wrap .content-wrap h3,
.causes-wrap .content-wrap h3 a {
  color: var(--primary-color);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}
.causes-wrap .content-wrap h3 a:hover {
  color: #27304b;
}
.causes-wrap .content-wrap .btn-wrap {
  text-align: right;
}

.causes-wrap .content-wrap .btn-wrap a {
  margin-bottom: -20px;
}

.featured-causes-img {
  padding-right: 7rem;
  position: relative;
}
.featured-causes-img img {
  box-shadow: 0px 0px 57px 0px rgba(0, 0, 0, 0.15);
  position: relative;
  border-radius: 10px;
  margin-bottom: 4rem;
  margin-left: -15px;
}
.featured-content {
  padding-right: 4rem;
  position: relative;
  z-index: 99;
  padding-bottom: 100px;
}
.featured-cause-timer {
  position: relative;
  min-width: 438px;
  box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.017);
  padding: 1.5rem 2rem 0;
  background: #e5f6f1;
  border-radius: 10px;
  margin: 2.5rem 0;
}
.featured-causes-img .featured-cause-timer {
  position: absolute;
  min-width: 438px;
  box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.017);
  padding: 1.5rem 2rem;
  background: var(--white);
  border-radius: 10px;
  bottom: 0;
  left: 50%;
  transform: translate(-40%, 0);
  margin-bottom: 0;
}
.featured-cause-timer h3 {
  font-weight: 300;
  font-size: 1.25rem;
}
.featured-cause-timer h3 strong {
  font-weight: 600;
}
.featured-cause-timer .skillbar {
  margin-bottom: 1rem;
}
.featured-cause-timer .skillbar,
.featured-cause-timer .skillbar-bar {
  height: 8px;
  border-radius: 8px;
}
.featured-cause-timer #featured-cause {
  margin: 0;
  font-weight: 600;
  font-family: var(--font-heading);
}
.featured-cause-timer #featured-cause li {
  width: 24%;
  margin-right: 0;
}
.featured-cause-timer #featured-cause li .seconds {
  width: 70px;
  display: inline-block;
}
.featured-cause-timer #featured-cause span {
  font-family: var(--font-body);
  font-size: 2.8rem;
  color: #27304b;
  font-weight: 800;
  line-height: 1.2;
  font-family: var(--font-heading);
}
.share-on-text {
  display: flex;
  align-items: center;
}
.share-on-text img {
  margin-left: 0.8rem;
  width: 20px;
  display: inline-block;
  margin-top: -2px;
}
.feautred-faqs .faqs-wrap {
  margin-top: 0;
}
.content-wrap-single {
  padding: 2.5rem 1.8rem;
}
.content-wrap-single .featured-cause-timer {
  position: relative;
  left: 0;
  transform: none;
  padding: 0;
  background: none;
  margin: 0;
}
.content-wrap-single .featured-cause-timer #featured-cause span {
  font-size: 1.2rem;
}

.content-wrap-single h3 {
  color: var(--primary-color);
}
.tag-single {
  background-color: var(--secondary-color);
  color: var(--white);
  font-size: 0.75rem;
  padding: 0.3rem 1.5rem;
  display: inline-block;
  border-radius: 50px;
  margin-bottom: 8px;
  font-weight: 400;
  position: absolute;
  left: 20px;
  top: 20px;
}
.causes-wrap.single {
  border-radius: 0 70px 40px 0;
}
.share-this-wrap {
  background: var(--secondary-color);
  color: var(--white);
  border-radius: 0;
  padding: 1.3rem 2rem;
}
.share-line {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  justify-content: space-between;
}
.share-line > div {
  background-color: var(--secondary-color);
  z-index: 2;
  position: relative;
}
.share-line::after {
  position: absolute;
  content: "";
  top: 50%;
  width: 100%;
  height: 1px;
  background-color: var(--white);
  z-index: 1;
}
.share-this-wrap a {
  color: var(--white);
}
.share-this-wrap a:hover {
  color: #27304b;
}
/* 8.3 Causes Style End */

/*------------------------------------------*/
/*   8.4 Faq's
/*------------------------------------------*/
.faqs-wrap {
  background: url(../images/man_with_hand.jpg) no-repeat center center;
  background-size: cover;
  padding: 10rem 8rem;
  color: var(--white);
  margin-top: -7rem;
  margin-bottom: 3rem;
  position: relative;
  box-shadow: 0px 0px 57px 0px rgba(0, 0, 0, 0.15);
}
.bg-with-text {
  background: url(../images/bg-text.jpg) no-repeat center right;
  background-size: cover;
  border-radius: 5px;
  text-align: center;
  color: var(--white);
  font-size: 1.125rem;
  padding: 0 1.5rem;
  font-weight: 300;
  line-height: 2;
}
.faqs-wrap .row {
  position: relative;
  z-index: 2;
}

.faqs-sidebar {
  background: url(../images/man_with_hand.jpg) no-repeat center center;
  background-size: cover;
  padding: 1.8rem;
  border-radius: 10px;
  overflow: hidden;
}
.faqs-sidebar form {
  position: relative;
  z-index: 99;
}
.faqs-sidebar form .form-group {
  margin-bottom: 1.375rem;
}
.faqs-sidebar form label {
  color: var(--white);
}

.faqs-sidebar .form-light.form-control {
  background-color: rgba(255, 255, 255, 0.8);
}
.faqs-sidebar .form-light.form-control:focus {
  background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 767.99px) {
  .faqs [class*="col-md-"] {
    margin-bottom: 30px;
  }
  .faqs [class*="col-md-"]:nth-last-child(-n + 2) {
    margin-bottom: 0;
  }
}
/* 8.4 Faq's Style End */

/*------------------------------------------*/
/*   8.5 Volunteers
/*------------------------------------------*/
.volunteers-img-bg {
  background: url("../images/volunteers_img_bg.jpg") no-repeat top center;
}
.become-volunteers {
  color: var(--white);
  top: -9rem;
  position: relative;
  box-shadow: 0px 0px 57px 0px rgba(0, 0, 0, 0.15);
}
.become-volunteers .inner-form {
  padding: 7rem;
}
.become-volunteers .inner-form .form-group:not(:last-child) {
  margin-bottom: 1.5rem;
}
.become-volunteers .heading-main small::after {
  background-color: var(--white);
}
.become-volunteers .heading-main {
  margin-bottom: 1.5rem;
}
/* 8.5 Volunteers Style End */

/*------------------------------------------*/
/*   8.6 Donation Form
/*------------------------------------------*/
.donation-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  margin-top: 2rem;
}
.donation-wrap .form-control {
  border: 2px solid #e9eaed;
  background-color: #e9eaed;
}
.donation-wrap .form-check .form-check-input {
  border: 2px solid #d4d6db;
}
.donation-wrap .form-check-input:checked[type="radio"] {
  border: 2px solid #fff;
}
.donation-wrap .form-group {
  margin-bottom: 1.375rem;
}
.donation-wrap .form-control:focus {
  border: 2px solid #e9eaed;
  background-color: var(--white);
}
/* 8.6 Donation Form Style End */

/*------------------------------------------*/
/*   8.7 Events
/*------------------------------------------*/
.top-trip-spacing {
  margin-top: 7rem;
}
.trip-wrap {
  background: var(--white);
  border-radius: 7px;
  overflow: hidden;
  margin: 0;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.15);
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  height: 100%;
}
.trip-wrap .img-wrap img {
  width: 100%;
}
.trip-wrap .content-wrap {
  padding: 0 2.5rem;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 1px;
}
.trip-wrap .content-wrap h3 {
  margin-bottom: 1.5rem;
}
.trip-wrap .content-wrap h3 a,
.trip-wrap-single .date-wrap h3 a {
  color: #27304b;
  font-weight: 600;
  font-size: 1.5rem;
}
.trip-wrap .content-wrap h3 a:hover {
  color: var(--secondary-color);
}
.trip-wrap .date-wrap {
  margin-top: -50px;
  pointer-events: none;
  margin-bottom: 30px;
}
.trip-wrap .date-box,
.trip-wrap-single .date-box {
  min-width: 90px;
  min-height: 90px;
  border-radius: 7px;
  background: var(--primary-color);
  color: var(--white);
  font-size: 1.875rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 5px;
  flex-flow: column;
  max-width: 90px;
  margin-right: 20px;
}
.trip-wrap .date-box span,
.trip-wrap-single .date-box span {
  display: block;
  font-size: 1rem;
  color: #27304b;
  padding-top: 3px;
  font-weight: 400;
}
.trip-wrap .trip-details {
  color: #6e7c90;
  font-size: 0.875rem;
  text-align: left;
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.trip-wrap .trip-details svg,
.trip-wrap-single .trip-details svg {
  color: var(--primary-color);
  margin-right: 5px;
  margin-top: -2px;
  width: 20px;
  height: 20px;
}
.trip-wrap .trip-details > div:not(:last-child) {
  margin-right: 15px;
}
.read-more-wrap {
  padding: 0 2.5rem 2.5rem 2.5rem;
}

.trip-wrap-alternate {
  margin: 30px 0 0 0;
  position: relative;
}
.trip-wrap-alternate .img-wrap {
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  height: 418px;
}
.trip-wrap-alternate .img-wrap img {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  transform: scale(1.01);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trip-wrap-alternate:hover .img-wrap img {
  transform: scale(1.07);
}
.trip-wrap-alternate .date-box {
  z-index: 8;
  min-width: 90px;
  min-height: 90px;
  border-radius: 10px;
  background: var(--white);
  color: var(--secondary-color);
  font-size: 1.875rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -30px;
  left: 2.5rem;
  flex-direction: column;
  font-weight: 700;
}
.trip-wrap-alternate .date-box span {
  display: block;
  font-size: 1rem;
  color: #27304b;
  padding-top: 3px;
  font-weight: 700;
}
.trip-wrap-alternate .content-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  color: var(--white);
  flex-direction: column;
  padding: 0 2.5rem 1.5rem 2.5rem;
  /*background-image: -moz-linear-gradient( -90deg, rgba(36, 55, 70, 0.00) 5.47%, #243746 100%);*/
  /*background-image: -webkit-linear-gradient(
    -90deg,
    rgba(36, 55, 70, 0) 5.47%,
    #243746 100%
  );*/
  /*background-image: -ms-linear-gradient( -90deg, rgba(36, 55, 70, 0.00) 5.47%, #243746 100%);*/
}
.trip-wrap-alternate .content-wrap h3 a {
  color: var(--white);
  font-weight: 700;
  font-size: 1.375rem;
}
.trip-wrap-alternate .content-wrap h3 a:hover {
  color: var(--primary-color);
}
.trip-wrap-alternate .trip-details {
  display: flex;
  align-items: center;
  padding-top: 7px;
  font-size: 0.875rem;
  color: var(--white);
}
.trip-wrap-alternate .trip-details svg {
  color: var(--primary-color);
  margin-right: 5px;
  margin-top: -2px;
  width: 20px;
  height: 20px;
}
.trip-wrap-alternate .trip-details > div:not(:last-child) {
  margin-right: 15px;
}
.trips-single-img {
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 4rem;
}
.trip-single-wrap {
  padding: 5rem 0;
}
.trip-single-info {
  padding: 0 1rem 0 3rem;
}
.trip-single-wrap .container:before {
  content: "";
  width: calc(100% - 350px);
  height: calc(100% + 8rem);
  position: absolute;
  bottom: 4rem;
  left: 8.333333%;
  top: -4rem;
  background: var(--white);
  background: var(--white);
  padding: 3rem 9rem 3rem 3rem;
  box-shadow: 0px 0px 147px 0px rgba(0, 0, 0, 0.07);
  z-index: -1;
}

.map-wrap iframe {
  height: 300px;
  width: 100%;
  border: none;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 3rem;
}
.event-single-listing {
  border-radius: 7px;
  color: var(--white);
  padding: 2rem;
}
.event-single-listing:not(:last-child) {
  margin-bottom: 60px;
}
.event-single-listing h3 {
  margin-bottom: 1.2rem;
}
.event-single-listing ul {
  margin: 0;
}
.event-single-listing ul li {
  display: flex;
  color: var(--white);
  font-weight: 400;
  font-size: 0.875rem;
}
.event-single-listing ul li:not(:last-child) {
  margin-bottom: 1rem;
}
.event-single-listing ul li a {
  color: var(--white);
}
.event-single-listing svg {
  font-size: 24px;
  color: var(--white);
  margin-right: 15px;
  stroke-width: 1.8px;
}

.event-wrap-single {
  background: #d9e7db;
  border-radius: 5px;
  padding: 2rem;
}
.event-wrap-single .date-box {
  background: var(--white);
  color: var(--primary-color);
}
.event-wrap-single .date-wrap h3 a:hover {
  color: var(--secondary-color);
}
/* 8.7 Events Style End */

/*------------------------------------------*/
/*   8.8 Gallery
/*------------------------------------------*/
.img-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 3rem;
  max-height: 340px;
}
.img-gallery-item img {
  transition: 0.4s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-gallery-item:hover img {
  transition: 0.4s;
  transform: scale(1.04);
}
.img-gallery-item .gallery-content {
  position: absolute;
  padding: 2rem;
  height: 100%;
  width: 100%;
  color: var(--white);
  background-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: 0.4s;
  z-index: 99;
  top: 0;
}
.img-gallery-item:hover .gallery-content {
  background-color: rgba(71, 119, 99, 0.7);
  opacity: 1;
  transition: 0.4s;
}
.img-gallery-item .gallery-content .tag span,
.img-gallery-item .gallery-content h3,
.img-gallery-item .gallery-content .img-open svg,
.img-gallery-item .gallery-content {
  transition: 0.4s;
  opacity: 0;
}
.img-gallery-item .gallery-content .tag span {
  text-transform: uppercase;
  font-weight: 600;
  background-color: var(--bistre-color);
  color: var(--white);
  font-size: 0.75rem;
  padding: 0.3rem 1.2rem;
  margin-bottom: 12px;
  display: inline-block;
  border-radius: 50px;
  transform: translateX(-20px);
  transition-delay: 0s;
}
.img-gallery-item .gallery-content h3 {
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  margin-top: 0.2rem;
  transform: translateX(-20px);
  transition-delay: 0.1s;
}
.img-gallery-item .gallery-content .img-open {
  margin-top: auto;
  text-align: right;
  padding-right: 20px;
  font-size: 24px;
}
.img-gallery-item .gallery-content .img-open svg {
  width: 40px;
  height: 40px;
  transform: translateY(20px);
  transition-delay: 0s;
}
.img-gallery-item:hover .gallery-content .tag span,
.img-gallery-item:hover .gallery-content h3,
.img-gallery-item:hover .gallery-content .img-open svg {
  transform: translateY(0px);
  opacity: 1;
}
/* 8.8 Gallery Style End */

/*------------------------------------------*/
/*   8.9 Blog Pages
/*------------------------------------------*/
.post-wrap {
  margin-bottom: 3.5rem;
}
.post-img {
  height: 400px;
  overflow: hidden;
  background: #000;
  border-radius: 10px;
}
.post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
  transform: scale(1.01);
}
.post-wrap:hover .post-img img {
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
  opacity: 0.5;
  transform: scale(1.07);
}
.post-content {
  margin-top: -70px;
  background: var(--white);
  padding: 2.2rem 2rem;
  z-index: 1;
  position: relative;
  margin-left: 20px;
  margin-right: 20px;
  border-radius: 4px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.15);

  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
.post-wrap:hover .post-content {
  box-shadow: 0px 0px 70px 0px rgba(0, 0, 0, 0.1);
}
.blog-carousel .owl-nav {
  top: -80px;
}
.post-date {
  color: var(--primary-color);
  font-size: 00.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.post-title a {
  color: #27304b;
  font-size: 1.375rem;
  font-weight: 800;
}
.post-title a:hover {
  color: var(--primary-color);
}
.post-category {
  color: var(--secondary-color);
  font-size: 00.875rem;
  font-weight: 500;
  margin-bottom: 0.9rem;
}
.blog-list-footer ul li {
  margin-bottom: 30px;
}
.blog-list-footer ul li:last-child {
  margin: 0;
}
.post-thumb {
  width: 80px;
  margin-right: 25px;
}
.post-text a {
  color: var(--primary-color);
  font-size: 0.875rem;
  font-weight: 600;
}
.post-text a:hover {
  color: #000;
}
.comment-box {
  font-size: 0.75rem;
  font-weight: 600;
}
.comment-box a {
  color: #06163a;
}
.comment-box a:hover {
  color: var(--primary-color);
}
.comment-box span {
  padding-right: 15px;
}
.comment-box span i {
  padding-right: 5px;
}
.comment-box span:last-child {
  padding: 0;
}
.commnets-reply {
  margin: 0 0 70px 0;
}
.commnets-reply .media {
  padding: 1.2rem;
  background: var(--white);
  border-radius: 5px;
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
}
.commnets-reply .media .media-body p {
  margin-bottom: 0;
}
.commnets-reply .thumb {
  border-radius: 4px;
  width: 65px;
  margin-right: 30px;
  flex-shrink: 0;
}
.commnets-reply .btn-theme {
  font-size: 0.75rem;
  padding: 0.4rem 1.5rem;
}
.reply-box.media {
  margin: 2rem 0 0 0;
  background: #f2faf8;
}
.commnets-reply .read-more-line span:after {
  left: -45px;
  width: 30px;
}
.home-blog-post-wrap {
  overflow: hidden;
}
#home-blog-post.owl-carousel {
  width: 100%;
  position: relative;
}
#home-blog-post.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  transform: translate3d(0px, 0px, 0px);
  margin-right: calc(50% - 50vw - 0px);
}
.blog-post-broken {
  position: relative;
  padding: 170px 0 30px;
}
.blog-post-broken .post-img {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 6px;
  width: 100%;
}
.blog-post-broken .post-content {
  max-width: 80%;
  margin-left: auto;
  margin-right: 015px;
  margin-top: 0px;
}
.blog-post-broken:hover .post-img img {
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
  opacity: 0.5;
  transform: scale(1.1);
}

/* Blog Single */
.sidebar-spacer {
  padding-right: 2.5rem;
}
.sidebar-widgets .causes-wrap .img-wrap img {
  border-radius: 7px;
}
.widget-wrap {
  margin-bottom: 60px;
}
.widget-title {
  color: #27304b;
  font-size: 1.25rem;
  margin: 1rem 0 2rem;
  padding: 0.5rem 0 0.5rem 1.2rem;
  position: relative;
  font-weight: 700;
}
.widget-title::after {
  background-color: var(--primary-color);
  opacity: 0.102;
  position: absolute;
  border-radius: 3px;
  left: 0;
  top: 50%;
  width: 45px;
  transform: translateY(-50%);
  height: 45px;
  z-index: -1;
  content: "";
}
.widget-wrap .raised-progress {
  padding: 0rem 1.7rem;
}
.widget-wrap .raised-progress .skillbar-wrap .clearfix {
  margin-bottom: 0;
  font-weight: 500;
}
.widget-wrap .raised-progress .skillbar-wrap {
  font-size: 0.78rem;
  padding: 0.7rem;
  text-align: center;
}
.widget-wrap .causes-wrap .content-wrap {
  padding: 3.4rem 2rem 2rem;
}
.widget-wrap .causes-wrap .content-wrap .tag {
  margin-bottom: 0.8rem;
}
.widget-wrap .read-more-line {
  margin-top: 0.8rem;
  display: inline-block;
}
.widget-wrap .causes-wrap,
.widget-wrap .img-wrap img {
  border-radius: 7px;
}
.widget-wrap .causes-wrap {
  margin-bottom: 30px;
}
.our-donators {
  padding: 1.8rem 1.8rem 0 1.8rem;
  background: var(--white);
  border-radius: 4px;
}
.our-donators ul {
  margin-bottom: 0;
}
.our-donators ul li {
  display: flex;
  align-items: center;
}
.our-donators ul li:not(:last-child) {
  margin-bottom: 20px;
}
.our-donators ul li img {
  width: 65px;
  height: 65px;
  margin-right: 1rem;
  border-radius: 0 0 20px 0;
  object-fit: cover;
}
.our-donators ul li .name {
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 5px;
}
.our-donators ul li .money {
  font-size: 0.875rem;
  color: #6e7c90;
  font-weight: 600;
}
.our-donators .btn {
  margin-top: 25px;
  margin-bottom: -25px;
  font-size: 0.875rem;
  text-align: center;
  white-space: nowrap;
}
.popular-post ul {
  margin-bottom: 0;
}
.popular-post ul li {
  display: flex;
  align-items: flex-start;
}
.popular-post ul li:not(:last-child) {
  margin-bottom: 25px;
}
.popular-post ul li img {
  margin-right: 1rem;
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 3px;
}
.popular-post ul li h6 a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
}
.popular-post ul li h6 a:hover {
  color: #000;
}
.popular-post ul li small {
  font-weight: 500;
  font-size: 0.775rem;
  color: #6e7c90;
}
.blog-list-categories {
  padding: 1.8rem;
  background: var(--white);
  font-weight: 500;
}
.blog-list-categories ul {
  margin-bottom: 0;
}
.blog-list-categories ul li a:hover {
  color: var(--primary-color);
}

.sidebar-search {
  display: flex;
  background: var(--white);
  padding: 0.5rem;
  border-radius: 4px;
  align-items: center;
}
.sidebar-search input[type="text"] {
  background: transparent;
  border: none;
  padding: 0 0.4rem;
  font-style: italic;
}
.sidebar-search .btn-link {
  outline: none;
  padding: 0 0.7rem;
  background: transparent;
  color: var(--secondary-color);
  border: none;
  font-size: 1.2rem;
  box-shadow: none;
  text-decoration: none;
  font-weight: 700;
}

.sidebar-ads {
  border-radius: 7px;
  overflow: hidden;
  position: relative;
}
.sidebar-ads img {
  width: 100%;
}
.sidebar-ads::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: rgba(213, 155, 145, 0.7);
  top: 0;
  left: 0;
}
.sidebar-ads .content {
  position: absolute;
  top: 50%;
  width: 100%;
  padding: 0 1rem;
  text-align: center;
  transform: translateY(-50%);
}
.sidebar-ads .content h3 {
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.sidebar-ads .content i {
  font-size: 4rem;
  color: #fef4eb;
  display: block;
  margin-bottom: 1.2rem;
}
.comment-form .form-group {
  margin-bottom: 1.375rem;
}
/* 8.9 Blog Pages Style End */

/*------------------------------------------*/
/*   8.10 Contact
/*------------------------------------------*/
.contact-details {
  position: absolute;
  top: 50%;
  left: 7%;
  z-index: 99;
  background: var(--white);
  padding: 2.5rem 1.15rem;
  color: #000;
  border-radius: 3px;
  transform: translateY(-50%);
}
.contact-details h4 {
  font-size: 16px;
  font-weight: 600;
  color: rgb(6, 22, 58);
  line-height: 1.714;
}
.contact-details p {
  color: #9b9b9b;
}
.contact-details a {
  font-size: 14px;
  color: rgb(6, 22, 58);
}
.contact-details i {
  color: var(--primary-color);
  font-size: 24px;
  top: 4px;
  padding-right: 10px;
  display: inline-block;
  position: relative;
}
.contact-details.standard {
  position: relative;
  left: auto;
  top: auto;
  padding: 0;
  transform: none;
}
.contact-full-shadow {
  box-shadow: 0px 18px 76px 0px rgba(0, 0, 0, 0.06);
  padding-bottom: 250px;
}
.contact-map-bg {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.contact-map-bg.option {
  left: auto;
  top: 50%;
  transform: translate(0%, -50%);
}
.contact-detail-shadow {
  border-radius: 8px;
  background-color: var(--white);
  box-shadow: 0px 18px 76px 0px rgba(0, 0, 0, 0.14);
  padding: 3rem;
}
.contact-detail-shadow .items {
  margin-bottom: 20px;
}
.contact-detail-shadow h4 {
  font-size: 0.875rem;
  color: #adb1d3;
  margin-bottom: 15px;
  font-weight: 700;
}
.contact-detail-shadow i {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-right: 15px;
}
.contact-detail-shadow a {
  text-decoration: underline;
}
.free-quote-form.contact-page {
  margin-bottom: 0;
  margin-top: -140px;
}
.free-quote-form.contact-page .rounded-field input[type="text"],
.free-quote-form.contact-page .rounded-field input[type="email"],
.free-quote-form.contact-page .rounded-field select,
.free-quote-form.contact-page .rounded-field textarea,
.contact-page-option.free-quote-form .rounded-field input[type="text"],
.contact-page-option.free-quote-form .rounded-field input[type="email"],
.contact-page-option.free-quote-form .rounded-field select,
.contact-page-option.free-quote-form .rounded-field textarea {
  background-color: #fafafa;
}
.contact-detail-shadow.no-shadow {
  padding: 0;
  background: transparent;
  box-shadow: none;
}
.free-quote-form.contact-page-option {
  margin-bottom: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.contact-wrap {
  padding: 2.5rem;
  background: var(--white);
  position: relative;
}
.contact-wrap .contact-icon-xl {
  font-size: 18rem;
  position: absolute;
  top: -300px;
  right: 40px;
  color: var(--secondary-color);
  opacity: 0.2;
  z-index: -1;
}
.contact-wrap .form-control {
  border: 2px solid #e9eaed;
  background-color: #e9eaed;
}

.contact-wrap .form-control:focus {
  border: 2px solid #e9eaed;
  background-color: var(--white);
}
.contact-wrap .form-group {
  margin-bottom: 1.9rem;
}
.map-frame {
  width: 80%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0px 0px 43px 0px rgba(0, 0, 0, 0.1);
  max-height: 475px;
}
.map-frame iframe {
  width: 100%;
  border: none;
  height: 475px;
}
.top-broken-grid {
  margin-top: -80px;
  margin-bottom: 70px;
}
/* 8.10 Contact Style End */

/*------------------------------------------*/
/*   9. Miscellaneous Styles
/*------------------------------------------*/
.section-first {
  position: relative;
}
.section-first:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--white);
}
.alert-theme {
  border: 1px solid #ff3514;
}
.head-letter-spacing {
  letter-spacing: -0.05rem;
}

.modal-open,
.fade.show {
  padding: 0 !important;
}
.what-we-offer {
  background-image: url(../images/what_we_offer.jpg);
  box-shadow: 0px 18px 76px 0px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 99;
}
#body-content {
  overflow-y: hidden;
}
.form_thanks {
  text-align: center;
  color: #ff3725;
}
.bs-docs-grid .col-md-1 span,
.bs-docs-grid .col-md-2 span,
.bs-docs-grid .col-md-3 span,
.bs-docs-grid .col-md-4 span,
.bs-docs-grid .col-md-5 span,
.bs-docs-grid .col-md-6 span,
.bs-docs-grid .col-md-4 span,
.bs-docs-grid .col-md-8 span,
.bs-docs-grid .col-md-9 span,
.bs-docs-grid .col-md-10 span {
  background-color: var(--white);
  display: flex;
  margin-bottom: 20px;
  font-size: 0.775rem;
  justify-content: center;
  text-align: center;
  padding: 1rem 0.4rem;
  line-height: 1;
}
label.error {
  font-size: 12px;
  color: #f00;
  font-weight: 300;
  padding: 0;
  margin: 10px 0 0 0;
}
#instagram-feed5 a {
  display: inline-flex;
  width: 31%;
  margin: 0 2% 2% 0;
  border-radius: 5px;
  overflow: hidden;
}
/* 9. Miscellaneous Styles End */

/*------------------------------------------*/
/*   10. Responsive Media Queries
/*------------------------------------------*/
/* ------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------ */

@media (min-width: 1919px) {
  /* .container{ max-width: 1350px;} */
}
/* ------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------ */

@media (max-width: 1400px) {
  /*.navbar-brand { background: #f1fbff; width: 180px; padding: 1.5rem 1.5rem; }*/
  .copyright-wrap::after {
    width: 98%;
  }
  .featured-content {
    padding-right: 0rem;
  }
  .featured-causes-img {
    padding-right: 4rem;
  }

  .featured-cause-timer {
    left: 50%;
    transform: translate(-50%, 0);
    width: 63%;
  }
  .causes-wrap.single .featured-cause-timer {
    width: 100%;
  }
  .map-frame {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Home Version 2 */
}

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

@media (max-width: 1200px) {
  .demo-btns .col {
    max-width: 25%;
    flex: 0 0 25%;
  }
  .btn-long-arrow span:after {
    top: 13px;
    width: 48px;
  }
  .copyright-wrap::after {
    width: 98%;
  }
  .become-volunteers .inner-form {
    padding: 6rem;
  }
  .featured-cause-timer #featured-cause span {
    font-size: 1.8rem;
  }
  .featured-cause-timer,
  .featured-causes-img .featured-cause-timer {
    min-width: 375px;
  }
  .featured-causes-img .featured-cause-timer {
    left: 35%;
  }
  .featured-content {
    margin-bottom: 3rem;
  }
}

/* ------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------ */
@media (min-width: 992px) and (max-width: 1199.99px) {
  html {
    font-size: 15px;
  }
  .navbar-brand {
    margin: 0;
    width: 140px;
  }
  .navbar-expand-md .navbar-nav .nav-link,
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0.3rem 0;
  }
 /* .navbar-expand-lg .navbar-nav .nav-item:not(:last-child) {
    margin-right: 15px;
  }*/
  .overlay .form-inner input[type="text"] {
    margin: 0 1rem;
  }
  .overlay-hugeinc form .form-inner-div {
    padding-right: 7px;
  }
  .navbar-expand-lg .navbar-nav .nav-item {
    padding: 0;
  }

  .event-wrap-alternate .event-details {
    align-items: self-start;
    flex-flow: column;
  }
  .event-wrap-alternate .event-details > div:not(:last-child) {
    margin-bottom: 10px;
  }
  .event-wrap-alternate .content-wrap {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
  .event-wrap-alternate .date-box {
    left: 1.5rem;
  }

  /* Home Version 2 */
  .home-style-second.main-banner .slides-wrap .owl-carousel .owl-nav {
    right: 20px;
  }
  .home-second-donation-form .funds-committed {
    padding-left: 80px;
  }
  .home-second-donation-form .gift-icon {
    font-size: 4.5rem;
    top: 45px;
  }
  .main-banner .container.start {
    max-width: 100%;
  }
  .funds-committed {
    left: 40px;
  }
  .since-year {
    right: -20px;
  }
}
/* ------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------ */

@media (min-width: 768px) and (max-width: 991.99px) {
  html {
    font-size: 15px;
  }
  .img-business-man {
    left: -75px;
  }
  footer .social-icons {
    margin-bottom: 20px;
  }
  .why-choose [class*="col-"] {
    margin-bottom: 30px;
  }
  .why-choose [class*="col-"]:last-child {
    margin-bottom: 0px;
  }

  /* Blog Sidebar */
  .sidebar-primary div.widget-wrap:last-child,
  .sidebar-secondary div.widget-wrap:last-child {
    margin-bottom: 0 !important;
  }
  .donation-wrap {
    margin-bottom: 40px;
  }
  header .container {
    padding: 0 15px !important;
  }

  .contact-wrap {
    margin-bottom: 3rem;
  }

  footer.footer-style-3 .social-icons {
    margin-bottom: 0;
  }
  .footer-subscribe-white {
    margin: 0 0 3rem 0;
  }
  .top-bar-right .contact-info div {
    font-size: 0.84rem;
  }
  .footer-second .bg-effect:before {
    height: calc(27% + 12%);
  }

  .footer-subscribe input[type="text"] {
    width: 90%;
  }
  /* .footer-subscribe .input-wrap button { right: -130px; } */
  .main-banner .container.start {
    max-width: 100%;
  }

  .funds-committed {
    left: 40px;
  }
  .featured-causes-img .featured-cause-timer {
    left: 50%;
  }
}

@media (min-width: 991px) and (max-width: 1024px) {
}

@media (max-width: 991.99px) {
  .header-fullpage.fixed {
    box-shadow:
      rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
      rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
    padding: 0.5rem 0;
    backdrop-filter: blur(10px);
  }

  .wide-tb-150 {
    padding-top: 130px;
    padding-bottom: 130px;
  }
  .wide-tb-100 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .wide-tb-90 {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .give-us-call {
    right: auto;
    position: relative;
    text-align: left;
    left: 15px;
    padding-top: 1rem;
  }
  .give-us-call svg {
    left: 120px;
    top: 6px;
  }
  .demo-btns .col {
    max-width: 33.33%;
    flex: 0 0 33.33%;
    text-align: left !important;
  }
  .img-callout {
    display: none;
  }

  /* .fixed-top{ position: relative; } */
  .breadcrumbs-page {
    padding: 0;
    margin-top: 0;
  }
  /* .navbar { padding: 0.5rem 0; } */

  .logo-brand {
    width: 200px !important;
    flex-basis: unset;
  }
  .navbar-collapse {
    position: fixed;
    height: 100dvh;
    height: 100dvh;
    z-index: 1040;
    top: 0;
    bottom: 0;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    width: 300px;
    left: -100%;
    background-color: var(--secondary-color);
  }
  /* .sidenav-open .header-fullpage {backdrop-filter: unset;} */
  .navbar-collapse > ul {
    position: relative;
    z-index: 3;
    background: var(--primary-color);
    height: 100%;
    padding: 75px 1rem 1rem;
    width: 100%;
    overflow: auto;
  }
  .header-fullpage .navbar-collapse,
  .header-fullpage .navbar-collapse > ul {
    background-color: var(--white);
  }

  .header-style-fullwidth .navbar-expand-lg .navbar-nav .nav-link {
    color: var(--white);
    border-radius: 3px;
  }
  .logo-small {
    padding: 1rem 0;
    display: block;
  }
  .logo-small img {
    width: 150px;
  }
  html.sidenav-open {
    overflow: hidden;
  }
  .sidenav-open .navbar-collapse {
    left: 0;
  }
  .navbar-toggler {
    padding: 10px 0;
    border: none;
    outline: none !important;
    margin-left: 15px;
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }
  .close-nav {
    display: block;
    visibility: hidden;
    opacity: 1;
    width: 100%;
    height: 100vh;
  }

  .sidenav-open .close-nav {
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
    position: fixed;
    left: 0;
    top: 0;
    visibility: visible;
    opacity: 1;
    transition: all 0.5s ease;
    cursor: url(../images/close-nav.svg), auto;
  }
  .navbar-collapse .offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0.7rem;
    background-color: var(--secondary-color);
    z-index: 3;
    position: relative;
    width: 100%;
  }
  .navbar-collapse .offcanvas-body {
    flex-direction: column;
    overflow-y: auto;
    flex-basis: unset;
  }
  .offcanvas-body {
    flex-grow: 1;
    padding: 0 0.7rem 0.7rem;
    overflow-y: auto;
    background-color: var(--secondary-color);
    z-index: 3;
    position: relative;
    height: 100%;
    width: 100%;
  }
  .navbar-nav {
    margin-left: inherit !important;
    width: 100%;
  }

  .header-fullpage .navbar-collapse .offcanvas-header,
  .header-fullpage .navbar-collapse .offcanvas-body {
    background-color: var(--white);
  }
  .header-style-fullwidth .navbar-collapse,
  .header-style-fullwidth .navbar-collapse .offcanvas-header,
  .header-style-fullwidth .navbar-collapse .offcanvas-body {
    background-color: #477763;
  }

  /* .navbar-expand-md .navbar-nav .nav-item, .navbar-expand-lg .navbar-nav .nav-item { padding: 0.2rem 0; } */
  .navbar-expand-md .navbar-nav .nav-item,
  .navbar-expand-lg .navbar-nav .nav-item:not(:last-child) {
    border-bottom: 1px solid rgba(51, 51, 51, 0.1);
    margin-right: 0;
  }
  .header-style-fullwidth .navbar-expand-lg .navbar-nav .nav-item {
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .navbar-nav .nav-link i.icofont-rounded-down {
    transition: all 400ms ease-in-out;
  }
  .dropdown > a::after {
    position: absolute;
    top: 50%;
    height: 12px;
    width: 12px;
    transition: all 400ms ease-in-out;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .dropdown-submenu > a::after {
    right: 10px;
    content: "\ea99";
  }
  .dropdown > a.show::after,
  .dropdown-submenu > a.show::after {
    transform: translateY(-50%) rotate(180deg);
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    padding: 0.5rem 0;
    position: relative;
  }
  .navbar-nav .nav-item:hover .nav-link,
  .navbar-nav .active .nav-link,
  .navbar-nav .active .nav-link:hover,
  .navbar-nav .nav-link:hover {
    color: var(--primary-color);
    background: transparent;
  }
  .dropdown-menu.animated {
    -webkit-animation-duration: unset;
    animation-duration: unset;
  }
  .dropdown-menu a,
  .dropdown-menu li > a {
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(51, 51, 51, 0.1);
  }
  .navbar-collapse .dropdown-menu {
    box-shadow: none !important;
    background: #fff5ec;
    border-radius: 0;
  }
  .dropdown-menu:after {
    display: none !important;
  }

  .header-style-fullwidth .dropdown-menu li > a {
    border-bottom: 1px solid #d9e7db;
  }

  .top-bar-right {
    min-height: auto;
  }

  .top-transparent .navbar-brand,
  .top-transparent.header-fullpage.fixed .navbar-brand {
    padding: 1rem 0 !important;
    width: 130px !important;
  }
  .top-transparent .top-bar-right {
    margin: 10px auto 0;
    text-align: center;
  }

  .header-logo-top .top-text {
    display: none;
  }
  .header-logo-top.top-transparent .lang-toggle {
    padding: 0;
  }

  .header-logo-top.top-transparent .top-bar-right {
    margin: 0;
  }

  .bg-with-text {
    padding: 2rem;
    min-height: 300px;
  }

  .forklift-image {
    position: relative;
    bottom: 0;
    left: 0;
  }
  .tracking {
    padding-bottom: 120px;
  }

  .center-text {
    padding: 1rem 2rem 0 0;
  }

  .contact-details {
    top: 0;
    left: 15px;
    width: 100%;
    transform: none;
    position: relative;
  }

  .map-shadow {
    margin: 20px 0 50px;
  }

  /* Blog Sidebar */
  .sidebar-spacer {
    padding: 0;
  }

  .cbp-caption-activeWrap {
    background-color: #ff3514;
  }

  .bordered-nav .top-bar-right {
    display: none !important;
  }
  .bordered-nav .navbar .bdr-nav {
    padding: 1rem 0;
  }

  .bordered-nav .request-btn a#search_home {
    color: var(--white);
  }

  .faqs-wrap {
    padding: 4rem 3rem;
  }
  .featured-causes-img {
    padding-right: 0rem;
  }
  .featured-cause-timer {
    width: auto;
    min-width: auto;
  }
  .featured-content {
    padding: 0;
    margin-bottom: 1rem;
  }
  .sidebar-widgets {
    margin-top: 0;
  }
  .event-wrap .date-wrap {
    margin-bottom: 15px;
  }
  .event-single-wrap .container:before {
    display: none;
  }
  .event-single-info {
    padding: 2rem;
    background: var(--white);
  }
  .event-single-wrap {
    padding: 0;
  }
  .event-single-listing ul li {
    display: inline-flex;
    margin-right: 20px;
    align-items: center;
  }
  .event-single-listing ul li:not(:last-child) {
    margin: 0.5rem 20px 0.5rem 0;
  }

  .event-single-listing:not(:first-child),
  .event-single-listing:not(:last-child) {
    margin-bottom: 40px;
  }

  .event-wrap .content-wrap {
    padding: 0 1.5rem;
  }
  .event-wrap-single {
    padding: 1.5rem;
  }

  .main-banner {
    margin-top: 0;
  }

  /* Home Version 2 */
  .home-second-donation-form .funds-committed {
    margin-top: -101px;
    transform: none;
  }
  .header-style-fullwidth {
    background: var(--secondary-color);
    position: relative;
  }
  .header-style-fullwidth .navbar-toggler .icon-bar {
    background-color: var(--white);
  }
  .home-style-second.main-banner .slides-wrap .owl-carousel .owl-slide {
    min-height: 768px;
  }
  .home-second-donation-form .form-style {
    margin-bottom: 0;
  }
  .bg-img-1 {
    background-position: right center !important;
  }
  .footer-second .bg-effect:before {
    width: calc(150% - 0px);
    height: calc(50%);
    bottom: 0;
    right: auto;
    top: -70px;
    background-size: cover;
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-second .footer-subscribe {
    max-width: 100%;
    margin-top: 40px;
  }

  /* Home Version 3 */
  .homestyle-third {
    background: var(--white);
    position: relative;
  }
  .static-banner {
    padding: 4rem 0 7rem;
  }
  .banner-text {
    padding-bottom: 3rem;
  }
  .welcom-section-3 .hand-heart {
    display: none;
  }
  .featured-causes-img-2 {
    margin-top: 2rem;
    min-height: 440px;
  }
  .featured-causes-img-content {
    margin-bottom: 9rem;
  }
  .become-volunteers-links a {
    width: 100%;
  }
  .home-second-donation-form.img .form-style {
    margin-bottom: -109px;
  }
  .header-style-fullwidth .navbar-nav .nav-item:hover .nav-link,
  .header-style-fullwidth .navbar-nav .active .nav-link,
  .header-style-fullwidth .navbar-nav .active .nav-link:hover,
  .header-style-fullwidth .navbar-nav .nav-link:hover {
    background: transparent;
  }
  .header-style-fullwidth .navbar {
    padding-top: 0;
    position: relative;
  }

  .heading-main small {
    padding-left: 60px;
  }
  .heading-main small::after {
    left: 0;
  }
  .footer-style-3 {
    margin-top: 3rem;
  }
  .footer-style-3 .top-row {
    top: -3rem;
  }

  /* .navbar { animation: none; } */
  .theme-collapse .toggle {
    color: #27304b;
    letter-spacing: 0rem;
    font-size: 1.2rem;
    line-height: 1.2;
  }

  .client-testimonial-alternate {
    padding: 2.5rem;
  }

  .faqs-sidebar {
    margin-top: 1.37rem;
  }
}

@media (max-width: 767px) {
  body {
    line-height: 1.6;
  }

  .demo-btns .btn-theme {
    display: block;
  }
  html {
    font-size: 15px;
  }
  .demo-btns .col {
    max-width: 50%;
    flex: 0 0 50%;
    text-align: left !important;
  }

  /*.header-fullpage{ background: transparent; }*/
  .top-bar-btn.social-icons {
    display: none !important;
  }
  .request-btn {
    margin-left: 20px;
  }
  .top-bar-right {
    min-height: auto;
    text-align: center;
  }

  header .container,
  .top-bar-right .container {
    max-width: 100%;
    padding: 0 15px !important;
  }
  .heading-main {
    margin-bottom: 20px;
  }

  .about-img-small {
    margin-bottom: 30px;
  }
  .read-more-line span:after {
    right: -30px;
    left: auto;
  }

  #body-content [class*="col-"],
  footer [class*="col-"] {
    margin-bottom: 40px;
  }
  #body-content [class*="col-"]:last-child,
  footer [class*="col-"]:last-child,
  #body-content .overlay [class*="col-"],
  #body-content .donation-wrap [class*="col-"] {
    margin-bottom: 0;
  }

  .img-business-man {
    display: none;
  }

  .home-welcome {
    margin-top: 0;
    padding: 100px 0 0 0 !important;
  }

  .btn-center {
    margin-top: 0;
  }

  .btn-long-arrow span:after {
    top: 9px;
  }

  /* Blog Sidebar */
  #body-content [class*="col-"].sidebar-primary,
  #body-content [class*="col-"].sidebar-secondary {
    margin-bottom: 0 !important;
  }

  .header-logo-top .request-btn {
    margin-left: 0;
  }
  .header-logo-top .request-btn a#search_home {
    padding-left: 0;
  }

  .header-logo-top.top-transparent .navbar-toggler {
    margin-right: 10px;
  }

  .footer-subscribe .input-wrap {
    width: 100%;
  }
  .footer-subscribe {
    padding: 0;
  }
  .copyright-wrap {
    padding: 1rem 0;
  }
  footer .copyright-wrap [class*="col-"] {
    margin-bottom: 0;
  }
  .copyright-links {
    margin-top: 10px !important;
  }

  .homestyle-third .request-btn a#search_home {
    padding: 0.4rem 1rem;
  }

  .logo-brand {
    width: unset !important;
  }

  .map-bg {
    background-size: contain;
  }
  .team-section-wrap {
    margin-bottom: 0;
  }

  .causes-wrap {
    margin: 0 0 30px 0;
  }
  .featured-cause-timer {
    width: 400px;
    min-width: auto;
  }
  .featured-content {
    padding: 1rem 4rem 0;
  }
  .featured-causes-img-2 {
    margin-top: 0;
    min-height: 310px;
  }

  .featured-causes-img-content .featured-content {
    padding: 0;
  }
  .featured-causes-img-content .featured-cause-timer {
    width: 100%;
  }
  .featured-cause-timer #featured-cause {
    margin-bottom: 15px;
    width: 100% !important;
  }
  .our-donators .btn {
    margin-bottom: -18px;
  }
  .sidebar-secondary .widget-wrap:last-child,
  .widget-wrap .causes-wrap:last-child {
    margin-bottom: 0;
  }
  #sidebar-causes .causes-wrap {
    margin-bottom: 30px;
  }

  .read-more-line span {
    margin-left: 0;
  }
  .event-single-listing:not(:first-child) {
    margin-bottom: 0;
  }

  .contact-wrap .form-group {
    margin-bottom: 1rem;
  }

  .funds-committed {
    left: 50%;
    transform: translateX(-50%);
  }
  .banner-img .funds-committed {
    left: 50%;
    right: auto;
  }
  .event-wrap-single .date-box {
    margin-bottom: 15px;
  }
  .contact-info {
    justify-content: center;
  }
  .welcome-icon {
    font-size: 18rem;
    top: -17rem;
    right: 28px;
  }

  /* Home Version 3 */
  .footer-style-3 .logo-footer {
    width: auto;
    margin-bottom: 2rem;
  }
  .static-banner .banner-text h1 {
    font-size: 3.5rem;
  }
  .static-banner::after {
    width: 50%;
  }
  .team-bg {
    padding-bottom: 12rem !important;
  }
  .home-style-second.main-banner {
    min-height: auto;
  }

  .icon-box-with-img .img,
  .img-gallery-item {
    margin-bottom: 0;
  }

  .footer-second .footer-subscribe {
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 40px;
  }
  .footer-second .instagram_feed {
    margin-top: 4rem;
  }
  /* .footer-second .bg-effect:before { width: calc(120% - 0px); height: calc(27% + 15%); bottom: 0; right: 0; top: -9%;} */
  .client-testimonial-alternate {
    padding: 2rem;
    margin-bottom: 40px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  }

  .owl-nav {
    top: 0;
    position: relative;
    width: 100%;
    text-align: center;
  }
  .owl-dots {
    top: 20px;
  }
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next {
    height: 40px;
    width: 40px;
    font-size: 1.5rem;
    margin: 0;
    position: relative;
    margin: 0 5px;
  }
  .owl-carousel.nav-light .owl-nav button.owl-prev,
  .owl-carousel.nav-light .owl-nav button.owl-next {
    color: var(--bistre-color);
    border-color: var(--bistre-color);
  }
  .slides-wrap .owl-carousel .owl-nav svg {
    width: 30px;
    height: 30px;
  }
  .owl-carousel .owl-nav button.owl-prev {
    left: auto;
  }
  .owl-carousel .owl-nav button.owl-next {
    right: auto;
  }
  .owl-carousel .owl-nav svg {
    width: 24px;
    height: 24px;
  }

  .event-wrap-alternate {
    margin: 30px 0;
  }
  header .social-icons {
    display: none;
  }

  .content-wrap-single h3 {
    font-size: 1rem;
  }
  .skillbar-percent {
    top: -32px;
  }

  .bs-docs-grid [class*="col-"] {
    margin-bottom: 0 !important;
  }
  .main-banner .container.start {
    max-width: 100%;
  }

  .theme-collapse .toggle {
    font-size: 1.1rem;
    line-height: 1.5rem;
    letter-spacing: 0;
    padding: 12px 0 12px 45px;
  }
  .theme-collapse .toggle .icon {
    width: 30px;
    height: 30px;
  }

  .wide-tb-150 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .wide-tb-100 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .wide-tb-90 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .breadcrumbs-page h1 {
    font-size: 3.5rem;
    padding: 6rem 0 7rem;
  }
  .breadcrumb-wrap {
    padding: 0.5rem 1.2rem;
  }

  .client-testimonial-alternate .client-inner-content {
    font-size: 1.25rem;
  }
  .blog-list-categories {
    padding: 1.25rem;
  }
  .our-donators {
    padding: 1.25rem 1.25rem 0 1.25rem;
    margin-bottom: 58px;
  }
  .widget-wrap .causes-wrap .content-wrap {
    padding: 3.4rem 1.25rem 1.25rem;
  }
  .widget-wrap .raised-progress {
    padding: 0rem 1.25rem;
  }
  .widget-wrap {
    margin-bottom: 30px;
  }
  .btn-team {
    top: 0;
    padding-bottom: 40px;
  }
  .counter-style-box {
    padding: 1.5rem 1.25rem;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  #body-content .mb-spacer-md *[class*="col-"] {
    margin-bottom: 0;
  }
  /* .mb-spacer-md .heading-main { margin-bottom: 70px; } */

  /* Header H5 */
  h5.h5-xs {
    font-size: 1rem;
  } /* 15px */
  h5.h5-sm {
    font-size: 1.05rem;
  } /* 15.75px */
  h5.h5-md {
    font-size: 1.05rem;
  } /* 15.75px */
  h5.h5-lg {
    font-size: 1.08rem;
  } /* 16.2px */
  h5.h5-xl {
    font-size: 1.08rem;
  } /* 16.2px */

  /* Header H4 */
  h4.h4-xs {
    font-size: 1.08rem;
  } /* 16.2px */
  h4.h4-sm {
    font-size: 1.08rem;
  } /* 16.2px */
  h4.h4-md {
    font-size: 1.15rem;
  } /* 17.25px */
  h4.h4-lg {
    font-size: 1.23rem;
  } /* 18.45px */
  h4.h4-xl {
    font-size: 1.3rem;
  } /* 19.5px */

  .overlay-hugeinc form .form-inner-div {
    padding-right: 15px;
  }
  .light-color.about-phone {
    margin: 1rem 0 0 0;
  }
  .footer-second .bg-effect:before {
    height: calc(50% + 70px);
  }
  #home-blog-post .owl-nav {
    text-align: left;
  }
  .faqs-wrap {
    padding: 3rem;
  }
  .map-icon {
    margin-top: 0;
  }
  .callout-style-side-img .text-callout .icon .btn {
    margin-left: 0;
  }
}

@media (max-width: 699px) {
  .map-icon {
    margin-top: 0;
  }
  .faqs-wrap {
    padding: 3rem;
  }
  .become-volunteers .inner-form {
    padding: 4rem;
  }

  .home-style-second.main-banner .slides-wrap .owl-carousel .owl-slide {
    min-height: 500px;
  }
  .home-second-donation-form .funds-committed {
    margin-top: 40px;
    transform: none;
  }

  .home-style-second.main-banner
    .slides-wrap
    .owl-carousel
    .owl-nav
    button.owl-prev {
    right: 0;
  }

  .home-style-second.main-banner .slides-wrap .owl-carousel .owl-nav {
    width: 100%;
    text-align: center;
    bottom: 50px;
  }

  #home-second-blog-post .owl-nav {
    top: -20px;
  }

  .featured-causes-img .featured-cause-timer {
    bottom: 0;
    left: 10%;
    transform: none;
    margin: 0 auto;
  }

  #mkdf-back-to-top {
    right: 10px;
    bottom: 70px;
    border-radius: 3px;
    width: 40px;
    height: 40px;
    font-size: 30px;
  }

  #mkdf-back-to-top svg {
    width: 20px;
    height: 20px;
  }

  .light-color.about-phone {
    margin: 1rem 0 0 0;
  }

  .commnets-reply .media {
    flex-direction: column;
  }
  .commnets-reply .thumb {
    margin: 0 0 20px 0;
  }

  .since-year {
    right: -40px;
  }
  .post-content {
    padding: 1.563rem 1rem;
  }
}

@media (max-width: 575px) {
  .footer-subscribe {
    margin-top: 25px;
  }
  .footer-second .bg-effect:before {
    height: calc(27% + 12%);
  }
  .footer-subscribe input[type="text"] {
    margin: 0;
    padding: 1rem;
    width: 100%;
  }

  .footer-subscribe .input-wrap {
    width: 100%;
    display: inherit;
  }
  .footer-subscribe .input-wrap button {
    position: relative;
    top: 0;
    transform: none;
    right: 0;
    margin-top: 20px;
  }
  .top-bar-right {
    display: none;
  }
  /*.navbar-toggler { padding: 20px; }*/
  .top-bar-right .contact-info div:last-child,
  .donate-btn {
    display: none;
  }
  .request-btn a#search_home {
    margin: 0;
  }
  .top-bar-right .contact-info div {
    margin-right: 0;
    width: 50%;
    text-align: center;
    white-space: nowrap;
  }
  .navbar-brand {
    margin: 0;
    padding: 0;
    max-width: 150px;
  }

  .header-logo-top.top-transparent .navbar-toggler {
    margin-right: 15px;
  }
  .about-img-small {
    margin-bottom: 0;
  }
  .team-section-wrap {
    margin-bottom: 0;
  }

  .callout-style-side-img .text-callout .icon {
    margin-top: 15px;
  }
  .breadcrumbs-page h1 {
    font-size: 2.5rem;
    margin: 0;
  }
  .breadcrumbs-page .container {
    padding: 0 1rem;
  }
  .breadcrumb-wrap {
    padding: 0.4rem 1.2rem;
    bottom: -15px;
  }

  .share-line {
    flex-direction: column;
    align-items: flex-start;
  }
  .share-line .ps-4 {
    padding: 7px 0 0 0 !important;
  }
  .share-line::after {
    display: none;
  }

  .about-bg {
    background-position: 0;
    background-size: contain;
  }
  .style-one {
    margin-bottom: 0;
    padding: 0 2rem 0;
  }

  .overlay-hugeinc form .form-inner {
    width: 95%;
  }
  .overlay-hugeinc form .form-inner-div {
    padding: 0.75rem 1rem;
  }

  .footer-subscribe .head {
    text-align: center;
    margin-bottom: 15px;
  }
  .footer-subscribe .head span {
    display: inline !important;
  }

  .center-text {
    padding: 1rem 0 1.5rem;
  }

  .heading-main {
    font-size: 1.95rem;
  }
  .client-testimonials-bg {
    padding: 1rem;
  }

  /* Breadcrumbs*/
  .breadcrumbs-description {
    max-width: 100%;
    padding: 0 1.5rem;
  }

  /* Request Button */
  .request-btn a.icon-left i {
    padding: 0;
  }
  .request_popup .px-3.m-5 {
    padding: 0 !important;
    margin: 25px 015px !important;
  }
  .request_popup .close {
    color: var(--white);
  }

  .contact-details {
    padding: 2.5rem 0rem;
  }

  .about-whoose {
    padding: 10px !important;
    padding-right: 0 !important;
  }

  .icons-listing.w-half li {
    flex: 1 1 100%;
  }
  .footer-subscribe h2 {
    font-size: 1.95rem;
  }

  .copyright-wrap::after {
    width: 100%;
  }

  .become-volunteers .inner-form,
  .donation-wrap {
    padding: 2rem;
  }
  .featured-causes-img img {
    margin-bottom: 2rem;
    margin-left: 0;
  }
  .featured-cause-timer {
    position: relative;
    left: 0;
    transform: none;
    margin: 0;
    width: auto;
    background: var(--white);
    box-shadow: none;
    border-radius: 0;
    padding: 2rem;
  }
  .featured-content {
    padding: 0;
  }
  .content-wrap-single .featured-cause-timer {
    margin: 0;
    background: transparent;
  }

  /* .funds-committed { left: 40px; } */
  .funds-committed .counter {
    font-size: 2.2rem;
  }
  #home-blog-post.owl-carousel {
    width: 100%;
  }

  .blog-post-broken {
    padding-top: 0;
  }
  .blog-post-broken .post-img {
    position: relative;
  }
  .blog-post-broken .post-content {
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
    margin-top: -50px;
  }

  .theme-tabbing.nav-pills .nav-link {
    margin-bottom: 1rem;
  }

  .home-second-donation-form .funds-committed {
    padding-left: 50px;
  }
  .callout-style-side-img .text-callout .icon .btn {
    margin-left: 0;
  }
  .footer-second .footer-subscribe {
    max-width: 100%;
  }
  .home-second-donation-form .form-style {
    padding: 1.5rem;
  }

  .footer-second .give-us-call {
    right: 0;
    left: 0;
  }
  .client-testimonial-alternate {
    margin-bottom: 50px;
  }

  .featured-causes-img .featured-cause-timer {
    position: relative;
    left: 0;
    min-width: 100%;
    background: transparent;
    padding: 1rem 0 0 0;
  }

  .contact-wrap {
    padding: 1.5rem;
  }
  .callout-style-side-img .text-callout .heading h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .demo-btns .col {
    max-width: 100%;
    flex: 0 0 100%;
    text-align: left !important;
  }

  .contact-details .col + .col {
    margin-top: 25px;
  }
  .free-quote-form.contact-page .form-row,
  .free-quote-form.contact-page-option .form-row {
    margin-bottom: 0 !important;
  }
  .free-quote-form.contact-page .form-row > .col,
  .free-quote-form.contact-page-option .form-row > .col {
    flex-basis: auto;
    margin-bottom: 20px;
  }

  .client-testimonial .media {
    display: inline;
  }

  .client-testimonial-icon {
    margin: 0;
  }

  .mobile-100 a {
    display: inline-block;
    margin: 0 0 15px 0 !important;
  }
  .mobile-100 a.play-video {
    margin: 0 !important;
  }
  .static-banner::after {
    display: none;
  }
  .featured-causes-img-content .featured-cause-timer {
    padding: 1rem;
  }
  .featured-causes-img-content .featured-cause-timer #featured-cause span {
    font-size: 2rem;
  }

  .footer-style-3 .give-us-call {
    right: 0;
  }
  .footer-second .bg-effect:before {
    height: calc(27% + 15%);
  }
}

@media (max-width: 320px) {
  .homestyle-third .request-btn a#search_home {
    padding: 0.719rem 1rem;
  }
  .request-btn a#search_home {
    margin: 0;
  }
  .static-banner .slider-link {
    display: block;
    margin-top: 15px;
  }
  .causes-wrap.single .skillbar-percent {
    display: none;
  }
  .top-bar-right {
    font-size: 0.8rem;
  }
}

/*   10. Responsive Media Queries End  */
