
.services{
  width: 100%;
  height: 700px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

.services-title{
  margin: 25px 0 20px 0;
  text-align: center;
}

.services-title h2{
  font-size: 40px;
  font-weight: bold;
}

.services-info{
  max-width: 2500px;
}


.services-image{
  display: flex;
  align-items: center;
}


.services-image img{
  object-fit: fill;
  width: 900px;
  height: 800px;
}


.service-bullet-info{
   display: flex;
}


.services-bullet{
  display: flex;
  margin: 15px;
}

.service-text{
  padding: 10px;
}

.service-title{
  color: #F78E30;
  font-size: 25px;
  font-weight: bold;
}
  
.services-icon{
  min-width: 100px;
 
}

.talk-button{
  justify-content: center;
  align-items: center;
  display: flex;
}

.talk-button button{
  background-color: #da291c;
  border: none;
  color: white;
  font-size: 28px;
  font-weight: bold;
  padding: 10px;
  border-radius: 25px;
  width: 200px;
}

.talk-button button:hover{
  background-color: white;
  border: solid #da291c 1px;
  color: #da291c;
  cursor: pointer;
}

@media (max-width: 1200px){
  
  .service-bullet-info{
    flex-direction: column;
  }

  .services-image{
    display: none;
  }
  
  .services{
  height: 1050px;
 
}
  
  .call-to-action{
    width: 400px;
}

@media (max-width: 450px){  
  .services{
  height: 1200px;
 
}
}