

/*** Search Popup ***/

.search-popup {
  position: fixed;
  left: 0;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  overflow: auto;
  -webkit-transform: translateY(101%);
  -ms-transform: translateY(101%);
  transform: translateY(101%);
  transition: all 700ms ease;
  -moz-transition: all 700ms ease;
  -webkit-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
}

.search-popup.popup-visible {
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  visibility: visible;
  opacity: 1;
}

.search-popup .popup-inner{
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  height: 100%;
}

.search-popup .upper-box{
  position: relative;
  padding: 70px 70px;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search-popup .upper-box .logo-box{
  max-width: 236px;
}

.search-popup .overlay-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  display: block;
}

.search-popup .close-search {
  position: relative;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  z-index: 5;
  transition: all 500ms ease;
}

.search-popup .close-search:hover {
  color: red;
}

.search-popup .search-form {
  position: relative;
  width: 100%;
  padding: 100px 0px 250px 0px;
}

.search-popup .search-form .form-group{
  position: relative;
  margin: 0px;
}

.search-popup .search-form fieldset input[type="search"] {
  position: relative;
  height: 90px;
  padding: 20px 0px;
  background: transparent;
  line-height: 30px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.70);
  border: none;
  font-weight: 400;
  border-radius: 0px;
  padding-right: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.search-popup .search-form fieldset button[type="submit"] {
  position: absolute;
  top: 30px;
  right: 0px;
  cursor: pointer;
  font-size: 20px;
  color: #fff;
  transition: all 500ms ease;
}

.search-popup .search-form fieldset input[type="search"]:focus{
  border-color: var(--theme-color);
}

.search-popup .form-control:focus{
  box-shadow: none !important;
}

.search-popup .search-form fieldset input:focus + button,
.search-popup .search-form fieldset button:hover{
  
}


.main-header .outer-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-style-one{
  position: absolute;
  left: 0px;
  top: 25px;
  width: 100%;
}

.header-style-one .header-lower .outer-box{
  background-color: #fff;
  border-radius: 110px;
  padding: 0px 15px;

}

.main-header .menu-right-content{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-header .menu-right-content .search-toggler{
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 52px;
  background-color: #F0F1F1;
  text-align: center;
  border-radius: 50%;
  font-size: 20px;
  color: var(--title-color);
  cursor: pointer;
  transition: all 500ms ease;
}

.main-header .menu-right-content .search-toggler:hover{
  color: #fff;
  background-color: var(--theme-color);
}

.main-header .menu-right-content .theme-btn{
  padding-top: 10px;
  padding-bottom: 10px;
}

.main-header .menu-right-content .btn-box{
  display: none;
}


/** main-menu **/

.main-menu .navbar-collapse{
  padding:0px;
  display:block !important;
}

.main-menu .navigation{
  margin:0px;
}

.main-menu .navigation > li{
  position:inherit;
  float:left;
  z-index:2;
  margin: 0px 19px;
  -webkit-transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  transition:all 300ms ease;
}

.main-menu .navigation > li:last-child{
  margin-right:0px !important;
}

.main-menu .navigation > li:first-child{
  margin-left: 0px !important;
}

.main-menu .navigation > li > a{
  position:relative;
  display:block;
  text-align:center;
  font-size:16px;
  line-height:26px;
  padding-top: 27px;
  padding-bottom: 27px;
  font-weight:500;
  font-family: var(--text-font);
  opacity:1;
  color: var(--title-color);
  z-index:1;
  text-transform: uppercase;
  -webkit-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  transition:all 500ms ease;
}

.main-menu .navigation > li.dropdown > a{
  padding-right: 17px;
}

.main-menu .navigation > li.current > a,
.main-menu .navigation > li:hover > a{
  
}

.main-menu .navigation > li.dropdown > a:before{
  position: absolute;
  content: "\f107";
  font-family: 'Font Awesome 5 Pro';
  top: 27px;
  right: 0px;
  font-weight: 500;
  transition: all 500ms ease;
}

.main-menu .navigation > li > ul,
.main-menu .navigation > li > .megamenu{
  position:absolute;
  left: inherit;
  top:100%;
  width:230px;
  margin-top: 15px;
  padding: 15px 25px;
  z-index:100;
  display:none;
  background: #fff;
  opacity: 0;
  border-bottom: solid;
  border-width: 3px;
  visibility: hidden;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
  border-radius: 5px;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.main-menu .navigation > li > ul.from-right{
  left:auto;
  right:0px;  
}

.main-menu .navigation > li > ul > li{
  position:relative;
  width:100%;
}

.main-menu .navigation > li > ul > li > a,
.main-menu .navigation > li > .megamenu li > a{
  position:relative;
  display:block;
  padding: 5px 0px;
  line-height:24px;
  font-weight:500;
  font-size:15px;
  text-transform:capitalize;
  font-family: var(--text-font);
  color:var(--title-color);
  text-align: left;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.main-menu .navigation > li > .megamenu li > a{
  padding-left: 0px;
}

.main-menu .navigation > li > .megamenu h4{
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
}

.main-menu .navigation > li > ul > li > a:hover,
.main-menu .navigation > li > .megamenu li > a:hover{
  letter-spacing: 1px;
}

.main-menu .navigation > li > ul > li:last-child > a,
.main-menu .navigation > li > .megamenu li:last-child > a{
  border-bottom: none;
}

.main-menu .navigation > li > ul > li.dropdown > a:after{
  font-family: 'Font Awesome 5 Pro';
  content: "\f105";
  position:absolute;
  right:0px;
  top:6px;
  display:block;
  line-height:24px;
  font-size:16px;
  font-weight:400;
  text-align:center;
  z-index:5;  
}

.main-menu .navigation > li > ul > li > ul{
  position:absolute;
  left:100%;
  top:0%;
  margin-left: 25px;
  margin-top: 15px;
  background: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
  border-radius: 5px;
  width:230px;
  z-index:100;
  padding: 15px 25px;
  display:none;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.main-menu .navigation > li > ul > li > ul:before{
  position: absolute;
  content: '';
  background: transparent;
  width: 25px;
  height: 100%;
  left: -25px;
  top: 0px;
}

.main-menu .navigation > li > ul > li > ul.from-right{
  left:auto;
  right:0px;  
}

.main-menu .navigation > li > ul > li > ul > li{
  position:relative;
  width:100%;
}

.main-menu .navigation > li > ul > li > ul > li:last-child{
  border-bottom:none; 
}

.main-menu .navigation > li > ul > li > ul > li > a{
  position:relative;
  display:block;
  padding: 5px 0px;
  line-height:24px;
  font-weight:500;
  font-size:15px;
  text-transform:capitalize;
  font-family: var(--text-font);
  color:var(--title-color);
  text-align: left;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.main-menu .navigation > li > ul > li > ul > li > a:hover{
  letter-spacing: 1px;
}

.main-menu .navigation > li > ul > li > ul > li.dropdown > a:after{
  font-family: 'Font Awesome 5 Pro';
  content: "\f105";
  position:absolute;
  right:20px;
  top:12px;
  display:block;
  line-height:24px;
  font-size:16px;
  font-weight:900;
  z-index:5;  
}

.main-menu .navigation > li.dropdown:hover > ul,
.main-menu .navigation > li.dropdown:hover > .megamenu{
  visibility:visible;
  opacity:1;
  margin-top: 0px;
  top: 100%;
}

.main-menu .navigation li > ul > li.dropdown:hover > ul{
  visibility:visible;
  opacity:1;
  top: 0%; 
  margin-top: 0px;
}

.main-menu .navigation li.dropdown .dropdown-btn{
  position:absolute;
  right:-32px;
  top:66px;
  width:34px;
  height:30px;
  text-align:center;
  font-size:18px;
  line-height:26px;
  color:#3b3b3b;
  cursor:pointer;
  display: none;
  z-index:5;
  transition: all 500ms ease;
}

.main-menu .navigation li.current.dropdown .dropdown-btn,
.main-menu .navigation li:hover .dropdown-btn{
  
}

.main-menu .navigation li.dropdown ul li.dropdown .dropdown-btn{
  display: none;
}

.menu-area .mobile-nav-toggler,
.menu-right-content .mobile-nav-toggler {
  position: relative;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  background: var(--theme-color);
  display: none;
}

.mobile-menu .nav-logo img{
  max-width: 160px;
}

.menu-area .mobile-nav-toggler .icon-bar,
.menu-right-content .mobile-nav-toggler .icon-bar{
  position: relative;
  height: 2px;
  width: 30px;
  display: block;
  margin-bottom: 5px;
  background-color: #fff;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.menu-area .mobile-nav-toggler .icon-bar:last-child,
.menu-right-content .mobile-nav-toggler .icon-bar:last-child{
  margin-bottom: 0px;
}


/** megamenu-style **/

.main-menu .navigation > li.dropdown > .megamenu{
  position: absolute;
  width: 100%;
  padding: 30px 50px;
  left: 0px;
}

.main-menu .navigation li.dropdown .megamenu li h4{
  margin-bottom: 10px;
}


/** mobile-menu **/

.nav-outer .mobile-nav-toggler{
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  color:#3786ff;
  display: none;
}

.mobile-menu{
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  padding-right:30px;
  max-width:100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
  transition: all 900ms ease;
}

.mobile-menu .navbar-collapse{
  display:block !important; 
}

.mobile-menu .nav-logo{
  position:relative;
  padding:50px 25px;
  text-align:left;  
  padding-bottom: 100px;
}

.mobile-menu-visible{
  overflow: hidden;
}

.mobile-menu-visible .mobile-menu{
  opacity: 1;
  visibility: visible;
}

.mobile-menu .menu-backdrop{
  position: fixed;
  left: 0%;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 900ms ease;
  background-color: #000;
}

.mobile-menu-visible .mobile-menu .menu-backdrop{
  opacity: 0.70;
  visibility: visible;
  right: 100%;
  -webkit-transition: all .8s ease-out 0s;
  -o-transition: all .8s ease-out 0s
}

.mobile-menu .menu-box{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: #141417;
  padding: 0px 0px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  transition: all 900ms ease !important;
}

.mobile-menu-visible .mobile-menu .menu-box{
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.mobile-menu .close-btn{
  position: absolute;
  right: 25px;
  top: 10px;
  line-height: 30px;
  width: 24px;
  text-align: center;
  font-size: 18px;
  color: #ffffff;
  cursor: pointer;
  z-index: 10;
}

.mobile-menu .navigation{
  position: relative;
  display: block;
  width: 100%;
  float: none;
}

.mobile-menu .navigation li{
  position: relative;
  display: block;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.mobile-menu .navigation:last-child{
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.mobile-menu .navigation li > ul > li:first-child{
  border-top: 1px solid rgba(255,255,255,0.10);
}

.mobile-menu .navigation li > a{
  position: relative;
  display: block;
  line-height: 24px;
  padding: 10px 25px;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
}

.mobile-menu .navigation li ul li > a{
  font-size: 16px;
  margin-left: 20px;
  text-transform: capitalize;
}

.mobile-menu .navigation li > a:before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  height:0;
  border-left:5px solid #fff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
}

.mobile-menu .navigation li.current > a:before{
  height:100%;
}

.mobile-menu .navigation li.dropdown .dropdown-btn{
  position:absolute;
  right:6px;
  top:6px;
  width:32px;
  height:32px;
  text-align:center;
  font-size:16px;
  line-height:32px;
  color:#ffffff;
  background:rgba(255,255,255,0.10);
  cursor:pointer;
  border-radius:2px;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
  z-index:5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open{
  color: #ffffff;
  -webkit-transform:rotate(90deg);
  -ms-transform:rotate(90deg);
  transform:rotate(90deg);  
}

.mobile-menu .navigation li > ul,
.mobile-menu .navigation li > ul > li > ul,
.mobile-menu .navigation > li.dropdown > .megamenu{
  display: none;
}

.mobile-menu .social-links{
  position:relative;
  padding:0px 25px;
}

.mobile-menu .social-links li{
  position:relative;
  display:inline-block;
  margin:0px 10px 10px;
}

.mobile-menu .social-links li a{
  position:relative;
  line-height:32px;
  font-size:16px;
  color:#ffffff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
}

.mobile-menu .social-links li a:hover{
  
}

div#mCSB_1_container{
  top: 0px !important;
}

.mobile-menu .contact-info {
  position: relative;
  padding: 120px 30px 20px 30px;
}

.mobile-menu .contact-info h4 {
  position: relative;
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 20px;
}

.mobile-menu .contact-info ul li {
  position: relative;
  display: block;
  font-size: 15px;
  color: rgba(255,255,255,0.80);
  margin-bottom: 3px;
}

.mobile-menu .contact-info ul li a{
  color: rgba(255,255,255,0.80);
}

.mobile-menu .contact-info ul li a:hover{
  
}

.mobile-menu .contact-info ul li:last-child{
  margin-bottom: 0px;
}

.main-header .sticky-header .outer-container .left-column .logo-box{
  padding: 11px 40px;
}

.main-header .sticky-header .main-menu .navigation > li > a{
  padding-top: 22px;
  padding-bottom: 22px;
}

.main-header .sticky-header .main-menu .navigation > li.dropdown > a:before{
  top: 22px;
}


/** header-style-two **/

.header-style-two{
  position: relative;
  background-color: #fff;
}

.header-top{
  position: relative;
}

.header-top .top-inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11.5px 40px;
  background-color: #fff;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.12);
  border-radius: 0px 0px 30px 30px;
}

.header-top .top-inner .info-list{
  position: relative;
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-top .top-inner .info-list li{
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: var(--title-color);
}

.header-top .top-inner .info-list li a{
  display: inline-block;
  color: var(--title-color);
}

.header-top .top-inner .right-column{
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-top  .social-links{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-top  .social-links li span{
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: var(--title-color);
  font-weight: 600;
  text-transform: uppercase;
}

.header-top  .social-links li a{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 20px;
  color: var(--title-color);
}


/** header-style-three **/

.header-style-three{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
}

.header-style-three .header-top{
  background-color: rgba(0, 0, 0, 0.40);
  padding: 6.5px 0px;
}

.header-style-three .header-top .top-inner{
  background-color: transparent;
  box-shadow: none;
  padding: 0px;
}

.header-style-three .header-top .top-inner .info-list li,
.header-style-three .header-top .top-inner .info-list li a{
  color: #fff;
}

.header-style-three .language-picker__flag.language-picker__label,
.header-style-three .language-picker__button:before,
.header-style-three .header-top .social-links li span,
.header-style-three .header-top .social-links li a{
  color: #fff;
}

.header-top .social-links li a{
  top: 2px;
}

.header-style-three .header-lower .main-menu .navigation > li > a{
  color: #fff;
}

.header-style-three .header-lower .menu-right-content .search-toggler{
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  width: 46px;
  height: 46px;
  line-height: 46px;
}

.header-style-three .menu-right-content .theme-btn .text{
  border: solid;
  border-width: 1px;
  background-color: transparent;
  color: var(--theme-color) !important;
  padding: 7px 27px;
}


.header-style-four{
  position: absolute;
  left: 0px;
  top: 20px;
  width: 100%;
}

.header-style-four .header-lower .main-menu .navigation > li > a{
  color: #fff;
}


/** header-style-five **/

.header-style-five{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
}

.header-style-five .menu-right-content .search-toggler{
  background-color: #fff;
}


/** rtl-css **/


/** responsive-css **/


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

}

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

}

@media only screen and (max-width: 1200px){
  /* fixed full-width bar when hamburger menu is active */
  .header-style-one{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #fff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.10);
  }

  .header-style-one .header-lower .auto-container{
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
  }

  .header-style-one .header-lower .outer-box{
    border-radius: 0;
    padding: 8px 12px 8px 0 !important;
    margin-left: 0 !important;
    background-color: #fff;
  }

  .header-style-one .header-lower .logo-box{
    padding: 0 !important;
    margin: 0 !important;
  }

  .header-style-one .header-lower .logo-box a{
    display: block;
    padding: 0 !important;
    margin: 0 !important;
  }

  .header-style-one .header-lower .logo-box img{
    display: block;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* hide Donate Now button in mobile navigation */
  .header-style-one .menu-right-content .btn-box{
    display: none;
  }
}

@media only screen and (max-width: 991px){
  .main-header .outer-box{
    gap: 15px;
  }
}

@media only screen and (max-width: 767px){
  .header-top .top-inner{
    display: block;
  }

  .header-top .top-inner .info-list{
    justify-content: center;
    margin-bottom: 10px;
  }

  .header-top .top-inner .right-column{
    justify-content: center;
  }
}

@media only screen and (max-width: 599px){
  .main-header .menu-right-content .btn-box{
    display: none;
  }

  .header-style-two .logo-box{
    padding: 15px 0px;
  }

  .header-style-three .header-lower{
    padding: 15px 0px;
  }
}

@media only screen and (max-width: 499px){
  .header-top .top-inner .info-list{
    display: block;
  }

  .header-top .top-inner .info-list li{
    justify-content: center;
  }

  .header-top .top-inner{
    padding-left: 20px;
    padding-right: 20px;
  }
}



























/** banner-section **/

.banner-section{
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

.banner-section .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
  
.banner-carousel .slide-item{
  position: relative;
}

.banner-style-one .banner-carousel .slide-item{
  padding: 309px 0px 214px 0px;
}

.banner-style-one .banner-carousel .slide-item{
  max-width: 1290px;
  width: 100%;
  margin: 0 auto;
}

.banner-carousel .content-box{
  position: relative;
  display: block;
  max-width: 650px;
  z-index: 5;
}
  
.banner-carousel .slide-item .bg-layer{
  position: absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transform:scale(1);
  -ms-transform:scale(1);
  transform:scale(1);
  -webkit-transition: all 8000ms linear;
  -moz-transition: all 8000ms linear;
  -ms-transition: all 8000ms linear;
  -o-transition: all 8000ms linear;
  transition: all 8000ms linear;
}
  
.banner-carousel .active .slide-item .bg-layer{
  -webkit-transform:scale(1.05);
  -ms-transform:scale(1.05);
  transform:scale(1.05);
}
  
.banner-carousel .content-box .sub-title{
  opacity: 0;
  -webkit-transform: translateY(-50px);
  -moz-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  -o-transform: translateY(-50px);
  transform: translateY(-50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}
  
.banner-carousel .active .content-box .sub-title{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}
  
.banner-carousel .content-box h2{
  position: relative;
  display: block;
  font-size: 72px;
  line-height: 80px;
  margin-bottom: 24px;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}
  
.banner-carousel .active .content-box h2{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms;
}

.banner-carousel .content-box p{
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 31px;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}
  
.banner-carousel .active .content-box p{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}
  
.banner-carousel .content-box .btn-box{
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}
  
.banner-carousel .active .content-box .btn-box{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1300ms;
  -moz-transition-delay: 1300ms;
  -ms-transition-delay: 1300ms;
  -o-transition-delay: 1300ms;
  transition-delay: 1300ms;
}

.banner-style-one .image-box{
  position: absolute;
  right: 0px;
  bottom: 0px;
}

.banner-style-one .image-box .image{
  position: relative;
  display: block;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.banner-style-one .active .image-box .image{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.banner-style-one .image-box .shape{
  position: absolute;
  right: -40px;
  bottom: 100px;
  width: 593px;
  height: 559px;
  background-repeat: no-repeat;
  background-position: center;
}

/** banner-style-two **/

.banner-style-two{
  position: relative;
  background-color: #F5F2EC;
}

.banner-style-two .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}

.banner-style-two .slide-item{
  padding: 196px 0px 205px 0px;
}

.banner-style-two .sub-title{
  color: #FFB700;
}

.banner-style-two h2,
.banner-style-two p{
  color: #fff;
}

.banner-style-two .content-box .shape{
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 747px;
  height: 489px;
  background-repeat: no-repeat;
  opacity: 0.2;
}

.banner-style-two .owl-nav{
  position: absolute;
  left: 0px;
  top: 50%;
  margin-top: -35px;
  width: 100%;
}

.banner-style-two .owl-nav .owl-prev{
  position: absolute;
  left: 40px;
  top: 0px;
}

.banner-style-two .owl-nav .owl-next{
  position: absolute;
  right: 40px;
  top: 0px;
}

/** banner-style-three **/

.banner-style-three{
  position: relative;
  padding: 246px 0px 100px 0px;
}

.banner-style-three .bg-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}

.banner-style-three .content-box{
  position: relative;
  display: block;
  max-width: 660px;
  padding-bottom: 120px;
}

.banner-style-three .content-box .sub-title{
  color: #FFB700;
  margin-bottom: 7px;
}

.banner-style-three .content-box h2{
  font-size: 72px;
  line-height: 80px;
  color: #fff;
  margin-bottom: 28px;
}

.banner-style-three .list-item{
  position: relative;
  margin: 0px -5px;
}

.banner-style-three .list-item li{
  position: relative;
  float: left;
  width: 20%;
  padding: 0px 5px 10px 5px;
}

.banner-style-three .content-box .shape{
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 747px;
  height: 489px;
  background-repeat: no-repeat;
  opacity: 0.2;
}

.banner-style-three .list-item .single-item{
  position: relative;
  display: block;
  border-radius: 10px;
  padding: 40px 30px;
  padding-bottom: 20px;
  z-index: 1;
  transition: all 500ms ease;
}

.banner-style-three .list-item .single-item:hover{
  padding-bottom: 60px;
  margin-bottom: -40px;
  z-index: 2;
}

.banner-style-three .list-item .single-item::before{
  position: absolute;
  content: '';
  background-color: rgba(248, 35, 35, 1);
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 10px;
  opacity: 0.5;
  transition: all 500ms ease;
}

.banner-style-three .list-item li:nth-child(2) .single-item::before{
  background-color: #F8E623;
}

.banner-style-three .list-item li:nth-child(3) .single-item::before{
  background-color: #23F838;
}

.banner-style-three .list-item li:nth-child(4) .single-item::before{
  background-color: #23A3F8;
}

.banner-style-three .list-item li:nth-child(5) .single-item::before{
  background-color: #F823E3;
}

.banner-style-three .list-item .single-item:hover:before{
  opacity: 1;
}

.banner-style-three .list-item .single-item .icon-box{
  position: relative;
  display: inline-block;
  font-size: 80px;
  color: #fff;
  margin-bottom: 30px;
  transition: all 500ms ease;
}

.banner-style-three .list-item .single-item:hover .icon-box{
  color: var(--title-color);
}

.banner-style-three .list-item .single-item .icon-box .icon-shape{
  position: absolute;
  left: -20px;
  top: -7px;
  width: 119px;
  height: 80px;
  background-repeat: no-repeat;
  opacity: 0.0;
  transition: all 500ms ease;
}

.banner-style-three .list-item .single-item:hover .icon-box .icon-shape{
  opacity: 0.1;
}

.banner-style-three .list-item .single-item h3{
  font-size: 24px;
  line-height: 30px;
  color: #fff;
  margin-bottom: 20px;
  transition: all 500ms ease;
}

.banner-style-three .list-item .single-item:hover h3{
  color: var(--title-color);
}

.banner-style-three .list-item .single-item .link-box{
  position: relative;
}

.banner-style-three .list-item .single-item .link-box a{
  position: absolute;
  left: 0px;
  top: 0px;
  font-size: 16px;
  line-height: 20px;
  font-family: var(--title-font);
  font-weight: 700;
  color: var(--title-color);
  text-decoration: underline;
  opacity: 0;
}

.banner-style-three .list-item .single-item:hover .link-box a{
  opacity: 1;
}


/** banner-style-four **/

.banner-style-four{
  position: relative;
}

/* static mobile text — hidden by default on desktop */
.banner-mobile-text{
  display: none;
}

.banner-style-four .slide-item{
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0px 160px;
}

.banner-style-four .slide-item .bg-layer::before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background: linear-gradient(
    135deg,
    rgba(33, 93, 170, 0.80) 0%,
    rgba(0, 10, 40,  0.55) 50%,
    rgba(0, 0,  0,   0.30) 100%
  );
  opacity: 1;
}

.banner-style-four .slide-item::before{
  position: absolute;
  content: '';
  width: 100%;
  height: 233px;
  left: 0px;
  top: 0px;
  background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
  opacity: 0.7;
}

.banner-style-four .slide-item::after{
  position: absolute;
  content: '';
  width: 100%;
  height: 120px;
  left: 0px;
  bottom: 0px;
  background-image: url(../images/shape/shape-33.png);
  z-index: 2;
  background-repeat: repeat-x;
}

.banner-style-four .slide-item .content-box{
  width: 100%;
  max-width: 100%;
}

.banner-style-four .slide-item .content-box .sub-title{
  color: #FFB700;
  margin-bottom: 12px;
}

.banner-style-four .slide-item .content-box h2{
  font-size: 120px;
  line-height: 120px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 22px;
}

.banner-style-four .slide-item .content-box .shape{
  position: absolute;
  left: 0px;
  top: -50px;
  width: 100%;
  height: 345px;
  background-repeat: no-repeat;
  background-position: center;
}


/** banner-style-five **/

.banner-style-five{
  position: relative;
  background-color: #FCF3E8;
}

.banner-style-five .slide-item{
  position: relative;
  padding: 272px 0px 252px 0px;
}

.banner-style-five .banner-carousel .content-box h2 span{
  position: relative;
  display: inline-block;
  padding-right: 108px;
}

.banner-style-five .banner-carousel .content-box h2 span::before{
  position: absolute;
  content: '';
  background-image: url(../images/icons/icon-15.png);
  width: 98px;
  height: 60px;
  top: 15px;
  right: 0px;
  background-repeat: no-repeat;
}

.banner-style-five .pattern-layer .pattern-1{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-repeat: repeat;
  background-position: center;
}

.banner-style-five .pattern-layer .pattern-2{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 32px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: 2;
}

.banner-style-five .slide-item .image-layer{
  position: absolute;
  right: 315px;
  bottom: 0px;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.banner-style-five .active .slide-item .image-layer{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}


/** rtl-css **/

.rtl .banner-style-one .banner-carousel .slide-item{
  direction: rtl;
}

.rtl .banner-style-one .image-box{
  right: inherit;
  left: 0px;
}

.rtl .banner-carousel .content-box{
  text-align: right;
}

.rtl .banner-style-three .list-item li{
  float: right;
}

/** responsive-css **/

@media only screen and (max-width: 1600px){
  .banner-style-five .slide-item .image-layer{
    right: 0px;
  }
}

@media only screen and (max-width: 1200px){
  .banner-style-two .owl-nav{
    display: none;
  }

  .banner-style-three .list-item li{
    width: 33.333%;
  }

  /* hero: step down from 120px */
  .banner-style-four .slide-item .content-box h2{
    font-size: 88px;
    line-height: 96px;
  }

  .banner-style-four .slide-item{
    min-height: 70vh;
    padding: 80px 0px 120px;
  }
}

@media only screen and (max-width: 991px){
  .banner-style-one .image-box{
    display: none;
  }

  .banner-carousel .content-box{
    max-width: 100%;
  }

  .banner-style-three .list-item li{
    width: 50%;
  }

  .banner-style-five .slide-item .image-layer{
    display: none;
  }

  /* hero: tablet portrait */
  .banner-style-four .slide-item .content-box h2{
    font-size: 66px;
    line-height: 74px;
  }

  .banner-style-four .slide-item{
    min-height: 70vh;
    padding: 80px 0px 100px;
  }

  /* disable Ken Burns zoom on tablet/mobile — cover already enlarges the image */
  .banner-style-four .banner-carousel .active .slide-item .bg-layer{
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

@media only screen and (max-width: 767px){
  .banner-carousel .content-box h2{
    font-size: 50px;
    line-height: 60px;
  }

  .banner-style-one .banner-carousel .slide-item{
    padding: 200px 0px 100px 0px;
  }

  .banner-style-two .slide-item{
    padding: 100px 0px;
  }

  .banner-style-three .list-item li{
    width: 100%;
  }

  .banner-style-three .content-box h2{
    font-size: 50px;
    line-height: 60px;
  }

  .banner-style-three .content-box{
    padding-bottom: 70px;
  }

  /* ── mobile hero: card image above, text below ── */

  /* section background becomes white so text sits on clean page */
  .banner-style-four{
    background: #fff;
  }

  .banner-style-four .slide-item{
    display: block;
    min-height: auto;
    padding: 0;
    background: #fff;
  }

  /* full-width image strip — no card margins or radius */
  .banner-style-four .slide-item .bg-layer{
    position: relative;
    width: 100%;
    height: 280px;
    margin: 60px 0 0;
    border-radius: 0;
    background-position: center center;
    background-size: cover;
    -webkit-transform: none !important;
    transform: none !important;
    -webkit-transition: none !important;
    transition: none !important;
  }

  /* remove the dark gradient overlay — image shows cleanly */
  .banner-style-four .slide-item .bg-layer::before{
    display: none;
  }

  /* remove top dark gradient and bottom wave */
  .banner-style-four .slide-item::before,
  .banner-style-four .slide-item::after{
    display: none;
  }

  /* hide per-slide text so it doesn't move with the carousel */
  .banner-style-four .slide-item .auto-container{
    display: none;
  }

  /* static text block below the carousel — never moves */
  .banner-mobile-text{
    display: block;
    padding: 20px 20px 28px;
    background: #fff;
    text-align: center;
  }

  .banner-mobile-text .sub-title{
    display: block;
    color: var(--theme-color);
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
  }

  .banner-mobile-text h2{
    color: var(--title-color);
    font-size: 32px;
    line-height: 40px;
    margin: 0 0 20px;
  }

  .banner-mobile-text h2 span{
    color: var(--theme-color);
  }

  .banner-mobile-text .btn-box{
    display: inline-block;
  }

  .banner-mobile-text .btn-box .icon-2{
    display: none;
  }

  .banner-style-five .slide-item{
    padding: 200px 0px 130px 0px;
  }
}

@media only screen and (max-width: 599px){
  .header-style-five .header-lower{
    padding-top: 15px;
  }

  /* hero: small phones */
  .banner-style-four .slide-item .content-box h2{
    font-size: 28px;
    line-height: 36px;
  }

  .banner-style-four .slide-item .bg-layer{
    height: 240px;
    margin-top: 60px;
  }
}

@media only screen and (max-width: 499px){
  .banner-style-three{
    padding-top: 200px;
  }

  .banner-style-four .slide-item .content-box .shape{
    display: none;
  }
}

@media only screen and (max-width: 400px){
  /* hero: very small phones */
  .banner-style-four .slide-item .content-box h2{
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 14px;
  }

  /* very small phones — compact card */
  .banner-style-four .slide-item .bg-layer{
    height: 210px;
  }

  .banner-style-four .slide-item .content-box h2{
    font-size: 24px;
    line-height: 32px;
  }

  .banner-style-four .slide-item .content-box .sub-title{
    font-size: 12px;
    margin-bottom: 6px;
  }
}




















/** clients-section **/

.clients-section{
    position: relative;
}

/* ── redesigned partners section ── */
.clients-section-redesign{
    background: #fff;
    padding: 40px 0 32px;
    border-top: 1px solid #eef0f4;
    border-bottom: 1px solid #eef0f4;
}

.clients-section-header{
    text-align: center;
    margin-bottom: 18px;
}

.clients-eyebrow{
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #aab0bc;
    margin-bottom: 6px;
}

.clients-section-header h4{
    font-size: 22px;
    font-weight: 700;
    color: var(--title-color);
    margin: 0;
}

.clients-divider{
    width: 48px;
    height: 3px;
    background: var(--theme-color);
    border-radius: 2px;
    margin: 0 auto 28px;
}

/* logo cards */
.clients-section .clients-logo{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    min-width: 160px;
    background: #f8f9fb;
    border: 1px solid #eef0f4;
    border-radius: 12px;
    padding: 12px 24px;
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.clients-section .clients-logo:hover{
    background: #fff;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

.clients-section .clients-logo img{
    position: relative;
    display: block;
    width: auto;
    max-width: 120px;
    max-height: 52px;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.clients-section .clients-logo:hover img{
    filter: grayscale(0%);
    transform: scale(1.06);
}

.clients-section .inner-container{
    position: relative;
    display: flex;
    align-items: center;
    gap: 70px;
    overflow: hidden;
}

.clients-section .inner-container h4{
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 30px;
    color: var(--theme-color);
    text-transform: uppercase;
    min-width: 160px;
}

/** clients marquee (about page) **/

.clients-marquee-wrap {
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
}

.clients-marquee-wrap:hover .clients-marquee-track {
    animation-play-state: paused;
}

@keyframes clients-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.clients-marquee-track {
    display: flex;
    align-items: center;
    gap: 24px;
    width: fit-content;
    animation: clients-scroll 22s linear infinite;
    will-change: transform;
}

.clients-marquee-track .clients-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
}

.clients-marquee-track .clients-logo img {
    max-width: 140px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.clients-marquee-track .clients-logo img:hover {
    filter: grayscale(0%);
    transform: scale(1.08);
}


.clients-section .pattern-layer{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.clients-section.alternat-2{
    padding: 93px 0px;
}

.clients-section.home-5{
    padding: 100px 0px;
    background-color: transparent;
}

  
  
/** rtl-css **/
  

  
/** responsive-css **/
  
@media only screen and (max-width: 1200px){
  
}
  
@media only screen and (max-width: 991px){

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

}
  
@media only screen and (max-width: 599px){
  
}
  
@media only screen and (max-width: 499px){
    .clients-section .inner-container{
        position: relative;
        display: block;
    }

    .clients-section .inner-container h4{
        min-width: 100%;
        text-align: center;
        margin-bottom: 25px;
    }
} 
/** about-section **/

.about-section{
    position: relative;
}

.image_block_one .image-box{
    position: relative;
    display: block;
}

/* mobile single image — hidden on desktop */
.about-mobile-single {
    display: none;
}

/* film-strip grid — clips the scrolling columns */
.about-shuffle-grid {
    display: flex;
    gap: 14px;
    height: 520px;
    overflow: hidden;
    /* fade to white at top and bottom */
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent  0%,
        black       18%,
        black       82%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to bottom,
        transparent  0%,
        black       18%,
        black       82%,
        transparent 100%
    );
}

/* align-self: flex-start is critical — it lets the column grow to its full
   content height instead of being capped at the grid's 520 px.
   translateY(-50%) then correctly references the content height, not 520 px. */
.about-shuffle-col {
    flex: 1;
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* cards use margin-bottom instead of column gap so the last card in each
   half also contributes spacing — this makes total-height / 2 equal the
   exact pixel distance from card-1 to its duplicate, giving a seamless loop */
.shuffle-card {
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    margin-bottom: 14px;
    /* fixed height so column height is always predictable —
       translateY(-50%) resolves to an exact pixel value at load time */
    height: 260px;
}

.shuffle-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

/* film-strip scroll animations */
@keyframes filmScrollUp {
    from { transform: translateY(0); }
    to   { transform: translateY(-50%); }
}

@keyframes filmScrollDown {
    from { transform: translateY(-50%); }
    to   { transform: translateY(0); }
}

.about-col-up {
    animation: filmScrollUp 14s linear infinite;
    will-change: transform;
}

.about-col-down {
    animation: filmScrollDown 14s linear infinite;
    will-change: transform;
}

.image_block_one .image-box::before{
    position: absolute;
    content: '';
    width: 100%;
    height: 213px;
    left: 0px;
    top: 0px;

    z-index: 1;
}

.image_block_one .image-box::after{
    position: absolute;
    content: '';
    width: 100%;
    height: 213px;
    left: 0px;
    bottom: 0px;

    z-index: 1;
    transform: rotate(180deg);
}

.image_block_one .image-box .image{
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.image_block_one .image-box .image img{
    width: 100%;
    border-radius: 20px;
    transition: all .21s cubic-bezier(.25,.8,.25,1);
}

.image_block_one .image-box .image:hover img{
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
}

.content_block_one .content-box{
    position: relative;
    display: block;
}

.content_block_one .content-box .inner-box .single-item{
    position: relative;
    display: block;
    border: 1px solid #E5AC1B;
    border-radius: 10px;
    background-color: #FFF8E6;
    padding: 24px 20px 22px 80px;
    margin-bottom: 20px;
}

.content_block_one .content-box .inner-box{
    position: relative;
    margin: 0px 5px;
}

.content_block_one .content-box .inner-box .single-column{
    padding: 0px 10px;
}

.content_block_one .content-box .inner-box .single-column:nth-child(2) .single-item{
    background-color: #F8EEFF;
    border-color: #9C44E1;
}

.content_block_one .content-box .inner-box .single-column:nth-child(2) .single-item .icon-box{
    color: #9C44E1;
}

.content_block_one .content-box .inner-box .single-item .icon-box{
    position: absolute;
    left: 20px;
    top: 20px;
    font-size: 40px;
    color: #E5AC1B;
}

.content_block_one .content-box .inner-box .single-item h3{
    display: block;
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 14px;
}


/** about-style-two **/

.about-style-two{
    position: relative;
}

.image_block_two .image-box{
    position: relative;
    display: block;
}

.image_block_two .image-box .image{
    background-color: #FFFFFF;
    border-radius: 20px;
    border: 10px solid #fff;
}

.image_block_two .image-box .image img{
    width: 100%;
    border-radius: 20px;
}

.image_block_two .image-box .image-shape{
    position: absolute;
    left: -130px;
    bottom: -110px;
    width: 861px;
    height: 757px;
    background-repeat: no-repeat;
}

.content_block_two .content-box{
    position: relative;
    display: block;
}

.content_block_two .content-box .text-box p{
    font-size: 18px;
    line-height: 28px;
}

.content_block_two .content-box .quote-box{
    position: relative;
    display: block;
    background-color: #fff;
    border-radius: 16px;
    padding: 42px 40px;
    border-left: solid;
    border-width: 4px;
}

.content_block_two .content-box .quote-box h4{
    display: block;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
}


/** about-style-three **/

.about-style-three{
    position: relative;
}

.image_block_three .image-box{
    position: relative;
    display: block;
}

.image_block_three .image-box .image{
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.image_block_three .image-box .image img{
    width: 100%;
    border-radius: 20px;
}

.image_block_three .image-box .image-shape{
    position: absolute;
    left: -50px;
    top: -50px;
    width: 784px;
    height: 761px;
    background-repeat: no-repeat;
    background-position: center;
}

.image_block_three .image-box .curve-text{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 186px;
    height: 186px;
    line-height: 186px;
    border-radius: 50%;
    text-align: center;
}

.image_block_three .image-box .curve-text .icon-box{
    position: relative;
    display: inline-block;
    width: 104px;
    height: 104px;
    line-height: 104px;
    background-color: #fff;
    text-align: center;
    border-radius: 50%;
}

.image_block_three .image-box .curve-text .curved-circle{
    position: absolute;
    left: 89px;
    top: 13px;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(-30deg);
    letter-spacing: 1.2px;
}

.content_block_four .content-box{
    position: relative;
    display: block;
}

.content_block_four .content-box .inner-box p{
    margin-bottom: 24px;
}

.content_block_four .content-box .inner-box .list-style-one li{
    float: left;
    width: 50%;
    font-size: 16px;
    line-height: 30px;
    font-family: var(--title-font);
    font-weight: 600;
    color: var(--title-color);
    margin-bottom: 7px;
}

.content_block_four .content-box .inner-box .list-style-one li:last-child{
    margin-bottom: 0px;
}

.content_block_four .content-box .inner-box .list-style-one li::before{
    width: 18px;
    height: 18px;
    line-height: 18px;
    color: #fff;
    font-size: 8px;
    top: 6px;
}

.content_block_four .content-box .tab-btns{
    position: relative;
    display: block;
    background-color: #fff;
    border: 1px solid #E4E4E4;
    border-radius: 100px;
    padding: 5px;
}

.content_block_four .content-box .tab-btns li{
    float: left;
    width: 33.333%;
    text-align: center;
    font-size: 18px;
    line-height: 24px;
    font-family: var(--title-font);
    color: var(--title-color);
    font-weight: 600;
    cursor: pointer;
    border-radius: 100px;
    padding: 8px 20px;
    transition: all 500ms ease;
}

.content_block_four .content-box .tab-btns li.active-btn{
    color: #fff;
}

.about-style-three .shape{
    position: absolute;
    right: 0px;
    bottom: 123px;
    width: 270px;
    height: 469px;
    background-repeat: no-repeat;
}

.about-style-three .pattern-layer{
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 45px;
    background-repeat: repeat-x;
    background-position: bottom center;
}


/** about-style-four **/

.about-style-four{
    position: relative;
}

.about-style-four .image_block_three .image-box{
    padding-top: 33px;
    padding-right: 15px;
}

.about-style-four .image_block_three .image-box .curve-text{
    left: -54px;
}

.about-style-four .image_block_three .image-box .curve-text{
    background-color: #F8EFE8;
}

.about-style-four .image_block_three .image-box .curve-text .curved-circle{
    color: var(--title-color);
}

.about-style-four .pattern-layer{
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 257px;
    height: 642px;
    background-repeat: no-repeat;
}


/** about-style-five **/

.about-style-five{
    position: relative;
}

.content_block_five .content-box{
    position: relative;
    display: block;
}

.content_block_five .content-box .text-box p{
    font-size: 18px;
    line-height: 30px;
}

.content_block_five .content-box .progress-box .single-box{
    position: relative;
}

.content_block_five .content-box .progress-box .single-box .bar{
    position:relative;
    width:100%;
    height:9px;
    background-color: #E9E9E9;
    border-radius: 30px;
}

.content_block_five .content-box .progress-box .single-box .bar .bar-inner{
    position:relative;
    display:block;
    width:0px;
    height:9px;
    border-radius: 30px;
    background: #F23E24;
    -webkit-transition:all 1500ms ease;
    -ms-transition:all 1500ms ease;
    -o-transition:all 1500ms ease;
    -moz-transition:all 1500ms ease;
    transition:all 1500ms ease; 
}

.content_block_five .content-box .progress-box .single-box:last-child .bar .bar-inner{
    background: #FC9D0D;
}

.content_block_five .content-box .progress-box .single-box .bar .bar-inner span{
    position: absolute;
    top: -28px;
    right: -20px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    color: var(--title-color);
}

.content_block_five .content-box .progress-box .single-box .text{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 9px;
}

.content_block_five .content-box .progress-box .single-box .text span{
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
}

.content_block_five .content-box .progress-box .single-box .text span:last-child{
    color: #F84F23;
}

.content_block_five .content-box .progress-box .single-box:last-child .text span:last-child{
    color: #FC9D0D;
}

.content_block_five .content-box .donate-list{
    position: relative;
    display: flex;
    gap: 10px;
}

.content_block_five .content-box .donate-list li{
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 20px;
    font-family: var(--title-font);
    color: var(--title-color);
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 30px;
    border: 1px solid #E4E4E4;
}

.about-style-five .image-layer{
    position: absolute;
    right: 287px;
    bottom: 0px;
}

.about-style-five .pattern-layer{
    position: absolute;
    right: 188px;
    bottom: 98px;
    width: 754px;
    height: 681px;
    background-repeat: no-repeat;
    z-index: -1;
}


/** about-style-six **/

.about-style-six{
    position: relative;
}

.about-style-six .image_block_two .image-box .image-shape{
    width: 500px;
    height: 465px;
}

.about-style-six .content_block_two .content-box .quote-box{
    background-color: #FAF7F1;
}

.image_block_two .image-box .curve-text{
    position: absolute;
    right: 10px;
    top: 60px;
    width: 186px;
    height: 186px;
    line-height: 186px;
    border-radius: 50%;
    text-align: center;
    background-color: #F8EFE8;
}

.image_block_two .image-box .curve-text .icon-box{
    position: relative;
    display: inline-block;
    width: 104px;
    height: 104px;
    line-height: 104px;
    background-color: #fff;
    text-align: center;
    border-radius: 50%;
}

.image_block_two .image-box .curve-text .curved-circle{
    position: absolute;
    left: 89px;
    top: 13px;
    font-size: 14px;
    line-height: 20px;
    color: var(--title-color);
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(-30deg);
    letter-spacing: 1.2px;
}

  
  
/** rtl-css **/
  
.rtl .content_block_two .content-box{
    margin-left: 0px;
    margin-right: 60px;
}

.rtl .content_block_four .content-box .tab-btns li{
    float: right;
}

.rtl .content_block_four .content-box{
    margin-left: 0px;
    margin-right: 60px;
}

.rtl .content_block_five .content-box .progress-box .single-box .bar .bar-inner span{
    right: inherit;
    left: -20px;
}

.rtl .about-style-five .image-layer{
    right: inherit;
    left: 287px;
}

.rtl .about-style-five .pattern-layer{
    right: inherit;
    left: 188px;
}
  
/** responsive-css **/
  
@media only screen and (max-width: 1600px){
    .about-style-five .image-layer,
    .about-style-five .pattern-layer{
        right: 0px;
    }

    .rtl .about-style-five .image-layer,
    .rtl .about-style-five .pattern-layer{
        right: inherit;
        left: 0px;
    }
}

@media only screen and (max-width: 1200px){
    .about-style-five .image-layer,
    .about-style-five .pattern-layer{
        display: none;
    }
}
  
@media only screen and (max-width: 991px){
    .image_block_one .image-box{
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .image_block_two .image-box{
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .image_block_two .image-box .image-shape{
        display: none;
    }

    .content_block_two .content-box{
        margin-left: 0px;
    }

    .rtl .content_block_two .content-box{
        margin-right: 0px;
    }

    .image_block_three .image-box{
        margin-bottom: 30px;
    }

    .content_block_four .content-box{
        margin-left: 0px;
    }

    .rtl .content_block_four .content-box{
        margin-right: 0px;
    }

    .about-style-four .image_block_three .image-box .curve-text{
        left: 0px;
    }

    .about-style-four .image_block_three .image-box{
        padding-right: 0px;
    }
}
  
@media only screen and (max-width: 767px){

    /* hide film-strip, show single image on mobile */
    .about-shuffle-grid {
        display: none;
    }

    .about-mobile-single {
        display: block;
        border-radius: 16px;
        overflow: hidden;
        margin-bottom: 30px;
    }

    .about-mobile-single img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        display: block;
        border-radius: 16px;
    }

    .image_block_one .image-box .image{
        margin-bottom: 30px;
        display:none;
        }
    .image_block_one .image-box .image-2{
        display: block;
    }

    .about-section,
    .about-style-three,
    .about-style-four{
        padding: 70px 0px;
    }

    .about-style-two{
        padding-bottom: 70px;
    }

    .image_block_three .image-box .image-shape,
    .about-style-three .shape{
        display: none;
    }

    .about-style-five{
        padding: 80px 0px;
    }

    .about-style-six{
        padding-bottom: 70px;
    }
}
  
@media only screen and (max-width: 599px){
    .content_block_four .content-box .inner-box .list-style-one li{
        width: 100%;
    }

    .content_block_five .content-box .donate-list{
        display: block;
    }

    .content_block_five .content-box .donate-list li{
        margin-bottom: 10px;
    }
}
  
@media only screen and (max-width: 499px){
    .image_block_two .image-box{
        padding: 0px;
    }

    .image_block_two .image-box .image-2{
        position: relative;
        margin-top: 30px;
    }

    .content_block_two .content-box .quote-box{
        padding-left: 30px;
        padding-right: 30px;
    }

    .content_block_four .content-box .tab-btns li{
        font-size: 14px;
        line-height: 20px;
    }
}
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
/** service-section **/

.service-section{
    position: relative;
    background-color: #F4F6F7;
}

.service-section .pattern-layer{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.service-block-one .inner-box{
    position: relative;
    display: block;
    background-color: #fff;
    border-radius: 16px;
    padding: 51px 25px 58px 25px;
    transition: all .21s cubic-bezier(.25,.8,.25,1);
    margin-bottom: 30px;
}

.service-block-one .inner-box:hover{
    box-shadow: 0px 15px 50px 0px rgba(0,0,0,0.1);
}

.service-block-one .inner-box .icon-box{
    position: relative;
    display: inline-block;
    width: 150px;
    height: 150px;
    line-height: 150px;
    text-align: center;
    font-size: 60px;
    color: var(--title-color);
    margin-bottom: 23px;
}

.service-block-one .inner-box .icon-box .icon{
    position: relative;
    display: inline-block;
}

.service-block-one .inner-box .icon-box .icon-shape{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 150px;
    height: 150px;
    line-height: 150px;
    background-repeat: no-repeat;
    background-position: center;
}

.service-block-one .inner-box h3{
    display: block;
    font-size: 24px;
    line-height: 26px;
    margin-bottom: 14px;
}

.service-block-one .inner-box h3 a{
    display: inline-block;
    color: var(--title-color);
}

.service-block-one .inner-box h3 a:hover{

}

.service-block-two{
    position: relative;
    margin-top: 55px;
}

.service-block-two .inner-box{
    position: relative;
    display: block;
    background-color: #FAF7F1;
    border-radius: 1000px 1000px 80px 80px;
    padding: 0px 25px 58px 25px;
    margin-bottom: 30px;
    min-height: 350px;

}

.service-block-two .inner-box .icon-box{
    position: relative;
    display: inline-block;
    width: 150px;
    height: 150px;
    line-height: 150px;
    text-align: center;
    font-size: 60px;
    color: var(--title-color);
    margin-top: -55px;
    margin-bottom: 23px;
}

.service-block-two .inner-box .icon-box .icon{
    position: relative;
    display: inline-block;
}

.service-block-two .inner-box .icon-box .icon-shape{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 150px;
    height: 150px;
    line-height: 150px;
    background-repeat: no-repeat;
    background-position: center;
}

.service-block-two .inner-box h3{
    display: block;
    font-size: 24px;
    line-height: 26px;
    margin-bottom: 14px;
}

.service-block-two .inner-box h3 a{
    display: inline-block;
    color: var(--title-color);
}

.inner-container .service-block-three{
    float: left;
    width: 20%;
}

.service-block-three .inner-box{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 300px;
    background-color: #F8EFE8;
    border: 8px solid #fff;
    border-radius: 50%;
    padding: 30px;
    margin-bottom: 30px;
    transition: all .40s cubic-bezier(.25,.8,.25,1);
}

.service-section .pattern-layer{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.service-block-three .inner-box .icon-box{
    position: relative;
    display: inline-block;
    width: 120px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    font-size: 80px;
    margin-bottom: 30px;
    transition: all 500ms ease;
}

.service-block-three:hover .inner-box .icon-box{
    color: #fff;
}

.service-block-three .inner-box .icon-box .icon-shape{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.4;
    transition: all 500ms ease;
}

.service-block-three:hover .inner-box .icon-box .icon-shape{
    opacity: 0.2;
}

.service-block-three .inner-box .icon-box .icon{
    position: relative;
}

.service-block-three .inner-box h3{
    font-size: 24px;
    line-height: 30px;
    transition: all 500ms ease;
}

.service-block-three:hover .inner-box h3{
    color: #fff;
}

.service-section .inner-container{
    margin-right: 50px;
}

.service-block-four .inner-box{
    position: relative;
    display: block;
    padding: 0px 30px;
    margin-bottom: 30px;
}

.service-block-four .inner-box .icon-box{
    position: relative;
    display: inline-block;
    width: 120px;
    height: 120px;
    line-height: 120px;
    background-color: #FAF7F1;
    text-align: center;
    border-radius: 50%;
    margin-bottom: 24px;
}

.service-block-four .inner-box h3{
    display: block;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 16px;
}

.service-block-four .inner-box h3 a{
    display: inline-block;
    color: var(--title-color);
}

.service-section .pattern-layer-2{
    position: absolute;
    right: 0px;
    bottom: -90px;
    width: 249px;
    height: 667px;
    background-repeat: no-repeat;
}

.service-section.about-page .service-block-one .inner-box{
    background-color: transparent;
}

.service-section.about-page .service-block-one .inner-box:hover{
    background-color: #fff;
}

.service-section.service-page .service-block-two .inner-box{
    background-color: #fff;
    border-radius: 16px;
}
  
  
/** rtl-css **/

.rtl .inner-container .service-block-three{
    float: right;
}

.rtl .service-section .inner-container{
    margin-right: 0px;
    margin-left: 50px;
}

  
/** responsive-css **/
  
@media only screen and (max-width: 1200px){
    .inner-container .service-block-three{
        width: 33.333%;
    }

    .service-section .inner-container{
        margin-right: 0px;
    }

    .rtl .service-section .inner-container{
        margin-left: 0px;
    }
}
  
@media only screen and (max-width: 991px){

}
  
@media only screen and (max-width: 767px){
    .service-section{
        padding: 70px 0px 40px 0px;
    }

    .service-section.pt_0{
        padding-top: 0px;
    }

    .inner-container .service-block-three{
        width: 50%;
    }

    .service-block-four .inner-box{
        padding: 0px;
    }

    .service-section .pattern-layer-2{
        display: none;
    }

    .service-section.pt_0{
        padding-top: 0px;
    }
}
  
@media only screen and (max-width: 599px){
    .inner-container .service-block-three{
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .inner-container .service-block-three{
        float: none;
    }
}
  
@media only screen and (max-width: 499px){

}

/** cause-section **/

.cause-section{
    position: relative;
    background: linear-gradient(180deg, #FFFFFF 33%, #F4F6F7 100%);
}

.cause-block-one .inner-box{
    position: relative;
    display: block;
    background-color: #fff;
    border-radius: 16px;
    padding: 5px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 500ms ease;
}

.cause-block-one .inner-box:hover{
    box-shadow: 0px 30px 70px 0px rgba(0, 0, 0, 0.10);
}

.cause-block-one .inner-box .image-box{
    position: relative;
    display: block;
}

.cause-block-one .inner-box .image-box .image{
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px 12px 0px 0px;
}

.cause-block-one .inner-box .image-box .image img{
    width: 100%;
    transition: all .21s cubic-bezier(.25,.8,.25,1);
}

.cause-block-one .inner-box:hover .image-box .image img{
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
}

.cause-block-one .inner-box .image-box .category{
    position: absolute;
    display: inline-block;
    left: 15px;
    top: 15px;
    width: 119px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    font-size: 18px;
    font-family: var(--special-font);
    color: var(--title-color);
    z-index: 1;
}

.cause-block-one .inner-box .image-box .category::before{
    position: absolute;
    content: '';
    background-image: url(../images/shape/shape-6.png);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}

.cause-block:nth-child(2) .cause-block-one .inner-box .image-box .category::before{
    background-image: url(../images/shape/shape-7.png);
}

.cause-block:nth-child(3) .cause-block-one .inner-box .image-box .category::before{
    background-image: url(../images/shape/shape-8.png);
}

.cause-block-one .inner-box .image-box .bar{
    position:absolute;
    left: 0px;
    bottom: 0px;
    width:100%;
    height:6px;
    background: #E5E5E5;
    border-radius: 0px;
    z-index: 2;
}
    
.cause-block-one .inner-box .image-box .bar-inner{
    position:relative;
    display:block;
    width:0px;
    height:6px;
    border-radius: 0px;
    -webkit-transition:all 1500ms ease;
    -ms-transition:all 1500ms ease;
    -o-transition:all 1500ms ease;
    -moz-transition:all 1500ms ease;
    transition:all 1500ms ease; 
}

.cause-block-one .inner-box .lower-content .text-box{
    position: relative;
    padding: 25px 25px 20px 25px;
}

.cause-block-one .inner-box .lower-content .text-box::before{
    position: absolute;
    content: '';
    background-color: #EDEDED;
    width: calc(100% + 10px);
    height: 1px;
    left: -5px;
    bottom: 0px;
}

.cause-block-one .inner-box .lower-content h3{
    display: block;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 10px;
}

.cause-block-one .inner-box .lower-content h3 a{
    display: inline-block;
    color: var(--title-color);
}

.cause-block-one .inner-box .lower-content h3 a:hover{

}

.cause-block-one .inner-box .lower-content .lower-box{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 25px;
}

.cause-block-one .inner-box .lower-content .single-item{
    position: relative;
    display: block;
}

.cause-block-one .inner-box .lower-content .single-item span{
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    color: var(--title-color);
    text-transform: uppercase;
}

.cause-block-one .inner-box .lower-content .single-item span.amount{
    font-weight: 700;
}

.cause-block-one .inner-box .lower-content .single-item::before{
    position: absolute;
    content: '';
    background: #EDEDED;
    width: 1px;
    height: 34px;
    top: 5px;
    right: -45px;
}

.cause-block-one .inner-box .lower-content .single-item:last-child:before{
    display: none;
}

.cause-section .big-text{
    position: absolute;
    left: 0px;
    bottom: -50px;
    width: max-content;
    text-align: center;
    font-size: 300px;
    line-height: 220px;
    font-family: var(--title-font);
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(17, 17, 17, 0.05);
    -moz-animation: scroll-left 300s linear infinite;
    -webkit-animation: scroll-left 300s linear infinite;
    animation: scroll-left 300s linear infinite;
}


/** cause-style-two **/

.cause-style-two{
    position: relative;
}

.cause-block-two .inner-box{
    position: relative;
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
}

.cause-block-two .inner-box .image-box{
    position: relative;
    display: block;
    overflow: hidden;
    min-width: 300px;
}

.cause-block-two .inner-box .image-box img{
    width: 100%;
    transition: all .40s cubic-bezier(.25,.8,.25,1);
}

.cause-block-two .inner-box:hover .image-box img{
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
}

.cause-block-two .inner-box .content-box{
    position: relative;
    display: block;
    padding: 30px;
}

.cause-block-two .inner-box .content-box h4{
    display: block;
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 14px;
}

.cause-block-two .inner-box .content-box h4 a{
    display: inline-block;
    color: var(--title-color);
}

.cause-block-two .inner-box .content-box p{
    margin-bottom: 22px;
}

.cause-block-two .inner-box .content-box .lower-box{
    position: relative;
    display: block;
    background-color: #FAF7F1;
    border-radius: 10px;
    padding: 24px 20px 20px 20px;
}

.cause-block-two .inner-box .content-box .lower-box .bar{
    position:absolute;
    left: 0px;
    top: 0px;
    width:100%;
    height:4px;
    background-color: #FAF7F1;
}

.cause-block-two .inner-box .content-box .lower-box .bar .bar-inner{
    position:relative;
    display:block;
    width:0px;
    height:4px;
    border-radius: 0px;
    background: linear-gradient(90deg, #FFFFFF 0%, #F84F23 100%);
    -webkit-transition:all 1500ms ease;
    -ms-transition:all 1500ms ease;
    -o-transition:all 1500ms ease;
    -moz-transition:all 1500ms ease;
    transition:all 1500ms ease; 
}

.cause-block-two .inner-box .content-box .lower-box .list-item{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

.cause-block-two .inner-box .content-box .lower-box .list-item li span{
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 20px;
    font-family: var(--title-font);
    color: var(--title-color);
    font-weight: 600;
}

.cause-block-two .inner-box .content-box .lower-box .list-item li .amount{
    font-size: 16px;
    font-weight: 700;
    margin-top: 2px;
}

.cause-style-two .inner-container{
    position: relative;
}

.cause-style-two .inner-container::before{
    position: absolute;
    content: '';
    background-color: #F5F2EC;
    width: 5000px;
    height: 100%;
    top: 0px;
    right: 100%;
    z-index: 2;
}

.cause-style-two .owl-carousel .owl-stage-outer{
    overflow: visible;
}

.cause-style-two .owl-nav{
    position: absolute;
    top: -145px;
    right: 0px;
}

.cause-style-two .owl-nav button{
    opacity: 0.8;
}

.cause-style-two .owl-nav button:hover{
    opacity: 1;
}

.cause-style-two .big-text{
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: max-content;
    font-size: 300px;
    line-height: 210px;
    font-family: var(--title-font);
    font-weight: 700;
    color: #fff;
    -moz-animation: scroll-left 300s linear infinite;
    -webkit-animation: scroll-left 300s linear infinite;
    animation: scroll-left 300s linear infinite;
    z-index: 1;
}


/** cause-style-three **/

.cause-style-three{
    position: relative;
}

.cause-style-three .inner-container{
    position: relative;
    border-bottom: 1px solid #E5E5E5;
}

.cause-style-three .owl-nav{
    position: absolute;
    top: -145px;
    right: 0px;
}

.cause-block-three .inner-box{
    position: relative;
    display: block;
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    padding: 77px 50px 76px 50px;
    overflow: hidden;
}

.cause-block-three .inner-box .bg-layer{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: all .21s cubic-bezier(.25,.8,.25,1);
}

.cause-block-three .inner-box:hover .bg-layer{
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
}

.cause-block-three .inner-box .bg-layer::before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) 50%, rgba(159, 73, 51, 0.71) 62.71%, rgba(208, 93, 62, 0.82) 75.59%, #F84F23 100%);
}

.cause-block-three .inner-box .category{
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 26px;
    font-family: var(--special-font);
    color: var(--title-color);
    text-align: center;
    padding: 7.5px 25px;
    margin-bottom: 16px;
    min-width: 111px;
    z-index: 1;
}

.cause-block-three .inner-box .category::before{
    position: absolute;
    content: '';
    background-image: url(../images/shape/shape-28.png);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    left: 0px;
    top: 0px;
    z-index: -1;
}

.cause-block-three .inner-box h3{
    font-size: 32px;
    line-height: 40px;
    color: #fff;
    max-width: 290px;
    margin-bottom: 24px;
}

.cause-section .cause-block-two .inner-box{
    display: block;
}

.cause-block-two .inner-box .content-box h3{
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 10px;
}

.cause-block-two .inner-box .content-box h3 a{
    display: inline-block;
    color: var(--title-color);
}

.cause-section .cause-block-two .inner-box .content-box p{
    font-size: 15px;
    margin-bottom: 30px;
}


/** cause-style-four **/

.cause-style-four{
    position: relative;
}

.cause-block-four .inner-box{
    position: relative;
    display: block;
    background-color: #FAF7F1;
    border-radius: 16px;
    padding: 10px;
    margin-bottom: 30px;
}

.cause-block-four .inner-box .image-box{
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
}

.cause-block-four .inner-box .image-box img{
    width: 100%;
    transition: all .21s cubic-bezier(.25,.8,.25,1);
}

.cause-block-four .inner-box:hover .image-box img{
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
}

.cause-block-four .inner-box .content-box{
    position: relative;
    display: block;
    padding: 20px 20px 0px 20px;
}

.cause-block-four .inner-box .content-box .category{
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 26px;
    font-family: var(--special-font);
    color: var(--title-color);
    margin-bottom: 14px;
    width: 119px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    z-index: 1;
}

.cause-block-four .inner-box .content-box .category::before{
    position: absolute;
    content: '';
    background-image: url(../images/shape/shape-40.png);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background-position: center;
    z-index: -1;
}

.cause-block:nth-child(2) .cause-block-four .inner-box .content-box .category::before{
    background-image: url(../images/shape/shape-41.png);
}

.cause-block:nth-child(3) .cause-block-four .inner-box .content-box .category::before{
    background-image: url(../images/shape/shape-42.png);
}

.cause-block-four .inner-box .content-box h3{
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 10px;
}

.cause-block-four .inner-box .content-box h3 a{
    display: inline-block;
    color: var(--title-color);
}

.cause-block-four .inner-box .content-box h3 a:hover{
    color: var(--theme-color);
}

.cause-block-four .inner-box .content-box p{
    margin-bottom: 28px;
}

.cause-block-four .inner-box .content-box .lower-box{
    position: relative;
    display: block;
    background-color: #fff;
    border-radius: 12px;
    z-index: 1;
    margin-bottom: -42px;
    padding: 15px 20px 11px 20px;
    overflow: hidden;
}

.cause-block-four .inner-box .content-box .lower-box .bar{
    position: absolute;
    width: 100%;
    background: #E5E5E5;
    height: 4px;
    left: 0px;
    top: 0px;
}

.cause-block-four .inner-box .content-box .lower-box .bar-inner{
    height: 4px;
}

.cause-block-four .inner-box .content-box .lower-box .list-item{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cause-block-four .inner-box .content-box .lower-box .list-item li{
    position: relative;
    display: block;
}

.cause-block-four .inner-box .content-box .lower-box .list-item li span{
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    color: var(--title-color);
}

.cause-block-four .inner-box .content-box .lower-box .list-item li span.amount{
    font-weight: 700;
}

.cause-block-four .inner-box .content-box .lower-box .list-item li::before{
    position: absolute;
    content: '';
    background: #EDEDED;
    width: 1px;
    height: 34px;
    top: 7px;
    right: -35px;
}

.cause-block-four .inner-box .content-box .lower-box .list-item li:last-child:before{
    display: none;
}

.cause-style-three.home-4 .inner-container{
    border-bottom: none;
    border-top: 1px solid #E5E5E5;
}

.cause-style-four .pattern-layer{
    position: absolute;
    right: 0px;
    bottom: 210px;
    width: 254px;
    height: 683px;
    background-repeat: no-repeat;
}

.cause-style-three .pattern-layer{
    position: absolute;
    left: 0px;
    bottom: 235px;
    width: 286px;
    height: 745px;
    background-repeat: no-repeat;
}


/** cause-style-five **/

.cause-style-five{
    position: relative;
    padding-bottom: 240px;
    background-color: #292929;
}

.cause-style-five .cause-block-one .inner-box{
    padding: 10px;
}

.cause-style-five .cause-block-one .inner-box .lower-content .lower-box{
    padding: 0px;
}

.cause-style-five .cause-block-one .inner-box .lower-content{
    position: relative;
    padding: 29px 20px 22px 20px;
}

.cause-style-five .cause-block-one .inner-box .lower-content .category{
    position: absolute;
    display: inline-block;
    left: 20px;
    top: -13px;
    font-size: 14px;
    line-height: 20px;
    font-family: var(--title-font);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 30px;
    padding: 3px 15px;
    background-color: #F84F23;
}

.cause-style-five .cause-block:nth-child(2) .cause-block-one .inner-box .lower-content .category{
    background-color: #FFB700;
}

.cause-style-five .cause-block:nth-child(3) .cause-block-one .inner-box .lower-content .category{
    background-color: rgba(109, 232, 129, 1);
}

.cause-style-five .cause-block-one .inner-box .lower-content p{
    margin-bottom: 33px;
}

.cause-style-five .cause-block-one .inner-box .lower-content .bar{
    position: relative;
    width: 100%;
    height: 6px;
    background-color: #E5E5E5;
    border-radius: 10px;
    margin-bottom: 20px;
}

.cause-style-five .cause-block-one .inner-box .lower-content .bar .bar-inner{
    position: absolute;
    width: 100%;
    height: 6px;
    border-radius: 10px;
}

.cause-style-five .cause-block-one .inner-box .lower-content .bar .bar-inner span{
    position: absolute;
    top: -30px;
    right: -10px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    color: var(--title-color);
}

.cause-style-five .cause-block-one .inner-box .lower-content .bar .bar-inner::before{
    position: absolute;
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    top: -5px;
    right: -2px;
}

.cause-style-five .pattern-layer .pattern-1{
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 32px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.cause-style-five .pattern-layer .pattern-2{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 32px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.cause-block:nth-child(4) .cause-block-one .inner-box .image-box .category::before {
    background-image: url(../images/shape/shape-61.png);
}

.cause-block:nth-child(5) .cause-block-one .inner-box .image-box .category::before {
    background-image: url(../images/shape/shape-62.png);
}

.cause-block:nth-child(6) .cause-block-one .inner-box .image-box .category::before {
    background-image: url(../images/shape/shape-63.png);
}

.cause-block:nth-child(7) .cause-block-one .inner-box .image-box .category::before {
    background-image: url(../images/shape/shape-64.png);
}

.cause-block:nth-child(8) .cause-block-one .inner-box .image-box .category::before {
    background-image: url(../images/shape/shape-65.png);
}

.cause-block:nth-child(9) .cause-block-one .inner-box .image-box .category::before {
    background-image: url(../images/shape/shape-66.png);
}
  
  
/** rtl-css **/
  
.rtl .cause-style-two .owl-nav{
    right: inherit;
    left: 0px;
}

.rtl .cause-block-two .inner-box{
    direction: rtl;
}

.rtl .cause-style-three .owl-nav{
    right: inherit;
    left: 0px;
}

.rtl .cause-block-four .inner-box .content-box .lower-box .list-item li::before{
    right: inherit;
    left: -35px;
}

.rtl .cause-style-five .cause-block-one .inner-box .lower-content .bar .bar-inner span{
    right: inherit;
    left: -10px;
}

.rtl .cause-style-five .cause-block-one .inner-box .lower-content .bar .bar-inner::before{
    right: inherit;
    left: -2px;
}

.rtl .cause-block-one .inner-box .lower-content .single-item::before{
    right: inherit;
    left: -45px;
}
  
/** responsive-css **/
  
@media only screen and (max-width: 1200px){
  
}
  
@media only screen and (max-width: 991px){
    .cause-style-three .owl-nav{
        display: none;
    }
}
  
@media only screen and (max-width: 767px){
    .cause-section{
        padding: 70px 0px 40px 0px;
    }

    .cause-style-two .owl-nav{
        display: none;
    }

    .cause-style-two{
        padding-top: 70px;
    }

    .cause-block-two .inner-box .image-box{
        min-width: 250px;
    }

    .cause-style-three .inner-container{
        padding: 65px 0px 40px 0px;
    }

    .cause-block-three .inner-box{
        padding-left: 30px;
        padding-right: 30px;
    }

    .cause-style-four{
        padding: 70px 0px;
    }

    .cause-style-three .pattern-layer{
        display: none;
    }

    .cause-section.pb_90{
        padding-bottom: 40px;
    }
}
  
@media only screen and (max-width: 599px){
    .cause-block-one .inner-box .lower-content .single-item::before{
        display: none;
    }

    .cause-block-two .inner-box{
        display: block;
    }
}
  
@media only screen and (max-width: 499px){
    .cause-block-four .inner-box .content-box .lower-box .list-item li::before{
        display: none;
    }
}
/** gallery-section — infinite marquee **/

.gallery-section {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.gallery-marquee {
    overflow: hidden;
    width: 100%;
    cursor: grab;
}

.gallery-marquee:active {
    cursor: grabbing;
}

@keyframes gallery-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.gallery-track {
    display: flex;
    gap: 20px;
    width: fit-content;
    animation: gallery-scroll 25s linear infinite;
    will-change: transform;
}

.gallery-track:hover {
    animation-play-state: paused;
}

.gallery-item {
    flex-shrink: 0;
    width: 380px;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: transform 0.55s ease, opacity 0.55s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
    opacity: 0.88;
}


/** gallery-page-section (gallery.php standalone page) **/

.gallery-page-section {
    position: relative;
}

.gallery-block-one .inner-box {
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
}

.gallery-block-one .inner-box .image-box {
    position: relative;
    display: block;
    border-radius: 20px;
}

.gallery-block-one .inner-box .image-box img {
    width: 100%;
    border-radius: 20px;
    transition: all .50s cubic-bezier(.25,.8,.25,1);
}

.gallery-block-one .inner-box:hover .image-box img {
    opacity: 0.2;
}

.gallery-block-one .inner-box .content-box {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 1;
    text-align: center;
}

.gallery-block-one .inner-box .content-box .view-btn a {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 84px;
    background-color: #fff;
    text-align: center;
    font-size: 30px;
    color: var(--title-color);
    border-radius: 50%;
    margin-bottom: 23px;
    transform: scale(0, 0);
    transition: transform 0.3s ease;
}

.gallery-block-one .inner-box:hover .content-box .view-btn a {
    transform: scale(1, 1);
}

.gallery-block-one .inner-box .content-box .text-box {
    position: relative;
    display: block;
    transition: all .50s cubic-bezier(.25,.8,.25,1);
    top: 15px;
    opacity: 0;
}

.gallery-block-one .inner-box:hover .content-box .text-box {
    opacity: 1;
    top: 0;
}

.gallery-block-one .inner-box:hover .content-box .text-box h3 {
    display: block;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 9px;
}

.gallery-block-one .inner-box:hover .content-box .text-box h3 a {
    display: inline-block;
    color: #fff;
}

.gallery-block-one .inner-box:hover .content-box .text-box h3 a:hover {
    text-decoration: underline;
}

.gallery-block-one .inner-box:hover .content-box .text-box span {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 21px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
}


/** rtl-css **/


/** responsive-css **/

@media only screen and (max-width: 991px) {
    .gallery-item {
        width: 340px;
        height: 260px;
    }
}

@media only screen and (max-width: 767px) {
    .gallery-page-section {
        padding: 70px 0 40px;
    }

    .gallery-item {
        width: 85vw;
        height: 260px;
    }

    .gallery-track {
        gap: 16px;
        animation-duration: 22s;
    }
}

@media only screen and (max-width: 499px) {
    .gallery-item {
        width: 88vw;
        height: 240px;
    }
}

/** feature-section **/

.feature-section{
    position: relative;
}

.feature-section .content-box{
    position: relative;
    display: block;
}

.feature-section .content-box .text-box p{
    font-size: 18px;
    line-height: 30px;
    color: var(--title-color);
    margin-bottom: 30px;
}

.feature-block-one .inner-box{
    position: relative;
    display: flex;
    align-items: center;
    padding: 58px 60px;
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 16px;
    gap: 25px;
    box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.06);
    transition: all 500ms ease;
}

.feature-block-one .inner-box:hover{
    box-shadow: 0px 20px 60px 0px rgba(0, 0, 0, 0.10);
}

.feature-block-one .inner-box .icon-box{
    position: relative;
    display: inline-block;
    min-width: 85px;
}

.feature-block-one .inner-box h3{
    display: block;
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 15px;
}

.feature-block-one .inner-box h3 a{
    display: inline-block;
    color: var(--title-color);
}

.feature-block-one .inner-box p{
    line-height: 28px;
}

.feature-section .pattern-layer{
    position: absolute;
    left: 0px;
    top: -30px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: left top;
}

.feature-section.alternat-2 .feature-block-one .inner-box{
    background-color: #FAF7F1;
    box-shadow: none;
}

.feature-section .shape .shape-1{
    position: absolute;
    left: 0px;
    top: 70px;
    width: 260px;
    height: 498px;
    background-repeat: no-repeat;
}

.feature-section .shape .shape-2{
    position: absolute;
    right: 0px;
    top: 160px;
    width: 244px;
    height: 493px;
    background-repeat: no-repeat;
}

.feature-section.service-page .feature-block-one .inner-box{
    background-color: #fff;
    box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.06);
}
  
  
/** rtl-css **/
  

  
/** responsive-css **/
  
@media only screen and (max-width: 1200px){
  
}
  
@media only screen and (max-width: 991px){
    .feature-section .content-box{
        margin-bottom: 30px;
    }

    .feature-section .pattern-layer{
        display: none;
    }
}
  
@media only screen and (max-width: 767px){
    .feature-section{
        padding: 40px 0px;
    }

    .feature-section .shape{
        display: none;
    }

    .feature-section.alternat-2{
        padding-top: 70px;
    }
}
  
@media only screen and (max-width: 599px){
  
}
  
@media only screen and (max-width: 499px){
    .feature-block-one .inner-box{
        display: block;
        padding: 50px 30px;
    }

    .feature-block-one .inner-box .icon-box{
        margin-bottom: 20px;
    }
} 
/** funfact-section **/

.funfact-section{
    position: relative;
    background-color: var(--secondary-color);
    padding: 45px 0px;
}

.funfact-section .outer-container{
    position: relative;
    padding: 0px 15px;
}

.funfact-block-one .inner-box{
    position: relative;
    display: block;
}

.funfact-block-one .inner-box::before{
    position: absolute;
    content: '';
    background-color: #fff;
    width: 1px;
    height: 205px;
    top: -45px;
    right: -15px;
    opacity: 0.12;
}

.funfact-block:last-child .funfact-block-one .inner-box::before{
    display: none;
}

.funfact-block-one .inner-box .count-outer{
    position: relative;
    display: block;
    font-size: 64px;
    line-height: 70px;
    font-family: var(--title-font);
    font-weight: 600;
    z-index: 1;
    margin-bottom: 7px;
}

.funfact-block-one .inner-box .count-outer .shape{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    opacity: 0.1;
}

.funfact-block-one .inner-box p{
    display: block;
    font-size: 18px;
    color: #ffffff;
}


/** funfact-style-two **/

.funfact-style-two{
    position: relative;
}

.funfact-style-two .inner-container{
    position: relative;
    display: block;
    max-width: 910px;
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.05);
    z-index: 3;
    padding: 48px 80px;
    margin-top: -90px;
}

.funfact-style-two .inner-box{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

.funfact-style-two .single-item{
    position: relative;
    display: block;
}

.funfact-style-two .inner-container .bar-box{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}

.funfact-style-two .inner-container .bar-box .bar{
    position: absolute;
    background-color: #E5E5E5;
    width: 1px;
    height: 64px;
    top: 58px;
}

.funfact-style-two .inner-container .bar-box .bar-1{
    left: 33.333%;
}

.funfact-style-two .inner-container .bar-box .bar-2{
    left: 66.666%;
}

.funfact-style-two .single-item:last-child:before{
    display: none;
}

.funfact-style-two .single-item .count-outer{
    position: relative;
    display: block;
    font-size: 48px;
    line-height: 50px;
    font-family: var(--title-font);
    font-weight: 700;
}

.funfact-style-two .single-item h4{
    display: block;
    font-size: 20px;
    line-height: 30px;
}

.funfact-style-two .single-item .count-outer .symble{
    position: relative;
    display: inline-block;
    top: -2px;
    text-transform: uppercase;
}

.funfact-section.alternat-2 .funfact-block-one .inner-box .count-outer{
    color: #fff;
}
  
  
/** rtl-css **/
  
.rtl .funfact-block-one .inner-box::before{
    right: inherit;
    left: -15px;
}
  
/** responsive-css **/
  
@media only screen and (max-width: 1200px){
  
}
  
@media only screen and (max-width: 991px){

}
  
@media only screen and (max-width: 767px){
    .funfact-style-two .inner-container{
        margin-top: 0px;
        padding-left: 30px;
        padding-right: 30px;
    }
}
  
@media only screen and (max-width: 599px){
    .funfact-style-two .inner-container .bar-box{
        display: none;
    }

    .funfact-style-two .inner-container .inner-box{
        display: block;
    }

    .funfact-style-two .inner-container .inner-box .single-item{
        margin-bottom: 30px;
    }

    .funfact-style-two .inner-container .inner-box .single-item:last-child{
        margin-bottom: 0px;
    }
}
  
@media only screen and (max-width: 499px){

} 
/** testimonial-section **/

.testimonial-section{
    position: relative;
    background-color: #F4F6F7;
}

.testimonial-section .pattern-layer{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.testimonial-section .inner-container{
    position: relative;
    display: block;
    margin-right: 0;
}

/** testimonial marquee moved to style.css for global consistency **/


/* ── Card — matches site card design system ── */
.tm-card {
    flex-shrink: 0;
    width: 380px;
    margin-right: 20px;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.13);
}

/* card header row: avatar + name/stars + dismiss */
.tm-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tm-avatar {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--title-font);
}

.tm-meta {
    flex: 1;
}

.tm-meta h4 {
    display: block;
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    color: var(--title-color);
    margin-bottom: 4px;
}

.tm-stars {
    color: #FFC844;
    font-size: 14px;
    letter-spacing: 2px;
}

.tm-x {
    color: #cccccc;
    font-size: 16px;
    flex-shrink: 0;
    align-self: flex-start;
    cursor: default;
}

/* quote text */
.tm-card > p {
    font-size: 15px;
    line-height: 26px;
    color: #555555;
    margin: 0;
    flex: 1;
}

/* role / designation */
.tm-role {
    display: block;
    font-size: 13px;
    line-height: 18px;
    color: #999999;
    border-top: 1px solid #f0f0f0;
    padding-top: 12px;
    margin-top: auto;
}

.testimonial-block-one .inner-box{
    position: relative;
    display: block;
    background-color: #fff;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
}

.testimonial-block-one .inner-box .rating{
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 20px;
    margin-bottom: 24px;
}

.testimonial-block-one .inner-box .rating li{
    position: relative;
    display: inline-block;
    font-size: 20px;
    line-height: 20px;
    color: #FFC844;
}

.testimonial-block-one .inner-box h3{
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 20px;
}

.testimonial-block-one .inner-box .text{
    margin-bottom: 24px;
}

.testimonial-block-one .inner-box .text p{
    margin-bottom: 22px;
}

.testimonial-block-one .inner-box .text p:last-child{
    margin-bottom: 0px;
}

.testimonial-block-one .inner-box .author-box{
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-block-one .inner-box .author-box .thumb-box{
    position: relative;
    display: inline-block;
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
}

.testimonial-block-one .inner-box .author-box .thumb-box img{
    width: 100%;
    border-radius: 50%;
}

.testimonial-block-one .inner-box .author-box h4{
    display: block;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 2px;
}

.testimonial-block-one .inner-box .author-box .designation{
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 20px;
}

.testimonial-section .owl-carousel .owl-stage{
    display: flex;
    align-items: center;
}

.testimonial-section .dots-style-one .owl-dots{
    position: absolute;
    top: -120px;
    right: 435px;
}

.testimonial-block-two{
    position: relative;
    margin-top: 48px;
}

.testimonial-block-two .inner-box{
    position: relative;
    display: block;
    background-color: #fff;
    border-radius: 20px;
    border-bottom: solid;
    border-width: 2px;
    padding: 0px 30px 40px 30px;
    margin-bottom: 30px;
}

.testimonial-block-two .inner-box .thumb-box{
    position: relative;
    display: inline-block;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 8px solid #FAF7F1;
    margin-top: -48px;
    margin-bottom: 10px;
}

.testimonial-block-two .inner-box .thumb-box img{
    width: 100%;
    border-radius: 50%;
}

.testimonial-block-two .inner-box h4{
    display: block;
    font-size: 20px;
    line-height: 28px;
}

.testimonial-block-two .inner-box  .designation{
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 14px;
}


/** testimonial-style-two **/

.testimonial-style-two{
    position: relative;
}


.testimonial-section.alternat-2{
    background-color: #FAF7F1;
}

.testimonial-section.alternat-2 .pattern-layer{
    height: calc(100% + 10px);
    top: -10px;
}

.testimonial-section.alternat-2 .owl-carousel .owl-stage{
    display: block;
}

.testimonial-section.alternat-2 .dots-style-one .owl-dots{
    position: relative;
    top: 0px;
    right: 0px;
    width: 100%;
    text-align: center;
    padding-top: 20px;
}

  
  
/** rtl-css **/
  
.rtl .testimonial-block-one .inner-box{
    direction: rtl;
}

.rtl .testimonial-section .dots-style-one .owl-dots{
    right: inherit;
    left: 435px;
}

.rtl .testimonial-section .inner-container{
    right: inherit;
    left: -440px;
}
  
/** responsive-css **/
  
@media only screen and (max-width: 1200px){
  
}
  
@media only screen and (max-width: 991px){
    .testimonial-section .inner-container{
        margin-right: 0px;
    }

    .testimonial-section .dots-style-one .owl-dots{
        display: none;
    }
}
  
@media only screen and (max-width: 767px){
    .testimonial-style-two,
    .testimonial-section{
        padding: 70px 0px 40px 0px;;
    }
}
  
@media only screen and (max-width: 599px){
  
}
  
@media only screen and (max-width: 499px){
    .testimonial-block-one .inner-box{
        padding: 40px 30px;
    }
} 
/** chooseus-section **/

.chooseus-section{
    position: relative;
}

.chooseus-section .inner-container{
    position: relative;
    border-bottom: 1px solid #E5E5E5;
}

.chooseus-section .inner-box{
    position: relative;
    display: block;
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.06);
}

.chooseus-section .single-item{
    position: relative;
    display: block;
    padding: 60px;
}

.chooseus-section .single-item .icon-box{
    position: absolute;
    top: 50px;
    right: 35px;
}

.chooseus-section .single-item .light-icon{
    position: absolute;
    left: 0px;
    bottom: 0px;
}

.chooseus-section .single-item h2{
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 40px;
}

.chooseus-section .single-item.light-column{
    margin-left: -15px;
}

.chooseus-section .single-item.light-column h2{
    color: #fff;
}

.chooseus-section .single-item.light-column .list-style-one li{
    color: #fff;
}

.chooseus-section .single-item.light-column .list-style-one li::before{
    color: #fff;
    border-color: #fff;
}

.chooseus-section .pattern-layer{
    position: absolute;
    right: 0px;
    bottom: -177px;
    width: 343px;
    height: 636px;
    background-repeat: no-repeat;
}

.content_block_three .content-box{
    position: relative;
    display: block;
}

.chooseus-section .content_block_three .content-box{
    padding: 60px;
    padding-left: 45px;
}

.chooseus-section .content_block_three .content-box .sec-title h2{
    font-size: 36px;
    line-height: 45px;
}

.chooseus-section .single-item .theme-btn .text,
.chooseus-section .single-item .theme-btn i{
    background-color: #fff;
    color: var(--title-color) !important;
}

.chooseus-section .single-item .theme-btn:hover .text{
    color: #fff !important;
}

.chooseus-section .shape .shape-1{
    position: absolute;
    top: -270px;
    right: 0px;
    width: 343px;
    height: 636px;
    background-repeat: no-repeat;
}

.chooseus-section .shape .shape-2{
    position: absolute;
    left: 0px;
    bottom: 135px;
    width: 455px;
    height: 786px;
    background-repeat: no-repeat;
}

  
  
/** rtl-css **/
  
.rtl .chooseus-section .single-item .icon-box{
    right: inherit;
    left: 35px;
}

.rtl .chooseus-section .single-item .list-style-one,
.rtl .chooseus-section .single-item .btn-box{
    padding-left: 0px;
    padding-right: 130px;
}

.rtl .chooseus-section .single-item.light-column{
    margin-left: 0px;
    margin-right: -15px;
}
  
/** responsive-css **/
  
@media only screen and (max-width: 1200px){
  
}
  
@media only screen and (max-width: 991px){
    .chooseus-section .shape{
        display: none;
    }
}
  
@media only screen and (max-width: 767px){
    .chooseus-section .single-item .list-style-one,
    .chooseus-section .single-item .btn-box{
        padding-left: 0px;
    }

    .rtl .chooseus-section .single-item .list-style-one,
    .rtl .chooseus-section .single-item .btn-box{
        padding-right: 0px;
    }

    .chooseus-section .single-item.light-column{
        margin: 0px !important;
    }

    .chooseus-section .inner-container{
        padding: 70px 0px;
    }

    .inner-container.pt_0{
        padding-top: 0px;
    }
}
  
@media only screen and (max-width: 599px){
  
}
  
@media only screen and (max-width: 499px){
    .chooseus-section .single-item,
    .chooseus-section .content_block_three .content-box{
        padding-left: 30px;
        padding-right: 30px;
    }
} 
/** news-section **/

.news-section{
    position: relative;
}

.news-block-one .inner-box{
    position: relative;
    display: block;
    padding: 315px 30px 30px 30px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
}

.news-block-one .inner-box .bg-layer{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: all .21s cubic-bezier(.25,.8,.25,1);
}

.news-block-one .inner-box:hover .bg-layer{
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
}

.news-block-one .inner-box .bg-layer::before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0px;
    bottom: 0px;
    background: linear-gradient(180deg, rgba(34, 34, 34, 0) 38%, #000000 100%);
    transition: all 500ms ease;
}

.news-block-one .inner-box:hover .bg-layer::before{
    opacity: 0;
}

.news-block-one .inner-box .bg-layer::after{
    position: absolute;
    content: '';
    width: 100%;
    height: 0%;
    left: 0px;
    bottom: 0px;
    opacity: 0;
    background: linear-gradient(180deg, rgba(34, 34, 34, 0) 38%, #F84F23 100%);
    transition: all .5s cubic-bezier(.25,.8,.25,1);
}

.news-block-one .inner-box:hover .bg-layer::after{
    height: 100%;
    opacity: 1;
}

.news-block-one .inner-box .content-box{
    position: relative;
    display: block;
    z-index: 1;
}

.news-block-one .inner-box .content-box .post-date{
    position: relative;
    display: flex;
    align-items: center;
    width: 141px;
    height: 40px;
    line-height: 40px;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 21px;
    z-index: 1;
}

.news-block-one .inner-box .content-box .post-date::before{
    position: absolute;
    content: '';
    background-image: url(../images/shape/shape-13.png);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}

.news-block-one .inner-box .content-box h4{
    display: block;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 13px;
}

.news-block-one .inner-box .content-box h4 a{
    display: inline-block;
    color: #fff;
}

.news-block-one .inner-box .content-box h4 a:hover{
    text-decoration: underline;
}

.news-block-one .inner-box .content-box .post-info{
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.news-block-one .inner-box .content-box .post-info li{
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 21px;
    color: #fff;
}

.news-block-one .inner-box .content-box .post-info li a{
    display: inline-block;
    color: #fff;
}

.news-block-one .inner-box .content-box .post-info li a:hover{
    text-decoration: underline;
}

.news-section .pattern-layer{
    position: absolute;
    left: 0px;
    top: -150px;
    width: 455px;
    height: 786px;
    background-repeat: no-repeat;
}

.news-block-two .inner-box{
    position: relative;
    display: block;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 10px 70px 0px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.news-block-two .inner-box .image-box{
    position: relative;
    display: block;
}

.news-block-two .inner-box .image-box .image{
    position: relative;
    display: block;
    overflow: hidden;
}

.news-block-two .inner-box .image-box .image img{
    width: 100%;
    transition: all .21s cubic-bezier(.25,.8,.25,1);
}

.news-block-two .inner-box:hover .image-box .image img{
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
}

.news-block-two .inner-box .image-box .post-date{
    position: absolute;
    right: 30px;
    bottom: -20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 20px;
    color: var(--title-color);
    font-weight: 500;
    padding: 10px 10px;
    max-width: 141px;
    width: 141px;
    text-align: center;
    justify-content: center;
    z-index: 1;
}

.news-block-two .inner-box .image-box .post-date::before{
    position: absolute;
    content: '';
    background-image: url(../images/shape/shape-31.png);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: left center;
    left: 0px;
    top: 0px;
    z-index: -1;
}

.news-block-two .inner-box .lower-content{
    position: relative;
    display: block;
    padding: 25px 30px 40px 30px;
}

.news-block-two .inner-box .lower-content .post-info{
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 18px;
}

.news-block-two .inner-box .lower-content .post-info li{
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: #666666;
}

.news-block-two .inner-box .lower-content .post-info li::before{
    position: absolute;
    content: '';
    background-color: #666666;
    width: 5px;
    height: 5px;
    top: 8px;
    right: -15px;
    border-radius: 50%;
    opacity: 0.4;
}

.news-block-two .inner-box .lower-content .post-info li:last-child:before{
    display: none;
}

.news-block-two .inner-box .lower-content h3{
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 22px;
}

.news-block-two .inner-box .lower-content h3 a{
    display: inline-block;
    color: var(--title-color);
}

.news-block-two .inner-box .lower-content .link-btn a{
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    color: var(--title-color);
}

.news-block-two .inner-box .lower-content .link-btn a i{
    font-size: 10px;
}

.news-block-two .inner-box .lower-content .location-box{
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: 26px;
    font-family: var(--title-font);
    font-weight: 500;
    margin-bottom: 16px;
}

.event-page-section .news-block-two .inner-box .lower-content h3{
    margin-bottom: 11px;
}

.event-page-section .news-block-two .inner-box .lower-content p{
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 24px;
}

.event-page-section .news-block-two .inner-box .lower-content{
    padding: 28px 16px 16px 16px;
}

.event-page-section .news-block-two .inner-box{
    padding: 14px;
}

.event-page-section .news-block-two .inner-box .image-box .image{
    border-radius: 14px 14px 0px 0px;
}


.sidebar-page-container{
    position: relative;
}

.news-block-two .inner-box  .lower-content h2{
    display: block;
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 14px;
}

.news-block-two .inner-box  .lower-content h2 a{
    display: inline-block;
    color: var(--title-color);
}

.news-block-two .inner-box  .lower-content p{
    margin-bottom: 22px;
    color: #777777;
}

.blog-standard-content .news-block-two .inner-box .image-box .post-date{
    right: inherit;
    left: 30px;
}

.blog-standard-content .news-block-two .inner-box .lower-content{
    padding-top: 45px;
}
  
  
/** rtl-css **/
  
.rtl .news-block-two .inner-box .lower-content .post-info li::before{
    right: inherit;
    left: -15px;
}
  
/** equal-height news cards **/

.news-section .row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.news-section .news-block {
  display: flex;
}

.news-section .news-block .news-block-one {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.news-section .news-block .inner-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}


/** news marquee — mobile only **/

/* hidden on desktop */
.news-marquee-wrap {
    display: none;
}

@keyframes newsScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.news-marquee-track {
    display: flex;
    gap: 20px;
    width: fit-content;
    animation: newsScroll 18s linear infinite;
    will-change: transform;
}

.news-marquee-item {
    flex-shrink: 0;
    width: 260px;
}

/* force every card to the exact same dimensions */
.news-marquee-item .news-block-one .inner-box {
    margin-bottom: 0;
    width: 260px;
    height: 320px;
    padding: 0;
    box-sizing: border-box;
}

/* bg-layer already fills 100% width/height — content sits at the bottom */
.news-marquee-item .news-block-one .inner-box .content-box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 2;
}


/** responsive-css **/

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

}

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

}

@media only screen and (max-width: 767px){
    .news-section{
        padding: 70px 0px 40px 0px;
    }

    .news-section.pt_0{
        padding-top: 0px;
    }

    .sidebar-page-container{
        padding: 70px 0px;
    }

    /* swap grid → marquee on mobile */
    .news-desktop-grid {
        display: none !important;
    }

    .news-marquee-wrap {
        display: block;
        overflow: hidden;
        width: 100%;
        padding: 10px 0;
    }
}
  
@media only screen and (max-width: 599px){
  
}
  
@media only screen and (max-width: 499px){
    .news-block-two .inner-box .lower-content h2{
        font-size: 26px;
        line-height: 34px;
    }
} 
/** clients-section **/

.main-footer{
    position: relative;
    background-color: var(--secondary-color);
}

.footer-top{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 20px 30px;
    border-radius: 0px 0px 20px 20px;
}

.main-footer .subscribe-box{
    position: relative;
    width: 470px;
}

.main-footer .subscribe-box .form-group{
    position: relative;
    margin-bottom: 0px;
}

.main-footer .subscribe-box .form-group input[type='email']{
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    padding: 10px 170px 10px 30px;
    font-size: 16px;
    color: #fff;
}

.main-footer .subscribe-box .form-group button[type='submit']{
    position: absolute;
    top: 5px;
    right: 5px;
    width: 145px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 18px;
    font-family: var(--title-font);
    font-weight: 700;
    background-color: #fff;
    border-radius: 30px;
}

.main-footer .widget-title{
    position: relative;
    display: block;
    margin-bottom: 36px;
}

.main-footer .widget-title h3{
    font-size: 24px;
    line-height: 28px;
    color: #fff;
}

.main-footer .about-widget p{
    color: #fff;
    line-height: 26px;
    margin-bottom: 30px;
}

.main-footer .social-links{
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.main-footer .social-links li a{
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 54px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.10);
    font-size: 16px;
    color: #fff;
}

.main-footer .links-list li{
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 14px;
}

.main-footer .links-list li:last-child{
    margin-bottom: 0px;
}

.main-footer .links-list li a{
    display: inline-block;
    color: #fff;
}

.main-footer .contact-widget p{
    color: #fff;
    margin-bottom: 25px;
}

.main-footer .contact-widget .info-list li{
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    margin-bottom: 14px;
}

.main-footer .contact-widget .info-list li:last-child{
    margin-bottom: 0px;
}

.main-footer .contact-widget .info-list li a{
    display: inline-block;
    color: #fff;
}

.main-footer .contact-widget .info-list li i{
    font-size: 20px;
}

.main-footer .contact-widget .info-list li:nth-child(2) i{
    font-size: 14px;
}

.main-footer .contact-widget .info-list li.phone a{
    font-size: 24px;
    font-weight: 700;
}

.main-footer .contact-widget .info-list li.phone a:hover{
    color: #fff;
}

.main-footer .widget-section{
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-bottom{
    padding: 23px 0px;
}

.footer-bottom p{
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    font-weight: 500;
}

.footer-bottom p a:hover{
    text-decoration: underline;
}

.footer-top-two{
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-top-two .top-inner{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.main-footer .footer-top-two .top-inner .subscribe-box .form-group button[type='submit']{
    color: #fff;
}

.main-footer .subscribe-box .form-group input:focus{
    border-color: #fff;
}

.main-footer .contact-widget-two{
    position: relative;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.07);
    padding: 5px;
}

.main-footer .contact-widget-two .widget-title{
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 20px;
    padding: 20px;
    padding-bottom: 25px;
}

.main-footer .contact-widget-two .widget-title h3{
    margin-bottom: 16px;
}

.main-footer .contact-widget-two .widget-title,
.main-footer .contact-widget-two .widget-title p{
    margin-bottom: 0px;
}

.main-footer .contact-widget-two .widget-content{
    padding: 19px 25px 25px 25px;
}

.main-footer .contact-widget-two .info-list li i,
.main-footer .contact-widget-two .info-list li.phone a{
    color: #fff;
}

.main-footer .contact-widget-two .info-list li.phone a:hover{
    color: var(--theme-color);
}

.main-footer.home-3 .footer-top-two{
    border-bottom: none;
}

.main-footer.home-3 .footer-top-two .subscribe-box{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0px 20px 50px;
    min-width: 985px;
    z-index: 1;
}

.main-footer.home-3 .subscribe-box .form-group{
    width: 467px;
}

.main-footer.home-3 .subscribe-box .form-group input[type='email']{
    background-color: #fff;
    border-color: #fff;
    color: #666666;
}

.main-footer.home-3 .footer-top-two .subscribe-box h3{
    font-size: 24px;
    line-height: 28px;
    color: #fff;
}

.main-footer.home-3 .footer-top-two .subscribe-box::before{
    position: absolute;
    content: '';
    background-color: #222222;
    width: 5000px;
    height: 100%;
    left: 0px;
    top: 0px;
    border-bottom-left-radius: 20px;
    z-index: -1;
}

.footer-logo{
    min-width: 162px;
}


  
  
/** rtl-css **/
  

  
/** responsive-css **/
  
@media only screen and (max-width: 1200px){
    .main-footer.home-3 .footer-top-two .subscribe-box{
        display: block;
        min-width: 100%;
    }

    .main-footer.home-3 .footer-top-two .subscribe-box h3{
        margin-bottom: 20px;
    }
}
  
@media only screen and (max-width: 991px){
    .footer-widget{
        margin: 0px 0px 30px 0px !important;
    }

    .main-footer .widget-section{
        padding-bottom: 70px;
    }
}
  
@media only screen and (max-width: 767px){

}
  
@media only screen and (max-width: 599px){
    .footer-top,
    .footer-top-two .top-inner{
        display: block;
    }

    .main-footer .footer-logo{
        display: block;
        text-align: center;
        margin-bottom: 30px;
    }

    .main-footer .subscribe-box{
        width: 100%;
    }

    .main-footer.home-3 .footer-top-two .top-inner{
        padding-top: 70px;
    }

    .main-footer.home-3 .footer-top-two .subscribe-box{
        padding: 0px;
    }

    .main-footer.home-3 .footer-top-two .subscribe-box::before{
        display: none;
    }

    .main-footer.home-3 .footer-top-two .subscribe-box h3{
        text-align: center;
    }
}
  
@media only screen and (max-width: 499px){
    .main-footer .subscribe-box .form-group input[type='email']{
        padding-right: 30px;
    }

    .main-footer .subscribe-box .form-group button[type='submit']{
        position: relative;
        top: 0px;
        right: 0px;
        width: 100%;
        margin-top: 15px;
    }
} 
/** page-title **/

.page-title{
    position: relative;
    padding: 134px 0px 155px 0px;
}

.page-title .content-box{
    position: relative;
    display: block;
}

.page-title .content-box h1{
    display: block;
    font-size: 65px;
    line-height: 70px;
    color: #fff;
    margin-bottom: 11px;
}

.page-title .content-box .bread-crumb li{
    position: relative;
    display: inline-block;
    font-size: 20px;
    line-height: 30px;
    font-family: var(--title-font);
    font-weight: 500;
    color: #fff;
    padding-right: 15px;
    margin-right: 4px;
}

.page-title .content-box .bread-crumb li:last-child{
    padding: 0px !important;
    margin: 0px !important;
}

.page-title .content-box .bread-crumb li a{
    display: inline-block;
    color: #fff;
}

.page-title .content-box .bread-crumb li a:hover{
    text-decoration: underline;
}

.page-title .bg-layer{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.page-title .bg-layer:before{
    position: absolute;
    content: '';
    background: #000;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    opacity: 0.3;
}

.page-title .content-box .bread-crumb li:before{
    position: absolute;
    content: "\f105";
    font-family: 'Font Awesome 5 Pro';
    top: 1px;
    right: 0px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}

.page-title .content-box .bread-crumb li:last-child:before{
    display: none;
}

.page-title .pattern-layer{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    mix-blend-mode: multiply;
    opacity: 0.6;
}


/** rtl-css **/

.rtl .page-title .content-box .bread-crumb li{
    margin-right: 0px;
    margin-left: 4px;
    padding-right: 0px;
    padding-left: 15px;
}

.rtl .page-title .content-box .bread-crumb li:before{
    right: inherit;
    left: 0px;
}


/** responsive-css **/

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

}

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

}

@media only screen and (max-width: 767px){
.page-title{
    padding: 80px 0px;
}

.page-title .content-box h1{
    font-size: 50px;
    line-height: 60px;
}

}

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

}

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

}
.blog-details-content{
    position: relative;
    display: block;
}

.blog-details-content blockquote{
    position: relative;
    display: block;
    background-color: #FAF7F1;
    padding: 32px 70px 36px 120px;
    border-radius: 24px;
    margin-bottom: 25px;
}

.blog-details-content blockquote .icon-box{
    position: absolute;
    display: inline-block;
    font-size: 35px;
    left: 40px;
    top: 40px;
}

.blog-details-content blockquote p{
    font-size: 20px;
    line-height: 30px;
    color: #555555;
    font-style: italic;
    margin-bottom: 15px;
}

.blog-details-content blockquote h5{
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 26px;
    font-family: var(--text-font);
    color: var(--title-color);
    font-weight: 700;
    padding-left: 34px;
}

.blog-details-content blockquote h5::before{
    position: absolute;
    content: '';
    background-color: #2F2F2F;
    width: 20px;
    height: 2px;
    left: 0px;
    top: 12px;
}

.blog-details-content .news-block-two .inner-box .lower-content p{
    margin-bottom: 26px;
}

.blog-details-content .news-block-two .two-column .image-box{
    position: relative;
    display: block;
    border-radius: 20px;
    margin-bottom: 25px;
}

.blog-details-content .news-block-two .two-column .image-box img{
    width: 100%;
    border-radius: 20px;
}

.blog-details-content .post-share-option{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #E4E4E4;
    margin-top: 60px;
}

.blog-details-content .post-share-option ul{
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-details-content .post-share-option ul li span{
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: var(--title-color);
    font-weight: 600;
}

.blog-details-content .post-share-option .tags-list li{
    position: relative;
    display: inline-block;
    margin-right: 6px;
}

.blog-details-content .post-share-option .tags-list li a{
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
    font-family: var(--title-font);
    color: var(--title-color);
    font-weight: 700;
    border: 1px solid #E4E4E4;
    border-radius: 50px;
    padding: 7px 35px;
}

.blog-details-content .post-share-option .tags-list li a:hover{
    color: #fff;
}

.blog-details-content .post-share-option .social-list li a{
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: #39579A;
}

.blog-details-content .post-share-option .social-list li:nth-child(3) a{
    color: #69ACE0;
}

.blog-details-content .post-share-option .social-list li:nth-child(4) a{
    color: #007BB5;
}

.blog-details-content .related-post h2{
    display: block;
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 22px;
}

.blog-details-content .news-block-two .inner-box{
    margin-bottom: 50px;
}

.blog-details-content .author-box{
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: #fff;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 60px;
}

.blog-details-content .author-box .thumb-box{
    position: relative;
    display: inline-block;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    min-width: 140px;
}

.blog-details-content .author-box .thumb-box img{
    width: 100%;
    border-radius: 50%;
}

.blog-details-content .author-box h3{
    display: block;
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 0;
}

.blog-details-content .author-box .designation{
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 11px;
}

.blog-details-content .author-box p{
    color: #777777;
}

.blog-details-content .author-box .social-list{
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-details-content .author-box .social-list li a{
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: #39579A;
}

.blog-details-content .author-box .social-list li:nth-child(2) a{
    color: #69ACE0;
}

.blog-details-content .author-box .social-list li:nth-child(3) a{
    color: #007BB5;
}

.blog-details-content .comment-form h2{
    display: block;
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 20px;
}

.blog-details-content .comment-form{
    position: relative;
    display: block;
    background-color: #fff;
    border-radius: 20px;
    padding: 30px 40px 40px 40px;
}
  
  
/** rtl-css **/
  
.rtl .blog-details-content .author-box .social-list{
    right: inherit;
    left: 30px;
}
  
/** responsive-css **/
  
@media only screen and (max-width: 1200px){
  
}
  
@media only screen and (max-width: 991px){

}
  
@media only screen and (max-width: 767px){
    .blog-details-content .post-share-option{
        display: block;
    }

    .blog-details-content .post-share-option .tags-list{
        margin-bottom: 10px;
    }
}
  
@media only screen and (max-width: 599px){
    .blog-details-content .post-share-option .tags-list{
        display: block;
    }

    .blog-details-content .post-share-option .tags-list li{
        margin-bottom: 10px;
    }

    .blog-details-content .author-box .social-list{
        position: relative;
        top: 0px;
        right: 0px;
        margin-top: 15px;
    }
}
  
@media only screen and (max-width: 499px){
    .blog-details-content blockquote,
    .blog-details-content .comment-form{
        padding-left: 30px;
        padding-right: 30px;
    }

    .blog-details-content blockquote .icon-box{
        position: relative;
        left: 0px;
        top: 0px;
        margin-bottom: 20px;
    }

    .blog-details-content .author-box{
        display: block;
    }

    .blog-details-content .author-box .thumb-box{
        margin-bottom: 20px;
    }
} 
/** default-sidebar **/

.default-sidebar{
    position: relative;
    display: block;
}

.default-sidebar .search-widget .form-group{
    position: relative;
    margin-bottom: 0px;
}

.default-sidebar .search-widget .form-group input[type='search']{
    position: relative;
    display: block;
    width: 100%;
    height: 70px;
    background-color: #fff;
    font-size: 20px;
    color: #333333;
    font-weight: 500;
    padding: 10px 70px 10px 30px;
    border-radius: 20px;
}

.default-sidebar .search-widget .form-group button[type='submit']{
    position: absolute;
    top: 15px;
    right: 15px;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 42px;
    background-color: #F0F1F1;
    text-align: center;
    font-size: 20px;
    color: var(--title-color);
    border-radius: 50%;
    transition: all 500ms ease;
}

.default-sidebar .search-widget .form-group input:focus + button,
.default-sidebar .search-widget .form-group button:hover{
    color: #fff;
}

.default-sidebar .widget-title{
    position: relative;
    display: block;
}

.default-sidebar .widget-title h3{
    font-size: 24px;
    line-height: 32px;
}

.default-sidebar .category-widget .category-list li{
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 16px;
}

.default-sidebar .category-widget .category-list li:last-child{
    margin-bottom: 0px;
}

.default-sidebar .category-widget .category-list li a{
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 20px;
    color: var(--title-color);
    padding-left: 15px;
}

.default-sidebar .category-widget .category-list li a::before{
    position: absolute;
    content: '';
    background-color: var(--secondary-color);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    left: 0px;
    top: 7px;
    transition: all 500ms ease;
}

.default-sidebar .sidebar-widget{
    position: relative;
    display: block;
    background-color: #fff;
    border-radius: 20px;
    padding: 25px 30px 37px 30px;
}

.default-sidebar .tags-widget .tags-list{
    position: relative;
    margin: 0px -5px;
}

.default-sidebar .tags-widget .tags-list li{
    position: relative;
    display: inline-block;
    float: left;
    margin: 0px 5px 10px 5px;
}

.default-sidebar .tags-widget .tags-list li a{
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
    font-family: var(--title-font);
    color: var(--title-color);
    font-weight: 700;
    border: 1px solid #E4E4E4;
    border-radius: 50px;
    padding: 5px 15px;
}

.default-sidebar .tags-widget .tags-list li a:hover{
    color: #fff;
}

.default-sidebar .download-widget .download-list li{
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.default-sidebar .download-widget .download-list li:last-child{
    margin-bottom: 0px;
}

.default-sidebar .download-widget .download-list li button{
    position: relative;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(248, 79, 35, 0.06);
    border: 1px solid rgb(248, 79, 35, 0.40);
    font-size: 18px;
    line-height: 28px;
    font-family: var(--title-font);
    font-weight: 700;
    border-radius: 50px;
    padding: 15px 30px;
}

.default-sidebar .tags-widget{
    padding-bottom: 27px;
}

.price-range-slider .range-box{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
  
.price-range-slider .range-value input{
    width: 100%;
    background: none;
    font-size: 16px;
    line-height: 24px;
    font-family: var(--text-font);
    color: #555555;
    font-weight: 500;
    box-shadow: none;
    border: none;
}
  
.price-range-slider .range-bar{
    position: relative;
    border: none;
    height: 4px;  
    width: 100%;
    background: #F0F1F1;
    border-radius: 30px;
}
  
.price-range-slider .ui-slider-range{
    position: relative;
    width: 100%;
    height: 4px;
}
  
.price-range-slider .ui-slider-handle{
    position: absolute;
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    cursor: pointer;
    top: -6px;
    border: none;
    background-color: #fff;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.18);
}

.price-range-slider .range-box .theme-btn .text{
    padding: 0px 20px;
}

.blog-sidebar .search-widget .form-group input[type='search']{
    height: 56px;
    background-color: #FAF7F1;
    border-radius: 50px;
    border: 1px solid #FAF7F1;
}

.blog-sidebar .search-widget .form-group button[type='submit']{
    top: 8px;
    right: 8px;
    color: #fff;
    background-color: var(--theme-color);
}

.blog-sidebar .post-widget .post-inner .post{
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #D9D9D9;
}

.blog-sidebar .post-widget .post-inner .post:last-child{
    padding: 0px;
    margin: 0px;
    border: none;
}

.blog-sidebar .post-widget .post-inner .post .thumb-box{
    position: relative;
    display: block;
    width: 90px;
    height: 90px;
    min-width: 90px;
    border-radius: 12px;
    overflow: hidden;
}

.blog-sidebar .post-widget .post-inner .post .thumb-box img{
    width: 100%;
    border-radius: 12px;
    transition: all .25s cubic-bezier(.25,.8,.25,1);
}

.blog-sidebar .post-widget .post-inner .post:hover .thumb-box img{
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
}

.blog-sidebar .post-widget .post-inner .post h5{
    display: block;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 6px;
}

.blog-sidebar .post-widget .post-inner .post h5 a{
    display: inline-block;
    color: var(--title-color);
}

.blog-sidebar .post-widget .post-inner .post .post-date{
    position: relative;
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: #333333;
}

.blog-sidebar .gallery-widget .image-list{
    position: relative;
    margin: 0px -8px;
}

.blog-sidebar .gallery-widget .image-list li{
    position: relative;
    display: inline-block;
    float: left;
    margin: 0px 8px 16px 8px;
}

.rtl .blog-sidebar .gallery-widget .image-list li{
    float: right;
}

.blog-sidebar .gallery-widget .image-list li .image{
    position: relative;
    display: block;
    width: 106px;
    height: 106px;
    overflow: hidden;
    border-radius: 12px;
}

.blog-sidebar .gallery-widget .image-list li .image img{
    width: 100%;
    border-radius: 12px;
    transition: all .25s cubic-bezier(.25,.8,.25,1);
}

.blog-sidebar .gallery-widget .image-list li .image:hover img{
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
}

.blog-sidebar .gallery-widget{
    padding-bottom: 21px;
}

.blog-sidebar .archive-widget .archives-list li{
    position: relative;
    display: block;
    margin-bottom: 16px;
}

.blog-sidebar .archive-widget .archives-list li:last-child{
    margin-bottom: 0px;
}

.blog-sidebar .archive-widget .archives-list li a{
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    color: var(--title-color);
}

.blog-sidebar .archive-widget .archives-list li a:hover{
    letter-spacing: 1px;
}

  
/** rtl-css **/
  
.rtl .default-sidebar .category-widget .category-list li a{
    padding-left: 0px;
    padding-right: 15px;
}

.rtl .default-sidebar .category-widget .category-list li a::before{
    left: inherit;
    right: 0px;
}

.rtl .default-sidebar .tags-widget .tags-list li{
    float: right;
}

.rtl .price-range-slider .range-bar{
    direction: ltr;
}
  
/** responsive-css **/
  
@media only screen and (max-width: 1200px){
  
}
  
@media only screen and (max-width: 991px){
    .blog-sidebar{
        margin-top: 40px;
    }
}
  
@media only screen and (max-width: 767px){
    
}
  
@media only screen and (max-width: 599px){
  
}
  
@media only screen and (max-width: 499px){
    .blog-sidebar .post-widget .post-inner .post{
        display: block;
    }

    .blog-sidebar .post-widget .post-inner .post .thumb-box{
        margin-bottom: 20px;
    }
} 
/** event-section **/

.event-section{
    position: relative;
}

.event-section .owl-carousel .owl-stage-outer{
    overflow: visible;
}

.event-section .owl-carousel .owl-stage-outer .owl-item{
    opacity: 0;
    visibility: hidden;
}

.event-section .owl-carousel .owl-stage-outer .owl-item.active{
    opacity: 1;
    visibility: visible;
}

.event-block-one .inner-box{
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0px 2px 70px 0px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.event-block-one .inner-box .image-box{
    position: relative;
    display: block;
    overflow: hidden;
}

.event-block-one .inner-box .image-box img{
    width: 100%;
    transition: all .21s cubic-bezier(.25,.8,.25,1);
}

.event-block-one .inner-box:hover .image-box img{
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
}

.event-block-one .inner-box .content-box{
    position: relative;
    display: block;
    max-width: 660px;
    width: 100%;
    padding: 60px 60px 27px 80px;
}

.event-block-one .inner-box .content-box .event-date{
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 20px;
    color: var(--title-color);
    font-weight: 500;
    margin-bottom: 24px;
    padding: 10px 10px;
    max-width: 141px;
    width: 141px;
    text-align: center;
    justify-content: center;
    z-index: 1;
}

.event-block-one .inner-box .content-box .event-date::before{
    position: absolute;
    content: '';
    background-image: url(../images/shape/shape-31.png);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: left center;
    left: 0px;
    top: 0px;
    z-index: -1;
}

.event-block-one .inner-box .content-box h3{
    display: block;
    font-size: 24px;
    line-height: 35px;
    margin-bottom: 22px;
}

.event-block-one .inner-box .content-box h3 a{
    display: inline-block;
    color: var(--title-color);
}

.event-block-one .inner-box .content-box p{
    margin-bottom: 30px;
}

.event-block-one .inner-box .content-box .author-box{
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 44px;
}

.event-block-one .inner-box .content-box .author-box .single-author{
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-block-one .inner-box .content-box .author-box .single-author .author-image{
    position: relative;
    display: inline-block;
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.event-block-one .inner-box .content-box .author-box .single-author .author-image img{
    width: 100%;
    border-radius: 50%;
}

.event-block-one .inner-box .content-box .author-box .single-author h5{
    display: block;
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 3px;
}

.event-block-one .inner-box .content-box .author-box .single-author .designation{
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 20px;
}

.event-block-one .inner-box .content-box .btn-box{
    margin-bottom: 38px;
}

.event-block-one .inner-box .content-box .lower-box{
    position: relative;
    display: block;
    border-top: 1px solid #E5E5E5;
    padding-top: 27px;
}

.event-block-one .inner-box .content-box .lower-box .info-list{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.event-block-one .inner-box .content-box .lower-box .info-list li{
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
}

.event-section .owl-nav{
    position: absolute;
    left: 0px;
    top: 50%;
    width: 100%;
    margin-top: -35px;
}

.event-section .owl-nav .owl-prev{
    position: absolute;
    left: -35px;
    top: 0px;
}

.event-section .owl-nav .owl-next{
    position: absolute;
    right: -35px;
    top: 0px;
}

.event-section .bg-layer{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 354px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


/** event-style-two **/

.event-style-two{
    position: relative;
    overflow: hidden;
}

.event-style-two .video-column{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 50%;
    height: 100%;
}

.event-style-two .video-column .video-inner{
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 357px 0px;
}

.event-style-two .video-column .video-inner .video-btn a{
    position: relative;
    display: inline-block;
}

.event-style-two .right-column{
    position: relative;
    float: right;
    width: 50%;
    padding: 120px 30px 120px 125px;
}

.event-style-two .right-column .shape{
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.event-style-two .right-column .content-box{
    position: relative;
    max-width: 670px;
}

.event-block-two .inner-box{
    position: relative;
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.event-style-two .event-block-two:last-child .inner-box{
    margin-bottom: 0px;
}

.event-block-two .inner-box .image-box{
    position: relative;
    display: block;
    min-width: 200px;
    width: 200px;
    overflow: hidden;
}

.event-block-two .inner-box .image-box img{
    width: 100%;
    transition: all .40s cubic-bezier(.25,.8,.25,1);
}

.event-block-two .inner-box:hover .image-box img{
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
}

.event-block-two .inner-box .content-box{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 30px 37px 30px;
    width: 100%;
}

.event-block-two .inner-box .content-box h4{
    display: block;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 8px;
}

.event-block-two .inner-box .content-box h4 a{
    display: inline-block;
    color: var(--title-color);
}

.event-block-two .inner-box .content-box span{
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 20px;
    color: #444;
}

.event-block-two .inner-box .content-box h6{
    display: block;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 8px;
}

.event-style-two .pattern-layer .pattern-1{
    position: absolute;
    left: 0px;
    top: -5px;
    width: 100%;
    height: 45px;
    background-repeat: repeat-x;
    z-index: 1;
}

.event-style-two .pattern-layer .pattern-2{
    position: absolute;
    left: 0px;
    bottom: -5px;
    width: 100%;
    height: 45px;
    background-repeat: repeat-x;
    z-index: 1;
}

.event-section .inner-container .event-block-one .inner-box{
    background-color: #FAF7F1;
    box-shadow: none;
}

  
  
/** rtl-css **/
  
.rtl .event-block-one .inner-box .content-box{
    direction: rtl;
}
  
/** responsive-css **/
  
@media only screen and (max-width: 1200px){
    .event-style-two .right-column{
        padding-left: 30px;
    }
}
  
@media only screen and (max-width: 991px){
    .event-block-one .inner-box .content-box{
        padding-left: 30px;
        padding-right: 30px;
    }

    .event-style-two .video-column{
        position: relative;
        width: 100%;
    }

    .event-style-two .right-column{
        float: none;
        width: 100%;
    }
}
  
@media only screen and (max-width: 767px){
    .event-block-one .inner-box{
        display: block;
    }

    .event-section .owl-nav{
        display: none;
    }

    .event-section{
        padding: 70px 0px 40px 0px;
    }
    
    .event-style-two .video-column .video-inner{
        padding: 200px 0px;
    }

    .event-page-section{
        padding: 70px 0px;
    }
}
  
@media only screen and (max-width: 599px){
    .event-block-two .inner-box{
        position: relative;
        display: block;
    }

    .event-block-two .inner-box .image-box{
        width: 100%;
        max-width: 100%;
    }
}
  
@media only screen and (max-width: 499px){
    .event-block-one .inner-box .content-box .author-box,
    .event-block-one .inner-box .content-box .lower-box .info-list{
        display: block;
    }

    .event-block-one .inner-box .content-box .author-box .single-author,
    .event-block-one .inner-box .content-box .lower-box .info-list li{
        margin-bottom: 15px;
    }

    .event-block-one .inner-box .content-box .author-box .single-author:last-child,
    .event-block-one .inner-box .content-box .lower-box .info-list li:last-child{
        margin-bottom: 0px;
    }

    .event-block-two .inner-box .content-box{
        display: block;
    }

    .event-style-two .right-column{
        padding-left: 15px;
        padding-right: 15px;
    }
} 
/** event-details **/

.event-details .big-image{
    position: relative;
    display: block;
    border-radius: 20px;
    margin-bottom: 60px;
}

.event-details .big-image img{
    width: 100%;
    border-radius: 20px;
}

.event-details-content{
    position: relative;
    display: block;
    background-color: #fff;
    border-radius: 20px;
    padding: 28px 30px 30px 30px;
    max-width: 850px;
    width: 100%;
    margin: 0 auto;
}

.event-details-content .content-one .location-box{
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: 26px;
    font-family: var(--title-font);
    color: #6A6A6A;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.event-details-content h2{
    position: relative;
    display: block;
    font-size: 36px;
    line-height: 46px;
    margin-bottom: 20px;
}

.event-details-content .content-one .info-box .single-item{
    position: relative;
    float: left;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 33.333%;
    margin-bottom: 30px;
}

.event-details-content .content-one .info-box .single-item .icon-box{
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 46px;
    background-color: #FAF7F1;
    text-align: center;
    border-radius: 10px;
}

.event-details-content .content-one .info-box .single-item span{
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 3px;
}

.event-details-content .content-one .info-box .single-item h6{
    display: block;
    font-size: 16px;
    line-height: 20px;
    font-family: var(--text-font);
    font-weight: 500;
}

.event-details-content .content-one{
    padding-bottom: 10px;
    border-bottom: 1px solid #E4E4E4;
    margin-bottom: 45px;
}

.event-details-content h3{
    display: block;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 17px;
}

.event-details-content p{
    color: #777;
    line-height: 28px;
}

.event-details-content .content-two{
    margin-bottom: 35px;
}

.event-details-content .content-three .list-inner ul li{
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 28px;
    color: #777777;
    margin-bottom: 16px;
    padding-left: 28px;
}

.event-details-content .content-three .list-inner ul li:last-child{
    margin-bottom: 0px;
}

.event-details-content .content-three .list-inner ul li i{
    position: absolute;
    left: 0px;
    top: 7px;
    font-size: 13px;
}

.event-details-content .content-three .list-inner .list-one li i{
    color: #45DE5E;
}

.event-details-content .content-three .list-inner .list-two li i{
    color: #FF1D26;
}

.event-details-content .content-three{
    margin-bottom: 30px;
}

.event-details-content .content-four p{
    margin-bottom: 22px;
}

.event-details-content .content-four .list-item li{
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 24px;
    padding-left: 34px;
    margin-bottom: 16px;
}

.event-details-content .content-four .list-item li:last-child{
    margin-bottom: 0px;
}

.event-details-content .content-four .list-item li i{
    position: absolute;
    left: 0px;
    top: 2px;
    font-size: 8px;
    color: #fff;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
}

.event-details-content .content-four{
    padding-bottom: 40px;
    border-bottom: 1px solid #E5E5E5;
    margin-bottom: 40px;
}

.event-details-content .content-five .accordion-box .accordion .acc-content{
    border-top: 1px solid #E5E5E5;
    padding-top: 22px;
    padding-bottom: 32px;
}

.event-details-content .content-five .accordion-box .accordion .acc-btn h4{
    color: var(--title-color);
    padding-left: 90px;
}

.event-details-content .content-five .accordion-box .accordion .acc-btn h4 span{
    position: absolute;
    left: -30px;
    top: -18px;
    width: 100px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    color: #fff;
    border-radius: 12px 0px 0px 12px;
}

.event-details-content .content-five .accordion-box .accordion .acc-btn.active h4 span{
    border-bottom-left-radius: 0px;
}

.event-details-content .content-five .accordion-box .accordion .acc-btn .icon-inner{
    position: absolute;
    top: 25px;
    right: 20px;
    font-size: 10px;
}

.event-details-content .content-five .accordion-box .accordion .acc-btn.active .icon-inner{
    transform: rotate(180deg);
}

.event-details-content .content-five .accordion-box .accordion .acc-content .single-item{
    position: relative;
    display: block;
    margin-bottom: 24px;
}

.event-details-content .content-five .accordion-box .accordion .acc-content .single-item:last-child{
    margin-bottom: 0px;
}

.event-details-content .content-five .accordion-box .accordion .acc-content .single-item h6{
    display: block;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 4px;
}

.event-details-content .content-five .accordion-box .accordion .acc-content .single-item span{
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 3px;
}

.event-details-content .content-five .accordion-box .accordion .acc-content .single-item p{
    color: #777777;
}

.event-details-content .content-five{
    border-bottom: 1px solid #E5E5E5;
    margin-bottom: 40px;
    padding-bottom: 60px;
}

.event-details-content .content-six{
    padding-bottom: 10px;
    border-bottom: 1px solid #E5E5E5;
    margin-bottom: 40px;
}

.event-details-content .content-seven .map-inner{
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.event-details-content .content-seven .map-inner iframe{
    width: 100%;
    height: 400px;
}

.event-details{
    position: relative;
}
  
  
/** rtl-css **/
  
.rtl .event-details-content .content-one .info-box .single-item{
    float: right;
}

.rtl .event-details-content .content-three .list-inner ul li{
    padding-left: 0px;
    padding-right: 28px;
}

.rtl .event-details-content .content-three .list-inner ul li i{
    left: inherit;
    right: 0px;
}

.rtl .event-details-content .content-four .list-item li{
    padding-left: 0px;
    padding-right: 34px;
}

.rtl .event-details-content .content-four .list-item li i{
    left: inherit;
    right: 0px;
}
  
/** responsive-css **/
  
@media only screen and (max-width: 1200px){

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

}
  
@media only screen and (max-width: 767px){
    .event-details{
        padding: 70px 0px;
    }

    .event-details-content .content-three .list-inner .list-one{
        margin-bottom: 30px;
    }
}
  
@media only screen and (max-width: 599px){

}
  
@media only screen and (max-width: 499px){
    .event-details-content .content-one .info-box .single-item{
        width: 100%;
    }

    .event-details-content .content-five .accordion-box .accordion .acc-btn h4{
        padding-left: 0px;
    }

    .event-details-content .content-five .accordion-box .accordion .acc-btn h4 span{
        position: relative;
        display: inline-block;
        left: 0px;
        top: 0px;
        border-radius: 12px !important;
        margin-bottom: 12px;
    }
} 
/** team-section **/

.team-section{
    position: relative;
}

.team-block-one .inner-box{
    position: relative;
    display: block;
    overflow: hidden;
    background-color: #fff;
    border-radius: 20px;
    border: 4px solid #fff;
    margin-bottom: 30px;
    z-index: 1;
}

.team-block-one .inner-box .image-box{
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
}

.team-block-one .inner-box .image-box img{
    width: 100%;
    transition: all .21s cubic-bezier(.25,.8,.25,1);
}

.team-block-one .inner-box:hover .image-box img{
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
}

.team-block-one .inner-box .content-box{
    position: absolute;
    left: 20px;
    bottom: 0px;
    width: calc(100% - 40px);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(88px);
    padding: 17px 15px 15px 15px;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: all .3s cubic-bezier(.25,.8,.25,1);
}

.team-block-one .inner-box:hover .content-box{
    bottom: 20px;
    opacity: 1;
    visibility: visible;
}

.team-block-one .inner-box .content-box h3{
    display: block;
    font-size: 24px;
    line-height: 26px;
    margin-bottom: 2px;
}

.team-block-one .inner-box .content-box h3 a{
    display: inline-block;
    color: var(--title-color);
}

.team-block-one .inner-box .content-box .designation{
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
}

.team-block-two{
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}

.team-block-two .inner-box{
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.team-block-two .inner-box .image-box{
    position: relative;
    display: block;
}

.team-block-two .inner-box .image-box .image{
    position: relative;
    display: inline-block;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
}

.team-block-two .inner-box .image-box .image img{
    width: 100%;
    transition: all .21s cubic-bezier(.25,.8,.25,1);
}

.team-block-two .inner-box:hover .image-box .image img{
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
    opacity: 0.4;
}

.team-block-two .inner-box .image-box .social-links{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: 2;
    gap: 15px;
}

.team-block-two .inner-box .image-box .social-links li{
    position: relative;
    -webkit-transition: opacity 0.25s cubic-bezier(.17,.62,.44,.99),background-color 0.1s cubic-bezier(.28,.12,.22,1),color 0.1s cubic-bezier(.28,.12,.22,1),border-color 0.1s cubic-bezier(.28,.12,.22,1),-webkit-transform 0.25s cubic-bezier(.17,.62,.44,.99),-webkit-box-shadow 0.1s cubic-bezier(.28,.12,.22,1);
    transition: opacity 0.25s cubic-bezier(.17,.62,.44,.99),background-color 0.1s cubic-bezier(.28,.12,.22,1),color 0.1s cubic-bezier(.28,.12,.22,1),border-color 0.1s cubic-bezier(.28,.12,.22,1),-webkit-transform 0.25s cubic-bezier(.17,.62,.44,.99),-webkit-box-shadow 0.1s cubic-bezier(.28,.12,.22,1);
    transition: opacity 0.25s cubic-bezier(.17,.62,.44,.99),transform 0.25s cubic-bezier(.17,.62,.44,.99),background-color 0.1s cubic-bezier(.28,.12,.22,1),color 0.1s cubic-bezier(.28,.12,.22,1),border-color 0.1s cubic-bezier(.28,.12,.22,1),box-shadow 0.1s cubic-bezier(.28,.12,.22,1);
    transition: opacity 0.25s cubic-bezier(.17,.62,.44,.99),transform 0.25s cubic-bezier(.17,.62,.44,.99),background-color 0.1s cubic-bezier(.28,.12,.22,1),color 0.1s cubic-bezier(.28,.12,.22,1),border-color 0.1s cubic-bezier(.28,.12,.22,1),box-shadow 0.1s cubic-bezier(.28,.12,.22,1),-webkit-transform 0.25s cubic-bezier(.17,.62,.44,.99),-webkit-box-shadow 0.1s cubic-bezier(.28,.12,.22,1);
    opacity: 0;
    -webkit-transform: translateY(0.625rem);
    transform: translateY(0.625rem);
}
  
.team-block-two .inner-box:hover .image-box .social-links li{
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  
.team-block-two .inner-box .image-box .social-links li:first-child{
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
  }
  
.team-block-two .inner-box .image-box .social-links li:nth-child(2){
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

.team-block-two .inner-box .image-box .social-links li:nth-child(3){
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.team-block-two .inner-box .image-box .social-links li a{
    position: relative;
    display: inline-block;
    font-size: 35px;
    color: #fff;
}

.team-block-two .inner-box .content-box{
    position: relative;
    display: block;
    background-color: #fff;
    border-radius: 10px;
    padding: 17px 20px 15px 20px;
    margin-top: -54px;
    z-index: 2;
}

.team-block-two .inner-box .content-box h3{
    display: block;
    font-size: 24px;
    line-height: 26px;
    margin-bottom: 2px;
}

.team-block-two .inner-box .content-box h3 a{
    display: inline-block;
    color: var(--title-color);
}

.team-block-two .inner-box .content-box .designation{
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    color: #6E6E6E;
}

.team-section .pattern-layer{
    position: absolute;
    left: 0px;
    bottom: -100px;
    width: 455px;
    height: 786px;
    background-repeat: no-repeat;
}

.team-section .pattern-layer-2{
    position: absolute;
    left: 0px;
    top: -80px;
    width: 100%;
    height: calc(100% + 80px);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    z-index: -1;
}

.team-section.home-4 .team-block-two .inner-box .image-box .image{
    border-radius: 20px;
}

.team-section.home-4 .team-block-two .inner-box .content-box{
    width: calc(100% - 40px);
    left: 20px;
    box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.08);
}

.team-section .inner-container{
    border-bottom: 1px solid #E5E5E5;
}


.team-block-three .inner-box{
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 30px;
}

.team-block-three .inner-box .image-box{
    position: relative;
    display: block;
}

.team-block-three .inner-box .image-box .image{
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

.team-block-three .inner-box .image-box .image img{
    width: 100%;
    transition: all .21s cubic-bezier(.25,.8,.25,1);
}

.team-block-three .inner-box:hover .image-box .image img{
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
    opacity: 0.4;
}

.team-block-three .inner-box .image-box .social-links{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: 2;
    gap: 15px;
}

.team-block-three .inner-box .image-box .social-links li{
    position: relative;
    -webkit-transition: opacity 0.25s cubic-bezier(.17,.62,.44,.99),background-color 0.1s cubic-bezier(.28,.12,.22,1),color 0.1s cubic-bezier(.28,.12,.22,1),border-color 0.1s cubic-bezier(.28,.12,.22,1),-webkit-transform 0.25s cubic-bezier(.17,.62,.44,.99),-webkit-box-shadow 0.1s cubic-bezier(.28,.12,.22,1);
    transition: opacity 0.25s cubic-bezier(.17,.62,.44,.99),background-color 0.1s cubic-bezier(.28,.12,.22,1),color 0.1s cubic-bezier(.28,.12,.22,1),border-color 0.1s cubic-bezier(.28,.12,.22,1),-webkit-transform 0.25s cubic-bezier(.17,.62,.44,.99),-webkit-box-shadow 0.1s cubic-bezier(.28,.12,.22,1);
    transition: opacity 0.25s cubic-bezier(.17,.62,.44,.99),transform 0.25s cubic-bezier(.17,.62,.44,.99),background-color 0.1s cubic-bezier(.28,.12,.22,1),color 0.1s cubic-bezier(.28,.12,.22,1),border-color 0.1s cubic-bezier(.28,.12,.22,1),box-shadow 0.1s cubic-bezier(.28,.12,.22,1);
    transition: opacity 0.25s cubic-bezier(.17,.62,.44,.99),transform 0.25s cubic-bezier(.17,.62,.44,.99),background-color 0.1s cubic-bezier(.28,.12,.22,1),color 0.1s cubic-bezier(.28,.12,.22,1),border-color 0.1s cubic-bezier(.28,.12,.22,1),box-shadow 0.1s cubic-bezier(.28,.12,.22,1),-webkit-transform 0.25s cubic-bezier(.17,.62,.44,.99),-webkit-box-shadow 0.1s cubic-bezier(.28,.12,.22,1);
    opacity: 0;
    -webkit-transform: translateY(0.625rem);
    transform: translateY(0.625rem);
}
  
.team-block-three .inner-box:hover .image-box .social-links li{
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  
.team-block-three .inner-box .image-box .social-links li:first-child{
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
  }
  
.team-block-three .inner-box .image-box .social-links li:nth-child(2){
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

.team-block-three .inner-box .image-box .social-links li:nth-child(3){
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.team-block-three .inner-box .image-box .social-links li a{
    position: relative;
    display: inline-block;
    font-size: 35px;
    color: #fff;
}

.team-block-three .inner-box .content-box{
    position: relative;
    display: block;
    padding-top: 25px;
}

.team-block-three .inner-box .content-box h4{
    display: block;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 2px;
}

.team-block-three .inner-box .content-box h4 a{
    display: inline-block;
    color: var(--title-color);
}

.team-block-three .inner-box .content-box .designation{
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    color: #6E6E6E;
}
  
  
/** rtl-css **/
  

  
/** responsive-css **/
  
@media only screen and (max-width: 1200px){
  
}
  
@media only screen and (max-width: 991px){

}
  
@media only screen and (max-width: 767px){
    .team-section{
        padding: 70px 0px 40px 0px;
    }

    .team-section.home-4{
        padding: 0px;
    }

    .team-section .inner-container{
        padding: 70px 0px 40px 0px;
    }
}
  
@media only screen and (max-width: 599px){
  
}
  
@media only screen and (max-width: 499px){

} 
/** contact-section **/

.contact-section{
    position: relative;
}

.contact-section .content-box{
    position: relative;
    display: block;
}

.contact-section .content-box .inner-box .single-item{
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 30px;
}

.contact-section .content-box .inner-box .single-item:last-child{
    margin-bottom: 0px;
}

.contact-section .content-box .inner-box .single-item .icon-box{
    position: relative;
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    min-width: 70px;
    background-color: #fff;
    text-align: center;
    border-radius: 50%;
    font-size: 26px;
    transition: all 500ms ease;
}

.contact-section .content-box .inner-box .single-item:hover .icon-box{
    color: #fff;
}

.contact-section .content-box .inner-box .single-item h4{
    display: block;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 3px;
}

.contact-section .content-box .inner-box .single-item p{
    font-size: 16px;
    line-height: 26px;
    color: var(--title-color);
}

.contact-section .content-box .inner-box .single-item p a{
    display: inline-block;
    color: var(--title-color);
}

.contact-section .form-inner{
    position: relative;
    display: block;
    background-color: #fff;
    border-radius: 20px;
    padding: 43px 50px 50px 50px;
    box-shadow: 0px 10px 90px 0px rgb(0, 0, 0, 0.06);
}

.contact-section .form-inner .theme-btn,
.contact-section .form-inner .theme-btn .text{
    width: 100%;
}

.contact-section .map-inner{
    position: relative;
    width: 100%;
    height: 520px;
    border: 10px solid #fff;
    border-radius: 20px;
}

.contact-section .map-inner iframe{
    width: 100%;
    height: 520px;
}
  
  
/** rtl-css **/
  

  
/** responsive-css **/
  
@media only screen and (max-width: 1200px){
  
}
  
@media only screen and (max-width: 991px){
    .contact-section .content-box{
        margin-bottom: 40px;
    }
}
  
@media only screen and (max-width: 767px){
    .contact-section{
        padding: 70px 0px;
    }

    .contact-section .upper-content{
        margin-bottom: 50px;
    }
}
  
@media only screen and (max-width: 599px){
    .contact-section .form-inner{
        padding-left: 30px;
        padding-right: 30px;
    }
}
  
@media only screen and (max-width: 499px){

} 
/** video-section **/

.video-section{
    position: relative;
    padding: 223px 0px;
    height: 546px;
}

.video-section .bg-layer{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.video-section .video-btn a{
    position: relative;
    display: inline-block;
    width: 100px;
    height: 100px;
}

  
  
/** rtl-css **/
  

  
/** responsive-css **/
  
@media only screen and (max-width: 1200px){
  
}
  
@media only screen and (max-width: 991px){

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

}
  
@media only screen and (max-width: 599px){
  
}
  
@media only screen and (max-width: 499px){

} 
/** team-details **/

.team-details{
    position: relative;
}

.team-details-content{
    position: relative;
    display: block;
}

.team-details-content .image-box{
    position: relative;
    display: block;
    padding-left: 55px;
    padding-right: 66px;
    padding-bottom: 127px;
}

.team-details-content .image-box .image{
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.team-details-content .image-box .image img{
    width: 100%;
    border-radius: 20px;
    display: block;
}

.team-details-content .image-box .image-shape .shape-1{
    position: absolute;
    left: -39px;
    bottom: 0px;
    width: 500px;
    height: 466px;
    background-repeat: no-repeat;
}

.team-details-content .image-box .image-shape .shape-2{
    position: absolute;
    top: 0px;
    right: 37px;
    width: 200px;
    height: 200px;
    background-repeat: no-repeat;
}

.team-details-content .content-box{
    position: relative;
    display: block;
}

.team-details-content .content-box h2{
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 4px;
}

.team-details-content .content-box .designation{
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 18px;
}

.team-details-content .content-box p{
    max-width: 490px;
    color: #444;
    margin-bottom: 27px;
}

.team-details-content .content-box .list-item li{
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    color: #444;
    margin-bottom: 7px;
}

.team-details-content .content-box .list-item li:last-child{
    margin-bottom: 0px;
}

.team-details-content .content-box .list-item li strong{
    font-weight: 600;
    color: var(--title-color);
}

.team-details-content .content-box .list-item li a{
    color: #444;
}

.team-details-content .content-box .social-links{
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.team-details-content .content-box .social-links li a{
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 54px;
    background-color: #fff;
    text-align: center;
    border-radius: 50%;
    font-size: 16px;
    color: #777777;
}

.team-details-content .content-box .social-links li a:hover{
    color: #fff;
}

.team-details h2{
    position: relative;
    display: block;
    font-size: 36px;
    line-height: 50px;
    margin-bottom: 24px;
}

.team-details .biography-box p{
    margin-bottom: 26px;
}

.team-details .biography-box p:last-child{
    margin-bottom: 0px;
}

.team-details .two-column .progress-box .bar{
    position: relative;
    width: 100%;
    height: 6px;
    background-color: #fff;
    border-radius: 20px;
}

.team-details .two-column .progress-box .bar .bar-inner{
    position: relative;
    display: block;
    height: 6px;
    border-radius: 20px;
    -webkit-transition:all 1500ms ease;
    -ms-transition:all 1500ms ease;
    -o-transition:all 1500ms ease;
    -moz-transition:all 1500ms ease;
    transition:all 1500ms ease; 
}

.team-details .two-column .progress-box .single-box{
    position: relative;
    display: block;
    margin-bottom: 21px;
}

.team-details .two-column .progress-box .bar span{
    position: absolute;
    bottom: 15px;
    right: 0px;
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
}

.team-details .two-column .progress-box .single-box h5{
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 30px;
    font-family: var(--title-font);
    font-weight: 500;
    margin-bottom: 10px;
}

.team-details .two-column .experience-content p{
    margin-bottom: 26px;
}

.team-details .two-column .experience-content p:last-child{
    margin-bottom: 0px;
}

.team-details .join-form{
    position: relative;
    display: block;
    max-width: 850px;
    width: 100%;
    margin: 0 auto;
}

.team-details .join-form .form-inner{
    position: relative;
    display: block;
    background-color: #fff;
    border-radius: 24px;
    box-shadow: 0px 8px 90px 0px rgba(0, 0, 0, 0.06);
    padding: 70px;
}

.team-details .join-form .form-inner .form-group{
    position: relative;
    margin-bottom: 30px;
}

.team-details .join-form .form-inner .form-group:last-child{
    margin-bottom: 0px;
}

.team-details .join-form .form-inner .form-group input[type='text'],
.team-details .join-form .form-inner .form-group input[type='email'],
.team-details .join-form .form-inner .form-group textarea{
    position: relative;
    display: block;
    width: 100%;
    height: 56px;
    border: 1px solid #E4E4E4;
    border-radius: 50px;
    font-size: 16px;
    color: #6A6A6A;
    padding: 10px 25px;
    transition: all 500ms ease;
}

.team-details .join-form .form-inner .form-group textarea{
    height: 170px;
    resize: none;
    padding-top: 15px;
    border-radius: 36px;
}

.team-details .join-form .form-inner .form-group .theme-btn .text,
.team-details .join-form .form-inner .form-group .theme-btn{
    width: 100%;
}



  
/** rtl-css **/
  
.rtl .team-details .two-column .progress-box .bar span{
    right: inherit;
    left: 0px;
}
  
/** responsive-css **/
  
@media only screen and (max-width: 1200px){
  
}
  
@media only screen and (max-width: 991px){

}
  
@media only screen and (max-width: 767px){
    .team-details{
        padding: 70px 0px;
    }

    .team-details .two-column .skills-content{
        margin-right: 0px;
    }

    .team-details-content .content-box{
        margin-bottom: 40px;
    }
}
  
@media only screen and (max-width: 599px){
    .team-details .join-form .form-inner{
        padding-left: 30px;
        padding-right: 30px;
    }
}
  
@media only screen and (max-width: 499px){
    .team-details-content .image-box{
        padding-left: 0px;
        padding-right: 0px;
    }
} 