/* 
Theme Name: Sulam Theme
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Loading Animation CSS */
body.overflow-hidden {
    overflow: hidden;
}
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    z-index: 9999;
    clip-path: inset(0%);
    transition: all 2s cubic-bezier(.625,.05,0,1);
	-webkit-transition: all 2s cubic-bezier(.625,.05,0,1);
	-moz-transition: all 2s cubic-bezier(.625,.05,0,1);
	-ms-transition: all 2s cubic-bezier(.625,.05,0,1);
}
#loading.loader-hidden {
    clip-path: inset(0% 0% 100% 0%);
}
.loading-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.loader {
	transform: rotateZ(45deg);
	perspective: 1000px;
	border-radius: 50%;
	width: 48px;
	height: 48px;
	color: #3D86C6;
}
.loader:before,
.loader:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: inherit;
	height: inherit;
	border-radius: 50%;
	transform: rotateX(70deg);
	animation: 1s spin linear infinite;
}
.loader:after {
	color: #f26649;
	transform: rotateY(70deg);
	animation-delay: .4s;
}

@keyframes rotate {
	0% {
		transform: translate(-50%, -50%) rotateZ(0deg);
	}
	100% {
		transform: translate(-50%, -50%) rotateZ(360deg);
	}
}

@keyframes rotateccw {
	0% {
		transform: translate(-50%, -50%) rotate(0deg);
	}
	100% {
		transform: translate(-50%, -50%) rotate(-360deg);
	}
}

@keyframes spin {
	0%,
	100% {
		box-shadow: .2em 0px 0 0px currentcolor;
	}
	12% {
		box-shadow: .2em .2em 0 0 currentcolor;
	}
	25% {
		box-shadow: 0 .2em 0 0px currentcolor;
	}
	37% {
		box-shadow: -.2em .2em 0 0 currentcolor;
	}
	50% {
		box-shadow: -.2em 0 0 0 currentcolor;
	}
	62% {
		box-shadow: -.2em -.2em 0 0 currentcolor;
	}
	75% {
		box-shadow: 0px -.2em 0 0 currentcolor;
	}
	87% {
		box-shadow: .2em -.2em 0 0 currentcolor;
	}
}

/* Loading Animation CSS */

/* Cursor Follower */
#follow-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 130px;
    height: 130px;
    padding: 8px;
    pointer-events: none;
    user-select: none;
}
#follow-cursor svg {
    display: block;
    width: 100%;
    height: auto;
}
#follow-cursor .cursor-border {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    animation: 20s linear infinite spin-border;
    -webkit-animation: 20s linear infinite spin-border;
}
#follow-cursor .cursor-wrapper {
    width: 100%;
    height: 100%;
    background: #F26649;
    border-radius: 100px;
    position: relative;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#follow-cursor .cursor-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 8px;
	animation: 20s linear infinite spin-text;
	-webkit-animation: 20s linear infinite spin-text;
}
#follow-cursor .cursor-icon {
    width: 26px;
    height: auto;
}
@keyframes spin-text {
	to {
		transform: rotate(-1turn)
	}
}
@keyframes spin-border {
	to {
		transform: rotate(1turn)
	}
}
/* Cursor Follower */

/* Homepage Side menu */
#home-side-menu {
    position: fixed;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background: #FFFFFF;
    box-shadow: 2.5px 5.01px 5.01px 2.5px #0000001A;
    opacity: 0.5;
    border-radius: 25px;
    padding: 30px 12px;
    z-index: 999;
    transition: opacity 0.5s ease-in-out;
    -webkit-transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    -ms-transition: opacity 0.5s ease-in-out;
}
body.elementor-editor-active #home-side-menu,
body.elementor-editor-active #follow-cursor{
	display: none;
}
#home-side-menu:hover {
    opacity: 1;
}
ul#home_menu {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    row-gap: 4.7vh;
}
ul#home_menu>li {
    width: 26px;
    height: 16px;
    border-radius: 20px;
    cursor: pointer;
    position: relative;
}
ul#home_menu>li:nth-child(1) {
    background: #F26649;
}
ul#home_menu>li:nth-child(2) {
    background: #25B570;
}
ul#home_menu>li:nth-child(3) {
    background: #3D86C6;
}
ul#home_menu>li:nth-child(4) {
    background: #F26649;
}
ul#home_menu>li:nth-child(5) {
    background: #25B570;
}
ul#home_menu>li:nth-child(1)>a {
    background: #F26649;
}
ul#home_menu>li:nth-child(2)>a {
    background: #25B570;
}
ul#home_menu>li:nth-child(3)>a {
    background: #3D86C6;
}
ul#home_menu>li:nth-child(4)>a {
    background: #F26649;
}
ul#home_menu>li:nth-child(5)>a {
    background: #25B570;
}
ul#home_menu>li>a {
    opacity: 0;
    visibility: hidden;
    transform: scaleY(0);
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -14px;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: -2%;
    min-width: 220px;
    padding: 5px 15px;
    text-align: right;
    color: #ffffff;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}
ul#home_menu>li:hover>a {
    opacity: 1;
    transform: scaleY(1);
    visibility: visible;
}
/* Homepage Side menu */

/* Add your custom styles here */
@font-face {
    font-family: 'FedraSansHL-Book';
    src: url('fonts/FedraSansHL-Book.woff2');
    src: url('fonts/FedraSansHL-Book.woff2') format('woff2');
}
body {
  font-size: 18px;
  line-height: 1.3em;
  font-family: FedraSansHL-Book;
}
header#sulam-header {
  padding: 16px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
header#sulam-header nav.site-navigation .site-branding {
    display: none;
}
header#sulam-header button#mobile-btn{
    display: none;
    border: none;
    background: #f26649;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    padding: 0;
}
header#sulam-header button#menu-close{
    border: none;
    background: #000000;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition-delay: 1s;
}
header#sulam-header button#menu-close svg path {
    stroke: #ffffff;
}
header#sulam-header button#menu-close sv {
	margin: auto;
}
body.admin-bar header#sulam-header {
  top: 32px;
}
header#sulam-header > .container {
  max-width: 96%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header#sulam-header .site-branding {
  max-width: 196px;
}
header#sulam-header .site-branding img {
    display: block;
}
header#sulam-header nav.site-navigation ul.menu {
  column-gap: 15px;
  align-items: center;
}
header#sulam-header nav.site-navigation ul.menu > li > a {
  padding: 0;
  font-size: 22px;
  line-height: 1.2em;
  font-weight: 600;
  color: #000000;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
header#sulam-header nav.site-navigation ul.menu > li > a:hover {
  color: #f26649;
}
header#sulam-header nav.site-navigation ul.menu > li.donation > a {
  padding: 12px 30px;
  border-radius: 50px;
  background: #f26649;
  color: #ffffff;
  letter-spacing: -2%;
}
header#sulam-header nav.site-navigation ul.menu > li.donation > a:hover {
  background: #ca482d;
}
#home-banner {
    overflow: hidden;
    transition: none;
}
body:not(.elementor-editor-active) #home-banner .banner-wrapper{
    position: relative;
    width: 200vw;
}
body:not(.elementor-editor-active) #home-banner .banner-wrapper .banner-front {
    position: absolute;
    top: 0;
    z-index: 20;
    overflow: hidden;
    /* border-radius: 0px 0px 0px 100px; */
    transition: none;
    clip-path: inset(0 0 0 35vw);
    background-color: transparent;
    transition: none;
}
#home-banner .banner-wrapper .banner-back {
    position: relative;
    z-index: 10;
}
body:not(.elementor-editor-active) #home-banner .banner-wrapper .title-wrapper {
    position: absolute;
    top: 0%;
    left: 0;
    width: 200vw;
    height: 100vh;
    justify-content: center;
    transition: none;
}
body:not(.elementor-editor-active) #home-banner .banner-wrapper .banner-front .title-wrapper {
    /* margin-left: -35vw; */
}
header#sulam-header nav.site-navigation ul.menu > li:not(.donation) {
    display: none;
}
body:not(.elementor-editor-active) #home-banner #banner-video {
    position: absolute;
    top: 0;
    left: 35vw;
    width: 100vw;
    height: 100vh;
    border-radius: 0px 0px 0px 50px;
    overflow: hidden;
    background-color: #000000;
    z-index: 15;
    transition: none;
}
body:not(.elementor-editor-active) #home-banner .banner-wrapper .title-wrapper .line {
    padding-left: 6px;
}
/*=== Story Section ===*/
#story-section {
    transition: none;
    position: relative;
}
#story-section .story-wrapper {
	position: static;
}
body:not(.elementor-editor-active) #story-section #story-bg {
    position: absolute;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    transform-origin: center center;
    transition: none;
}
body:not(.elementor-editor-active) #story-section #story-bg img {
	display: block;
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 100%;
}
#story-section .story-title,
#story-section .story-subtitle,
#story-section .story-heading {
	position: relative;
	z-index: 10;
    transition: none;
}
#story-section .story-heading h3.elementor-heading-title p {
	margin-bottom: 0;
}
#story-section .story-heading h3.elementor-heading-title span {
    display: inline-block;
}

/*==== Counter Section ====*/
main#content .elementor .theme-button a.elementor-button svg {
    width: 20px;
    height: auto;
}
#counter-section .elementor-widget-counter {
    width: 100%;
    min-height: 225px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
}
#counter-section .elementor-widget-counter .elementor-counter {
    padding-bottom: 10px;
}
#counter-section .elementor-widget-counter:not(:last-child) {
    margin-right: -10px;
}
#counter-section .elementor-widget-counter:nth-child(1) {
    z-index: 20;
}
#counter-section .elementor-widget-counter:nth-child(2) {
    z-index: 10;
}
#counter-section .elementor-widget-counter:nth-child(3) {
    z-index: 5;
}
#counter-section .elementor-widget-counter:nth-child(4) {
    z-index: 10;
}
#counter-section .elementor-widget-counter  .elementor-counter-title {
    justify-content: flex-start;
}
#counter-section .elementor-widget-counter.active-counter {
    background: #25B570;
    min-width: 36%;
    padding: 25px 40px;
}
#counter-section .elementor-widget-counter.active-counter .elementor-counter-number-wrapper {
    color: #ffffff;
    font-size: 7.2vw;
}
#counter-section .elementor-widget-counter.active-counter .elementor-counter-title {
    font-size: 32px;
    color: #ffffff;
}
#counter-section .elementor-widget-counter.active-counter .elementor-counter {
    gap: 10px;
}
/*==== Principles Links ====*/
#principles-links .elementor-widget-button {
    width: 33.33%;
    height: 403px;
}
#principles-links .elementor-widget-button a.elementor-button {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
}
#principles-links .elementor-widget-button:not(:last-child) {
    border-right: 1px solid #ffffff;
}
#principles-links .elementor-widget-button a.elementor-button span.elementor-button-content-wrapper {
    gap: 5.3vw;
    align-items: center;
    position: relative;
    z-index: 10;
}
#principles-links .elementor-widget-button a.elementor-button  span.elementor-button-icon svg {
    width: 60px;
    display: block;
    height: auto;
}
#principles-links .elementor-widget-button a.elementor-button span.elementor-button-text {
    margin-top: 5px;
}
#principles-links .elementor-widget-button a.elementor-button:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    clip-path: inset(0% 100% 0% 0%);
    transition: all 0.5s cubic-bezier(.625,.05,0,1);
    -webkit-transition: all 0.5s cubic-bezier(.625,.05,0,1);
    -moz-transition: all 0.5s cubic-bezier(.625,.05,0,1);
    -ms-transition: all 0.5s cubic-bezier(.625,.05,0,1);
}
#principles-links .elementor-widget-button:hover a.elementor-button:before {
    clip-path: inset(0% 0% 0% 0%);
}
#principles-links .elementor-widget-button a.elementor-button span.elementor-button-icon svg path {
    transition: all 0.5s cubic-bezier(.625,.05,0,1);
    -webkit-transition: all 0.5s cubic-bezier(.625,.05,0,1);
    -moz-transition: all 0.5s cubic-bezier(.625,.05,0,1);
    -ms-transition: all 0.5s cubic-bezier(.625,.05,0,1);
}
#principles-links .elementor-widget-button:nth-child(1) a.elementor-button:before {
    background: #3D86C6;
}
#principles-links .elementor-widget-button:nth-child(1) a.elementor-button span.elementor-button-icon svg path {
    fill: #3D86C6;
}
#principles-links .elementor-widget-button:nth-child(2) a.elementor-button:before {
    background: #25B570;
}
#principles-links .elementor-widget-button:nth-child(2) a.elementor-button  span.elementor-button-icon svg path{
    fill: #25B570;
}
#principles-links .elementor-widget-button:nth-child(3) a.elementor-button:before {
    background: #F26649;
}
#principles-links .elementor-widget-button:nth-child(3) a.elementor-button  span.elementor-button-icon svg path{
    fill: #F26649;
}
#principles-links .elementor-widget-button:hover a.elementor-button span.elementor-button-icon svg path {
    fill: #ffffff;
}
/* ==== Our Standards ==== */
#our-standards {
    transition: none;
}
body:not(.elementor-editor-active) #standards-image {
    transition: none;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

/*==== Our Works ====*/
#our-work {
    transition: none;
}
#image-cards .image-card {
    position: relative;
    perspective: 1000px;
    transition: none;
}
body:not(.elementor-editor-active) #image-cards .card-wrapper {
    transition: all 0.5s cubic-bezier(.625,.05,0,1);
    -webkit-transition: all 0.5s cubic-bezier(.625,.05,0,1);
    -moz-transition: all 0.5s cubic-bezier(.625,.05,0,1);
    -ms-transition: all 0.5s cubic-bezier(.625,.05,0,1);
    transform-style: preserve-3d;
    padding-top: 0;
    height: 100%;
}
#image-cards .image-card .image-card-front{
    position: relative;
    z-index: 10;
    height: 100%;
    backface-visibility: hidden;
}
#image-cards .image-card .image-card-front>img {
    width: 100%;
    height: 100%;
}
body:not(.elementor-editor-active) #image-cards .image-card .image-card-back{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
}
#image-cards .image-card:hover {
	z-index: 50;
}
body:not(.elementor-editor-active) #image-cards .image-card:hover .card-wrapper {
    transform: rotateY(180deg);
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
}

/*=== Instagram Story ===*/
#video-story {
    transition: none;
}
#story-sliders {
    display: flex;
    width: 68vw;
    gap: 25px;
}
#story-sliders .single-slider {
    width: 440px;
}
#story-sliders .single-slider .swiper-slide {
    max-height: 620px;
    border-radius: 20px;
    overflow: hidden;
}
#story-sliders .single-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
#story-sliders .swiper-button-next,
#story-sliders .swiper-button-prev{
    width: 25px;
    height: 25px;
    background: #000000;
    border-radius: 50px;
    margin-top: -12px;
}
#story-sliders .swiper-button-next:after,
#story-sliders .swiper-button-prev:after{
    display: none;
}
#story-sliders .swiper-button-next svg,
#story-sliders .swiper-button-prev svg{
    display: block;
    width: 8px;
    height: 8px;
}
#story-sliders .swiper-button-next {
    right: 20px;
}
#story-sliders .swiper-button-prev {
    left: 20px;
}
#story-sliders .more-stories {
    width: 440px;
    /* height: 100%; */
    background: #3D86C6;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    z-index: 20;
}
#story-sliders .more-stories h2 {
    margin-top: 0;
    font-size: 80px;
    line-height: 80%;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0;
}
#story-sliders .more-stories .button {
    margin-top: 8.6vh;
}
#story-sliders .more-stories .button a {
    border: 1px solid #000000;
    font-size: 32px;
    line-height: 1em;
    color: #000000;
    border-radius: 50px;
    padding: 8px 40px;
    background: #ffffff;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}
#story-sliders .more-stories .button a:hover {
    background: #f2f2f2;
}
#story-sliders .swiper-pagination {
    bottom: inherit;
    top: 15px;
    left: 20px;
    right: 20px;
    width: auto;
    display: flex;
    column-gap: 5px;
}
#story-sliders .swiper-pagination .swiper-pagination-bullet {
    margin: 0;
    width: 100%;
    border-radius: 10px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
	overflow: hidden;
    opacity: 1;
}
#story-sliders .swiper-pagination .swiper-pagination-progress {
	display: block;
	width: 0;
	height: 100%;
	background: #ffffff;
}


/*====== Footer Style ======*/
body:not(.elementor-editor-active) footer#sulam-footer #baby-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 10%;
    margin-top: -350px;
    z-index: 1;
}
#footer-top > .e-con-inner {
    position: relative;
}
.donation-button a.elementor-button .elementor-button-icon svg {
    width: 24px;
}
body:not(.elementor-editor-active) #footer-stars {
    position: absolute;
    top: 0;
    right: 10%;
    margin-top: -100px;
    max-width: 237px;
}
#footer-top > .e-con-inner > div:not(#baby-image) {
    z-index: 10;
}
body:not(.elementor-editor-active) #footer-top {
    padding-top: 0px;
}
#whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 80px;
    height: 80px;
    cursor: pointer;
    border-radius: 50px;
    border: none;
    background: #000000;
    z-index: 10;
    cursor: pointer;
    padding: 0;
}
#whatsapp-button:hover {
    background: #F26649;
    scale: 1.1;
}
#whatsapp-button svg {
    width: 37px;
    height: auto;
}
#footer-form form.elementor-form .elementor-field-group input {
    min-height: 44px;
}
#footer-form form.elementor-form .elementor-field-group input::placeholder {
    color: #000000;
}
#footer-form form.elementor-form .elementor-field-group input::-webkit-input-placeholder {
    color: #000000;
}
#footer-form form.elementor-form .elementor-field-group input::-moz-placeholder {
    color: #000000;
}
#footer-form form.elementor-form .elementor-field-group input:-ms-input-placeholder {
    color: #000000;
}
#footer-form form.elementor-form .elementor-field-group input:-moz-placeholder {
    color: #000000;
}
#footer-form form.elementor-form .elementor-field-group textarea#form-field-message {
    padding-top: 15px;
    padding-bottom: 15px;
    max-height: 90px;
}
#footer-form form.elementor-form .elementor-field-group button.elementor-button {
    min-height: 42px;
}
#whatsapp-popup {
    position: relative;
    z-index: 999;
}
#whatsapp-popup>.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}
#whatsapp-popup.active-popup>.overlay {
    opacity: 0.8;
    visibility: visible;
}
#whatsapp-popup>.popup-wrapper {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 10;
    background: #25B570;
    width: 360px;
    max-width: 80%;
    border-radius: 20px;
    overflow: hidden;
    padding: 55px 40px;
    text-align: center;
    clip-path: rect(100% 0% 100% 0% round 2.5rem);
    transition: clip-path .4s cubic-bezier(.23,1,.32,1);
    -webkit-transition: clip-path .4s cubic-bezier(.23,1,.32,1);
    -moz-transition: clip-path .4s cubic-bezier(.23,1,.32,1);
    -ms-transition: clip-path .4s cubic-bezier(.23,1,.32,1);
}
#whatsapp-popup.active-popup>.popup-wrapper {
    clip-path: rect(0% 100% 100% 0% round 2.5rem);
}
#whatsapp-popup.active-popup #whatsapp-button {
	scale: 0;
}
#whatsapp-popup>.popup-wrapper button.close-btn {
    position: absolute;
    top: 15px;
    right: 18px;
    width: 42px;
    height: 42px;
    background: #F26649;
    padding: 0;
    border: none;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(.625,.05,0,1);
    -webkit-transition: all 0.5s cubic-bezier(.625,.05,0,1);
    -moz-transition: all 0.5s cubic-bezier(.625,.05,0,1);
    -ms-transition: all 0.5s cubic-bezier(.625,.05,0,1);
}
#whatsapp-popup>.popup-wrapper button.close-btn:hover {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
}
#whatsapp-popup>.popup-wrapper button.close-btn svg {
    display: block;
}
#whatsapp-popup>.popup-wrapper .popup-content {
    color: #ffffff;
    padding-top: 30px;
}
#whatsapp-popup>.popup-wrapper .popup-content h3 {
    font-size: 60px;
    line-height: 82%;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 22px;
}
#whatsapp-popup>.popup-wrapper .popup-content p {
    font-size: 32px;
    line-height: 1em;
    font-weight: 700;
}
#our-work .theme-button a.elementor-button:before {
    content: "Coming Soon";
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    line-height: 1em;
    background: #000000;
    border-radius: 50px;
    padding: 10px 30px;
    color: #ffffff;
    opacity: 0;
    margin-top: 10px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}
#our-work .theme-button a.elementor-button:hover:before {
    opacity: 1;
}
#whatsapp-popup>.popup-wrapper .popup-content a {
    display: inline-block;
    color: #000000;
    margin-top: 10px;
    font-size: 18px;
    line-height: 1em;
    font-weight: 700;
}
#story-sliders .single-slider .swiper-slide button.mute-btn {
    width: 30px;
    height: 30px;
    border-radius: 20px;
    padding: 0;
    position: absolute;
    top: 30px;
    left: 15px;
    border: 1px solid #ffffff;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}
#story-sliders .single-slider .swiper-slide button.mute-btn span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
}
#story-sliders .single-slider .swiper-slide button.mute-btn span svg {
    display: block;
}
#story-sliders .single-slider .swiper-slide button.mute-btn:not(.active) span.unmute {
    display: none;
}
#story-sliders .single-slider .swiper-slide button.mute-btn.active span.mute {
    display: none;
}

/*==== Donation Page ====*/
#donation-section .elementor-widget-text-editor {
    text-align: right;
}
#donation-section .elementor-widget-text-editor,
#donation-section h3.elementor-heading-title,
#donation-section .elementor-widget-button {
    direction: rtl;
}

/* Tablet Layout: 768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) {


}


/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {
header#sulam-header {
    padding: 12px 10px;
}
header#sulam-header nav.site-navigation .site-branding {
    display: flex;
}
header#sulam-header .site-branding {
    max-width: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
header#sulam-header button#mobile-btn {
    display: block;
}
header#sulam-header button#mobile-btn svg {
	display: block;
	margin: auto;
}
header#sulam-header nav.site-navigation {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    padding: 12px 17px;
    clip-path: inset(0% 0% 100% 0%);
    transition: all 1s cubic-bezier(.625,.05,0,1);
    -webkit-transition: all 1s cubic-bezier(.625,.05,0,1);
    -moz-transition: all 1s cubic-bezier(.625,.05,0,1);
    -ms-transition: all 1s cubic-bezier(.625,.05,0,1);
}
header#sulam-header .site-branding a.custom-logo-link {
    max-width: 130px;
}
#home-side-menu {
    left: 10px;
    padding: 20px 8px;
}
ul#home_menu>li {
    width: 10px;
}
ul#home_menu>li>a {
    font-size: 14px;
    min-width: 150px;
    padding: 2px 10px;
    margin-top: -11px;
}
#follow-cursor {
    width: 80px;
    height: 80px;
    padding: 5px;
}
#follow-cursor .cursor-wrapper {
    padding: 5px;
}
#follow-cursor .cursor-icon {
    width: 15px;
}
#follow-cursor .cursor-text {
    padding: 6px;
}
button#whatsapp-button {
    width: 50px;
    height: 50px;
}
#whatsapp-button svg {
    scale: 0.7;
}
#whatsapp-popup>.popup-wrapper .popup-content h3 {
    font-size: 40px;
}
#whatsapp-popup>.popup-wrapper .popup-content p {
    font-size: 20px;
}
#whatsapp-popup>.popup-wrapper {
    width: 260px;
    padding: 40px 30px;
}
#whatsapp-popup>.popup-wrapper button.close-btn {
    width: 32px;
    height: 32px;
    padding: 5px;
}
header#sulam-header.active-menu nav.site-navigation {
    clip-path: inset(0% 0% 0% 0%);
}
header#sulam-header nav.site-navigation ul.menu {
    display: flex;
    flex-direction: column;
    row-gap: 3vh;
    width: 100%;
    margin-top: auto;
    margin-bottom: auto;
}
header#sulam-header nav.site-navigation ul.menu > li:not(.donation) {
    display: block;
}
header#sulam-header nav.site-navigation ul.menu > li:not(.donation) > a {
    font-size: 30px;
}
header#sulam-header.active-menu button#menu-close {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transition-delay: 0.2s;
}
#counter-section .elementor-widget-counter:not(:last-child) {
    margin-right: 0px;
}
#counter-section .elementor-widget-counter {
    min-height: 180px;
}
#counter-section .elementor-widget-counter .elementor-counter-number-wrapper{
    font-size: 40px;
}
#counter-section .elementor-widget-counter.active-counter .elementor-counter-number-wrapper {
    font-size: 60px;
}
#counter-section .elementor-widget-counter .elementor-counter-title{
    font-size: 20px;
}
#counter-section .elementor-widget-counter.active-counter .elementor-counter-title {
    font-size: 24px;
}
#counter-section .elementor-widget-counter.active-counter {
    margin-top: -10px;
    margin-bottom: -10px;
    min-height: 220px;
    justify-content: center;
    padding-top: 40px;
}
body:not(.elementor-editor-active) footer#sulam-footer #baby-image {
    margin-top: -150px;
}
body:not(.elementor-editor-active) #footer-stars {
    max-width: 150px;
    right: 0;
    margin-top: -60px;
}
#principles-links .elementor-widget-button {
    width: 100%;
}
#principles-links .elementor-widget-button a.elementor-button span.elementor-button-icon svg {
    width: 40px;
}
#story-sliders {
    width: 100%;
    flex-direction: column;
}
#story-sliders .single-slider {
    width: 100%;
}
#story-sliders .single-slider .swiper-slide {
    max-height: 550px;
}
#story-sliders .more-stories {
    width: 100%;
    min-height: 550px;
}
#story-sliders .more-stories h2 {
    font-size: 50px;
}
#story-sliders .more-stories .button a {
    font-size: 20px;
}


}