*{
  padding: 0%;
  margin: 0%;
  box-sizing: border-box;
}

body h1{
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
font-size: 2.5rem;
color: rgb(0, 87, 87);
}
.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  background: url('./images/storageHero.jpg') no-repeat center center/cover;
  overflow: hidden;
  animation: fadeIn 1s ease-in;
  /* opacity: 0.8; */
  /* margin-top: 90px;hesi */
  /* border: 2px solid blue; */
}
.hero::before{
content: "";
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 80vh;
background-color: #00000066;
}

.hero-content {
  /* border: 1px solid white; */
  position: absolute;
  bottom: 0;
  left: 30%;
  /* top: 20%; */
  width: 50%;
  transform: translateX(-50%);
  text-align: center;
  animation: slideUp 1s forwards;
  opacity: 0; /* Initially hidden */
  animation-delay: 0.5s; /* Delay before the animation starts */
}

.headline {
  font-size: 3.5em;
  /* color: #fff; */
  color: #5bb94f;
  /* color: rgb(244, 173, 150); */
  margin-bottom: 10px;
  font-style: oblique;
}

.subheadline {
  /* font-size: 1.5em; */
  font-style: oblique;
  line-height: 2;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 30px;
}
.line1{
  font-size: 1.8em;

}
.line2,.line3{
  font-size: 1.4em;
}
.cta-button {
  padding: 15px 30px;
  font-size: 1em;
  color: white;
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #0056b3;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
      bottom: -100px; /* Start below the view */
      opacity: 0; /* Initially hidden */
  }
  to {
      bottom: 20%; /* Centered vertically */
      opacity: 1; /* Fade in */
  }
}
/* Add this to your existing CSS */
.subheadline {
  color: #fff;
  margin-bottom: 30px;
  text-align: center;
}

.line {
  opacity: 0; /* Initially hidden */
  transform: translateY(20px); /* Start lower */
  animation: moveUp 1.5s forwards; /* Animation for each line */
  margin: 5px 0; /* Space between lines */
}

.headline {
  opacity: 0; /* Initially hidden */
  transform: translateY(20px); /* Start lower */
  animation: moveUp 1.5s forwards; /* Animation for the headline */
  margin-bottom: 20px;
}

/* Keyframes for the moveUp animation */
@keyframes moveUp {
  to {
      opacity: 1; /* Fade in */
      transform: translateY(0); /* Move to original position */
  }
}

@keyframes bump {
  0% {
      opacity: 0;
      transform: translateY(20px); /* Start lower */
  }
  50% {
      opacity: 1; /* Fade in */
      transform: translateY(-10px); /* Move up */
  }
  100% {
      opacity: 1; /* Fade in */
      transform: translateY(0); /* Return to original position */
  }
}
/* ************************************************************************** */

.overview1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  /* background-color: #f9f9f9; */
  background-color: #f0eeeea5;
  overflow: hidden;
  border: 2px solid dotted blue;
}

/* Image Container */
.overview1 .img-container{
  flex: 1;
  text-align: center;
  opacity: 0;
  transform: translateX(-50px); /* Start off-screen to the left */
  animation: fadeInLeft 1s forwards ease-in-out; /* Fade in from the left */
}

.overview1  .overview1-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Content Container */
.overview1  .overview1-content {
  flex: 1;
  padding-left: 50px;
  position: relative;
  z-index: 2;
  /* text-align: center; */
  
}

.heading-22 {
  /* font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; */
  /* font-style: italic; */
  /* text-decoration: underline 1.2px double orangered; */
  /* text-align: center; */
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(50px); /* Start below */
  animation: slideInUp 1s forwards ease-in-out;
  animation-delay: 0.3s; /* Delay for heading */
 
}
hr{
  margin-bottom: 2.8rem;
}

.overview1-description {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  color: black;
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  line-height: 1.5;
  transform: translateY(50px); /* Start below */
  animation: slideInUp 1s forwards ease-in-out;
  animation-delay: 0.5s; /* Delay for description */
}

.overview1 .features {
  list-style-type: none;
  padding: 0;
}

.overview1 .feature {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(50px); /* Start below */
  animation: slideInUp 1s forwards ease-in-out;
}

.overview1  .feature i {
  margin-right: 10px;
  font-size: 1.5rem;
  color: #ff7e39;
}

/* Staggered animation for each feature */
.overview1  .feature:nth-child(1) {
  animation-delay: 0.7s;
}

.overview1 .feature:nth-child(2) {
  animation-delay: 1s;
}
#sg-ov-btn{
  padding: 5px 20px;
  font-size: 1.3rem;
  border-radius: 5px;
  margin-left: 40%;
  border: 1px solid lightgray;
  background-color: #2c3e50;
  color: white;
}
#sg-ov-btn:hover{
  background-color: #5bb94f;
  
}
/* Animation for sliding content up */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation for image fade in from the left */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ******************************************** */

#importance1 {
  /* border: 2px solid red; */
  height: 670px;
  margin-top: 2%;
}
#importance1>h1{
  text-align: center;
  font-size: 2.5rem;
  padding: 1% 0;
  color: rgb(0, 87, 87);
}
#importance1>h4{
background-color: #5cb9490f;
padding: 1%;
  text-align: center;
  font-size: 1.5rem;
  margin-bottom:1.5% ;
  color: #08467F;
  font-style: italic;
}
#sub-importance1{
  /* border: 1px solid; */
  padding-bottom:2%;
  height: 550px;
  width: 85%;
  margin: auto;
}
#imporatnce-order{
  /* border: 2px solid blue; */
  padding: 0.8% 0;
  width: 100%;
  justify-content: center;
  display: flex;
  justify-content: space-around;
  list-style: none;
  /* background-color: rgba(222, 218, 218, 0.664); */
  border-top-left-radius: 15px;
border-bottom-left-radius: 15px;
border-bottom-right-radius: 15px;
  border-top-right-radius: 15px;
}
#first-item{
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
}
#last-item{
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
}
.hiden {
  display: none;
}
.content {
  margin-top: 20px;
  border: 1px solid #ccc;
  padding: 10px;
  height: 425px;   
}
/* .active {
  background-color: #0056b3;
  color: #4A9F3B;
} */

.importance-items .butn {
transition: background-color 0.2s ease-in-out;
}

.actie {
background-color: #007bff;
/* color: #ffffff; */
}

#importance1 .butn:hover {
background-color: #5BB949;
color: white;
}

.importance-items  .butn {
  border: 1px solid rgb(196, 195, 195);
  width: 300px;
  height: 60px;
  font-size: 17px;
  border-top-left-radius: 15px;
border-bottom-left-radius: 15px;
border-bottom-right-radius: 15px;
  border-top-right-radius: 15px;
  cursor: pointer;
  /* margin-right: 5px; */
  background-color: rgba(235, 232, 232, 0.263);
}
#content1{
  border: 1px solid #ccc;
  border-radius: 15px;
 background-color: rgba(255, 68, 0, 0.03);
 /* background-color: rgba(251, 231, 224, 0.957); */
 height: 440px;
}

#text-container1{
  width: 56%;
  height: 400px;
  position: relative;
  left: 44%;
  bottom: 402px;
  padding-left: 1%;
}
#text-container1>p{
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 1.2rem;
  color: rgb(0, 0, 83);
  line-height: 1.5;
}
#content1>img{
  height: 26em;
/* _________________ */
}
#content2{
  border-radius: 15px;
  border: 1px solid #ccc;
 background-color: rgba(173, 216, 230, 0.224);
 height: 440px;
}

#text-container2{
  /* border: 1px solid; */
   width: 56%;
  height: 400px;
  /* position: relative; */
  /* left: 44%; */
  /* bottom: 402px; */
   padding-top: .5%; 
   padding-left: 2%; 
}
#text-container2>p{
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 1.2rem;
  color: rgb(0, 0, 83);
  line-height: 1.5;
}
#content2>img{
 position: relative;
 left: 60%;
 bottom: 410px;
  height: 27em;

}
/* ___________________ */
#content3{
  border: 1px solid #ccc;
  border-radius: 15px;
background-color: rgba(182, 74, 182, 0.103);
 height: 440px;
}

#text-container3{
  /* border: 1px solid; */
  width: 56%;
  height: 400px;
  position: relative;
  left: 44%;
  bottom: 402px;
  padding-left: 1%;
}
#text-container3>p{
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 1.2rem;
  color: rgb(0, 0, 83);
  line-height: 1.5;
}
#content3>img{
  height: 26.2em;
  width: 33em;
  margin-left: 1%;
}
/* _____________________ */
#content4{
  border-radius: 15px;
  border: 1px solid #ccc;
 background-color: rgba(173, 229, 230, 0.224);
 height: 440px;
}

#text-container4{
  /* border: 1px solid; */
   width: 56%;
  height: 400px;
  /* /* position: relative; */
  /* left: 44%; */
  /* bottom: 402px; */
   padding-top: 1%; 
   padding-left: 4%; 
}
#text-container4>p{
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 1.2rem;
  color: rgb(0, 0, 83);
  line-height: 1.5;
}
#content4>img{
  /* border: 1px solid; */
 position: relative;
 left: 58%;
 bottom: 410px;
  height: 27.35em;
}
/***************************************************  */
#servicess{
  /* border: 2px solid red; */
  width: 100%;
  height: 480px;
  background-color:rgba(141, 253, 141, 0.126);
  margin-top: 2%;
}
#servicess>h1{
  text-align: center;
  font-size: 2.5rem;
  padding: 1% 0;
  color: rgb(0, 87, 87);
}
#servicess #sub-servicess{
padding: 3%;
  /* border: 2px solid blue; */
  width: 85%;
  height: 450px;
  margin: auto;
}
#servicess #services-container{
  display: flex;
  list-style-type: none;
  justify-content: center;
  justify-content: space-between;
  position: relative;
  
}
#servicess .services-items{
  /* border: 1px solid; */
  width: 21%;
  text-align: center;
  
}
#servicess .img-headings{
  padding: 4% 0;
  color:darkgreen;
}
#servicess .services-content>p{
/* position: relative; */
  /* color: white; */
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  /* font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; */
  font-size: 1.1rem;
  line-height: 1.5;
}
#servicess .services-image{
/* border: 1px solid; */
border-radius: 50%;
width: 100px;
height: 100px;
margin-left: 25%;
/* margin-top: -6px; */
/* text-align: center; */
/* background-color: white; */

}
#servicess .services-image>img{
height: 5em;
margin-top: 11%;
margin-left: 1%;
}


#help{
  /* border: 2px solid red; */
  height:100%;
  margin-top: 2%;
  /* background-color: rgba(119, 136, 153, 0.128); */
}
#help>h1{
text-align: center;
}
#help>h4{
background-color: #5cb9490f;
  text-align: center;
  font-size: 1.5rem;
  /* margin-bottom:1.5% ; */
  padding: 1%;
  color: #08467F;
  font-style: italic;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
#sub-help{
  /* border: 1px solid; */
  width: 90%;
  height:100%;
  margin: auto;
}
#help-content-main{
  /* border: 1px solid blue; */
  width: 70%;
  margin: auto;
  font-size: 1.3rem;
  text-align: center;
  font-style: italic;
  font-weight: 550;
  color: rgb(37, 37, 37);  
}
#help-content-main>p{
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
margin-top: 15px;
}
#trnd-gdts{
/* border: 2px solid red; */
width: 96%;
margin: auto;
background-color: rgba(222, 184, 135, 0.162);
text-align: center;
}
.trend{
/* border: 2px solid; */
list-style-type: none;
width: 100%;
margin: auto;
display: flex;
justify-content: center;
justify-content: space-evenly;
/* background-color: rgba(165, 42, 42, 0.329); */
/* background-color:rgba(58, 59, 1, 0.413); */
background-color: white;
/* padding: 2.5% 0;  */
}
.trend-items{
/* border: 2px solid blue; */
width: 28%;
/* height: 400px; */
text-align: center;
/* border-radius: 15px; */
/* border: none; */
}
.trend img{
height: 15em;
width: 14em;
border: none;
/* border-radius: 12px; */
background-color: #fff;
/* border: 0.1px solid; */
/* margin-top:9%; */
}
p{
margin-top:5%;
line-height:1.4;
font-family: sans-serif;
word-spacing:1px;
font-size:90%;
margin-bottom: 3%;
}
.images{
border: 1px solid rgb(187, 186, 186);
/* background-color: rgba(135, 207, 235, 0.203); */
border-radius: 12px;
width: 100%;

}
trend-items:hover{
height: 16em;
width: 13em;
}
.content_c {
position: relative;
text-align: center;
/* border: 2px solid; */
text-align: center;
width: 75%;
margin-left: 12%;
}
.content_c button{
width: 45%;
height: 30px;
margin-bottom: 9%;
}
#read-more {
cursor: pointer;
/* color: #337ab7; */
color: white;
text-decoration: underline;
font-size:95%;
background-color: #084C7F;
border-radius: 5px;
border: 2px solid #4A9F3B;
}
#read-more:hover{
text-decoration: underline  #084C7F;
color: #4A9F3B;
background-color: white;
}

#additional-content {
display:none;
text-align: center;
}
#additional-content.show {
display: block;
}
#help-container1{
  /* border: 1px solid red; */
  /* border: 0.1px solid rgb(178, 176, 176); */
  margin: auto;
  width: 100%;
  height: 550px;
  padding: 2%;
  background-color: #fff;
  margin-top: 1%;
  border-radius: 10px;
 
}
#help-container1>img{
  height: 28em;
 
}
#help-content{

  width: 61%;
  position: relative;
  left: 39.5%;
  bottom:90%;
  height: 490px;
  padding: 2% 2.5%;
  text-align: center;
  background-color: #E5F3FF;
  border-top-left-radius: 95px;
  border-bottom-right-radius: 95px;
}
#help-content>p{
  word-spacing: 1.5px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
/* ********************************************************* */
@media screen and (360px <= width <=480px){
#help{
  height: 100%;
  /* border: 1px solid red; */
  /* margin-top: 10%; */
}
#help>h1{
  font-size: 1rem;
}
#help h4{
  font-size: 0.9rem;
}
#sub-help{
  width: 100%;
}
#help-content-main{
  width: 80%;
  font-size: 0.7rem;
}
#help-content-main>p{
margin-top:5px;
}
#trnd-gdts{
  width: 100%;
}
.trend{
  flex-wrap: wrap;
}
.trend-items{
  width: 70%;
  margin: 1%;
  padding: 0;
}
.trend img{
  height: 9em;
  width: 8em;
}
p{
  margin-top:1%;
  font-size: 0.6rem;
}
.content_c button{
  height: 25px;
}
#read-more {
  font-size: 70%;
}
#help-container1{
  height: 450px;
}
#help-container1>img{
  height: 9em;
  margin-left: 28%;  
}
#help-content{
width: 100%;
height: 290px;
position: relative;
top: 0px;
left: 0px;
background-color: white;
border-top-left-radius: 0px;
  border-bottom-right-radius:0px;
}
#help-content>p{
font-size:0.7rem;

}
}
@media screen and (360px <= width <=480px){
#servicess{
height: 460px;
} 
#servicess>h1{
  font-size: 1rem;
}
#sub-servicess{
  height: 395px;
  width: 100%;
}
#servicess #services-container{
  margin-top: 0;
  flex-wrap: wrap;
  width:100%;
  
}
#servicess .services-items{
width: 48%;
}
#servicess .services-image{
  height: 50px;
  width: 50px;
  margin-left: 55px;
}
#servicess .services-image>img{
  height: 2.5em;
  
}
#servicess .img-headings{
font-size: 0.9rem;
}
#servicess .services-content>p{
  font-size: 0.7em;
  margin-top:0;
}
}

@media screen and (360px <= width <=480px){
#importance1{
height:500px;
}
#sub-importance1{
  height: 440px;
}
#importance1>h1{
  font-size: 1rem;
}
#importance1>h4{
  font-size: 0.8rem;
}
#sub-importance1{
  width:95%;
}
#sub-importance1 .butn {
  /* border: 1px solid red; */
  width: 80px;
  height: 30px;
  font-size: 0.5rem;
  font-weight: bold;
  border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
}
/* .content {
height: 300px;
} */
#content1{
  height:390px ;
}
#content1>img{
  height: 9em;
  width: 21.5em;
}
#text-container1{
  left:0;
  bottom: 0;
  width: 100%;
  height: 230px;
}
#text-container1>p{
  font-size: 0.6rem;
}
/* __________ */

#text-container2{
  position: relative;
 top: 130px;
 left: 0;
  width: 100%;
  height: 245px;
}
#text-container2>p{
  font-size: 0.6rem;
}
#content2>img{
  height: 9em;
  width: 20em;
  margin-left: -200px;
  margin-top: 155px;
}
#content2{
  height:390px ;
}
/* ______ */
#text-container3{
  left:0;
  bottom: 0;
  width: 100%;
  height: 230px;
}
#text-container3>p{
  font-size: 0.6rem;
}
#content3>img{
  height: 9em;
  width: 20.6em;
}
#content3{
  height:390px ;
}
/* ______ */
#text-container4{
 position: relative;
 top: 120px;
  width: 100%;
  height: 256px;
}
#text-container4>p{
  font-size: 0.6rem;
}
#content4{
  height:390px ;
}
#content4>img{
  height: 9em;
  width: 20.6em;
  margin-left: -200px;
  margin-top:150px;
}
}
@media screen and (360px <= width <=480px){
.overview1 {
  display: flex;
  flex-direction: column;
  padding: 10px;
}
.heading-22 {
  font-size: 1rem;
}
.overview1-content {
  padding-left: 0;
}
.overview1-description {
  font-size: 0.8rem;
  margin-bottom:5px;

}
.feature {
  font-size: 0.8rem;
  margin-bottom: 0;
}
.feature>b{
  font-size: 0.75rem;
}
}
@media screen and (360px <= width <=480px){
.hero{
  height: 30vh;
}
.hero-content {
  width: 65%;
  transform: translateX(-43%);
}
.headline {
  font-size:1.5rem;
  margin-bottom: 5px;
}
.subheadline {
  font-size: 0.5rem;
  line-height: 1;
}
@keyframes slideUp {
  from {
      bottom: -70px; /* Start below the view */
      opacity: 0; /* Initially hidden */
  }
  to {
      bottom: 10%; /* Centered vertically */
      opacity: 1; /* Fade in */
}
}
}
/* *************************8 */

#storage-free-consultation{
margin-top: 2%;
/* border: 1px solid red; */
width: 100%;
height: 100%;
padding: 1% 0;
}
#storage-consultation-container{
/* border: 1px solid; */
width: 70%;
height: 100%;
margin: auto;
text-align: center;
padding: 1% 0;
border-radius: 10px;
background: linear-gradient(170deg,#f8f9fa,#e5f3ff,#2c3e50);
box-shadow: 2px 2px 15px lightgray;
}
#storage-consultation-container>h1{
font-size: 1.9rem;
}
#storage-consultation-container>p{
margin: 2%;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: 1.2rem;
color: #2c3e50;
}
#storage-consultation-container>p>#storage-contact{
/* text-decoration: none; */
color: #4a9f3b;
font-size: 1.4rem;border: none;
background-color: none;
cursor: pointer;
font-weight: bold;
text-decoration: underline;
}
#storage-consultation-container>p>span{
font-style: italic;
font-weight: bold;
color: black;
}


/*  */
@media screen and (320px <= width <= 480px){
#storage-consultation-container>h1{
   font-size: 0.8rem;
}
#storage-consultation-container>p{
   margin-top: 2%;
   font-size: 0.8rem;
}
#storage-consultation-container>p>a{
   font-size: 0.8rem;
   font-weight:bold;
}
}
