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-size: 100%;
font: inherit;
vertical-align: baseline;
} article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
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;
}
* {
box-sizing: border-box;
} :root { --primary-color: #00a5a0;
--primary-color-light : #00e2c6;
--secondary-color: #3d3d3d; --text-size: 18px;
--text-height: 1.4;
--text-sm-size: 12px;
--h1-size: 30px; 
--h2-size: 22px;
--h3-size: 21px;
--navigation-size: 18px;
--tabs-size: 22px; --section-spacing: 60px; --sm: 576px;
--md: 768px;
--lg: 992px;
--xl: 1200px;
--xxl: 1400px;
}
@media (min-width: 992px) {
:root { --text-size: 21px;
--text-height: 1.4;
--text-sm-size: 12px;
--text-logo-size: 22px;
--h1-size: 46px;
--h2-size: 32px;
--h3-size: 21px;
--navigation-size: 18px;
--tabs-size: 32px; --section-spacing: 100px;
}
} body {
-webkit-font-smoothing: antialiased;
-moz-font-smoothing: antialiased;
-ms-font-smoothing: antialiased;
-o-font-smoothing: antialiased;
font-family: 'Lato', sans-serif;
font-weight: 400;
line-height: 1;
font-style: normal;
overflow-x: hidden;
background: linear-gradient(to bottom, #00e2c7, white, #00e2c7);
}
.container {
max-width: 880px;
} p {
color: var(--secondary-color);
font-size: var(--text-size);
line-height: var(--text-height);
}
h1 {
font-size: var(--h1-size);
}
h2 {
font-size: var(--h2-size);
}
h3 {
font-size: var(--h3-size);
}
h1,h2,h3,h4,h5,a {
color: var(--primary-color);
line-height: 1.2;
}
a {
text-decoration: none;
transition: all 0.5s ease;
}
a:hover {
opacity: 0.7;
}
p,h2,h3,h4,h5,h6,ul,ol {
margin-bottom: 20px;
}
div p:last-child,
div h2:last-child,
div h3:last-child,
div h4:last-child,
div h5:last-child,
div h6:last-child,
div ul:last-child,
div ol:last-child {
margin-bottom: 0;
} header {
position: fixed;
top: 0;
left: 0;
width: 100%;
background: rgba(255, 255, 255, 0.7);
}
header .header-content-wrapper {
justify-content: center;
align-items: center;
}
@media (min-width: 768px) {
header .header-content-wrapper {
justify-content: space-between;
}
}
header .navigation-wrapper {
display:  none;
}
@media (min-width: 768px) {
header .navigation-wrapper {
display:  flex;
}
}
.c-header__logo-text {
color: var(--primary-color);
font-size: var(--text-logo-size);
}
.main-logo {
width: 200px;
transition: all 0.5s ease;
}
.main-logo:hover {
opacity: 0.25;
} .c-header-nav li:not(:first-of-type) {
margin-left: 30px;
}
.c-header-nav a {
font-size: var(--navigation-size);	
} section {
padding-top: var(--section-spacing);
}
section .title-wrapper {
margin-bottom: 20px;
}
@media (min-width: 992px) {
section .title-wrapper {
flex: 0 0 120px;
flex-direction: row; 
padding-right: 20px;
margin-top: 6px;
margin-bottom: 0;
} 
}
section .section-outer-wrapper {
display:  flex;
flex-direction: column;
}
@media (min-width: 992px) {
section .section-outer-wrapper {
flex-direction: row; 
} 
}
section .section-heading {
margin-bottom: 40px;
} .spacer {
padding-top: 60px;
} .hero {
width: 100%;
min-height: 70vh;
background-size: cover!important;
background-position: center!important;
} 
.intro {
text-align: center;
} .services {
}
.services .services-tab-wrapper ul{
font-size: var(--tabs-size);
color: var(--primary-color);
display:  flex;
margin-bottom:  40px;
overflow-x:scroll;
-ms-overflow-style: none; scrollbar-width: none; }
.services .services-tab-wrapper ul::-webkit-scrollbar{
display: none;
}
.services .services-tab-wrapper li:not(:last-of-type)  {
margin-right: 40px;
}
.services .services-tab-wrapper li {
position: relative;
transition: all 0.5s ease;
padding-bottom:  10px;
cursor: pointer;
}
.services .services-tab-wrapper li:after {
content:  "";
width:  100%;
border-bottom: 2px solid var(--primary-color);
position: absolute;
bottom: 0;
left:  0;
opacity: 0;
transition: all 0.5s ease;
}
.services .services-tab-wrapper li:hover:after,
.services .services-tab-wrapper li.active:after {
opacity: 1;
}
.services .services-content-wrapper {
display: grid;
grid-template-areas: "area1 area2 area3";
}
.services .services-content {
visibility: hidden;
grid-area: area1;
transition: none;
}
.services .services-content.active {
display:  block;
visibility: visible;
} .about {
} .contact {
} form {
display:  flex;
padding: 10px;
flex-direction: column;
}
form .input-wrapper {
margin:  0 -20px;
display: flex;
flex-wrap: wrap;
}
@media (min-width: 768px) {
form .input-wrapper {
margin:  0 -10px;
}
}
form .input-wrapper > div {
padding:  10px;
}
form input {
max-width:  100%;
}
form .half-width {
width:  50%;
}
form .full-width {
width:  100%;
}
@media (max-width: 768px) {
form .wrapper {
width: 100%!important;
}
}
input[type="submit"] {
background: var(--primary-color-light);
color: white;
padding: 10px 50px;
border: none;
border-radius: 19px;
cursor: pointer;
font-weight: bold;
margin: 20px 0;
font-size: 16px;
}
input[type="submit"]:hover {
background: var(--primary-color);
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
opacity: 0.749;
border-radius: 8px;
background-color: #ffffff;
padding:  12px;
font-size: 16px;
letter-spacing: 0px;
color: #5e5e5e;
font-weight: 400;
border:  none;
width:  100%;
}
::placeholder {
font-size: 16px;
letter-spacing: 0px;
color: #5e5e5e;
font-weight: 400;
} footer {
} 
footer .copyright,
footer .tagline,
footer .brand {
font-size: var(--text-sm-size);	
color: white;
}
footer .brand {
margin-top: 10px;
}
footer .tagline {
position: relative;
top: 5px;
}
footer .footer-logo-wrapper-outer {
display:  flex;
align-items: center;
margin: 20px 0;
}
@media (max-width: 768px) {
footer .footer-logo-wrapper-outer {
justify-content: center;
}
}
footer .footer-logo-wrapper {
display:  flex;
align-items: center;
}
@media (max-width: 768px) {
footer .footer-logo-wrapper {
flex-direction: column;
}
}
footer .footer-logo-wrapper img {
transition: all 0.5s ease;
}
@media (min-width: 768px) {
footer .footer-logo-wrapper img {
margin-right:  40px;
}
}
footer .footer-logo-wrapper img:hover {
opacity: .25;
}
footer .icons-wrapper {
align-items: center;
justify-content: flex-end;
margin:  20px 0;
}
@media (max-width: 768px) {
footer .icons-wrapper {
justify-content: center;
}
}
footer .social-link {
border-radius:  50%;
}
footer .social-link img {
width: 30px;
}
footer .copyright,
footer .brand {
margin-top:  20px;
margin-bottom:  20px!important;
text-align: center;
}
footer .footer-end {
display: flex;
justify-content: space-between;
flex-direction: column;
}
@media (min-width: 768px) {
footer .copyright {
text-align: left;
}
footer .footer-end {
display: flex;
flex-direction: row;
margin-top:  100px;
align-items: center;
}
}