.container {
    position: relative;
    width: 100%;
    max-width: 1200px; /* Adjust the max-width as needed */
    margin: 0 auto;
  }
  
  .left-image,
  .right-image {
    position: absolute;
    top: 0;
    height: 100px; /* Adjust the height as needed */
    width: auto;
  }
  
  .left-image {
    left: 0;
  }
  
  .right-image {
    right: 0;
	padding-top: 5px;
  }
  
  .content {
    padding: 20px; /* Adjust padding as needed */
    /* Add styles to position content properly */
  }
  
.mb-60 {
    margin-bottom: 60px;
}

.our-services-wrapper mb-60{
    border: #222222;
}
.services-inner {
    border: 2px solid #48c7ec;
    margin-left: 6px;
    transition: .3s;
    height: 230px;
    padding: 20px;
}

.our-services-img {
    float: left;
    margin-left: -36px;
    margin-right: 22px;
    margin-top: 28px;
}
.our-services-text {
    padding-right: 10px;
}
.our-services-text {
    overflow: hidden;
    padding: 28px 0 25px;
}
.our-services-text h4 {
    color: #222222;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
    padding-bottom: 10px;
    position: relative;
    text-transform: uppercase;
}
.our-services-text h4::before {
    background: #ec6d48 none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 1px;
    position: absolute;
    width: 35px;
}
.our-services-wrapper:hover .services-inner {
    background: #fff none repeat scroll 0 0;
    border: 2px solid transparent;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
}
.our-services-text p {
    margin-bottom: 0;
}
p {
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    color: #666;
    margin-bottom: 15px;
    
}

h2{
    text-align: center;
}

li{
    padding-top: 8px;
}

.container-fluid .row {
    display: flex;
    align-items: center; /* Aligns items vertically */
}

.container-fluid .col-xs-12.col-sm-6.col-md-6.col-lg-6 {
    padding: 0; /* Removes default padding */
}

.mt-60{
    margin-top:60px;
}

.section-block-grey {
    padding: 50px 0px 50px 0px;
    background-color: #f9f9f9;
}

.serv-section-2 {
    position: relative;
    border: 1px solid #eee;
    background: #fff;
    box-shadow: 0px 10px 30px 0px rgba(50, 50, 50, 0.16);
    border-radius: 5px;
    overflow: hidden;
    padding: 30px;
    height: 350px;
}

.serv-section-2:before {
    position: absolute;
    top: 0;
    right: 0px;
    z-index: 0;
    content: " ";
    width: 120px;
    height: 120px;
    background: #f5f5f5;
    border-bottom-left-radius: 136px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
}

.serv-section-2-icon {
    position: absolute;
    top: 18px;
    right: 22px;
    max-width: 100px;
    z-index: 1;
    text-align: center;
}

.serv-section-2-icon i {
    color: #001c48;
    font-size: 48px;
    line-height: 65px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
}

.serv-section-desc {
    position: relative;
}

.serv-section-2 h4 {
    color: #333;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
}

.serv-section-2 h5 {
    color: #333;
    font-size: 14px;
    /* font-weight: 400; */
    line-height: 1.5;
    margin-top: 5px;
    padding-right: 50px;
}

.section-heading-line-left {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: #001c48;
    border-radius: 25%;
    margin-top: 15px;
    margin-bottom: 5px;
}

.serv-section-2 p {
    margin-top: 25px;
    padding-right: 50px;
}

.serv-section-2:hover .serv-section-2-icon i {
    color: #fff;
}

.serv-section-2:hover:before {
    background: #001c48;
}
  
  .centered-content {
    text-align: center;
    margin: 50px 0px 50px 0px;
    /* Other styles for the centered content */
  }
  
  button {
    padding: 10px 20px;
    /* Other styles for the button */
  }
  
  .btn {
    padding: 10px 20px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out; /* Adding transition for smooth hover effect */
  
    /* Other button styles */
  }
  
  /* Hover effect */
  .btn:hover {
    background-color: #2980b9;
    /* Adjust hover styles as desired */
  }
  