/*--- [ 1. Fonts Import ] ---*/
/*@import url("slider.css");
@import url("vertical.css");
@import url("http://fonts.googleapis.com/css?family=Montserrat:400");
@import url("http://fonts.googleapis.com/css?family=Inconsolata:400,700");
@import url("http://fonts.googleapis.com/css?family=Open+Sans:400italic,400,700");
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


:root {
  --primary: /*#08b8b5*/ #00c0a5;
  --secondary: /*#035b71*/ #0d5a6d;
  --bgcolor: #033148;
  --white: #ffffff;
  --black: #000000;
}

/*--- [ 2. General Styles ] ---*/
html {
	overflow-y: scroll;
	overflow-x: hidden;
	-ms-overflow-style: scrollbar;
}

body {
	background: #fff;
	font: 400 18px/1.4 "Montserrat", sans-serif;
	color: #222;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
}

iframe {
	border: 0;
}

.leftauto {
	right: 0 !important;
	left: auto !important;
}

/* Selection */

::-moz-selection {
	background: #000;
	color: #fff;
}

::-webkit-selection{
	background: #000;
	color: #fff;
}

::selection{
	background: #000;
	color: #fff;
}

/* Transition elsements */

.form-control,
.navbar-custom,
.navbar-custom .navbar-brand {
	-webkit-transition: all 0.4s ease-in-out 0s;
	   -moz-transition: all 0.4s ease-in-out 0s;
		-ms-transition: all 0.4s ease-in-out 0s;
		 -o-transition: all 0.4s ease-in-out 0s;
			transition: all 0.4s ease-in-out 0s;
}

a,
.btn,
.navbar a {
	-webkit-transition: all 0.125s ease-in-out 0s;
	   -moz-transition: all 0.125s ease-in-out 0s;
		-ms-transition: all 0.125s ease-in-out 0s;
		 -o-transition: all 0.125s ease-in-out 0s;
			transition: all 0.125s ease-in-out 0s;
}

.team-detail,
.team-image:after,
.work-caption,
.work-image > img,
.work-image:after {
	-webkit-transition: all 0.3s ease-in-out 0s;
	   -moz-transition: all 0.3s ease-in-out 0s;
		-ms-transition: all 0.3s ease-in-out 0s;
		 -o-transition: all 0.3s ease-in-out 0s;
			transition: all 0.3s ease-in-out 0s;
}

/* Reset border-radius */

.well,
.label,
.alert,
.progress,
.form-control,
.modal-content,
.panel-heading,
.panel-group .panel,
.nav-tabs > li > a,
.nav-pills > li > a {
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
		 -o-border-radius: 2px;
			border-radius: 2px;
}

/* Reset box-shadow */

.btn,
.well,
.panel,
.progress,
.progress-bar,
.form-control,
.form-control:hover,
.form-control:focus,
.navbar-custom .dropdown-menu {
	-webkit-box-shadow: none;
			box-shadow: none;
}

/*--- [ 3. Form styles ] ---*/
.form-control {
	font-family: "Inconsolata", sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 11px;
	height: 33px;
	border: 1px solid #b2b2b2;
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
	        border-radius: 2px;
}

.form-control:focus {
	border-color: #CACACA;
}

/*--- [ 9. Typography ] ---*/
a {
	color: #000;
}

a:hover, a:focus {
	text-decoration: none;
	color: var(--secondary);
	outline: 0;
}


h1, h2, h3, h4, h5, h6 {
	line-height: 1.2;
	font-weight: 600;
	letter-spacing: 0.6px;
}

b, strong {font-weight: 600;}

h1 {
	font-size: 48px;
}
h2 {
	font-size: 40px;
}
h3 {
	font-size: 36px;
}
h4 {
	font-size: 30px;
}
h5 {
	font-size: 26px;
}
h6 {
	font-size: 24px;
}

p, ol, ul, blockquote {
	margin: 0 0 20px;
}

blockquote {
	border: 0;
	font-style: italic;
	font-size: 18px;
	padding: 0;
}


/* --Preloader */

.page-loader {
	position: fixed;
	background: #fff;
	bottom: 0;
	right: 0;
	left: 0;
	top: 0;
	z-index: 9998;
}

.loader {
	position: absolute;
	border-left: 2px solid var(--primary);
	border-top: 2px solid rgba(245, 245, 245, 0.8);
	border-right: 2px solid rgba(245, 245, 245, 0.8);
	border-bottom: 2px solid rgba(245, 245, 245, 0.8);
	height: 46px;
	width: 46px;
	left: 50%;
	top: 50%;
	margin: -23px 0 0 -23px;
	text-indent: -9999em;
	font-size: 10px;
	z-index: 9999;
	-webkit-animation: load 0.8s infinite linear;
	   -moz-animation: load 0.8s infinite linear;
		 ms-animation: load 0.8s infinite linear;
		  o-animation: load 0.8s infinite linear;
			animation: load 0.8s infinite linear;
}

.loader,
.loader:after {
	border-radius: 50%;
	width: 46px;
	height: 46px;
}

@-webkit-keyframes load {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes load {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

body {
	position: relative;
}




a, a:hover {
	transition: 0.3s;
}

.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
	width: 1440px;
	max-width: 100%;
}
.navbar-brand img {
    max-height: 50px;
}
.navbar-expand-lg .navbar-nav {
	align-items: center;
}
.navbar-expand-lg .navbar-nav .nav-link {
	padding: 5px 20px;
}
.navbar-light .navbar-nav .nav-link {
	color: var(--secondary);
}
.navbar-light .navbar-nav .show>.nav-link, .navbar-light .navbar-nav .nav-link.active, 
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
	color: var(--primary);
}

header .btn-head {
    background: var(--primary);
    color: var(--white) !important;
    border-radius: .25rem !important;
    padding: 10px 20px !important;
    margin-left: 15px;
}
header .btn-head:hover {
    background: var(--secondary);
}
/* header {
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  transition: 0.3s;
} */
header {
  padding: 10px 0;
  position: fixed;
  top: 0;
  z-index: 999;
  transition: 0.3s;
  width: 100%;
}
header.stick {
  padding: 5px 0; 
  transition: 0.3s;
}
header.stick .navbar-brand img {
    max-height: 40px;
    transition: 0.3s;
}
.navbar-brand img {
    transition: 0.3s;
}
header nav.navbar {
    padding: 0;
}

.hero-section {
    /*background-color: rgb(8 184 181 / 28%);*/
    padding: 150px 0;
    position: relative;
}
.hero-section {
	    background-image: url(../../assets/images/banner-img-new1.jpg);
	    background-position: top center;
	    background-size: cover;
	}
.hero-section::before {
    background-color: #033148;
    opacity: 0.7;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
}
.hero-section .container {
	position: relative;
	z-index: 2;
}
/*.trust-points {
    padding-left: 8.33333333%;
}*/
.title-size-34 {
  font-size: 34px;
}

.am-pm-toggle {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 6px;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.am-pm-toggle input {
    display: none;
}

.am-pm-toggle label {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    cursor: pointer;
    background: #fff;
    transition: 0.3s;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}



.am-pm-toggle input:checked + label {
    background: var(--primary); /* your main color */
    color: #fff;
}


.hero-section h1, .hero-section p, .hero-section li {
    color: var(--white);
}
.btn.btn-primary {
    padding: 18px 30px;
    font-size: 18px;
    line-height: 1;
    color: var(--white);
    background-color: var(--primary);
    border-color: var(--primary);
    /*text-transform: uppercase;*/
}
.btn.btn-primary:hover {
    color: var(--white);
    background-color: var(--secondary);
    border-color: var(--secondary);
}
.btn.btn-border {
	color: var(--white);
    background-color: transparent;
    border-color: var(--white);
}
.btn.btn-border:hover {
	color: var(--secondary);
    background-color: var(--white);
    border-color: var(--white);
}

ul {
    margin: 0;
    padding: 0 0 20px 20px;
    list-style-type: disc;
}

ul:last-child, p:last-child  {
    padding-bottom: 0px;
}

.hero-section .btn.btn-primary {
    margin-bottom: 30px;
}

.trust-section h2 {
	margin-bottom: 30px;
}
.trust-section h2 span {
	color: var(--primary);
}

.trust-logo {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.box-logo {
    box-shadow: 0 0px 60px -6px rgba(0,0,0,0.1);
    padding: 30px;
    width: 48%;
    margin-bottom: 4%;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
}
.box-logo img, .box-logo svg {
    max-height: 80px;
    max-width: 160px;
    margin: 0 auto;
}

.value-item {
  color: var(--white);
}

.value-item i {
  color: var(--white);
  font-size: 20px;
}


.trust-item {
  font-weight: 600;
  width: 100%;
}

.trust-item i {
  color: var(--primary);
  font-size: 28px;
}


.services-section {
  background-image: url(../../assets/images/what-we-help-with.jpg);
	background-size: cover;
	background-position: center;
	position: relative;
}
.services-section::after {
  background-color: var(--secondary);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.9;
}
.services-section .container {
	position: relative;
	z-index: 2;
}
.service-card {
    background: var(--white);
    border-radius: 8px;
    transition: 0.3s ease;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: column;
}

.service-card h5 {
  color: var(--secondary);
  margin: 25px 0 15px;
}

.service-card p {
  color: #555;
}
.service-card li {
  color: #555;
  margin-bottom: 15px;
}
.service-card li:last-child {
	margin-bottom: 0;
}

.icon-box {
  width: 58px;
  height: 58px;
  background: var(--primary);
  color: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}



.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 15px;
  font-weight: 600;
  color: var(--secondary);
  text-decoration: none;
  transition: 0.3s ease;
}

.read-more-btn i {
  
  transition: 0.3s ease;
}

.read-more-btn:hover {
  color: var(--primary);
}

.read-more-btn:hover i {
  transform: translateX(5px);
}

.section-padding {
	padding: 100px 0;
}

.why-choose {
  background: var(--white);

}

.why-title {
  color: var(--secondary);
}

.why-subtitle {
  color: #666;
}

.why-box {
  padding: 20px 10px;
}
.why-box .why-icon {
	transition: 0.3s;
	transform: translateY(-0px);
}
.why-box:hover .why-icon {
	transition: 0.3s;
	transform: translateY(-8px);
}
.why-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 3px solid var(--primary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  position: relative;
}
.why-box a {
	text-decoration: none;
	color: inherit;
}
.why-box a:hover {
	color: var(--primary)
}
.why-icon::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed rgba(8, 184, 181, 0.35);
}

.why-box h5 {
  color: var(--secondary);
  margin-bottom: 0;
}

.brand-story-alt {
	position: relative;
	background: linear-gradient(
    135deg,
    #033148 0%,
    #035b71 55%,
    #08b8b5 120%
  );
}

.brand-story-alt .row {
    z-index: 2;
    position: relative;
}
.brand-alt-title {
  color: var(--white);
  margin-bottom: 20px;
}

.brand-alt-text {
  color: #e6f5f4;
  margin-bottom: 15px;
}

.brand-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-box h3 {
  color: var(--white);
  margin-bottom: 5px;
}

.stat-box p {
  color: #d7f3f1;
}

.lead-image-section {
  background: #f3f3f3;
}

.lead-image-box {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  /*box-shadow: 0 30px 60px rgba(0,0,0,0.25);*/
}

.lead-image {
  background: url("../../assets/images/banner-img.jpg")
    center / cover no-repeat;
  position: relative;
}

.lead-image-overlay {
  background: rgba(3, 49, 72, 0.85);
  color: var(--white);
  height: 100%;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 300px;
}

.lead-image-overlay h2 {
  font-weight: 700;
  margin-bottom: 15px;
}

.lead-image-overlay p {
  opacity: 0.9;
}

/* RIGHT FORM */
.lead-form-wrapper {
  padding: 50px;
}

.lead-form .form-control {
    border-radius: 8px;
    padding: 16px 20px;
    font-size: 18px;
    height: auto;
    letter-spacing: 0;
    text-transform: unset;
    font-family: "Montserrat", sans-serif;
    color: #000;
}
.lead-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: none;
}

.lead-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 20px 20px;
  width: 100%;
  border-radius: 8px;
  font-weight: 700;
  transition: 0.3s ease;
}

.lead-btn:hover {
  background: var(--secondary);
}

.site-footer {
  background: #033148;
  color: #ffffff;
  padding: 60px 0 30px;
}

.footer-title {
  margin-bottom: 15px;
  color: var(--white);
  font-size: 20px;
}

.footer-text {
  color: #cfe6ea;
  font-size: 16px;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px; 
  font-size: 16px;
  color: #cfe6ea;
}

.footer-links a,
.footer-contact a {
  color: #cfe6ea;
  text-decoration: none;
  font-size: 16px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #08b8b5;
}

.footer-contact i {
  color: #08b8b5;
}

.footer-social {
  margin-top: 30px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: #035b71;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-right: 10px;
  transition: 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: #08b8b5;
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  font-size: 14px;
  color: #cfe6ea;
  flex-wrap: wrap;
}
.footer-logos {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.footer-logos img {
    max-width: 100%;
    width: 100px;
   /* filter: contrast(0.5);*/
}
/*img.logo-afca {
    filter: contrast(0.1);
}*/
.footer-bottom a {
	color: var(--primary);
	text-decoration: none;
}
.footer-bottom a:hover {
	color: var(--white);
}
.footer-logo img {
	width: 300px;
	margin-bottom: 30px;
}

.about-sam {
    background-color: #f8f9fb;
}

.about-sam .card {
    border-radius: 16px;
    background: #ffffff;
}

.about-sam h2 {
    color: var(--primary); /* brand primary */
    letter-spacing: 1px;
}

.about-sam p {
    color: #555;
}

/* Profile Image */
.about-sam img {
    border: 6px solid #f1f1f1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.about-section {
	padding: 150px 0; 
	background-size: cover;
	background-position: center;
	position: relative;
}
.about-section::before {
    background-color: var(--secondary);
    opacity: 0.9;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
}
.about-section h1 {
	color: var(--white);
	position: relative;
	z-index: 1;
}
section {
  scroll-margin-top: 71px;
}
.faq-section button.accordion-button {
    font-size: inherit;
}
.faq-section h2 {
	color: var(--secondary);
}
.faq-section .accordion-button:not(.collapsed) {
    color: var(--primary);
    background-color: transparent;
    box-shadow: none;
}
.faq-section .accordion-button:focus {
    box-shadow: none;
}
.faq-section .accordion-button:not(.collapsed) {
        box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.common-content h2, .common-content h3, .common-content h4, .common-content h5, .common-content h6 {
	color: var(--primary);
	margin-bottom: 20px;
	margin-top: 40px;
}
.common-content p {
	margin-bottom: 20px;
	color: #666;
}
.common-content li {
  color: #666;
}
.common-content a {
	color: var(--primary);
	text-decoration: none;
}
.common-content a:hover {
	color: var(--secondary);
}


/* Custom checkbox container spacing */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

/* Checkbox base */
.form-check-input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  border: 2px solid var(--primary);
  background-color: color: var(--white);
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
  background-position: 0 1px;
}

/* Checked state */
.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

/* Checkmark color (Bootstrap uses SVG) */
.form-check-input:checked[type="checkbox"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='white' d='M13.485 1.929a.75.75 0 0 1 1.06 1.06l-8.25 8.25a.75.75 0 0 1-1.06 0L1.454 7.454a.75.75 0 1 1 1.06-1.06L5.5 9.379l7.985-7.45z'/%3e%3c/svg%3e");
}

/* Focus state */
.form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 192, 165, 0.25);
  border-color: var(--primary);
}

label.form-check-label {
  width: calc(100% - 30px); 
}
label.form-check-label a {
    text-decoration: none;
}
label.form-check-label a:hover {
    color: var(--secondary);
}

/* Links inside label */
.form-check-label a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: underline;
}

.form-check-label a:hover {
  color: var(--primary);
}





/*--- [ Responsive Media Querries ] ---*/

@media (max-width: 1600px) {
	/*.hero-section {
		background-size: auto 100%;
	}*/
}



@media (max-width: 1440px) {
	.hero-section {
	    padding: 100px 0;
	}
	
	.section-padding {
		padding: 80px 0;
	}

	h1 {
		font-size: 44px;
	}
	h2 {
		font-size: 36px;
	}
	h3 {
		font-size: 32px;
	}
	h4 {
		font-size: 28px;
	}

	.why-box h5 {
		font-size: 22px;
	}
  .title-size-34 {
    font-size: 30px;
  }
}


@media (max-width: 1199px) {
	.hero-section {
	    padding: 80px 0;
	}
	body {
	    font: 400 16px/1.4 "Montserrat", sans-serif;
	}
	blockquote {
		font-size: 16px;
	}
	.section-padding {
		padding: 70px 0;
	}

	h1 {
		font-size: 40px;
	}
	h2 {
		font-size: 33px;
	}
	h3 {
		font-size: 30px;
	}

	.why-icon {
	    width: 70px;
	    height: 70px;
	    border: 2px solid var(--primary);
	    font-size: 26px;
	}
	.why-box h5 {
	    font-size: 20px;
	}
	.lead-form-wrapper {
	    padding: 30px;
	}
	.lead-image-overlay {
		padding: 30px;
	}
	.btn.btn-primary {
		padding: 14px 30px;
		font-size: 16px;
	}
	.trust-item i {
		font-size: 24px;
	}
	.lead-form .form-control {
		font-size: 16px;
	}
	.lead-btn {
		padding: 15px 20px;
	}
	.lead-form .form-control {
		padding: 12px 20px;
	}
}


@media (max-width: 991px) {
	.hero-section {
	    padding: 60px 0;
	}
	
	
	.section-padding {
		padding: 60px 0;
	}

	h1 {
		font-size: 36px;
	}
	h2 {
		font-size: 32px;
	}
	h3 {
		font-size: 28px;
	}
	h4 {
		font-size: 26px;
	}
	h5 {
		font-size: 24px;
	}
	h6 {
		font-size: 22px;
	}

	header .btn-head {
	    margin-left: 0px;
	    margin-bottom: 15px;
	    margin-top: 10px;
	}
	.box-logo img, .box-logo svg {
	    max-height: 80px;
	    max-width: 160px;
	}
	.trust-item i {
		font-size: 22px;
	}
	.icon-box {
		width: 50px;
    	height: 50px;
    	font-size: 20px;
	}
	.read-more-btn {
		margin-top: 10px;
	}
	.footer-logo img {
	    width: 250px;
	}
	.lead-btn {
		padding: 14px 20px;
	}
	header {
	    padding: 5px 0;
	}
	.navbar-light .navbar-toggler {
	    border-color: transparent;
	}
	.navbar-toggler:focus {
	    box-shadow: none;
	}
	ul.navbar-nav.ms-auto.mb-2.mb-lg-0 {
	    margin: 15px 0 0 0 !important;
	    border-top: 1px solid #e1e1e1;
	    padding-top: 10px;
	}
	.about-sam .card.p-5 {
	    padding: 40px 20px !important;
	}
	

}


@media(max-width: 767px) {
	.section-padding {
		padding: 60px 0;
	}
	
	body {
	    font: 400 15px/1.4 "Montserrat", sans-serif;
	}
	blockquote {
		font-size: 15px;
	}

	.btn.btn-primary {
	    font-size: 15px;
	}
	.navbar-brand img {
	    max-height: 36px;
	}
	
	header.stick .navbar-brand img {
	    max-height: 30px;
	}

	h1 {
		font-size: 34px;
	}
	h2 {
		font-size: 30px;
	}
	h3 {
		font-size: 26px;
	}
	h4 {
		font-size: 24px;
	}
	h5 {
		font-size: 22px;
	}
	h6 {
		font-size: 20px;
	}

  .trust-section h2 {
    text-align: center;
  }
	.trust-points {
	    margin-bottom: 30px;
	}
	.hero-section .col-xl-12 {
	    text-align: center;
	}
	.value-item {
		justify-content: center;
	}
	.flex-column {
	    flex-direction: row !important;
	    justify-content: center;
	    flex-wrap: wrap;
	}
	.trust-section .col-xl-6.col-md-6 {
	    text-align: center;
	}
	.trust-points {
		justify-content: center;
	}
	.trust-item {
	    width: auto;
	} 
	.brand-stats {
	    row-gap: 10px;
	}
	.lead-image-overlay {
	    text-align: center;
	}
	.site-footer {
		text-align: center;
	}
	.footer-social {
		margin-bottom: 20px;
	}
	.footer-logo img {
	    width: 250px;
	}
	.about-sam .col-xl-8.col-lg-8.col-md-8 {
	    text-align: center;
	}
	.hero-section {
		text-align: center;
	}
	.footer-bottom p {
		width: 100%;
	}
  /*.trust-points {
    padding-left: 0%;
  }*/
}

@media(max-width: 480px) {
	.box-logo {
		width: 100%;	
	}
}