/* ========== FONTS ========== */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.cdnfonts.com/css/product-sans');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

/* ============================== */
/*         PREVIOUS STYLES        */
/* [SEE LINE 373 FOR NEW STYLES ] */
/* ============================== */

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #EE402B;
}

/* Custom selection color */
::selection {
    background-color: rgba(230,0,0,0.3); /* Light red with transparency */
    
}

::-moz-selection {
    background-color: rgba(230,0,0,0.3);
}

/* Navbar selected tab */

.site-menu .navbar-nav {
    margin-top: 10px;
}
.navbar-dark .navbar-nav .nav-link.active{

    color: rgba(0,0,0,.9);
}
.navbar .nav-item .nav-link {
    position: relative;
    padding-bottom: 1rem;
}

    .navbar .nav-item .nav-link.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid #EE402B;
    }

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
/*    font-family: "Lato", serif;*/
    font-weight: 500;
    font-style: normal;
}

a {
    font-size: 1em;
    
    color: #4D6582; /* Set the text color */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s ease; /* Smooth transition for color change */
}
    a:hover {
        color: #3b4d65; /* Darker shade for hover effect */
        text-decoration: none; /* Optional: underline on hover */
    }

.xpertly-container {
    width: 100%; /* Set the width of the container */
    min-height: 100%; /* Set the height of the container */
    background-image: url('../../img/assets/landing_page_background.jpg'); /* Specify the path to your background image */
    background-size: cover; /* Cover the entire container */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Prevent the image from repeating */
    /* border: 1px solid #ccc; Optional: Add a border for visibility */
    padding: 20px; /* Optional: Add some padding */
}
.superNav {
    font-size: 13px;
}

.form-control {
    outline: none !important;
    box-shadow: none !important;
}

@media screen and (max-width:540px) {
    .centerOnMobile {
        text-align: center
    }
}

.border-xperty {
    border: 1px solid #EE402B; /* Custom border color */
}
.color-red-xperty {
    color: #EE402B;
}
.color-blue-xperty {
    color: #4D6582;
}
.bg-xperty {
    background-color: #EE402B; /* Custom background color */
    color: white; /* Text color for contrast */
}

    /* Optional: Hover effect for background */
    .bg-xperty:hover {
        background-color: #d92e24; /* Darker shade for hover effect */
    }

    /* Optional: Focus effect for background */
    .bg-xperty:focus, .bg-xperty.focus {
        box-shadow: 0 0 0 0.2rem rgba(238, 64, 43, 0.5); /* Focus shadow */
    }
.btn-xpertly {
    background: linear-gradient(to bottom, #428bca 0%, #3071a9 100%); /* Custom background color */
    color: white; /* Text color */
    border: none; /* Remove border */
    padding: 0.375rem 0.75rem; /* Padding similar to Bootstrap buttons */
    font-size: 1rem; /* Font size */
    line-height: 1.5; /* Line height */
    border-radius: 0.25rem; /* Border radius */
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; /* Transition effects */
}

    .btn-xpertly:hover {
        background-color: #d92e24; /* Darker shade for hover effect */
        text-decoration: none; /* Remove underline on hover */
        color: rgba(255,255,255,.7);
        box-shadow: 0 0 0 0.2rem #3071a9;
    }

    .btn-xpertly:focus, .btn-xpertly.focus {
        box-shadow: 0 0 0 0.2rem rgba(238, 64, 43, 0.5); /* Focus shadow */
    }

    .btn-xpertly:disabled {
        background: linear-gradient(to bottom, #428bca 0%, #3071a9 100%);
        opacity: 0.65; /* Slightly transparent when disabled */
        cursor: not-allowed; /* Change cursor to indicate disabled state */
    }

.btn-xpertly-secondary {
    background: white; /* Custom background color */
    color: #428bca; /* Text color */
    border: 1px solid #428bca;
    padding: 0.375rem 0.75rem; /* Padding similar to Bootstrap buttons */
    font-size: 1rem; /* Font size */
    line-height: 1.5; /* Line height */
    border-radius: 0.25rem; /* Border radius */
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; /* Transition effects */
}

    .btn-xpertly-secondary:hover {
        background: linear-gradient(to bottom, #428bca 0%, #3071a9 100%); /* Custom background color */
        text-decoration: none; /* Remove underline on hover */
        color: white;
        box-shadow: 0 0 0 0.2rem #3071a9;
    }

    .btn-xpertly-secondary:focus, .btn-xpertly-secondary.focus {
        box-shadow: 0 0 0 0.2rem rgba(238, 64, 43, 0.5); /* Focus shadow */
    }

    .btn-xpertly-secondary:disabled {
        background: linear-gradient(to bottom, #428bca 0%, #3071a9 100%);
        opacity: 0.65; /* Slightly transparent when disabled */
        cursor: not-allowed; /* Change cursor to indicate disabled state */
    }

.btn-xpertly-red {
    background: linear-gradient(to bottom, #EE402B 0%, #DC143C 100%); /* Custom background color */
    color: white; /* Text color */
    border: none; /* Remove border */
    padding: 0.375rem 0.75rem; /* Padding similar to Bootstrap buttons */
    font-size: 1rem; /* Font size */
    line-height: 1.5; /* Line height */
    border-radius: 0.25rem; /* Border radius */
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; /* Transition effects */
}

    .btn-xpertly-red:hover {
        background-color: #DC143C; /* Darker shade for hover effect */
        text-decoration: none; /* Remove underline on hover */
        color: rgba(255,255,255,.7);
        box-shadow: 0 0 0 0.2rem #EE402B;
    }

    .btn-xpertly-red:focus, .btn-xpertly-red.focus {
        box-shadow: 0 0 0 0.2rem rgba(238, 64, 43, 0.5); /* Focus shadow */
    }

    .btn-xpertly-red:disabled {
        background-color: #EE402B; /* Keep the same color when disabled */
        opacity: 0.65; /* Slightly transparent when disabled */
        cursor: not-allowed; /* Change cursor to indicate disabled state */
    }

.border-xpertly-blue {
    border: 1px solid #4D6582; /* Custom border color */
}

.bg-xpertly-blue {
    background-color: #4D6582; /* Custom background color */
    color: white; /* Text color for contrast */
}

    /* Optional: Hover effect for background */
    .bg-xpertly-blue:hover {
        background-color: #3b4d65;
        color:white
    }

    /* Optional: Focus effect for background */
    .bg-xpertly-blue:focus, .bg-xpertly-blue.focus {
        box-shadow: 0 0 0 0.2rem rgba(77, 101, 130, 0.5); /* Focus shadow */
    }

.btn-xpertly-blue {
    background-color: #4D6582; /* Custom background color */
    color: white; /* Text color */
    border: none; /* Remove border */
    padding: 0.375rem 0.75rem; /* Padding similar to Bootstrap buttons */
    font-size: 1rem; /* Font size */
    line-height: 1.5; /* Line height */
    border-radius: 0.25rem; /* Border radius */
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; /* Transition effects */
}

    .btn-xpertly-blue:hover {
        background-color: #3b4d65;
        color:white;/* Darker shade for hover effect */
        text-decoration: none; /* Remove underline on hover */
    }

    .btn-xpertly-blue:focus, .btn-xpertly-blue.focus {
        box-shadow: 0 0 0 0.2rem rgba(77, 101, 130, 0.5); /* Focus shadow */
    }

    .btn-xpertly-blue:disabled {
        background-color: #4D6582; /* Keep the same color when disabled */
        opacity: 0.65; /* Slightly transparent when disabled */
        cursor: not-allowed; /* Change cursor to indicate disabled state */
    }
.bg-xpertly-grad-blue {
    background: linear-gradient(to bottom, #428bca 0%, #3071a9 100%);
}
.social-icons {
    display: flex; /* Use flexbox to align items */
    gap: 15px; /* Space between icons */
    justify-content: flex-end; /* Align icons to the right */
}

.icon-link {
    text-decoration: none; /* Remove underline from links */
    font-size: 24px; /* Size of the icons */
    color: #EE402B; /* Custom color for the icons */
    transition: color 0.3s; /* Smooth color transition */
}

    .icon-link:hover {
        color: #d92e24; /* Darker shade on hover */
    }

.manage-container {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.manage-form-group {
    margin-bottom: 1.5rem;
}

.manage-heading {
    color: #4D6582;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.manage-nav {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.manage-nav-item {
    color: #4D6582;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.manage-nav-item:hover {
    background-color: #EE402B;
    color: white;
}

.manage-nav-item.active {
    background-color: #4D6582;
    color: white;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    color: #4D6582;
    font-weight: 600;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #EE402B;
}

.dropdown-item i {
    width: 20px;
    text-align: center;
}

.dropdown-divider {
    margin: 0.5rem 0;
    border-color: #e9ecef;
}

.dropdown-menu {
    padding: 0.5rem 0;
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.nav-link.dropdown-toggle {
    color: #4D6582;
    font-weight: 700;
}

.nav-link.dropdown-toggle:hover {
    color: #EE402B;
}

.text-danger {
    color: #EE402B !important;
}

.form-floating > label {
    left: 10px !important
}

/* ============================ */
/*          NEW STYLES          */
/* ============================ */

body {
    font-family: "Mulish", sans-serif;
    opacity: 0;
}

main {
    min-height: 100vh;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* ========== BUTTONS ========== */

.blue-btn {
    background-color: #4D6582;
    border-radius: 30px;
    color: white;
    width: 200px;
    height: 50px;
    border: none;
}

.blue-btn:hover {
    background-color: #5E7897;
    color: white;
}

.light-blue-btn {
    background-color: #EBF4FF;
    border-radius: 30px;
    color: #4D6582;
    width: 200px;
    height: 50px;
    border: #A3CDFF solid 1px;
}

.light-blue-btn:hover {
    background-color: #DEEDFF;
    color: #4D6582;
}

.white-btn-blue-text {
    background-color: white;
    border-radius: 30px;
    color: #4D6582;
    width: 200px;
    height: 50px;
    border: white solid 1px;
}

.white-btn-blue-text:hover {
    background-color: #E2E6EB;
    color: #4D6582;
}

.btn-arrow {
    margin-left: 9px;
    margin-bottom: 3px;
}

.btn-phone {
    margin-left: 9px;
    margin-bottom: 4px;
    transform: rotateY(180deg);
}

.btn-lock {
    margin-left: 9px;
    margin-bottom: 4px;
}

.btn-clipboard {
    margin-left: 4px;
    margin-bottom: 3px;
}

.btn-new-account {
    margin-left: 7px;
    margin-bottom: 3px;
}

.btn-desktop {
    margin-top: -3px;
    margin-left: 7px;
}

.btn-enveloppe {
    margin-top: -2px;
    margin-left: 7px;
}

.red-btn {
    background-color: #EE402B;
    border-radius: 30px;
    color: white;
    width: 200px;
    height: 50px;
    border: none;
}

.red-btn:hover {
    background-color: #FE4E39;
    color: white;
}

.dark-red-btn {
    background-color: #AA1D0E;
    border-radius: 30px;
    color: white;
    width: 200px;
    height: 50px;
    border: none;
}

.dark-red-btn:hover {
    background-color: #ba3a2d;
    color: white;
}

.red-empty-btn {
    background-color: white;
    border-radius: 30px;
    color: #EE402B;
    width: 200px;
    height: 50px;
    border: #EE402B 2px solid;
}

.red-empty-btn:hover {
    background-color: #FE4E39;
    color: white;
}

.btn-white-border {
    border: white solid 1px;
}

.btn-white-border-3 {
    border: white solid 3px;
}

.modal-delete {
    position: absolute;
    left: 10px;
}


/* ========== GENERAL FORMS ========== */

.select2-hidden {
    visibility: hidden !important;
}

.general-form-section {
    padding: 100px 20px 20px 20px;
    background: url('/img/logos/high-res-x.png'), linear-gradient(to right, #FFD8D3, white 70%);
    background-size: 1300px, 100%;
    background-repeat: no-repeat;
    background-position: calc(100% + 400px) 150px, center;
    min-height: 100vh;
}

.general-form-container .title {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.general-form-container .title > img {
    height: 40px;
    width: auto;
    margin-right: 15px;
    margin-top: -10px;
}

.general-form-container {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin: 100px auto;
    text-align: center;
    max-width: 1000px;
    padding: 50px 40px;
    border-radius: 5px;
    background-color: white;
}

.general-form-container .alert ul {
    list-style: none;
    padding: 0 10px;
    margin: 0;
}

.thin-form .general-form-container {
    max-width: 600px;
}


.general-form-container h1 {
    font-weight: bold;
    font-size: 35px;
}

.general-form-container h1 svg {
    margin-top: -7px;
    margin-left: 3px;
}


.general-form-container h2 {
    font-weight: bold;
    font-size: 20px;
    margin-top: 20px;
}

.general-form-container p {
    margin-top: 10px
}

.p-x-12px {
    padding-left: 12px;
    padding-right: 12px;
}

.section {
    padding: 5px 30px 25px 30px;
    margin-top: 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    background-color: #F3F6F9;
    border: 2px solid #BECAD6;
}

.general-form-container .select2-selection {
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    box-sizing: border-box;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.general-form-container .form-control:focus, .general-form-container .select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: #4D6582 !important;
    box-shadow: 0 0 2px 2px rgba(77, 101, 130, 0.1) !important;
}

.general-form-container .select2-container .select2-search--inline .select2-search__field {
 
    margin-top: -10px;
}


.general-form-container input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]) {
    min-height: 58px;
}

.general-form-container .textarea textarea {
    min-height: 120px !important;
    padding: 20px;
}


.general-form-container .select2-container .select2-selection--multiple .select2-selection__rendered {
    display: flex !important;
    flex-wrap: wrap;
    margin-top: -4px;
}

.mt-n5 {
    margin-top: -5px;
}

.general-form-container .select2-container .select2-search--inline .select2-search__field::placeholder {
    color: rgb(33, 37, 41);
}

/* Select2 placeholders */

.select2fields .select2-search__field {
    min-height: 30px;
    font-family: 'Mulish', sans-serif !important;
}

/* Change the background and text color of selected items in the input box */
/*.select2-selection__choice {
    background: linear-gradient(to bottom, #D03C2D 0%, #AA1D0E 100%) !important;
    color: white !important;*/ /* White text */
    /*margin-bottom: 10px;
}*/

/* Optional: Add hover effect for selected items */
/*.select2-selection__choice:hover {
    background: linear-gradient(to bottom, #E45041 100%, #D03C2D 0%) !important;
    color: #FFF !important;*/ /* Keep text white */
/*}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    border: 1px solid #AA1D0E !important;*/ /* Add a border for better visibility */
    /*margin-left: 2px;
}

.select2-container .select2-selection--multiple .select2-selection__clear {
    color: #B03526;
    margin-top: 3px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #FFEBE8;
    color: #212529;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: white;
    border-right: 0.5px rgba(255,255,255, 0.25) solid;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    background-color: rgba(255,255,255, 0.25);
    color: white;
}


.select2-container--default .select2-selection--multiple textarea {
    font-family: 'Mulish', sans-serif !important;
    color: rgba(0, 0, 0, 0.7);
    min-height: 35px;
}

.select2-container--default .select2-search--inline .select2-search__field {
    margin-top: 0;
}

.select2-results__option--selectable, .select2-results__option {
    font-weight: 300;
}*/

.lh-20 {
    line-height: 20px;
}

.mt-40px {
    margin-top: 40px;
}

.checkboxField input {
    float: left;
    margin-left: 0 !important;
}

/* ========== TERMS OF USE/PRIVACY POLICY ========== */
/* ==========       SHARED STYLES         ========== */

.terms {
    background: linear-gradient(to right, #FFE0DC, white, #FFFCFB);
    padding: 180px 50px 100px 50px;
    font-family: "Mulish", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.terms > div {
    max-width: 1200px;
   
}

.terms h1 {
    text-align: center;
    background-color: #EE402B;
    color: white;
    padding: 30px 0;
    margin-bottom: 60px;
    width: 100%;
    font-weight: 800;

}

.terms h2, .terms ol > li::marker {
    font-size: 20px;
    font-weight: 700;
}

.terms ol > li {
    margin-bottom: 30px;
}

/* ========== FOR LAWYERS/FOR EXPERTS ========== */
/* ==========     SHARED STYLES      ========== */

.header-placeholder {
    height: 110px;
}

.lawyer-expert-hero-section > div {
    display: flex;
    flex-direction: row;
}

.lawyer-expert-hero-section h1 {
    font-size: 42px;
    font-weight: 800;
    margin-top: 30px;
    margin-bottom: 30px;
}


.lawyer-expert-hero-section img {
    width: 100%;
    margin-top: -70px;
    padding: 0 0 0 50px;
}

.lawyer-expert-hero-section {
    padding-top: 150px;
    display: flex;
    justify-content: center;
    font-family: "Mulish", sans-serif;
    background-position: center 180px, center center;
    background-size: 60vw, 100vw;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.lawyer-expert-hero-section > div {
    max-width: 1200px;
    padding-left: 100px;
    padding-right: 40px;
}

.lawyer-expert-hero-section + .below-hero-section > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 320px;
}

.below-hero-section {
    background-size: cover;
    margin-top: -330px;
    text-align: center;
    padding-bottom: 60px;
}

.below-hero-section h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
}

.lawyer-expert-hero-section .titles-container {
    width: 100%;
}

.below-hero-section > div > div {
    text-align: center;
}

.how-it-works-lawyer-expert {
    text-align: center;
    display: flex;
    justify-content: center;
}

.how-it-works-lawyer-expert > div {
    max-width: 1100px;
    padding: 60px 65px;
    color: white;
    width: 100%;
    background: url('/img/assets/Shared/faded-white-x-bg.png');
    background-size: cover;
    background-position: center 55px;
    background-repeat: no-repeat;
}

.how-it-works-lawyer-expert h2 {
    font-size: 40px;
    font-weight: bold;
}

.how-it-works-lawyer-expert > div > div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 50px;
}

.round-icon-container {
    border: solid 1px white;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.round-icon-container svg {
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.2));
}

.round-icon-step {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.round-icon-step h3 {
    font-weight: bold;
    font-size: 22px;
    margin-top: 25px;
    margin-left: -13px;
}

.forward-arrow {
    margin-top: -50px;
}

.forward-arrow > img {
    width: 40px;
    height: 40px;
}

.how-it-works-details-lawyer-expert {
    display: flex;
    justify-content: center;
    padding: 100px 30px;
    gap: 50px;
}

.how-it-works-details-lawyer-expert > div  {
    max-width: 1100px;
}

.how-it-works-detail-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 40px 20px 40px;
    margin-bottom: 75px;
    
}

.step-info {
    display: flex;
    width: 100%;
    margin-top: -10px;
}

.step-info > div:nth-child(1) {
    display: flex;
    flex-direction: column;
    flex: 75%;
    padding-right: 50px;
}

.step-info > div:nth-child(2) {
    flex: 25%;
    display: flex;
}

.step-info > div:nth-child(2) img {
    width: 100%;
    object-fit: contain;
    margin-top: 30px;
}

.step-label {
    color: white;
    font-size: 25px;
    width: 170px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 7px;
    margin-top: -22px
}

.step-info svg {
    opacity: 50%;
    margin-bottom: 10px;
    margin-left: -15px;
}

.step-info h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

.step-info p {
    margin-top: 10px;
    margin-bottom: 8px;
}

.graphic-section .graphic-bg-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}


.graphic-section .graphic-bg-section > div  {
    max-width: 1100px;
    padding: 110px 50px 300px 50px;
}

.graphic-section .graphic-bg-section h3 {
    margin-top: 50px;
    margin-bottom: 50px;
    font-weight: 800;
}

.graphic-section .graphic-bg-section h2 {
    font-size: 40px;
    font-weight: bold;
}

/* ========== DASHBOARD STYLES ========== */

#resultsContainer > p {
    font-size: 20px;
}

#resultsContainer {
    margin-top: 80px;
}



/* ========== MEDIA QUERIES ========== */
@media (min-width: 2600px) {
    /* FOR LAWYERS/FOR EXPERTS */
    .lawyer-expert-hero-section + .below-hero-section > div {
        padding-top: 140px;
    }
    .below-hero-section {
        border-top: solid 10px #EE402B;
        margin-top: -180px;
    }
}

@media (max-width: 2100px) {
    /* FOR LAWYERS/FOR EXPERTS */
    .below-hero-section {
        margin-top: -300px;
    }
}

@media (max-width: 1800px) {
    /* FOR LAWYERS/FOR EXPERTS */
    .below-hero-section {
        margin-top: -280px;
    }
    .lawyer-expert-hero-section + .below-hero-section > div {
        padding-top: 240px;
    }

    .how-it-works-details-lawyer-expert {
        padding: 100px 30px 30px 30px;
    }
    
}

@media (max-width: 1300px) {
    /* FOR LAWYERS/FOR EXPERTS */
    .lawyer-expert-hero-section + .below-hero-section > div {
        padding-top: 200px;
    }
}


@media (max-width: 1200px) {
    /* FOR LAWYERS/FOR EXPERTS */
    .below-hero-section {
        margin-top: -230px;
    }
}

@media (max-width: 1150px) {
    /* FOR LAWYERS/FOR EXPERTS */
    .lawyer-expert-hero-section img {
        margin-top: -10px;
        padding: 0 0 0 0;
    }
}
@media (max-width: 1050px) {
    /* FOR LAWYERS/FOR EXPERTS */
    .lawyer-expert-hero-section > div > div:nth-child(1) {
        flex: 3;
        padding-right: 40px;
    }
    .lawyer-expert-hero-section > div > div:nth-child(2) {
        flex: 2;
    }
    .lawyer-expert-hero-section h1 {
        margin-bottom: 15px;
    }
    .below-hero-section {
        margin-top: -150px;
    }
    .lawyer-expert-hero-section + .below-hero-section > div {
        padding-top: 160px;
    }
}


@media (max-width: 1000px) {
    /* FOR LAWYERS/FOR EXPERTS */
    .step-info {
        margin-top: -10px;
    }

    .step-info svg {
        margin-bottom: 15px;
    }

    .step-info h4 {
        margin-right: -40%;
        margin-bottom: 50px;
    }

    .step-info > div:nth-child(2) {
/*        margin-top: 160px;*/
        flex: 25%;
    }

    .step-info > div:nth-child(1) {
        flex: 75%;
    }

    /* GENERAL FORMS */
    .general-form-section {
        background: linear-gradient(to right, #FFD8D3, white 70%);
        background-size: 100%;
        background-position: center;
    }
}

@media (max-width: 991px) {

    /* FOR LAWYERS/FOR EXPERTS */
    .lawyer-expert-hero-section > div {
        flex-direction: column;
        padding-left: 65px;
        padding-right: 65px;
        text-align: center;
    }
    .lawyer-expert-hero-section > div > div:nth-child(1) {
        padding-right: 0;
    }
    .lawyer-expert-hero-section img {
        margin-top: 20px;
        margin-bottom: 30px;
    }
    .header-placeholder {
        height: 80px;
    }
    .lawyer-expert-hero-section {
        background-attachment: scroll;
        background-size: 70vw, 100vw;
        padding-top: 100px;
    }
    .lawyer-expert-hero-section + .below-hero-section > div {
        padding-top: 180px;
    }
}

@media (max-width: 768px) {
    /* FOR LAWYERS/FOR EXPERTS */
    .round-icon-container svg {
        width: 35px;
        height: 35px;
    }

    .round-icon-container {
        width: 70px;
        height: 70px;
    }

    .round-icon-step h3 {
        font-size: 20px;
    }

    .step-info h4 {
        margin-bottom: 20px;
    }

    .graphic-section .graphic-bg-section h3 {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

@media (max-width: 700px) {
    /* FOR LAWYERS/FOR EXPERTS */
    .step-info {
        flex-direction: column;
    }

        .step-info svg {
            margin-left: 0;
            margin-bottom: 10px;
            margin-top: 30px;
        }

        .step-info > div:nth-child(2) {
            margin-top: 10px;
            margin-left: 5px;
        }

        .step-info > div:nth-child(1) {
            text-align: center;
            padding-right: 0;
            align-items: center;
        }

        .step-info h4 {
            margin-right: 0;
        }

        .step-info > div:nth-child(2) img {
            width: 70%;
            margin: auto;
            margin-top: 30px;
        }

    .how-it-works-detail-box {
        padding: 0 40px 40px 40px;
    }

    /* GENERAL FORMS */
    .general-form-container .section {
        padding: 5px 10px 25px 10px;
    }

    .general-form-container .section .col-12 {
        padding: 0 6px;
    }
}




    @media (max-width: 600px) {
        /* FOR LAWYERS/FOR EXPERTS */
        .how-it-works-lawyer-expert > div > div {
            flex-direction: column;
        }

        .forward-arrow {
            margin-top: 20px;
            margin-bottom: 30px;
            transform: rotate(90deg);
        }

        .round-icon-container svg {
            width: 80px;
            height: 80px;
        }

        .round-icon-container {
            width: 150px;
            height: 150px;
        }

        .round-icon-step h3 {
            font-size: 30px;
            margin-top: 40px;
        }

        /* GENERAL FORMS */
        .general-form-container {
            padding: 50px 20px;
        }
    }



@media (max-width: 576px) {
    .general-form-container .title {
 
        flex-direction: column;
        gap: 15px;

    }
}

    @media (max-width: 550px) {
        /* FOR LAWYERS/FOR EXPERTS */
        .lawyer-expert-hero-section > div {
            padding-left: 30px;
            padding-right: 30px;
        }


        .below-hero-section {
            margin-top: -250px;
        }


        .lawyer-expert-hero-section + .below-hero-section > div {
            padding-top: 240px;
        }

        .step-info > div:nth-child(2) img {
            width: 90%;
        }
    }



    @media (max-width: 450px) {
        /* TERMS OF USE/PRIVACY POLICY */
        .terms {
            padding: 180px 20px 100px 20px;
        }
    }


    @media (max-width: 375px) {
        /* FOR LAWYERS/FOR EXPERTS */
        .step-info > div:nth-child(2) img {
            width: 100%;
        }

        /* GENERAL FORMS */
        .general-form-section {
            padding: 70px 20px 20px 20px;

        }
    }

