@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@200;300;400;500;600;700;800;900&display=swap');

{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Specific font weights */
.inter-100 {
    font-family: "Inter", sans-serif;
    font-weight: 100;
}

.inter-150 {
    font-family: "Inter", sans-serif;
    font-weight: 150;
}

.inter-200 {
    font-family: "Inter", sans-serif;
    font-weight: 200;
}

.inter-300 {
    font-family: "Inter", sans-serif;
    font-weight: 300;
}

.inter-400 {
    font-family: "Inter", sans-serif;
    font-weight: 400;
}
/* General styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    height: 100%;
    /*overflow-x: hidden;*/
    overflow-x: clip;
 
 
}

.greenbody {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    height: 100%;
    /*overflow-x: hidden;*/
    overflow-x: clip;
    background-color: #012B31;
 
}

.nav-menu {
    display: none;
    flex-direction: column;
    background-color: rgba(0, 43, 50, 0.95); 
  /*  background-color: rgba(0, 0, 0, 0.8); */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: flex-start;
    z-index: 1001;
    transition: .5s ease;
    margin: 0; /* Ensure there is no margin */
    padding: 0; /* Ensure there is no padding */
    
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    position: fixed; /* Keep the header fixed at the top */
    top: 0;
    width: calc(100% - 40px); /* Adjust width to account for padding */
    z-index: 1000; /* Ensure it is on top of other elements */
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease; /* Include transition for backdrop-filter */
    background-color: transparent; /* Start with transparent background */

}

header.scrolled {

    backdrop-filter: blur(60px); /* Apply blur effect */
    -webkit-backdrop-filter: blur(10px); /* For Safari */
    
}



.nav-menu.active .logo {
    display: block; /* Show logo when nav menu is active */
}

.logo {
    z-index: 1003;
}

.logo img {
    width: 150px;
    z-index: 2004;
}

.logo2 img {
    width: 150px;
    z-index: 2004;
    position: fixed; /* Use fixed position to keep it in place */
    top: 20px; /* Adjust top position to avoid gaps */
    left: 20px;
    z-index: 1; /* Ensure it's above the nav menu */
}

header.scrolled .normal-nav li a {
    color: black;
}

header.scrolled.normal-nav li a {
    text-decoration: none;
    color: #55E2C9;
    font-weight: 300;
}

header.scrolled .hamburger span {
    background-color: #55E2C9;
}

/* This is the navigation css*/
.nav-menu.active {
    display: flex;
}

.nav-menu li {
    list-style: none;
    margin: 20px 0;
    padding-left: 0px;
    font-family: "Inter", sans-serif;
    font-weight: 300;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-size: 30px;
}

.normal-nav {
    display: flex;
}


.normal-nav li {
    list-style: none;
    margin: 0 3px;
    font-family: "Inter", sans-serif;
    font-weight: 900;
}


.normal-nav li a {
    text-decoration: none;

}


header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav ul li {
    display: inline;
}

header nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 300;
}


header nav ul li a:hover {
    text-decoration: none;
    color: #55E2C9;
    font-weight: 300;
}


header nav ul li a.cta {
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    background-color: #55E2C9;
    color: #000000;
    border: 1px solid #55E2C9;
    transition: background-color 0.3s, color 0.3s, border 0.3s; /* Add transition for smooth effect */
    font-size: 1em;
    font-weight: 300;
}

header nav ul li a.cta:hover {
    background-color: #002B32; /* Change background color on hover */
    color: #ffffff; /* Change text color on hover */
    border: 1px solid #55E2C9; /* Change border color on hover */
}

/*subscribe cta */
header nav ul li a.subscribe-cta {
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    background-color: transparent;
    color: #000000;
    border: 1px solid #55E2C9;
    transition: background-color 0.3s, color 0.3s, border 0.3s; /* Add transition for smooth effect */
    font-size: 1em;
    font-weight: 300;
}

/*subscribe cta */
header nav ul li a.subscribe-cta-white {
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #55E2C9;
    transition: background-color 0.3s, color 0.3s, border 0.3s; /* Add transition for smooth effect */
    font-size: 1em;
    font-weight: 300;
}



header nav ul li a.subscribe-cta-white:hover {
    background-color: #002B32; /* Change background color on hover */
    color: #ffffff; /* Change text color on hover */
    border: 1px solid #55E2C9; /* Change border color on hover */
}

header nav ul li a.subscribe-cta:hover {
    background-color: #002B32; /* Change background color on hover */
    color: #ffffff; /* Change text color on hover */
    border: 1px solid #55E2C9; /* Change border color on hover */
}

.nav-menu.active .logo {
    display: block; /* Ensure the logo is displayed */
    position: fixed; /* Fix it in place */
    top: 20px; /* Adjust the top position as needed */
    left: 20px; /* Adjust the left position as needed */
    z-index: 1003; /* Ensure it's above the nav menu */
}


.main-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
}
#background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1; /* Ensures the video is behind other content */
    filter: brightness(80%); /* Adjust this value to make the video darker or lighter */

}

.video-control {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 2; /* Ensures the control is above the video */
}

.main-content {
    padding: 60px 60px;
    text-align: left;
    padding: 20px;
}

.main-content h1 {
    font-size: 7vw; /* Use viewport width for responsive sizing */
    margin: 0;
    line-height: .8;
    color: ffffff;
    font-family: 'Inter', serif;
    font-weight: 400;
  
}


.main-content h1 br {
    content: '';
    display: block;
    margin-bottom: 40px;
}

.intro-text {
    padding: 20px 20px;
    background-color: #F7F9FC;
    /* text-align: center; */
    padding-left: 60px;
    
}

.intro-text p {
    font-size: 2.0em;
    font-family: 'Inter', serif;
    font-weight: 300;
    line-height: 1.5;
    color: #012B31;
    
}




.intro-text-cta {
    padding: 60px 60px;
    background-color: transparent;
    color: black;
    /* text-align: center; */
    padding-left: 60px;
}

.intro-text-cta p {
    font-size: 2.0em;
    font-family: 'Inter', serif;
    font-weight: 300;
    margin-bottom: 60px;
    color: #ffffff;
    
}



.intro-text-cta h1 br {
    content: '';
    display: block;
    margin-top: 40px;
    
}


.intro-page-title  {
    padding: 60px 90px;
    background-color: #ffffff;
    color: #012B31;
    padding-left: 60px;
    font-size: 4.0em;
    margin-top: 100px;
    width: 80%;

}

.intro-page-title h1 {
    font-size: 7.0vw;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #012B31;


    

}


.intro-page-title-cta  {
    padding: 60px 90px;
    background-color: transparent;
    color: #012B31;
    padding-left: 60px;
    font-size: 4.0em;
    margin-top: 100px;
    width: 80%;

}

.intro-page-title-cta h1 {
    font-size: 2.0em;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #ffffff;

}

.page-section-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
    overflow: hidden; /* Hides the overflow content */
    height: 350px; /* Set the desired height to show only part of the image */
    border-radius: 15px; /* Adds rounded corners to the container */
}

.page-section-image img {
    width: 95%; /* Makes the image take up the full width of the container */
    height: 100%; /* Ensures the image height matches the container's height */
    object-fit: cover; /* Scales the image to cover the container */
    object-position: top; /* Aligns the image to show the top part */
    border-radius: 15px; /* Ensures the image respects the container's rounded corners */
}

/* Button Styles */
.about-us-btn {
    background-color: transparent;
    color: #012B31;
    border: 1px solid #55E2C9;
    padding: 20px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    font-family: 'Inter', sans-serif;
    font-size: 1em;

}

/* Button Styles */
.start-btn {
    background-color: transparent;
    color: #012B31;
    border: 1px solid #55E2C9;
    padding: 20px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    font-family: 'Inter', sans-serif;
    font-size: 0.5em;
    margin-top: 25px;
    margin-bottom: 25px;
}

.start-btn:hover {
    background-color: #55E2C9;
    color: #002B32;
}

.start-btnn:active {
    background-color: #55E2C9;
    color: #002B32;
}


.schedule-btn {
    background-color: #55E2C9;
    color: #000000;
    border: 1px solid #ffffff;
    padding: 20px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    font-family: 'Inter', sans-serif;
    font-size: 0.8em;
 
}

.schedule-btn:hover {
    background-color: #002B32;
    color: #ffffff;
}

.start-btnn:active {
    background-color: #55E2C9;
    color: #002B32;
}


.contact-btn {
    background-color: transparent;
    color: #012B31;
    border: 1px solid #55E2C9;
    padding: 20px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    font-family: 'Inter', sans-serif;
    font-size: 1em;
    margin-top: 25px;
}

.contact-btn:hover {
    background-color: #55E2C9;
    color: #002B32;
}

.submit-btn {
    color: #012B31;
    border: 21px solid #55E2C9;
    padding: 20px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    font-family: 'Inter', sans-serif;
    font-size: 1em;
    margin-top: 25px;
    margin-bottom: 25px;

}


.start-btnn:active {
    background-color: #55E2C9;
    color: #002B32;
}

/* Button Styles */
.cta-btn {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #55E2C9;
    padding: 20px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    font-family: 'Inter', sans-serif;
    font-size: 1em;

}

.about-us-btn:hover, .services-btn:hover, .cta-btn:hover {
    background-color: #55E2C9;
    color: #002B32;
}

.about-us-btn:active, .services-btn:active, .cta-btn:active {
    background-color: #55E2C9;
    color: #002B32;
}


.page-link {
    color: black;
    text-decoration: none; /* Optional: Removes underline */
}

.page-link:hover {
    color: #55E2C9;
}


.starta-link {
    color: white;
    text-decoration: none; /* Optional: Removes underline */
}

.starta-link:hover {
    color: #55E2C9;
}

.services-section {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
}



.services-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    align-items: start;
 
}


.page-section {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;

}

.page-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    align-items: start;
}


.left-column {
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: start;
  
}


.left-column h2 {
    color: #012B31;
    font-family: 'Inter', sans-serif;
    font-weight: 300;

}

.left-column-cta {
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: start;
  
}


.left-column-cta h2 {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 300;

}


/*right column home*/
.right-column-home {
    display: grid;
    grid-template-columns: 1fr; /* Single column to make the items stretch */
    gap: 0px; /* Adjust gap as needed */
    width: 100%; /* Ensure the right column takes full width */
    box-sizing: border-box; /* Include padding in the total width */
    position: relative;
    margin-top: 0px;
    padding-top: 0px;
  
}

.right-column-home ul {
    list-style-type: none; /* Remove default bullet points */
    padding-left: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
    width: 100%; /* Ensure the ul takes full width */
    padding-top: 0px;
    

}

.right-column-home li {
    background: #ffffff;
    margin-left: 10px;
    border-radius: 0px;
    width: 80%; /* Make the list items take full width of the column */
    box-sizing: border-box; /* Ensure padding and border are included in the element's total width and height */
    padding-top: 0px;
}


.right-column-home ul {
    list-style-type: none; /* Remove default bullet points */
    padding-left: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
    width: 100%; /* Ensure the ul takes full width */
    padding: 0px;

}

/*right column page*/
.right-column-page {
    display: grid;
    grid-template-columns: 1fr; /* Single column to make the items stretch */
    gap: 10px; /* Adjust gap as needed */
    width: 80%; /* Ensure the right column takes full width */
    box-sizing: border-box; /* Include padding in the total width */
    position: relative;
    margin-top: 20px;
  
}


.right-column-page h2 {
    font-size: 1.5em;
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: #012B31;
    margin-top: 0px;

}

.right-column-page h3 {
    font-size: 2.0em;
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #012B31;
}

.right-column-page p {
    margin: 0px 0;
    font-family: 'Inter', sans-serif;
    font-size: 2.0em;
    font-weight: 300;
    margin-bottom: 10px;

}

.right-column-page ul {
    list-style-type: none; /* Remove default bullet points */
    padding-left: 0px; /* Remove default padding */
    margin: 0; /* Remove default margin */
    width: 80%; /* Ensure the ul takes full width */
    padding: 0px;
    margin-bottom: 30px;
 
}



.right-column-page li {
    list-style-type: decimal;
    background: #ffffff;
    margin-left: 30px;
    border-radius: 0px;
    width: 100%; /* Make the list items take full width of the column */
    box-sizing: border-box; /* Ensure padding and border are included in the element's total width and height */
    font-family: 'Inter', sans-serif;
    font-size: 1.8em;
    line-height: 2.0;
    color: #012B31;


}

.right-column-smallli li {
    list-style-type: decimal;
    background: #ffffff;
    margin-left: 20px;
    border-radius: 0px;
    width: 80%; /* Make the list items take full width of the column */
    box-sizing: border-box; /* Ensure padding and border are included in the element's total width and height */
    font-family: 'Inter', sans-serif;
    font-size: 2.0em;
    line-height: 3.5;
    color: #012B31;
    font-weight: 300;

}


.right-column-page img {
    width: 650px;
}



/*right column home*/
.right-column-home {
    display: grid;
    grid-template-columns: 1fr; /* Single column to make the items stretch */
    gap: 20px; /* Adjust gap as needed */
    width: 100%; /* Ensure the right column takes full width */
    box-sizing: border-box; /* Include padding in the total width */
    position: relative;
    margin-top: 25px;
  
}

.right-column-home ul {
    list-style-type: none; /* Remove default bullet points */
    padding-left: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
    width: 100%; /* Ensure the ul takes full width */
    padding: 0px;

}

.right-column-home li {
    background: #ffffff;
    margin-left: 10px;
    border-radius: 0px;
    width: 80%; /* Make the list items take full width of the column */
    box-sizing: border-box; /* Ensure padding and border are included in the element's total width and height */
  
}


.right-column-home ul {
    list-style-type: none; /* Remove default bullet points */
    padding-left: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
    width: 100%; /* Ensure the ul takes full width */
    padding: 0px;

}

/*right column CTA*/
.right-column-cta {
    display: grid;
    grid-template-columns: 1fr; /* Single column to make the items stretch */
    gap: 10px; /* Adjust gap as needed */
    width: 80%; /* Ensure the right column takes full width */
    box-sizing: border-box; /* Include padding in the total width */
    position: relative;
    margin-top: 20px;

}


.right-column-cta h2 {
    font-size: 1.5em;
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: #ffffff;
    margin-top: 0px;

}

.right-column-cta h3 {
    font-size: 1.8em;
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #ffffff;
    padding-left: 20px;
}

.right-column-cta ul  {

    padding-left: 0px; 
   

}

.right-column-cta ul li {
    list-style-type: none;
    position: relative;
    padding-left: 60px; /* Adjust based on circle size */
    margin-bottom: 40px; /* Space between list items */
    margin-top: 40px; /* Space between list items */

 
}

.right-column-cta ul li::before {
    content: counter(list-counter);
    counter-increment: list-counter;
    position: absolute;
    left: 0;
    top: 27px;
    transform: translateY(-50%);
    width: 50px; /* Circle width */
    height: 50px; /* Circle height */
    background-color: transparent; /* Transparent fill */
    color: #ffffff; /* Text colour */
    border: 1px solid #55E2C9; /* Border colour and thickness */
    border-radius: 50%; /* Creates the circle */
    text-align: center;
    line-height: 50px; /* Vertical alignment of the number */
    font-size: 18px; /* Font size of the number */
    font-family: 'Inter', sans-serif;
    font-weight: 300;
 
    
}

/* Additional CSS for the <ul> */
.right-column-cta ul {
    counter-reset: list-counter; /* Initialize counter */
}



.right-column-cta hr {
    /*width: calc(100% - 80px); /* Adjust width to account for margins */
    width: 100%;
    border: 0;
    border-top: .1px solid #55E2C9;
    margin: 00px 0;
    /*margin-left: 10px;
    /*margin-right: 20px; */
 
}

.right-column-cta p {
    margin: 0px 0;
    font-family: 'Fraunces', sans-serif;
    font-size: 1.3em;
    font-weight: 300;
    margin-bottom: 10px;
    color: #ffffff;
    padding-left: 20px;
}
.right-column-cta img {
    width: 650px;
}


.start ul {
    list-style-type: decimal;
    padding-left: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
    width: 95%; /* Ensure the ul takes full width */
    padding: 0px;
    color: #012B31;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}


.service h3 {
    font-size: 2.0em;
    margin-bottom: 0px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: #012B31;
}

.service p {
    margin-bottom: 0px;
    font-family: 'Fraunces', serif;
    font-weight: 100;
    color: #6F8193;
    font-size: 1.2em;
    width: 80%;
    line-height: 1.5; /* Adjust line height */
    padding-bottom: 10px;

}

.insights-section-page {
    padding: 60px 20px;
    padding-left: 60px;
    text-align: left;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.insights-page {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    background-color: #ffffff; /* Set the background color */
    padding: 00px 00px; /* Add padding around the section */
}


.right-column-insight-detail {
    display: grid;
    grid-template-columns: 1fr; /* Single column to make the items stretch */
    gap: 20px; /* Adjust gap as needed */
    width: 80%; /* Ensure the right column takes full width */
    box-sizing: border-box; /* Include padding in the total width */
    position: relative;
  
}

.right-column-insight-detail h2 {
    color: #012B31;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 2.5em;
}

.right-column-insight-detail h3 {
    color: #012B31;
    font-family: 'Fraunces', sans-serif;
    font-weight: 300;
    font-size: 1.5em;
    margin-bottom: 0px; /* Adjust this value as needed */
    padding-bottom: 0;
}


.right-column-insight-detail a {
  
    color:#012b31

}

.right-column-insight-detail a:hover {
     color:#55E2C9

}





.right-column-insight-detail ul {
    list-style-type: decimal;
    padding-left: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
    width: 100%; /* Ensure the ul takes full width */
    padding: 0px;
    color: #012B31;
    font-family: 'Inter', sans-serif;
    font-weight: 300;


}

.right-column-insight-detail li {
    margin-bottom: 0px;
    font-family: 'Fraunces', serif;
    font-weight: 100;
    color: #012B31;
    font-size: 1.2em;
    width: 100%;
    line-height: 1.5; /* Adjust line height */
    margin-left: 20px;
  
}

.right-column-insight-detail img {
    width: 99%;
    height: 350px;
    border-radius: 10px; /* Make corners rounded */
    object-fit: cover; /* Ensure the image covers the container */
    display: block; /* Ensure the image behaves like a block element */
    margin: 0 auto; /* Center the image horizontally */
}

.right-column-insight-detail p {
    margin-top: 10px; /* Adjust this value as needed */
    padding-top: 0;
    font-family: 'Fraunces', serif;
    font-weight: 100;
    color: #012B31;
    font-size: 1.2em;
    width: 100%;
    line-height: 1.5; /* Adjust line height */
    margin-top: 0px;
    top: 0px;
}


.right-column-insight-detail p.intro-insight {
    margin-top: 10px; /* Adjust this value as needed */
    padding-top: 0;
    font-family: 'Inter', serif;
    font-weight: 300;
    color: #012B31;
    font-size: 1.8em;
    width: 100%;
    line-height: 1.5; /* Adjust line height */
    margin-top: 0px;
    top: 0px;
   
}

.insights-section {
    padding: 60px 20px;
    padding-left: 60px;
    text-align: left;
    background-color: #ecf4f8;
    font-family: 'Inter', sans-serif;
}

.insights-section h2 {
    color: #012B31;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    padding-bottom: 20px;
}

.insights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    background-color: #ECF4F8; /* Set the background color */
    padding: 00px 00px; /* Add padding around the section */
}

.insight {
    flex: 1 1 calc(33.33% - 100px); /* Adjust flex basis for three columns */
    padding: 0px;
    border-radius: 0px;
    text-align: left;
    width: 100%;
    padding-right: 40px;
}

.insight a {
    text-decoration: none; /* Remove underline */
}

.insight a:hover {
    text-decoration: underline; /* Add underline on hover */
    text-decoration-color: #55E2C9; /* Set underline color to green */
}

.insight img {
    width: 100%;
    height: 250px;
    border-radius: 10px 10px 10px 10px;
    object-fit: cover; /* Ensure the image covers the container */
    display: block; /* Ensure the image behaves like a block element */
}

.insight p {
    margin: 35px 0;
    color: #012B31;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1.2em; /* Adjust font size as needed */
    height: 70px;
}

.insight span {
    display: block;
    color: #012B31; /* Set the color for the date text */
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.8em; /* Adjust font size as needed */
    line-height: 1.5; /* Adjust line height */
}


.expertise-left-column {
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: start;
  
}

.expertise-left-column h2 {
    
    color: #012B31;
    font-family: 'Inter', sans-serif;
    font-weight: 300;


}


.expertise-section {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}


.expertise-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    align-items: start;
}



.right-column-expertise {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;

}



.expertise {
    background: #ffffff;
    padding: 0px;
    border-radius: 0px;
    padding-left: 10px;
}


.expertise h3 {
    font-size: 2.0em;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: #012B31;
 

}

.expertise p {
    margin-bottom: 0px;
    font-family: 'Fraunces', serif;
    font-weight: 100;
    color: #6F8193;
    font-size: 1.2em;
    width: 80%;
    line-height: 1.5; /* Adjust line height */
    padding-bottom: 10px;


}
.expertise-btn:hover {
    background-color: #55E2C9;
    color: #002B32;
}

.expertise-btn:active {
    background-color: #55E2C9;
    color: #002B32;
}

.cta-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #012b31;
    color: white;
}

.cta-section h1 {
    font-size: 2.0em;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: #ffffff;
}


.footer-section {
    padding: 50px 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    background-color: #002B32;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}


.footer-left-column {
    padding-left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.footer-left-column h2 {
    padding-left: 10px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 2.0em;

}

.right-column-footer{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
}

.right-column-footer ul {
    margin-top: 100px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul{
    margin-top: 20px;

}
.right-column-footer ul li {
    margin: 0;
}

.right-column-footer ul li a {
    color: #EEF4F8;
    text-decoration: none;
}

.footer-section hr {
    /*width: calc(100% - 80px); /* Adjust width to account for margins */
    width: 100%;
    border: 0;
    border-top: .1px solid #EEF4F8;
    margin: 00px 0;
    /*margin-left: 10px;
    /*margin-right: 20px; */
}
.footer-top {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
    align-items: flex-start;
    flex-direction: column;
    text-align: left;

}

.footer-top p {
    margin-left: 20px;
    font-size: 2.0em;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: #ffffff;
}

.social-links {
    margin-left: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-top: 20px;
    margin-left: 20px;
    color: #ffffff;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom .social-links {
    display: flex;
    align-items: center;
}


.footer-bottom .social-links a {
    color: #EEF4F8;
    text-decoration: none;
    margin-left: 0px;
}



.social-links img {
    width: 40px;
    height: 40px;
}

/* Mobile Navigation */


/* Make sure the hamburger icon is visible and always on top */
#nav-icon3 {
    width: 25px;
    height: 50px;
    position: fixed;
    top: 25px;
    right: 20px;
    z-index: 2002; /* Ensure it's always on top */
    cursor: pointer;
    display: none;
}


#nav-icon3 span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #55E2C9;
    border-radius: 10px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

#nav-icon3 span:nth-child(1) {
    top: 0px;
}

#nav-icon3 span:nth-child(2),#nav-icon3 span:nth-child(3) {
    top: 8.0px;
}

#nav-icon3 span:nth-child(4) {
    top: 16px;
}

#nav-icon3.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

#nav-icon3.open span:nth-child(2) {
    transform: rotate(45deg);
}

#nav-icon3.open span:nth-child(3) {
    transform: rotate(-45deg);
}

#nav-icon3.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

/* Media query for mobile devices */


/*form stuff*/

.form p {
    margin-bottom: 0px;
    font-family: 'Inter', serif;
    color: #889BA9;
    font-size: 1.2em;
    width: 80%;
    line-height: 1.5; /* Adjust line height */
    padding-bottom: 10px;
 
}

.right-column-contact {
    display: grid;
    grid-template-columns: 1fr; /* Single column to make the items stretch */
    gap: 10px; /* Adjust gap as needed */
    width: 80%; /* Ensure the right column takes full width */
    box-sizing: border-box; /* Include padding in the total width */
    position: relative;
    margin-top: 20px;
  
}

.right-column-contact h2 {
    margin: 0px 0;
    font-family: 'Inter', sans-serif;
    font-size: 1.0em;
    font-weight: 300;
    margin-bottom: 20px;

}

.right-column-contact #the-intro-text-contact {
    margin: 0px 0;
    font-family: 'Inter', sans-serif;
    font-size: 2.0em;
    font-weight: 300;
    margin-bottom: 100px;
}

.right-column-contact p {
    margin: 0px 0;
    font-family: 'Inter', sans-serif;
    font-size: 1.0em;
    font-weight: 300;
    margin-bottom: 20px;

}

.right-column-contact a {
    margin: 0px 0;
    font-family: 'Inter', sans-serif;
    font-size: 1.0em;
    font-weight: 300;
    margin-bottom: 20px;
    color:#012b31

}

.right-column-contact a:hover {
    text-decoration: underline; /* Add underline on hover */
    text-decoration-color: #55E2C9; /* Set underline color to green */
}


.the-intro-text-contact {
    font-size: 22.0em;
    font-family: 'Inter', serif;
    font-weight: 300;
    margin-bottom: 60px;
    color: #012B31;
    
}

.contact-form input {
    margin-bottom: 10px;
}


.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
   width: 350px;
   padding: 12px 16px;
   font-size: 16px;
   border: 1px solid #ccc;
   border-radius: 8px;
   outline: none;
   transition: border-color 0.3s ease;
   font-family: "Inter", sans-serif;
   font-weight: 300;
}

.contact-form select {
    width: 370px;

}

.contact-form button {
    background-color: transparent;
    color: #012B31;
    border: 1px solid #55E2C9;
    padding: 20px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    font-family: 'Inter', sans-serif;
    font-size: 1em;
}

.contact-form button:hover {
    background-color: #55E2C9;
    color: #002B32;
}

.contact-form button:active {
    background-color: #55E2C9;
    color: #002B32;
}

.overlay {
    position: fixed; /* Makes the overlay cover the whole screen */
    display: none; /* Set to block when visible */
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 43, 50, 0.95); /* Background color with transparency */
    z-index: 2; /* Ensures it is above other elements */
    cursor: pointer; /* Optional: cursor style */
}

.apple-loader {
    position: absolute; /* relative to the nearest positioned ancestor */
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%);
}

.apple-loader span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: apple-loader 1.5s linear infinite;
}

.apple-loader span:nth-child(1) {
    animation-delay: 0s;
    transform: rotate(0deg) translate(20px);
}

.apple-loader span:nth-child(2) {
    animation-delay: -0.125s;
    transform: rotate(30deg) translate(20px);
}

.apple-loader span:nth-child(3) {
    animation-delay: -0.25s;
    transform: rotate(60deg) translate(20px);
}

.apple-loader span:nth-child(4) {
    animation-delay: -0.375s;
    transform: rotate(90deg) translate(20px);
}

.apple-loader span:nth-child(5) {
    animation-delay: -0.5s;
    transform: rotate(120deg) translate(20px);
}

.apple-loader span:nth-child(6) {
    animation-delay: -0.625s;
    transform: rotate(150deg) translate(20px);
}

.apple-loader span:nth-child(7) {
    animation-delay: -0.75s;
    transform: rotate(180deg) translate(20px);
}

.apple-loader span:nth-child(8) {
    animation-delay: -0.875s;
    transform: rotate(210deg) translate(20px);
}

.apple-loader span:nth-child(9) {
    animation-delay: -1s;
    transform: rotate(240deg) translate(20px);
}

.apple-loader span:nth-child(10) {
    animation-delay: -1.125s;
    transform: rotate(270deg) translate(20px);
}

.apple-loader span:nth-child(11) {
    animation-delay: -1.25s;
    transform: rotate(300deg) translate(20px);
}

.apple-loader span:nth-child(12) {
    animation-delay: -1.375s;
    transform: rotate(330deg) translate(20px);
}

body[data-dark-theme="true"] .normal-nav .starta-link {
    color: white;
}

body[data-dark-theme="true"] .normal-nav .starta-link:hover {
    color: #55E2C9; /* or any color you want for hover state */
}

/* For the CTA button */
body[data-dark-theme="true"] .normal-nav .cta {
    color: ffffff;
    border-color: white;
}

body[data-dark-theme="true"] .normal-nav .cta:hover {
    background-color: white;
    color: #002B32; /* or whatever color you want for the text on hover */

}

/* For the Subsribe CTA button */
body[data-dark-theme="true"] .normal-nav .subscribe-cta {
    color: white;
    border-color: #55E2C9;
}

body[data-dark-theme="true"] .normal-nav .subscribe-cta:hover {
    background-color: #55E2C9;
    color: #002B32; /* or whatever color you want for the text on hover */
}




@keyframes apple-loader {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {

    .main-content h1  {
        font-size: 3.2em;
        line-height: 0.9;
        margin-left: -5px;
      
      
    }



   

    .intro-page-title h1 {
        font-size: 1.5em;
        margin-left: 10px;
        width: 100%;
       

    }


.start-btn{
    font-size: 0.7em;

}
    
    .normal-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }
   
    .intro-text {
        padding: 20px 20px;
        padding-left: 20px;
    }
    .intro-text-cta {
        padding: 20px 20px;
        padding-left: 20px;
    }

    .left-column {
        padding-left: 0px;
    }

    .expertise-left-column {
        padding-left: 10px;
    
    }

    .left-column h3 {
        padding-left: 10px;
    }



    .left-column h2 {
        padding-left: 0px;
        padding-bottom: 0px;
        margin-top: 30px;
        margin-bottom: 0px;
        font-size: 1.8em;
    
    }

    .right-column {
       padding-left: 0px; /* Adjust padding as needed */
     
    }

    .right-column-home{
        width: 100%;
        margin-top: auto;
        padding-top: 0%;
       

    }

    .right-column-home ul{
        margin-top: auto;
        padding-top: 0%;
    }

    .right-column-home li {
        background: #ffffff;
        margin-left: 10px;
        border-radius: 0px;
        width: 95%; /* Make the list items take full width of the column */
 
    }

    .right-column-expertise {
        padding-left: 0px; /* Adjust padding as needed */
       
    }


    .page-section {
        padding: 20px 20px;
     
    
    }
    .expertise {
        padding: 0px;
        border-radius: 0px;
        padding-left: 10px;
    }
    
    .insights-section {
        padding-left: 20px;
        width: 100%;
    }
   
    .insights-section-page {
        padding-left: 20px;
        width: 100%;
    }


    .service, .insight, .expertise-item {
        flex: 1 1 100%;
    }

    .service p {
       width: 100%; 
       text-align: left;

    }

    .service li {
        width: 100%; 
        text-align: left;
     }

    .main-content {
        padding: 80px 20px;
    }

    .services-container {
        grid-template-columns: 1fr;
        gap: 0px;
    }


    .right-column {
        grid-template-columns: 1fr;
    }

    .expertise-container {
        grid-template-columns: 1fr;
    
    }

    .right-column-page img {
        width: 400px;
        align-items: center;

    }

  .right-column-page {

    width: 100%;
  }

    .right-column-page p {
     
     width: 100;

    }

    .expertise p {
        margin-bottom: 0px;
        width: 100%;
        padding-bottom: 20px;
        }

    .page-container{
        grid-template-columns: 1fr;
    }
    
    .intro-text p {
        font-size: 1.5em; /* Decrease font size */
    }
 
    .intro-text-cta p {
        font-size: 1.5em; /* Decrease font size */
    }
    .right-column-expertise {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .expertise-container{
        padding: 0;
        margin-top: 0px;
    }

    .footer ul{
        margin-top: 120px;
    
    }

    .intro-page-title  {
      
        padding-left: 20px;
        font-size: 1.3em;
        margin-top: 10px;
        width: 80%;
        height: 10px;
       
    }

    .intro-page-title-cta  {
      
        padding-left: 20px;
        font-size: 1.3em;
        margin-top: 10px;
        width: 80%;
        height: 10px;
       
    }
    .right-column-footer{
       width: 110;
       margin-left: -20px;
    }

    .footer-left-column {
     
        padding: 0px 0 0 0 ;
    
    }


    .footer-left-column h2{
        padding-left: 0;
        font-size: 1.3em;
        left: 0px;
        padding: 0px 0 0 0 ;
        margin-left: 0;
    }

    .social-links {
        padding-left: 0;
        margin-left: 0;
    }

    .footer-container{
    
        padding: 0px 0 0 0 ;
    }

    .contact-form input[type="text"], .contact-form input[type="email"] {
        width: 300px;
    }

    .contact-form select {
        width: 320px;

    }

    .contact-form button {
        width: 150px;
    }

    

    .right-column-insight-detail {
       width: 100%; /* Ensure the right column takes full width */
   }


     .right-column-insight-detail li {
       width: 90%;
    }


.right-column-page p {
    margin: 0px 0;
    font-size: 1.5em;
    font-weight: 300;
    margin-bottom: 10px;
  

}


.intro-text-cta p {
    margin-bottom: 0px;

}

.left-column-cta{

   margin-left: 0px;
   padding-left: 0px;
}

.left-column-cta h2{
     margin-left: 0px;
     width: 100%;
     font-size: 1.8em;

   
 }

 .right-column-cta {
  
   width: 100%;
 }



 .schedule-btn {
    background-color: #55E2C9;
    color: #000000;
    border: 1px solid #ffffff;
    padding: 20px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    font-family: 'Inter', sans-serif;
    font-size: 0.7em;
}

.expertise-left-column h2{
   
    padding-bottom: 0px;
    margin-top: 30px;
    margin-bottom: 0px;
    font-size: 1.8em;
 
}

.close-button {
    top: 0px; /* Adjust top position for smaller screens */
    right: 0px; /* Adjust right position for smaller screens */

}


.apple-loader {
    position: absolute; /* relative to the nearest positioned ancestor */
    top: 50%;
    left: 54%;

}

#nav-icon3 {
    display: block;
}

.normal-nav {
    display: none;
}

.nav-menu.active {
    display: flex !important;
}

.right-column-insight-detail p.intro-insight {

    font-size: 1.2em;
    padding-left: 0px;

}

.insights-section-page {
    padding: 20px 20px;
}
}