*{
  padding: 0%;
  margin: 0%;
  box-sizing: border-box;
}
.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  background: url('./images/cloud-devops-bg-img.jpg') no-repeat center center/cover;
  overflow: hidden;
  animation: fadeIn 1s ease-in;
/* margin-top: 90px; */
}

.hero-content {
  /* border: 1px solid white; */
  margin: auto;
  position: absolute;
  left: 26%;
  /* top: 30%; */
  width: 49%;
  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: 2.7em;
  /* color: #fff; */
  color:#5bb949;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  /* color: rgb(244, 173, 150); */
  margin-bottom: 10px;
  font-style: oblique;
  line-height: 1.5;
}

.subheadline {
  /* font-size: 1.5em; */
  font-style: oblique;
  line-height: 1.2;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 30px;
}
.line1{
  font-size: 1.8em;

}
.line2,.line3{
  font-size: 1.8em;
}
.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 */
  }
}
/* ************************************* */
#cloud-devops-overview{
  border: 2px solid blue;
  width: 100%;
  height: 100%;
}
#sub-cloud-devops-overview{
  border: 2px solid blue;
  width: 90%;
  margin: auto;
  height: 100%;
}
/* ******************************************* */
#main{
  background-color: rgb(213, 239, 247);
  padding: 0.3%;
  width: 88%;
  margin: auto;
}

header {
  text-align: center;
  color: rgb(171, 6, 6);
  text-decoration-line: underline;
  /* color: #65d24f; */
  font-size: 20px;
  /* margin-bottom: 60px; */
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* max-width: 1200px; */
  margin: auto;
  width: 100%;
}

.content {
  flex: 1;
  padding: 20px;
}

.image-section {
  flex: 1;
  text-align: center;
}

.cloud-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 60px;
  /* border: 1px solid; */
  border-top-left-radius: 25%;
  border-bottom-right-radius: 25%;
  /* box-shadow:1px  1px 15px  rgb(171, 2, 2); */
}

.animated-content {
  opacity: 0;
  animation: fadeIn 3s forwards;
  font-size: 21px;
  line-height: 1.5;
  margin-left: 3%;
  margin-top: -15px;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.animated-image {
  opacity: 0;
  transform: translateX(118px);
  animation: slideIn infinite forwards 3s; /* Delay for the image animation */
}

@keyframes fadeIn {
  to {
      opacity: 1;
  }
}

@keyframes slideIn {
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

#key{
  color: green;
  text-decoration-line:underline ;
  margin-top: -15px;
}
.animated-content ul {
  /* border: 1px solid; */
  position: relative;
  bottom: 20px;
}
/* ******************* */

#cloud-devops-overview{
  background-color: #f8f9fa;
  padding: 0.3%;
  width: 85%;
  margin: auto;
  border: 1px solid red;
  margin-top: 2%;
  border-radius: 10px;
  border: 1px solid lightgray;
  box-shadow: 2px 2px  10px gray;
}

#cloud-devops-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* max-width: 1200px; */
  margin: auto;
  width: 100%;
}

#cloud-devops-content {
  flex: 1;
  padding: 20px;
}
#cloud-devops-content h4{
  /* text-align: center; */
  margin-bottom: 20px;
  color: #084c7f;
  font-size: 1.6rem;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
#cloud-devops-content hr{
  border: 1px solid rgb(205, 203, 203);
  position: relative;
  /* bottom: 10px; */

}
.image-section {
  flex: 1;
  /* text-align: center; */
}

.cloud-image {
  max-width: 65%;
  /* border: 1px solid; */
  margin-bottom: 60px;
  border-top-left-radius: 25%;
  border-bottom-right-radius: 25%;
  position: relative;
  top: 30px;
  /* box-shadow:1px  1px 15px  rgb(171, 2, 2); */
}

#animated-content {
  opacity: 0;
  animation: fadeIn 3s forwards;
  font-size: 20.5px;
  line-height: 1.5;
  margin-left: 5%;
  /* margin-top: -15px; */
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.animated-image {
  opacity: 0;
  transform: translateX(118px);
  animation: slideIn infinite forwards 3s; /* Delay for the image animation */
}

@keyframes fadeIn {
  to {
      opacity: 1;
  }
}

@keyframes slideIn {
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

#key{
  color: green;
  text-decoration-line:underline ;
  margin-top: -15px;
}
.animated-content ul {
  /* border: 1px solid; */
  position: relative;
  bottom: 20px;
}
/* ******************************************************************************** */
/* *************************************** */
#cloud-devops-solutions{
  /* border: 1px solid red; */
  width: 100%;
  height: 100%;
  margin-top: 2%;
}
#sub-cloud-devops-solutions{
  /* border: 1px solid red; */
  /* margin: 1%; */
  width: 85%;
  margin: auto;
  height: 100%;
  display: flex;
  justify-content: center;
  justify-content: space-around;
}

#cloud-devops-solutions .card-title {
  color: #4a9f3b;
  font-size: 1.5em;
  line-height: normal;
  font-weight: 700;
  margin-bottom: 0.5em;
}

#cloud-devops-solutions .small-desc {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5em;
  color: gray;
  font-weight: 550;
}
#cloud-devops-solutions .small-desc span{
  font-style: italic;
  color: rgb(95, 95, 95);
  font-weight: bold;
}

.cloud-devops-solutions-card {
  display: block;
  position: relative;
  width: 380px;
 height: 180px;
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 2em 1.2em;
  margin: 12px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
  background-color: #e5f3ff;
  /* background: linear-gradient(to bottom, #c3e6ec, #a7d1d9); */
  font-family: Arial, Helvetica, sans-serif;
}

.cloud-devops-solutions-card:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -16px;
  right: -16px;
  /* background: linear-gradient(135deg, #627386, #7a879d); */
  background-color: #2c3e50;
  height: 32px;
  width: 32px;
  border-radius: 32px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.35s ease-out;
  
}

.cloud-devops-solutions-card:hover:before {
  transform: scale(28);

}

.cloud-devops-solutions-card:hover .small-desc {
  transition: all 0.5s ease-out;
  color: rgba(255, 255, 255, 0.616);
}

.cloud-devops-solutions-card:hover .card-title {
  transition: all 0.5s ease-out;
  color: #ffffffe8;
}
/*88 */
#cloud-devops-integartion{
  /* border: 1px solid red; */
  width: 100%;
  height: 100%;
  margin-top: 1%;
  padding: 20px 0px;
  background: linear-gradient(185deg,#2c3e50, #e5f3ff,#f8f9fa,#e5f3ff,#e5f3ff);
} 
#devops-integration{
  /* border: 1px solid blue; */
  width: 75%;
  margin: auto;
  height: 100%;
  padding: 0px 90px;
  /* background: linear-gradient(45deg,#f8f9fa, #e5f3ff,#2c3e50); */
}
#devops-integration>h2{
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 2rem;
  text-align: center;
  color: #084c7f;
}
#devops-integration>p{
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  word-spacing: 1px;
}
#devops-integration>p span{
  font-style: italic;
  font-weight: bold;
  font-size: 1.3rem;
}
/* ***************************************** */
#cloud-devops-services{
  /* border: 1px solid red; */
  width: 100%;
  height: 100%;
  margin-top: 2%;
  padding-top: 10px;
  background-color: #e5f3ff;
}
#cloud-devops-services>h2{
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 2rem;
  text-align: center;
  color: #084c7f;
}
#cloud-devops-services>h5{
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 1.5rem;
  text-align: center;
  color: black;
  line-height: 1.5;
  word-spacing: 2px;
}
#sub-cloud-devops-services{
  /* border: 1px solid red; */
  width: 94%;
  margin: auto;
  height: 100%;
  /* display: flex; */
  /* justify-content: center; */
  /* justify-content: space-between; */
}

#cloud-devops-services-container{
  /* border: 1px solid blue; */
  width: 91%;
  height: 500px;
  margin: auto;
}
.cloud-devops-content-services{
  /* border: 1px solid rgb(126, 124, 124); */
  width: 100%;
  height: 140px;
  box-shadow: 2px 5px 10px grey;
  margin: auto;
  border-radius: 5px;
  background-color: white;
  /* background:linear-gradient(180deg,white,#f8f9fa,#f8f9fa,#e5f3ff); */
  margin-bottom: 20px;
  
}
.cloud-devops-content-services img{
  height: 3em;
  margin-left: 1%;
  /* margin-right: 300px; */
  /* margin-top: 1%; */

}
.cloud-devops-content-services .heading-image{
  /* border: 1px solid rgb(165, 164, 164); */
  width: 97%;
  margin: auto;
  height: 40px;
  align-items: center;
  padding: 2%;
      display:flex;
      justify-content: flex-start;

      /* justify-content: space-evenly; */
}
.cloud-devops-content-services .heading-image>h3{
  margin-top: 20px;
  /* margin-left: 2%;  */
  font-size: 1.3rem;
  box-shadow: 2px 5px 5px grey;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.cloud-devops-content-services p{
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 1.1em;
   margin-left: 2%;
  color: #2c3e50;
  line-height: 1.2;
}
.cloud-devops-content-services p>span{
  font-style: italic;
  color: black;
  font-size: 1.3rem;
}
.cloud-devops-services-btn{
 padding: 5px;   
 border: 1px solid gray;
 border-radius: 3px;
 margin-left:1%;
 background-color: #4a9f3b;
 margin-top: 10px;
 text-align: center;

}
.cloud-devops-services-btn>a{
  text-decoration: none;  
  color: white;
  font-size: 1.1em; 
}
/* #cloud-devops-services-content2{
  position: relative;
  left: 53%;
  bottom: 210px;
}
#cloud-devops-services-content3{
  position: relative;
  left: 28%;
  bottom: 170px;
} */


@media screen and (320px <= width <= 480px){
#cloud-devops-services{
  /* border: 1px solid red; */
  height: 730px;
}

#sub-cloud-devops-services{
  /* border: 1px solid red; */
 width: 100%;
 flex-wrap: wrap;
}

#cloud-devops-services>h2{
  font-size: 0.9rem;
}
#cloud-devops-services>h5{
  font-size: 0.7rem;
}
.cloud-devops-content-services{
  height: 200px;
}
.cloud-devops-content-services .heading-image>h3{
  font-size:0.9rem;

}
.cloud-devops-content-services .heading-image img{
  height: 2rem;
  margin-left: 2%;
}
.cloud-devops-content-services .heading-image button{
  font-size: 1rem;
  margin-left: 2%;
}
 
.cloud-devops-services-btn>a{
  font-size:0.6rem;
}
}

/* ************************888 */
#cloud-devops-did{
  /* border: 1px solid red; */
  width: 100%;
  height: 100%;
  margin-top: 1%;
  padding: 20px 0px;
  background: linear-gradient(125deg,#f8f9fa,#e5f3ff, #e5f3ff,#f8f9fa);
} 
#devops-did{
  /* border: 1px solid blue; */
  width: 75%;
  margin: auto;
  height: 100%;
  padding: 0px 90px;
  /* background: linear-gradient(45deg,#f8f9fa, #e5f3ff,#2c3e50); */
}
#devops-did>h2{
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 2rem;
  text-align: center;
  color: #084c7f;
}
#devops-did>p{
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  word-spacing: 1px;
  text-align: center;
}
#devops-did>p span{
  font-style: italic;
  font-weight: bold;
  font-size: 1.3rem;
}
/* **********************88888888 */
#cloud-devops-whychoose{
  /* border: 1px solid red; */
  width: 100%;
  height: 100%;
  margin-top: 1.5%;
}
#cloud-devops-order{
  /* border: 1px solid blue; */
  width: 81%;
  height: 100%;
  margin: auto;
  display: flex;
  list-style-type: none;
  justify-content: center;
  justify-content: space-between;
}
.cloud-devops-items{
  /* border: 1px solid #4a9f3b ; */
  text-align: center;
  width: 20%;
  padding: 15px 0px;
  border-radius: 10px;
  /* background-color: #f8f9fa; */
}
.cloud-devops-items>img{
  height: 4em;
}
#expert>img{
  height: 3.5em;
  margin-top: 2%;
}
.cloud-devops-items h2{
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  color: #4a9f3b;
  line-height: 1.4;
}

.cloud-devops-items p{
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  color: #2c3e50;
  line-height: 1.4;
  font-size: 1.07rem;
  margin-top: 1.5%;
}
/* ******************************* */
#cloud-devops-contact{
  /* border: 1px solid red; */
  width: 100%;
  height: 100%;
  margin-top: 1%;
  padding: 20px 0px;
  background: linear-gradient(180deg,#e5f3ff,#f8f9fa,#f8f9fa,#e5f3ff,#e5f3ff);
} 
#devops-contact{
  /* border: 1px solid blue; */
  width: 75%;
  margin: auto;
  height: 100%;
  padding: 0px 90px;
  /* background: linear-gradient(45deg,#f8f9fa, #e5f3ff,#2c3e50); */
}
#devops-contact>h2{
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 2rem;
  text-align: center;
  color: #084c7f;
}
#devops-contact>p{
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  word-spacing: 1px;
  text-align: center;
}
#devops-contact-btn{
  border: 1px solid gray;
  border-radius: 4px;
  padding: 10px 15px;
  background-color: #4a9f3b;
  margin-left: 42%;
  margin-top: 20px;
}
#devops-contact-btn:hover{
  background-color: #084c7f;
  color: white;
}

#devops-contact-btn>a{
  text-decoration: none;
  color: white;
  font-size: 1.1rem;
}

/*  */

@media screen and (320px <= width <= 480px){
  #cloud-devops-contact{
    padding: 0 0;
  }
  #devops-contact{
    width: 95%;
    padding: 0px 10px;
  }
  #devops-contact>h2{
    font-size: 1rem;
  }
  #devops-contact>p{
    font-size: 0.8rem;
    margin-top: 4%;
  }

#devops-contact-btn{
  padding: 5px 10px;
  margin-left: 26%;
  margin-bottom: 30px;
}

  #devops-contact-btn>a{
    font-size: 0.9rem;
}
}
@media screen and (320px <= width <= 480px){

#cloud-devops-order{
  flex-wrap: wrap;
  width: 70%;
}
.cloud-devops-items{
  width: 100%;
  margin: 1.5%;
}
.cloud-devops-items>img{
  height: 3em;
}
#expert>img{
  height: 2.5em;
  margin-top: 3%;
}
.cloud-devops-items h2{
    font-size: 0.8rem;
    line-height: 1;
}
.cloud-devops-items p{
  font-size: 0.7rem;
}
}
@media screen and (320px <= width <= 480px){

#cloud-devops-did{
  padding: 10px 0px;
}
#devops-did{
  width: 95%;
  padding: 0px 5px;
}
#devops-did>h2{
  font-size: 1rem;
}
#devops-did>p{
  font-size: 0.8rem; 
}
#devops-did>p span{
font-size:0.8rem;
}
}

@media screen and (320px <= width <= 480px){
#cloud-devops-integartion{
  padding: 10px 0px;
}
#devops-integration{
  width: 93%;
  padding: 0px 3px;
}
#devops-integration>h2{
  font-size: 1rem;
}
#devops-integration>p{
font-size: 0.8rem;
}

#devops-integration>p span{
font-size:0.9rem;
}
}
@media screen and (320px <= width <= 480px){
#sub-cloud-devops-solutions{
  width: 100%;
}

#cloud-devops-solutions .card-title {
  font-size: 0.7em;
}
#cloud-devops-solutions .small-desc {
  font-size: 0.6em;
}
.cloud-devops-solutions-card {
  width: 160px;
  height: 150px;
  padding: 1em 1.2em;
}

}
@media screen and (320px <= width <= 480px){
#cloud-devops-overview{
  /* border: 1px solid red;  */
  width: 100%;
}
#cloud-devops-container {
  /* border: 1px solid; */
  width: 100%;
}
#cloud-devops-content h4{
  font-size: 0.7em;
}
#animated-content{
  margin-left: 0;
  /* border: 1px solid; */
  flex: 1;
 padding: 0px;
 width: 250px;
}
#animated-content>p{
  font-size: 10px;
}
.animated-image {
  width: 80%;
  transform: translateX(25px);
}
@keyframes slideIn {
to {
    opacity: 1;
    transform: translateX(20px);
  }
}
}     @media screen and (320px <= width <= 480px){
.hero{
  height: 35vh;
}
.headline{
font-size: 10px;
}
.line1{
font-size: 3em;

}
.line2,.line3{
font-size: 0.8em;
}
.subheadline{
font-size:3px;
}

}
