/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

/* Responsive H1-like styling for H2 elements */
.h1-responsive {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #000 !important; /* Ensure text is readable */
}

@media (max-width: 768px) {
  .h1-responsive {
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .h1-responsive {
    font-size: 1.5rem;
  }
}

/* Make all visible slider texts black */
.slider-caption h3.nott,
.slider-caption h3.h1-responsive {
  color: #000 !important;
}

.slider-caption .button-light {
  color: #000 !important;
  background-color: rgba(255, 255, 255, 0.9) !important; /* Add semi-transparent bg for readability on dark slider */
  border-color: #000 !important;
}


.contact-me-WhatsApp {
  position: fixed;
  z-index: 299;
 /* width: 40px;
  height: 40px;*/
  font-size: 20px;
  line-height: 36px;
  text-align: center;
  color: #FFF;
top: auto;
  right: 20px;
  left: auto;
  bottom: 84px;
  cursor: pointer;
  border-radius: 2px;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: transform .3s ease;
  -o-transition: transform .3s ease;
  transition: transform .3s ease;
}
.content-wrap {
 
  background: url(../images/patternnew.png) repeat;
}


/* ----------------------------------------------------------------
Text Underline Offset
-----------------------------------------------------------------*/
.text-underline-offset-0 {
  text-underline-offset: 0px !important;
}

.text-underline-offset-1 {
  text-underline-offset: 1px !important;
}

.text-underline-offset-2 {
  text-underline-offset: 2px !important;
}

.text-underline-offset-3 {
  text-underline-offset: 3px !important;
}

.text-underline-offset-4 {
  text-underline-offset: 4px !important;
}

.text-underline-offset-5 {
  text-underline-offset: 5px !important;
}

.text-underline-offset-6 {
  text-underline-offset: 6px !important;
}

.text-underline-offset-7 {
  text-underline-offset: 7px !important;
}

.text-underline-offset-8 {
  text-underline-offset: 8px !important;
}

.text-underline-offset-auto {
  text-underline-offset: auto !important;
}

/* ----------------------------------------------------------------
    Image fit Objects
-----------------------------------------------------------------*/
.object-fill {
  -o-object-fit: fill !important;
     object-fit: fill !important;
}

.object-contain {
  -o-object-fit: contain !important;
     object-fit: contain !important;
}

.object-cover {
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

.object-none {
  -o-object-fit: none !important;
     object-fit: none !important;
}

.object-scale-down {
  -o-object-fit: scale-down !important;
     object-fit: scale-down !important;
}

/* ----------------------------------------------------------------
    Image Object & Background Positions
-----------------------------------------------------------------*/
.object-bottom {
  -o-object-position: bottom !important;
     object-position: bottom !important;
}

.bg-bottom {
  background-position: bottom !important;
}




.si-sticky.si-sidebar {
  --width: 240px;
  --height: 54px;
  --icon-size: var(--height); /* 54px */
  --text-width: calc(var(--width) - var(--height)); /* 230px - 54px */
  width: var(--icon-size);
  height: auto;
}

.si-sticky.si-sidebar:not(.si-sticky-right) { left: 0; }

.si-sticky.si-sidebar .social-icon {
  margin: 2px 0;
  margin-left: calc(-1 * var(--text-width));
  width: var(--width);
  height: var(--height);
  border: 0;
  border-radius: 0 4px 4px 0;
  display: inline-flex;
  align-items: center;
  transition: margin 0.2s ease-in-out;
}

.si-sticky.si-sidebar .social-icon i {
  position: absolute;
  left: auto;
  right: 0;
  width: var(--icon-size);
  height: var(--icon-size);
  line-height: var(--icon-size);
  text-align: center;
  transition: all 0.2s ease-in-out;
}

.si-sticky.si-sidebar .social-icon span {
  color: #FFF;
  font-size: 1rem;
  width: var(--text-width);
  text-align: center;
}


.si-sticky.si-sticky-right { right: 0; }

.si-sticky.si-sidebar.si-sticky-right .social-icon {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  margin-left: 0;
  border-radius: 4px 0 0 4px;
}

.si-sticky.si-sidebar.si-sticky-right .social-icon i {
  left: 0;
  right: auto;
}

@media (min-width: 992px) {
  .si-sticky.si-sidebar:not(.si-sticky-right) .social-icon:hover { margin-left: 0; }
  .si-sticky.si-sidebar:not(.si-sticky-right) .social-icon:hover i { right: calc(-1 * var(--text-width)); }

  .si-sticky.si-sidebar.si-sticky-right .social-icon:hover { margin-left: calc(-1 * var(--text-width)); }
  .si-sticky.si-sidebar.si-sticky-right .social-icon:hover i { left: calc(-1 * var(--text-width)); }
}
.story-box {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  cursor: pointer;
}
.story-box .story-box-image {
  width: 50%;
  height: 500px;
  z-index: 2;
  overflow: hidden;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.story-box .story-box-image img {
  display: block;
  height: auto;
  width: 100%;
  opacity: 1;
  transition: opacity .3s ease;
}
.story-box:hover .story-box-image img {
  opacity: .9;
}
.story-box .story-box-info {
  box-sizing: border-box;
  width: 50%;
  padding: 60px;
  margin: 35px 0 0 -20px;
  background: #fff;
  z-index: 4;
  box-shadow: 0 10px 45px rgba(0, 0, 0, .1);
  transition: all ease-in .3s;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.story-box.description-left .story-box-info {
  -ms-flex-order: -1;
  order: -1;
  margin: 35px -20px 0 0;
}
.story-box .story-box-info .story-title {
  font-family: 'Playfair Display';
  font-size: 26px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0;
  color: #1d2c4c;
}
.story-box .story-box-info .story-box-content p {
  font-size: 15px;
  font-weight: 300;
  color: #666;
  line-height: 16px;
}
.story-box .story-box-info .story-box-content a {
  font-size: 16px;
  text-decoration: underline !important;
}
/* ----- Story-Box Responsive ----- */

@media (max-width: 991px) {
  .story-box .story-box-image {
    height: auto;
    width: 100%;
    height: 400px;
    -ms-flex-order: -1;
    order: -1;
  }
  .story-box.description-left .story-box-info {
    -ms-flex-order: -1;
    order: -1;
    margin: 35px -20% 0 0;
  }
  .story-box.description-left .story-box-info {
    margin: -40px 5% 0;
  }
  .story-box .story-box-info {
    max-width: 90%;
    height: auto;
    -ms-flex-preferred-size: 90%;
    flex-basis: 90%;
    margin: -40px 5% 0;
  }
}
@media (max-width: 767px) {
  .story-box.description-left .story-box-info {
    margin: -100px 5% 0;
  }
  .story-box .story-box-info {
    padding: 35px;
    text-align: center;
    margin: -100px 5% 0;
  }
  .customers-count {
    border-right: none
  }
}
@media (max-width: 479px) {
  .story-box .story-box-info {
    width: 100%;
    padding: 15px;
    text-align: center;
    margin: -200px 5% 0;
  }
  .story-box.description-left .story-box-info {
    margin: -200px 5% 0;
  }
  ul.tab-nav:not(.tab-nav-lg) li a i {
    display: none;
  }
}
.color-2 {
  color: #ed1c24 !important;
}
.color-3 {
  color: #2e9404 !important;
}

.gutter-50 {
  --custom-gutter: 50px;
}

[class*="gutter-"] {
  --custom-gutter: var(--bs-gutter-x);
  margin-right: calc(var(--custom-gutter) / -2);
  margin-left: calc(var(--custom-gutter) / -2);
  margin-top: calc(var(--custom-gutter)* -1);
}

/* ----- Tab ----- */
.block-tab-2 ul.tab-nav:not(.tab-nav-lg) {
border-bottom: none;
}

.block-tab-2 ul.tab-nav:not(.tab-nav-lg) li {
float: left;
border: 0;
height: auto;
text-align: center;
}

.block-tab-2.tabs.tabs-alt ul.tab-nav li.ui-tabs-active a {
border: 0;
}

.block-tab-2 ul.tab-nav:not(.tab-nav-lg) li a {
height: auto;
line-height: 1;
background-color: transparent;
font-size: 15px;
font-weight: 400;
padding: 0 0 20px 0;
}

.block-tab-2 ul.tab-nav:not(.tab-nav-lg) li a i {
display: block;
font-size: 42px;
margin: 0 0 17px 0;
}

.block-tab-2 ul.tab-nav:not(.tab-nav-lg) li.ui-tabs-active a {
top: 0;
}

.block-tab-2 ul.tab-nav:not(.tab-nav-lg) li.ui-tabs-active i {
color: var(--danger, #dc3545);
}

.block-tab-2 ul.tab-nav:not(.tab-nav-lg) li.ui-tabs-active a::after {
content: '';
position: absolute;
width: 6px;
height: 6px;
bottom: 0;
left: 50%;
margin-left: -3px;
border-radius: 50%;
background: var(--danger, #dc3545);
}


/* Clouds */
.cloud-wrap {
bottom: 0;
left: 0;
padding-top: 50px;
position: absolute;
right: 0;
top: 0;
overflow: hidden;
opacity: .09; /* Set Cloud Opacity */
}

/* KEYFRAMES */
@-webkit-keyframes animateCloud {
0% { margin-left: -1000px; }
100% { margin-left: 100%; }
}

@-moz-keyframes animateCloud {
0% { margin-left: -1000px; }
100% { margin-left: 100%; }
}

@keyframes animateCloud {
0% { margin-left: -1000px; }
100% { margin-left: 100%; }
}

/* ANIMATIONS */
.c1 {
-webkit-animation: animateCloud 35s linear infinite;
-moz-animation: animateCloud 35s linear infinite;
animation: animateCloud 35s linear infinite;
-webkit-transform: scale(0.65);
-moz-transform: scale(0.65);
transform: scale(0.65);
}

.c2 {
-webkit-animation: animateCloud 20s linear infinite;
-moz-animation: animateCloud 20s linear infinite;
animation: animateCloud 20s linear infinite;
-webkit-transform: scale(0.3);
-moz-transform: scale(0.3);
transform: scale(0.3);
}

.c3 {
-webkit-animation: animateCloud 30s linear infinite;
-moz-animation: animateCloud 30s linear infinite;
animation: animateCloud 30s linear infinite;
-webkit-transform: scale(0.5);
-moz-transform: scale(0.5);
transform: scale(0.5);
}

.c4 {
-webkit-animation: animateCloud 18s linear infinite;
-moz-animation: animateCloud 18s linear infinite;
animation: animateCloud 18s linear infinite;
-webkit-transform: scale(0.4);
-moz-transform: scale(0.4);
transform: scale(0.4);
}

.c5 {
-webkit-animation: animateCloud 25s linear infinite;
-moz-animation: animateCloud 25s linear infinite;
animation: animateCloud 25s linear infinite;
-webkit-transform: scale(0.55);
-moz-transform: scale(0.55);
transform: scale(0.55);
}

.cloud {
background: #FFF;
background: -moz-linear-gradient(top,  #FFF 5%, #F1F1F1 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(5%,#FFF), color-stop(100%,#F1F1F1));
background: -webkit-linear-gradient(top,  #FFF 5%,#F1F1F1 100%);
background: -o-linear-gradient(top,  #FFF 5%,#F1F1F1 100%);
background: -ms-linear-gradient(top,  #FFF 5%,#F1F1F1 100%);
background: linear-gradient(top,  #FFF 5%,#F1F1F1 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFF', endColorstr='#F1F1F1',GradientType=0 );
-webkit-border-radius: 100px;
-moz-border-radius: 100px;
border-radius: 100px;
-webkit-box-shadow: 0 8px 5px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 8px 5px rgba(0, 0, 0, 0.1);
box-shadow: 0 8px 5px rgba(0, 0, 0, 0.1);
height: 120px;
position: relative;
width: 350px;
}

.cloud::after, .cloud::before {
background: #FFF;
content: '';
position: absolute;
z-indeX: -1;
}

.cloud::after {
-webkit-border-radius: 100px;
-moz-border-radius: 100px;
border-radius: 100px;
height: 100px;
left: 50px;
top: -50px;
width: 100px;
}

.cloud::before {
-webkit-border-radius: 200px;
-moz-border-radius: 200px;
border-radius: 200px;
width: 180px;
height: 180px;
right: 50px;
top: -90px;
}

.bg-color2{
background: #035448;
color: antiquewhite;



}
.color-4 {
color: antiquewhite !important;
}