/*============== RESET =============== */

*, *::before, *::after {
    box-sizing: border-box;
}  

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

/* Base font size for the page */
body {
    font-size: 16px; /* This is the base size, equivalent to 1em */
    line-height: 1.5;

    font-family: 'Roboto Slab', serif;
    font-optical-sizing: auto;
    font-style: normal;
}

/* Base font size for the page */
body {
    font-size: 16px; /* This is the base size, equivalent to 1em */
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;

    line-height: 1.2;
    margin-top: 1.5em; /* Space above headings */
    margin-bottom: 0.5em; /* Space below headings */
}

/* Headings with golden ratio font sizes using em units */
h1 {
    font-size: 2.986rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.488rem;
    line-height: 1.3;
}

h3 {
    font-size: 2.074rem;
    line-height: 1.2;
}

h4 {
    font-size: 1.728rem;
    line-height: 1.5;
}

h5 {
    font-size: 1.44rem;
    line-height: 1.6;
}

h6 {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-top: 0.5em; /* Space above paragraphs */
    margin-bottom: 1.5em; /* Space below paragraphs */
}

/* Paragraphs */
p {
    font-size: 1em; /* 16px */
    line-height: 1.5;
}

/* Small text */
small {
    font-size: 0.833rem;
    line-height: 1.4;
}



/*============== END RESET =============== */


/*============== HEADER =============== */

header {
    position: relative;
    background: rgb(32,76,85);
    background: linear-gradient(153deg, rgba(32,76,85,1) 0%, rgba(32,76,85,1) 43%, rgba(42,132,151,1) 100%);
    background-position: right; /* Center the background image */
    background-repeat: no-repeat;
    background-size: contain; /* Ensure the image scales properly */
    color: #fff;
    padding: 50px;
    display: flex;
    align-items: left;
    height: 600px;
    overflow: hidden;
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('camargo-removebg-preview.png') center bottom/contain no-repeat;
    opacity: 0.3; /* Set the opacity of the background image */
    z-index: 0; /* Ensure the pseudo-element is behind the content */
}

header .content {
    position: relative;
    z-index: 1; /* Ensure the content is above the pseudo-element */
    max-width: 600px; /* Maximum width of the content */
}

header div {
    max-width: 565px;
}

header h1 {
    font-weight: 900;
    margin: 16px 8px;
}


header p {
    /* background: #F44336; */
    padding: 8px;
}

.link {
    color: white;
    background: #3db6a1;
    padding: 8px;
    text-decoration: none;
    display: block;
    width: 200px;
    text-align: center;
    margin-top: 8px;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #fff;
    color: #2a8497;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 20px;
}

.header-img-section img{
    width: 300px;
    z-index: -1;
}

/*============== END HEADER =============== */

.strong {
    font-weight: 900;
}

section {
    padding: 5px 50px;
    max-width: 960px;
    margin: 0 auto;
    font-size: 16px;
}

section p {
    margin: 0;
}

h2 {
    color: #2a8497;
}


.free-section {
    background: black;
    color: white;
    padding: 48px;
    background-image: url('axiom-pattern.png');
    margin: 32px 0px;
    /* overflow: hidden; */
    position: relative;
}

.free-section h3 {
    font-size: 1.5em;
    margin: 0;
    padding: 8px 0;
}

/* .free-section::after {
    content: '';
    width: 150px;
    height: 200px;
    position: absolute;
    top: -50px;
    right: -56px;
    background-color: #0d3f4a;
    border-top: 46px solid #2a8497;
    border-right: 50px solid #2a8497;
} */

#why-us > h2 {
    margin: 28px 0 !important;
}


.socials {
    list-style: none;
    margin: 0;
    padding: 0;
}

.socials li {
    margin: 20px 5px;
}

.socials a {
    text-decoration: none;
    color: black;
    transition: all 0.3s ease-in-out;
}

.socials a:hover { 
    color: #2a8497;
}

.services-container {
    display: flex;
}

.services-container .service {
    border: 1px solid black;
    margin: 8px;
    padding: 8px;
    flex-grow: 1;
}


footer {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 12px 0;
}



@media only screen and (max-width: 600px) {
    body {
      font-size: 14px; /* Adjust the font size for smaller devices */
    }
  }