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

body {
    font-family: 'Merriweather Sans', sans-serif;
}
.animation-container {
    overflow-x: hidden;
}

/* global classes */
.fs-18 {
    font-size: 18px;
    line-height: 26px;
}
.fs-20 {
    font-size: 20px;
    line-height: 28px;
}
.dark-text {
    color: #212932;
}
.section-title{
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 12px;
}
.three-headings {
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 12px;
    text-decoration: none;
    letter-spacing: -.025em;
}   
.step-image-2, .step-image-2:after{
    background-color: #d0ffd0 !important;
}
.step-3-heading:after{
    background-color: #e9c7ff !important;
    opacity: 1 !important;
    z-index: -1;
}
.step-3{
    background-color: #e9c7ff !important;
}
.heading-block{
    padding: 30px;
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 20px;
    border: 1px solid #eee;
    margin: 20px;
}
.three-headings:hover{
    color: #0867c6;
}
.title-border {
    width: 80px;
    height: 2px !important;
    background-color: #c7e1f8;
    border-radius: 4px;
    opacity: 1;
    margin-bottom: 30px;
}
#message-field{
    height: 120px;
    background-position: 98% 20% !important;
}
.section {
    padding: 70px 0;
}

.btn-blue {
    background-color: #1879d9;
    padding: 10px 24px;
    border-radius: 20px;
    color: #ffffff;
    transition: all .3s ease;
}
.btn-blue:hover {
    background-color: #0867c6;
    color: #ffffff;
}
.step-image{
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #c7e1f8;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-image img{
    width: 50%;
    height: 50%;
    object-fit: contain;
}
.steps-title{
    font-size: 25px;
    color: #333;
    font-weight: bold;
    letter-spacing: -.025em;
    position: relative;
    display: inline-block;
}
.steps-title:after{
    content: '';
    width: 100%;
    height: 120%;
    border-radius: 5px;
    background-color: #0867c6;
    opacity: 0.1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
}
.steps-row{
    margin-bottom: 100px;
}
.cta-section {
    background-color: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
    border-radius: 10px;
}

.cta-section h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #6c757d;
}

.cta-button {
    background-color: #1879d9;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}

.cta-button:hover {
    background-color: #0867c6;
    color: #fff;
}
/* header */
.header {
    /* position: fixed; bck removed */
    width: 100%;
    /* z-index: 2; bck removed this because it makes the header float over to cover content */
    border-bottom: 1px solid #d9d9d9;
}
.header .btn-blue {
    width: 150px;
    margin-left: 30px;
}
.navbar-nav{
    gap: 20px;
}
.dropdown-menu{
    padding: 0;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    min-width: 400px;
}
.dropdown-menu .dropdown-item{
    padding: 8px 16px;
    color: #6B7280;
    font-size: 14px;
}
.dropdown-menu .dropdown-item:hover{
    background-color: #F3F4F6;
    color: #111827;
}
.dropdown-menu .dropdown-item.active{
    background-color: transparent;
    color: #111827;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
}
.navbar-nav .nav-item .nav-link.active{
    color: #0867c6;
}
.navbar-nav .nav-item .nav-link:hover{
    color: #0867c6;
}
.dropdown:hover .dropdown-menu{
    display: block;
}
.dropdown-header {
    font-weight: 600;
    color: #111827;
    padding: 12px 16px;
    font-size: 14px;
    background: #ffffff;
    margin: 0;
    border: none;
}
.dropdown-divider {
    display: none;
}
.dropdown-group {
    border-bottom: 1px solid #E5E7EB;
}
.dropdown-group:last-child {
    border-bottom: none;
}
.dropdown-columns {
    display: flex;
    padding: 0;
}
.dropdown-column {
    flex: 1;
    min-width: 200px;
    border-right: none;
    position: relative;
}
.dropdown-column:first-child::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background-color: #b6b6b6;
}
.dropdown-column:last-child {
    border-right: none;
}
/* main */
.main-section {
    width: 100%;
    height: 100vh;
}
.main-title {
    font-size: 67px;
    line-height: 80px;
    font-weight: 600;
}

/* benefits */
.benefit-title {
    font-size: 20px;
}
.popover__wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.popover__content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: -70px;
    top: -93px;
    background-color: #ffffff;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    padding: 10px;
    width: 380px;
    font-size: 12px;
}
.popover__wrapper:hover .popover__content {
    z-index: 10;
    opacity: 1;
    visibility: visible;
    transform: translate(0, -20px);
    transition: all 0.5s cubic-bezier(0.75, -0.02, 0.2, 0.97);
}
.popover__message {
    text-align: center;
}

/* how it works */
.steps {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    display: flex;
}
.steps li:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    border-top: 1px solid #ddd;
    top: 30px;
    left: 0;
    z-index: -1;
}
.steps li {
    width: 260px;
    position: relative;
}
.steps li .number {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 50%;
    background-color: #fff;
    margin: auto;
    font-size: 22px;
    font-weight: 500;
} 
.steps li .caption {
    margin-top: 20px;
    padding: 0 13px;
    text-align: center;
    color: #7b8b99;
}
.section-how-it-works .text {
    margin-top: 36px;
}
.section-how-it-works .popover__content {
    left: -150px;
}

/* pricing */
.section-pricing {
    background-color: #f4f7fb;
    padding: 70px 0;
}
.pricing-card {
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
    border-radius: 24px;
}
.pricing-card .card-header {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}
.pricing-card .card-header .title {
    font-size: 22px;
    font-weight: 400;
}
.pricing-card .price .number {
    font-size: 36px;
    font-weight: 700;
}
.pricing-point{
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.pricing-point img{
    flex: 0 0 20px;
}
/* footer */
.footer {
    border-top: 1px solid #d9d9d9;
}
.footer-menu li a {
    margin-right: 20px;
    color: black;
}
.footer-text {
    text-align: end;
}
/* Regulatory monitoring */
.section-regulatory-monitoring{
    padding-top: 150px;
}

/* media queries */
@media (max-width: 1400px) {
    .main-title {
        font-size: 60px;
        line-height: 72px;
    }
}

@media (max-width: 1200px) {
    .main-title {
        font-size: 50px;
        line-height: 64px;
    }
    .popover__content {
        left: -120px;
    }
    .footer-logo {
        margin-left: 78px;
    }
}

@media (max-width: 992px) {
    .main-section {
        margin-bottom: 30px;
    }
    .section {
        padding: 25px 0;
    }
    .section-title {
        font-size: 28px;
    }
    .text-center-tablet {
        text-align: center;
    }
    .flex-column-reverse-tablet {
        flex-direction: column-reverse;
    }
    .mb-30-tablet {
        margin-bottom: 30px;
    }
    .section-pricing {
        padding: 50px 0;
        margin-top: 25px;
    }
    .footer-menu {
        justify-content: center;
        margin-top: 14px;
    }
    .footer-menu li a {
        margin-right: 12px;
    }
    .footer-logo {
        margin: 10px 0;
    }
    .footer-text {
        text-align: center;
        padding-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 40px;
        line-height: 52px;
    }
    .fs-18 {
        font-size: 16px;
        line-height: 20px;
    }
    .section-how-it-works .text {
        margin-top: -20px;
    }
    .steps {
        flex-direction: column;
    }
    .steps li {
        max-width: 500px;
        width: 100%;
        height: 130px;
    }
    .steps li .number {
        margin: unset;
    }
    .steps li .caption {
        margin-left: 55px;
        margin-top: -42px;
        text-align: left;
    }
    .steps li:after {
        content: "";
        width: 1px;
        height: 100px;
        border-right: 1px solid #ddd;
        top: 60px;
        left: 29px;
    }
    .steps li:last-child::after {
        content: none;
    }
    .pricing-card:first-child {
        margin-bottom: 30px;
    }
    .step-image{
        margin: 0 auto 20px auto;
    }
    .steps-row{
        text-align: center;
    }
}

@media (max-width: 480px) {
    .flex-column-mobile {
        flex-direction: column;
        padding: 12px 0;
    }
    .section-title {
        font-size: 26px;
    }
    .benefit-title {
        font-size: 18px;
    }
    .popover__content {
        top: -83px;
        width: 300px;
        margin-left: 40px;
    }
    .step-image{
        margin: 0 auto 20px auto;
    }
    .steps-row{
        text-align: center;
    }
}
