/* Custom CSS */
@font-face {
  font-family: 'Gotham';
  src: url('path-to-your-font/Gotham.woff2') format('woff2'); /* Load your Gotham font */
}
@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Regular.woff2') format('woff2'),
         url('fonts/Montserrat-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
/* Custom CSS */
.header-section{
    padding: 10px 30px 10px 60px;
}
.header-btn {
  background: #384B70; /* Background color */
  color: white; /* Text color */
  background: linear-gradient(#384B70, #384B70) padding-box, 
  linear-gradient(275.86deg, #E26276 28.65%, #2E74CE 71.35%) border-box;
border: 1.2px solid transparent; /* Transparent border */
  padding: 10px 40px; /* Padding for the button */
  border-radius: 146px; /* Updated rounded corners */
  display: inline-flex; /* To align the arrow */
  align-items: center; /* Center the content vertically */
  text-decoration: none; /* Remove underline */
  transition: background 0.3s ease; /* Smooth transition for hover effect */
  font-size: 20px;
  font-weight: 600;
}

.header-btn:hover {
background: white; /* Darker background on hover */
color:#384B70;
background: linear-gradient(white, white) padding-box, 
  linear-gradient(275.86deg, #E26276 28.65%, #2E74CE 71.35%) border-box;
}

.header-btn .arrow {
margin-left: 10px; /* Space between text and arrow */
font-size: 24px; /* Size of the arrow */
color: white;
}
.header-btn .arrow :hover{
  margin-left: 10px; /* Space between text and arrow */
  font-size: 24px; /* Size of the arrow */
  color:#384B70 ;
  }
.header-btn:hover .arrow {
    transform: translateX(5px); /* Move arrow on hover */
    color: #384B70; /* Change arrow color to white on hover */
  }


.banner {
  background-image: url('images/home banner.png'); /* Path to your image */
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  height: 550px;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
}
 .banner::before {
  background: rgba(0, 0, 0, 0.5); /* Optional dark overlay */
} 
.banner-content {
  position: relative;
  z-index: 1;
  max-width: 100%;
  padding-top: 8rem;
}
/* Heading styles */
.banner-content h1 {
  font-size: 60px;
  font-weight: 700;
  font-family: 'Ubuntu', sans-serif;
  width: 80%;
}
.banner-content h2 {
  font-size: 28px;
  font-weight: 500;
  font-family: 'Gotham', sans-serif;
}

/* Button styles */
.custom-btn {
  background-color: white; /* Active state background */
  color: #384B70; /* Active state text color */
  border: none;
  padding: 10px 45px;
  background: linear-gradient(white, white) padding-box, 
              linear-gradient(275.86deg, #E26276 28.65%, #2E74CE 71.35%) border-box;
  border: 1.2px solid transparent; /* Transparent border */
  font-weight: 700;
  font-family: 'Gotham', sans-serif;
  display: inline-flex;
  align-items: center;
  border-radius: 187px;
  text-decoration: none;
  margin-top: 30px;
  transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition for background and text */
  transition: all 300ms ease-out;
}

.custom-btn:hover {
  background-color: #384B70; /* Hover state background */
  color: white; /* Hover state text color */
  background: linear-gradient(#384B70, #384B70) padding-box, 
              linear-gradient(275.86deg, #E26276 28.65%, #2E74CE 71.35%) border-box;
}

.custom-btn .arrow {
  margin-left: 10px;
  font-size: 24px;
  color: inherit; /* Ensure arrow inherits the text color */
  transition: transform 0.3s ease, color 0.3s ease; /* Smooth transition for arrow */
}

.custom-btn:hover .arrow {
  transform: translateX(5px); /* Move arrow on hover */
  color: white; /* Change arrow color to white on hover */
}



/* Paragraph styles */
.second-section{
    background: #FFFDF4;
    padding: 2rem 0rem;
}

.col-md-6.first-section {
    padding-right: 4rem;
}
.section-heading {
    font-family: 'Gotham', sans-serif; /* Font family */
    font-size: 26px; /* Font size */
    font-weight: 500; /* Font weight */
    line-height: 36.88px; /* Line height */
    letter-spacing: 0.24em; /* Letter spacing */
    color: #507687; /* Color */
    letter-spacing: 24%;
}

.main-heading {
    font-family: 'Ubuntu', sans-serif;
    font-size: 48px; /* Font size */
    font-weight: 700; /* Font weight */
    line-height: 58.51px; /* Line height */
    color: #384B70; /* Color */
    padding-top: 10px;
}

.section-paragraph {
    font-family: 'Montserrat', sans-serif; /* Font family */
    font-size: 20px; /* Font size */
    font-weight: 400; /* Font weight */
    text-align: left; /* Text alignment */
    color: #4B4B4B; /* Color */
    padding-top: 2rem;
}
.grey-section {
   background: linear-gradient(273.29deg, #86A8B6 0.78%, #B6C4DE 99.22%);
  padding: 4rem;
}
.white-box {
  background-color: #fff;
  border-radius: 36px;
  padding: 2rem 5rem 2rem 5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.third-content{
    font-family: 'Montserrat', sans-serif; /* Font family */
    font-size: 20px; /* Font size */
    font-weight: 400; /* Font weight */
    text-align: left; /* Text alignment */
    color: #4B4B4B; /* Color */
    padding: 1rem 1rem 1rem 0rem;
}
.box-section{
    padding-top: 4rem;
}
/* Info Box Styles */
.fourth-section{
    background: #FFFDF4;
    padding: 4rem ;
}
.equal-height-row {
    display: flex; /* Use flexbox for the row */
}
.info-box {
    display: flex; /* Use flexbox for the info box */
    flex-direction: column; /* Align items in a column */
    justify-content: space-between; /* Space out elements to fill height */
    background: linear-gradient(180deg, #384B70 0%, #4F6590 100%);
    border-radius: 25px; /* Rounded corners */
    margin: 10px; /* Space around the box */
    text-align: center; /* Center align text inside box */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
    overflow: hidden; /* Hide overflow */
}

.box-image {
    width: 100%; /* Image fills the full width */
    height: auto; /* Maintain aspect ratio */
    object-fit: cover; /* Cover the box while maintaining aspect ratio */
}

.box-heading {
    font-family: 'Montserrat', sans-serif; /* Font family for heading */
    font-size: 18px; /* Font size for heading */
    font-weight: 700; /* Font weight for heading */
    color: #C1E5F5; /* Color for heading */
    margin: 15px 0 5px 0; /* Margin for spacing */
    padding: 15px; /* Horizontal padding */
}

.box-text {
    font-family: 'Montserrat', sans-serif; /* Font family for text */
    font-size: 20px; /* Font size for text */
    font-weight: 400; /* Font weight for text */
    color: #FCFAEE; /* Color for text */
    text-align: left; /* Center align text */
    padding: 0rem 1rem 1rem 3rem; /* Horizontal padding */
}
.box-text li {
    margin: 10px 0; /* Margin for each list item */
}
/* Button Styling */
.learn-more-button {
    position: relative;
    display: inline-block;
    padding: 10px 46px; /* Adjust padding as needed */
    text-decoration: none;
    color: #384B70; /* Text color */
    background: linear-gradient(white, white) padding-box, 
                linear-gradient(275.86deg, #E26276 28.65%, #2E74CE 71.35%) border-box;
    border: 1.2px solid transparent; /* Transparent border */
    border-radius: 187px;
    line-height: 29.08px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    background-clip: padding-box, border-box;
    transition: all 0.3s ease;
}

.learn-more-button:hover {
  background-color: #384B70; /* Hover state background */
  color: white; /* Hover state text color */
  background: linear-gradient(#384B70, #384B70) padding-box, 
              linear-gradient(275.86deg, #E26276 28.65%, #2E74CE 71.35%) border-box;
}

.learn-more-button:hover .arrow {
    transform: translateX(5px); /* Moves arrow on hover */
}
.learn-more-button:hover .arrow {
  transform: translateX(5px); /* Move arrow on hover */
  color: white; /* Change arrow color to white on hover */
}

.arrow {
    margin-left: 15px; /* Space between text and arrow */
    font-size: 20px; /* Arrow size */
    color: #384B70; /* Arrow color */
}
.fifth-banner {
    background-image: url('images/new banner'); /* Path to your image */
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    height: 550px;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
  }
   .fifth-banner::before {
    background: rgba(0, 0, 0, 0.5); /* Optional dark overlay */
  } 
  .fifth-banner-content {
    position: relative;
    z-index: 1;
    max-width: 100%;
  }
  .fifth-banner-content h1 {
    font-size: 60px;
    font-weight: 700;
    font-family: 'Ubuntu', sans-serif;
    width: 80%;
  }
  .six-section{
    background: #FFFDF4;
    padding: 4rem ;
}
  .six-heading {
    font-family: 'Ubuntu', sans-serif;
    font-size: 48px; /* Font size */
    font-weight: 700; /* Font weight */
    line-height: 58.51px; /* Line height */
    color: #384B70; /* Color */
    padding-top: 10px;
    width: 60%;
}
/* Offer Block Styling */
.offer-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    margin-bottom: 30px;
    height: 100%;
}

.offer-block .offer-image {
    max-width: 100px;
    margin-bottom: 20px;
}

.offer-block .offer-heading {
    font-family: 'Gotham', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #384B70;
    margin-bottom: 15px;
    line-height: 26.4px;
    letter-spacing: 18%;
}

.offer-block .offer-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #4B4B4B;
    padding: 0 20px;
}

.right-button{
  text-align: right;
  padding-top: 3rem;
}
.contact-button {
  display: inline-block;
  padding: 10px 46px; /* Adjust padding as needed */
  text-decoration: none;
  color: #384B70; /* Text color */
  background: linear-gradient(white, white) padding-box, 
              linear-gradient(275.86deg, #E26276 28.65%, #2E74CE 71.35%) border-box;
  border: 1.2px solid transparent; /* Transparent border */
  border-radius: 187px;
  line-height: 29.08px;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  background-clip: padding-box, border-box;
}

.contact-button:hover {
  background-color: #384B70; /* Hover state background */
  color: white; /* Hover state text color */
  background: linear-gradient(#384B70, #384B70) padding-box, 
              linear-gradient(275.86deg, #E26276 28.65%, #2E74CE 71.35%) border-box;
}

.contact-button:hover .arrow {
  transform: translateX(5px); /* Moves arrow on hover */
  color: white; /* Change arrow color to white on hover */

}
.seventh-section .seven-heading {
  font-family: 'montserrat', sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: #384B70;
  flex: 1;
}
.sub-heading{
  font-family: 'Montserrat', sans-serif;
font-size: 32px;
font-weight: 600;
line-height: 39.01px;
text-align: left;
color: #507687;

}
.description-text{
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #4B4B4B;

}
.center-heading{
  font-family: 'Montserrat', sans-serif;
font-size: 24px;
font-weight: 600;
line-height: 29.26px;
letter-spacing: 0.1em;
text-align: center;
color: #384B70;
margin-bottom: 2rem;
}
.service-box{
  padding-top: 3rem;
}
.service-box .box-heading{
  font-family: 'Montserrat', sans-serif;
font-size: 24px;
font-weight: 700;
line-height: 29.26px;
letter-spacing: 0.05em;
text-align: center;
color:#507687;
}
.service-box .service-text{
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 21.94px;
  text-align: center;
  color: #4B4B4B;
  
}

/* EIGHT */

.eighth-section {
  background-image: url('images/Frame\ 37.png'); /* Path to your image */
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  height: 500px;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
}
.eight-section-heading {
    position: absolute; /* Allows for positioning at the bottom left */
    bottom: 10px; /* Adjust as needed */
    left: 40px; /* Adjust as needed */
    z-index: 1; /* Ensures the heading appears above the background image */

}

.small-heading {
  font-family: 'Montserrat', sans-serif; /* Use your desired font */
  font-size: 64px; /* Size for the first part of the heading */
  font-weight: 700; /* Adjust weight as needed */
  color: white;
}

.large-heading {
  font-family: 'Montserrat', sans-serif; /* Use your desired font */
  font-size: 96px; /* Size for the second part of the heading */
  font-weight: 700; /* Adjust weight as needed */
  color: white;
}

.check-list {
  position: absolute; /* Allows for positioning at the top right */
  top: 20px; /* Adjust as needed */
  right: 20px; /* Adjust as needed */
  z-index: 1; /* Ensures the check list appears above the background image */
  padding-top: 2rem;
}

.check-item {
  display: flex; /* Use flex for proper alignment */
  font-family: 'Montserrat', sans-serif; /* Use your desired font */
  align-items: center;
  font-weight: 700;
  margin-bottom: 10px; /* Spacing between items */
  font-size: 24px; /* Font size for list items */
}

.check-mark {
  color: white; /* Color for check mark */
  margin-right: 5px; /* Space between check mark and text */
}

/* CONTACT SECTION */

.contact-banner {
  background-image: url('images/contact banner.png'); /* Replace with your actual image path */
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  height: 450px;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
}

.contact-banner-content {
  position: relative; /* Allows absolute positioning of the inner elements if needed */
  z-index: 1; /* Ensures text is above the background image */
}

.contact-banner h2 {
  font-size: 28px;
  font-weight: 500;
  font-family: 'Gotham', sans-serif;
  line-height: 26.88px;
  letter-spacing: 22% !important;
  color: #EBEBE8;
}

.contact-banner h1 {
  font-size: 66px;
  font-weight: 700;
  font-family: 'Ubuntu', sans-serif;
  width: 50%;
  line-height: 72px;
}
.contact-banner .banner::before {
  background: rgba(0, 0, 0, 0.5); /* Optional dark overlay */
} 

.get-in-touch {
  padding: 60px 0; /* Adjusts padding */
  background-color: #FFFDF4; /* Light grey background for contrast */
}

.get-in-touch .section-heading {
  margin-bottom: 40px; /* Space below heading */
  color: #50768766;
  font-size: 60px;
  font-weight: 600;
  font-family: 'Gotham', sans-serif;

  
}

.map-container {
  margin-bottom: 20px; /* Space below map */
}

.address {
  font-size: 22px; /* Adjust size as needed */
  color: #384B70;
  padding-left: 25px;
  display: flex; 
  align-items: flex-start; 
}
.address .text {
  line-height: 1.5; /* Adjust line spacing for the text */
}
.email {
  display: flex; /* Align icon and text horizontally */
  align-items: center; /* Align the text and icon vertically */
}

.email .icon {
  margin-right: 8px; /* Add space between icon and text */
}

.email .text a {
  text-decoration: none; /* Optional: Remove underline from the email link */
  color: inherit; /* Optional: Use the default color of the text */
}
.address i {
    margin-right: 15px;
    padding-top: 5px;
}

.contact-info {
  display: flex; /* Use flexbox to center items */
  flex-direction: column; /* Align items vertically */
  justify-content: center; /* Center items vertically */
  align-items: flex-start; /* Align items to the left */
  height: 100%; /* Full height of the column */
  padding-left: 20px; /* Adds padding on the left */
  padding-bottom: 8rem;
}

.contact-info h3 {
  font-size: 24px; /* Adjust size as needed */
  margin-bottom: 20px; /* Space below heading */
}

.contact-info p {
  font-size: 18px; /* Adjust size as needed */
  color: #384B70; /* Bootstrap primary color */

}

.contact-info a {
  color: #384B70; /* Bootstrap primary color */
  text-decoration: none; /* Removes underline */
  font-size: 24px;
}

.contact-info a:hover {
  text-decoration: underline; /* Underline on hover */
}


/* Footer styles */
/* Footer styles */
.footer-section {
    background: linear-gradient(90deg, #384B70 0%, #507687 100%);
    padding: 60px 0; /* Padding for top and bottom */
    color: #ffffff;
}

.footer-logo img {
    max-width: 230px; /* Adjust the size of the logo */
}

ul.footer-contact-info {
    list-style: none;
    padding-top: 6rem;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
}

ul.footer-contact-info li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 22px;
}

ul.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.footer-contact-info i {
    width: 22px;
    display: block;
    padding: 7px 0 0 0;
    margin-right: 10px;
}

ul.footer-text-details {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul.footer-text-details li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

ul.footer-text-details li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 22px;
}

ul.footer-text-details li a:hover {
    color: #cccccc; /* Lighter color on hover */
    text-decoration: underline; /* Underline effect on hover */
}

ul.footer-text-details i {
    width: 22px;
    display: block;
    padding: 7px 0 0 0;
    margin-right: 10px;
    color: #ffffff; /* Icon color to match text */
}

.footer-text {
    font-family: Montserrat, sans-serif;
    font-size: 22px;
    font-weight: 500;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.footer-img-fluid {
    margin-top: 2rem;
}




















































@media (max-width: 1024px) {
  .second-section {
    padding: 2rem 2rem;
  }
  .section-heading {
    font-size: 21px;
  }
  .main-heading {
    font-size: 40px;
  }
  .section-paragraph {
    font-size: 18px;
  }
  .box-heading{
    font-size: 16px;
  }
  .box-text{
    font-size: 16px;
  }
  .white-box{
    padding: 2rem 3rem 2rem 3rem;

  }
  .info-section{
    padding: none;
  }
  .fifth-banner {
    height: 400px;
  }
  .fifth-banner-content h1{
    font-size: 45px;
  }
  .six-section {
    background: #FFFDF4;
    padding: 4rem 0rem;
}
.offer-block .offer-heading{
  font-size: 20px;
}
.offer-block .offer-text{
  font-size: 16px;
}
.seventh-section .seven-heading{
  font-size: 50px;
}
.sub-heading{
  font-size: 25px;
}
.small-heading {
  font-size: 56px;
}
.large-heading {
  font-size: 86px;
}
.check-item {
font-size: 21px;
}
}




@media (max-width: 900px) {
  .col-md-6.first-section{
    font-size: 45px;
  }
  .second-section {
    padding: 2rem 0rem;
  }
  .section-heading {
    font-size: 15px;
  }
  .main-heading{
    font-size: 30px;
    line-height: 44.51px;

  }
  .col-md-6.first-section{
    padding-right: 2rem;
  }
  .fifth-banner-content h1{
    font-size: 35px;
  }
  .section-paragraph {
    font-size: 16px;
    padding-top: 1rem;
  }
  .box-heading{
    font-size: 16px;
  }
  .box-text{
    font-size: 16px;
  }
  .info-section{
    padding: none;
  }
  .fifth-banner {
    height: 400px;
  }
  .fifth-banner-content h1{
    font-size: 45px;
  }
  .six-section {
    background: #FFFDF4;
    padding: 4rem 0rem;
}
.offer-block .offer-heading{
  font-size: 20px;
}
.offer-block .offer-text{
  font-size: 16px;
}
.seventh-section .seven-heading{
  font-size: 50px;
}
.sub-heading{
  font-size: 25px;
}
}





@media (max-width: 600px) {
  .header-section{
    padding: 10px;
  }
  .header-btn {
    padding: 10px 15px;
    font-size: 15px;
  }
  .banner {
    background-image: url('images/mobile\ banner-HERO\ BANNER.png'); /* Path to your image */
    height: 450px;
  }
  .banner-content h1{
    font-size: 40px;
  }
  .banner-content h2 {
    font-size: 20px;
    width: 60%;
  }
  .banner-content{
    padding-top: 8rem;
  }
  .col-md-6.first-section {
    padding: 1rem;
}
  .section-heading{
    text-align: center;
    font-size: 22px;
  }
  .main-heading{
    text-align: center;
    line-height: 46.51px;
    font-size: 35px;
  }
   .grey-section{
    padding: 30px 10px;
  }
  .white-box {
    margin-top: 2rem;
    text-align: center;
    padding: 2rem;
  } 
  .fourth-section{
    padding: 30px 0px;
  }
  .section-paragraph{
    padding-left: 1rem;
  }
  .learn-more-button{
    padding: 10px 30px;
    font-size: 16px;
  }
  .fifth-banner{
    background-image: url('images/VETERAN BANNER MOB.png '); /* Replace with your actual image path */
    height: 550px;
  }
  .fifth-banner-content{
    
  }
  .fifth-banner-content h1{
   font-size: 25px;
        width: 100%;
        text-align: center;
        margin-top: -7rem;
  }
  .custom-btn{
   ;
    margin-top: 15px;
    text-align: center;
            margin-left: 50px;
  }
  .six-section{
    padding: 30px 0px;
  }
  .six-heading{
    line-height: 44.51px;
    text-align: center;
    width: 100%;
    font-size: 36px;
  }
  .offer-block{
    padding: 0;
  }
  .seventh-section .seven-heading{
    text-align: center;
    font-size: 40px;
  }
  .right-button{
    text-align: center;
    padding-top: 1rem;
  }
  .sub-heading{
    padding-top: 20px;
    text-align: center;
  }
  .description-text{
    padding-top: 15px;
    text-align: center;

  }
  .justify-content-center {
    justify-content: center !important;
    padding: 1rem 2rem;
  }
  .service-box {
    padding-top: 2rem;
  }
  .eighth-section {
    background-image: url('images/mobile\ banner-pre\ footer.png'); /* Path to your image */
    height: 380px;
  }
  .eight-section-heading {
      display: none;
  }
  .small-heading {
    display: none;
  }
  .large-heading {
    display: none;
  }
  .eight-section-heading {
    position: absolute;
    bottom: 11px;
    z-index: 1;
    left: 0;  
    padding-left: 10px;
  }
  .small-heading{
    font-size: 35px;
  }
  .large-heading{
    font-size: 40px;
  }
  .check-list{
    display: none;

  }
  .contact-banner {
    background-image: url('images/mobile\ banner-contact.png  '); /* Replace with your actual image path */
    height: 350px;
  }
  .contact-banner-content{
    display: none;
  }
  .get-in-touch{
    padding: 30px 0;
  }
  .get-in-touch .section-heading{
    font-size: 35px;
    margin-bottom: 20px;
  }
  .address {
    display: flex; 
    align-items: flex-start; 
    padding-left: 0px;
}
.address .icon {
    margin-right: 15px; 
}
.address .text {
    line-height: 1.5; /* Adjust line spacing for the text */
}
i.fas.fa-map-marker-alt {
  margin-right: 13px;
  padding-top: 20px;
}
.email {
  display: flex; /* Align icon and text horizontally */
  align-items: center; /* Align the text and icon vertically */
}

.email .icon {
  margin-right: 8px; /* Add space between icon and text */
}

.email .text a {
  text-decoration: none; /* Optional: Remove underline from the email link */
  color: inherit; /* Optional: Use the default color of the text */
}
.contact-info{
  padding-left: 0px;
}
.contact-info a {
  font-size: 22px;
}
i.fas.fa-envelope {
  margin-right: 10px;
}
i.fas.fa-phone-alt {
  margin-right: 10px;
}
  
  .footer-contact-info p {
    padding-left: 20px;
  }
  
  .third-content{
    text-align: center;
  }
  
  
  .footer-contact-info {
    text-align: left; /* Align to the left on mobile */
}

.footer-contact-info p {
    justify-content: flex-start; /* Align text and icons to the left */
}

.footer-logo {
    text-align: center; /* Center the logo on mobile */
    margin-bottom: 20px; /* Space below logo */
}
.contact-info p {
    font-size: 14px;
    color: #384B70;
}
ul.footer-contact-info {
    list-style: none;
    padding-top: 2rem;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
}



}