* {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-family: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}

html {
    font-family: "roboto", sans-serif;
}
        
li {
    list-style: none;
}





a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: normal;
    margin: 0;
  }
  




  







.header{
    top: 0; /* Stick to the top of the viewport */
    left: 0;
    right: 0;
    background: rgba(19, 31, 60);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0);
    -webkit-backdrop-filter: blur( 11px );
    z-index: 1000;
    position: fixed;
    transition: background-color 0.3s ease-in-out, padding-top 0.3s ease-in-out, padding-bottom 0.3s ease-in-out, position 0.3s ease-in-out, box-shadow 0.6s ease-in-out;
    padding-top: 15px;
    padding-bottom: 15px;
}

.header.scrolled {
    box-shadow: 0 2px 32px 0 rgba(0, 0, 0, 0);
    padding-top: 15px;
    padding-bottom: 15px;
    backdrop-filter: blur( 11px );
}



.navbar {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0;
}

.navbar-container {
    margin-left: 25px;
    margin-right: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-items {
    display: flex;
    align-items: center;
    margin-left: auto;
    color: #ffffff
}


.navbar img {
    width: 180px;
    height: auto;
    margin-right: 10px;
}

.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #ffffff;
    border-radius: 10px;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-item:last-child {
    margin-right: 2.5rem;
}

.nav-item  i {
    font-size: 12px;
    margin-left: 10px;
}

.nav-item .fa-chevron-down {
    transition: transform 0.2s ease-in-out; 
  }
  
  .nav-item:hover .fa-chevron-down {
    transform: rotate(180deg);
  }
  

.nav-item a {
    font-weight: 500;
    font-size: 18px;
    transition: color 0.2s ease-in-out;
    padding: 10px 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.nav-item a:focus {
    color: #36BCA9;
}

.nav-link{
    font-weight: 500;
    font-size: 18px;
    transition: color 0.2s ease-in-out;
   
}

.nav-link:hover {
    color: #36BCA9;
}

#active {
    text-decoration: underline;
    text-decoration-color: #36BCA9;
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
}


#nav-mobile-only {
    display: none;
}








.header-cta-container {
    display: flex;
    margin-left: 2rem;
}

.header-cta {
    border: 2px solid #32BCB8;
    color: #000;
    border-radius: 3px;
    margin-right: 1rem;
    transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
}

.header-cta a {
    font-size: 16px;
    font-weight: 500;
    padding: 15px 25px;
    display: inline-block;
}

#header-pricing-button {
    background-color: #32BCB8;
    color: #fff;
}

#header-pricing-button:hover {
    background-color: #2BA8A4;
    border: 2px solid #2BA8A4;
}

#header-pricing-button:focus {
    background-color: #2BA8A4;
    border: 2px solid #2BA8A4;
}

#header-contact-button {
    color: #fff;
}

.header-cta:last-child {
    margin-right: 0;
}

.header-cta:focus {
    background-color: #2BA8A4;
    color: #fff;
}

.header-cta:hover {
    background-color: #2BA8A4;
    color: #fff;
}



.header-cta i {
    margin-left: 5px;
    font-size: 15px;
}
















.top-section-container {
    background-color: #090030;
    color: #ffffff;
    padding-top: 150px;
    padding-bottom: 80px;
}

.top-section-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.top-section-content-container {
    display: flex;
    margin-left: 25px;
    margin-right: 25px;
    justify-content: space-between;
}

.top-section-text-container {
    width: 50%;
    margin-top: 25px;
}

.top-section-text-container h1{
    font-weight: 600;
    font-size: 55px;
    margin-bottom: 45px;
    line-height: 1.2;
}

.top-section-text-container p{
   font-size: 20px;
   line-height: 1.5;
}

.top-section-image-container {
    display: flex;
    justify-content: flex-end;
   
}

.top-section-image-container img {
    object-fit: cover;
    width: 500px;
    height: 340px;
    border-radius: 6px;
}



















.main-section-container {
    padding-top: 80px;
    padding-bottom: 100px;
    background-color: #131F3C;
    color: #fff;
}


#white-BG {
    background-color: #ffffff;
    color: #000;
}






#darkblue-BG {
    background-color: #090030;
    color: #fff;
}

.section-wrapper {
    max-width: 1150px;
    margin: 0 auto;
}

.section-container {
    margin-left: 25px;
    margin-right: 25px;
}


.section-headline-container {
    text-align: center;
    margin-bottom: 50px;
}

.section-headline-container h2 {
    font-size: 40px;
    font-weight: 600;
}




.section-main-content {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    flex-wrap: wrap;
}

#read-morebtn-bottom {
    font-size: 16px;
    font-weight: 500;
    margin-top: 50px;
    background-color: #32BCB8;
    padding: 18px 25px;
    border-radius: 5px;
    color: #fff;
    transition: background-color 0.1s ease-in-out;
}

#read-morebtn-bottom:hover {
    background-color: #32BCB8;      
}

#read-morebtn-bottom:focus {
    background-color: #32BCB8;
}








.paragraph-section-wrapper {
    justify-content: center;
}

.paragraph-content-block {
    max-width: 800px;
    font-size: 20px;
    margin-bottom: 60px;
}

.paragraph-content-block h2 {
    font-weight: 600;
    margin-bottom: 10px;
}

.paragraph-content-block p {
    font-size: 20px;
    margin-bottom: 35px;
    line-height: 1.4;
}

.paragraph-content-block ul {
    margin-top: 20px;
    padding-inline-start: 22px;
}


.paragraph-content-block li {
    list-style: disc;
    margin-bottom: 15px;
}

.paragraph-content-block li:last-child {
    margin-bottom: 0px;
}


#highlight-box {
    padding: 25px;
    border-radius: 6px;
    background-color: rgb(230, 240, 248);
}




.image-content-block {
    max-width: 800px;
    margin-bottom: 60px;
}

.image-content-block img{
    width: 100%;
    border-radius: 5px;
}



















































footer {
    background: rgba(19, 31, 60);
    color: #ffffff;
}



.footer-wrapper-main {
    margin-left: 25px;
    margin-right: 25px;
}


.footer-top {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    padding-top: 90px;
    padding-bottom: 110px;
}

.footer-logo-container {
    max-width: 280px;
    margin-right: 100px;
}

.footer-logo-container img {
    width: 234px;
    margin-bottom: 20px;
}

.footer-logo-container p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.footer-cta {
    margin-top: 35px;
    display: inline-block;
    background-color: #32BCB8;
    color: #fff;
    padding: 18px 0px;
    border-radius: 3px;
    transition: background-color 0.1s ease-in-out 0s;
}

.footer-cta:hover {
    background-color: #279c8b;
}

.footer-cta a{
    padding: 25px;
    font-size: 16px;
    font-weight: 500;
}

.footer-cta i {
    margin-left: 5px;
}



.social-icons {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 50px;
}

.social-icons a {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
}

.social-icons a:hover {
    text-decoration: underline;
}

.social-icons a img{
    margin-right: 15px;
    margin-bottom: 0;
}

.social-icons img {
    width: 40px;
    margin-right: 8px;
}





.footer-box {
    max-width: 400px;
    margin-right: 100px;
}

.footer-box:last-child {
    margin-right: 0;
}

.footer-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}


.footer-box a {
    font-size: 16px;
    font-weight: 400;
    display: block; 
    margin-bottom: 15px;
    color: inherit;
}

.footer-box p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
}

.footer-box a:hover {
    text-decoration: underline;
}

.footer-box a:focus {
    text-decoration: underline;
}

.contact-info-footer {
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
}

.contact-info-footer i {
    color: #32BCB8;
    margin-right: 15px;
}

.address-container p{
    margin-bottom: 5px;
}







.footer-bottom-wrapper {
    background-color: #090030;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
}















@media only screen and (max-width: 768px) {
    
    


    .header-cta-container {
        display: none;
    }

    
    .header {
        padding-top: 20px;
        padding-bottom: 20px;
        background: rgba(19, 31, 60);
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .header.scrolled {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .header.menu-open {
        backdrop-filter: none;
        
    }





    .navbar {
        margin-left: 25px;
        margin-right: 25px;
    }

    .navbar-container {
        margin: 0;
    }

   
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 4.6rem;
        flex-direction: column;
        background: rgba(19, 31, 60);
        width: 100%;
        height: 100%;
        text-align: left;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .nav-menu.active {
        left: 0;
        justify-content: flex-start;
        text-align: left;
        display: inline;
    }

    .nav-item {
        margin: 2rem 25px;
        justify-content: space-between;
    }

    .nav-item:first-child {
        margin: 1rem 25px;
    }

    .nav-item a {
        font-size: 26px;
        padding: 0;
    }

    .nav-item a.scrolled {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .nav-item i {
        display: none;
    }

    .dropdown-menu {
        display: none;
    }

    .nav-item:focus .dropdown-menu {
        display: block; 
        display: none;
    }

    .nav-item:hover .dropdown-menu {
        display: none;
    }

    .nav-logo img {
        width: 160px;
    }

    .nav-link {
        font-size: 30px;
        border: none;
    }

    #active {
        border: none;
    }

    #nav-mobile-only {
        display: flex;
    }


    

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        -webkit-transform: translateY(8px) rotate(45deg);
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        -webkit-transform: translateY(-8px) rotate(-45deg);
        transform: translateY(-8px) rotate(-45deg);
    }








   





    .main-section-container {
        padding-top: 50px;
    }

    .section-headline-container h2 {
        font-size: 35px;
    }


    #read-morebtn-bottom {
        font-size: 18px;
    }





    .top-section-container {
        padding-top: 105px;
    }

    .top-section-content-container {
        flex-direction: column-reverse;
    }
    
    
    .top-section-text-container {
        width: 100%;
        margin-top: 15px;
    }

    .top-section-text-container h1{
       font-size: 40px;
       margin-bottom: 25px;
    }

    .top-section-text-container p {
        font-size: 18px;
    }


    .top-section-image-container {
        justify-content: center;
    }

    .top-section-image-container img {
        width: 100%;
        height: 250px;
    }










    .footer-wrapper-main {
        display: flex;
        align-items: center;
    }


    .footer-top {
        flex-wrap: wrap;
        flex-direction: column;
        margin: 0;
    }

    .footer-logo-container {
        max-width: 100%;
        margin-right: 0;
    }

    .footer-logo-container p {
        font-size: 18px;
    }


    .footer-cta {
        margin-bottom: 40px;
    }


    .footer-box {
        max-width: 100%;
        margin-top: 35px;
    }


    .footer-box h3 {
        font-size: 26px;
    }

    .footer-box p {
        font-size: 18px;
    }

    .footer-box a {
        font-size: 18px;
    }


    .social-icons {
        margin-bottom: 25px;
    }

    .social-icons a {
        font-size: 18px;
    }



}