@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
body{
    font-family: 'Outfit', sans-serif;
    padding: 0 100px;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
}
h1, h2, h3, h4, h5, p{
    margin: 0;
}
.form-control{
    color: #fff !important;
}
.container{
    max-width: 1800px;
}
header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
}
.navbar{
    max-width: 1600px;
    padding: 56px 100px;
    margin: 0 auto;
    transition: all 0.3s ease;
}
header.scrolled{
    background-color: #ffffff;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05), 0 2px 20px 0 rgba(0, 0, 0, 0.05);
}
header.scrolled .navbar{
    padding: 30px 100px;
}
.navbar-brand img{
    transition: opacity 0.3s ease;
}
.navbar-nav{
    gap: 40px;
    padding-left: 35px;
    border-left: 2px solid #a3a3a3;
    margin-left: 40px !important;
}
.navbar-nav .nav-item .nav-link{
    font-size: 20px;
    line-height: 24px;
    color: #fff;
    padding: 22px 0;
    transition: 0.5s all;
}
.navbar-nav .nav-item .nav-link.active{
    color: #b69d73;
}
.navbar.scrolled .nav-link{
    color: #333;
}
.navbar.scrolled .banner-btns a{
    background-color: #333;
}
.navbar-nav .nav-item .nav-link:hover{
    color: #b69d74;

}
.navbar-right{
    display: flex;
    align-items: center;
    gap: 26px;
}
.navbar-right button{
    border: none;
    background-color: transparent;
}
.navbar-collapse{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* Banner Section */
.banner{
    position: relative;
    height: 800px;
    min-height: 600px;
    background: url(../images/backgroundbanner.png) no-repeat center center/cover;
    overflow: hidden;
    border-radius: 0 0 40px 40px;
}
.banner .container{
    height: 100%;
}
.banner-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    max-width: 895px;
    padding-left: 200px;
    position: relative;
    z-index: 2;
    padding-top: 200px;
}
.banner-content h2, .support-resources p{
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    color: #b69d74;
}
.banner-content h1, .support-resources h2, .touch-left h2{
    font-size: 70px;
    line-height: 75px;
    font-weight: 600;
}
.banner-content p, .banner-btns a p, .free-guide-content p{
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    color: #fff;
    margin: 0;
}
.banner-btns{
    display: flex;
    align-items: center;
    gap: 33px;
}
.banner-btns a, .banner-btns button{
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px 33px;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.2);
}
.banner-btns a img{
    transition: 0.3s all;
}
.banner-btns a p{
    text-transform: uppercase;
    font-weight: 600;
}
.banner-btns a:hover img{
    transform: translateX(10px);
}
.banner-points{
    display: flex;
    align-items: center;
    margin-top: 93px;
    gap: 34px;
    padding-top: 18px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}
.banner-points .point{
    display: flex;
    align-items: center;
    gap: 10px;
}
.banner-points .point p{
    font-size: 18px;
    line-height: 21px;
    font-weight: bold;
    color: #fff;
}
.banner-lawyers{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 700px;
    height: 700px;
    max-width: 900px;
    z-index: 1;
}
.banner-lawyers img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom right;
}
.our-mission{
    padding: 150px 0 100px 0;
}
.our-mission .container{
    max-width: 1368px;
}
.our-mission h2{
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    color: #b69d73;
}
.our-mission h3{
    font-size: 60px;
    line-height: 75px;
    font-weight: 600;
    color: #1f2739;
}
.our-mission p{
    font-size: 20px;
    line-height: 26px;
    color: #1f2739;
    margin: 53px 0 55px 0;
}
.banner-btns-dark a{
    background: #f0ebe3;
}
.banner-btns-dark a p{
    color: #1f2739;
}
.mission-box{
    height: 378px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
    border: 1px solid #d7d7d7;
    border-radius: 30px;
    padding: 0 20px 78px 20px;
    position: relative;
}
.mission-box h4{
    font-size: 70px;
    line-height: 75px;
    font-weight: 600;
    color: #b69d74;
    margin-bottom: 45px;
    z-index: 10;
    position: relative;
}
.mission-box p{
    font-size: 22px;
    line-height: 25px;
    color: #1f2739;
    font-weight: 600;
    margin: 0;
}
.mission-box img{
    position: absolute;
    top: 37px;
    max-width: 300px;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
}
.stand-for-section{
    margin-top: 100px;
    padding-top: 53px;
    border-top: 2px solid #f0ebe3;
}
.stand-for-section h2{
    font-size: 70px;
    line-height: 75px;
    font-weight: 600;
    color: #1f2739;
}
.standing-img{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.standing-img img{
    width: 70%;
    height: 70%;
    object-fit: contain;
}
.standing-box{
    display: flex;
    align-items: center;
    gap: 70px;
    padding: 46px 0 46px 65px;
    border-bottom: 2px solid #f0ebe3;
}
.standing-box:nth-child(1){
    padding-top: 0;
}
.standing-content{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.standing-content h3{
    font-size: 30px;
    line-height: 32px;
    font-weight: 600;
    text-transform: uppercase;
    color: #b69d74;
}
.standing-content p, .featured-content-left p, .expertise-header p, .expertise-card p, .arc-story-content p, .nationwide-reach-wrapper p, .detention-row-left p, .detention-row-left b{
    font-size: 20px;
    line-height: 26px;
    color: #1f2739;
    margin: 0;
}
.testimonials{
    padding: 120px 0;
    background: url("../images/testimonials-bg2.png") no-repeat center center/cover;
    border-radius: 30px;
    position: relative;
    z-index: 1;
}
.testimonials-heading{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.testimonials-heading , .single-common-question h5{
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    color: #b69d73;
}
.testimonials-heading h2, .next-steps-content h2{
    font-size: 70px;
    line-height: 75px;
    font-weight: 600;
    color: #fff;
    margin-top: 13px;
}
.testimonials-slider{
    max-width: 1170px;
    margin: 76px auto 0 auto;
}
.testimonials-box{
    background: url("../images/testimonials-pattern.png") no-repeat center center;
    border-radius: 20px;
    position: relative;
    min-height: 374px !important;
    height: 100%;
}
.testimonial-content{
    display: flex;
    flex-direction: column;
    gap: 42px;
    position: absolute;
    top: 40px;
    text-align: center;
    left: 0;
    max-width: 250px;
    margin: 0 auto;
    right: 0;
}
.testimonial-content img{
    width: 64px;
}
.testimonial-content p{
    color: #1f2739;
    font-size: 24px;
    line-height: 26px;
    text-align: center;
}
.testimonial-footer{
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 20px;
    bottom: 20px;
}
.testimonial-footer h4, .testimonial-footer p{
    font-size: 18px;
    line-height: 21px;
    font-weight: 700;
    color: #fff;
}
.testimonial-footer p{
    font-weight: 400;
}
.slick-arrow{
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    border: 2px solid #b69d73 !important;
}
.slick-arrow:before{
    color: #b69d73 !important;
    opacity: 1 !important;
}
.slick-prev{
    left: -64px !important;
}
.slick-next{
    right: -64px !important;
}
.testimonials-cards{
    max-width: 1400px;
    margin: 150px auto 0 auto;
}
.testimonial-card{
    text-align: center;
    border-left: 2px solid #b69d74;
}
.testimonials-cards .row .col-md-6:nth-child(4) .testimonial-card{
    border-right: 2px solid #b69d74;
}
.testimonial-card h4{
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    margin-top: 50px;
}
.testimonial-card p{
    font-size: 18px;
    line-height: 21px;
    color: #fff;
}
.testimonial-card .testimonial-icon{
    width: 83px;
    height: 72px;
    margin: 0 auto;
}
.testimonial-card .testimonial-icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.how-we-work{
    padding: 130px 0;
    background-color: #f4f5ef;
    border-radius: 30px;
    margin-top: -30px;
}
.how-we-work h2, .meet-attorney h2, .common-questions h2, .safe-here-wrapper h2{
    font-size: 70px;
    line-height: 75px;
    font-weight: 600;
    color: #1f2739;
    text-align: center;
}
.works-steps{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 1400px;
    margin: 54px auto 0 auto;
    align-items: flex-start;
}
.work-step{
    display: flex;
    align-items: center;
    gap: 71px;
    flex: 0 0 40%;
    max-width: 642px;
}
.step-left{
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}
.step-left h3{
    font-size: 50px;
    line-height: 60px;
    font-weight: 700;
    color: #b69d74;
    transform: rotate(-90deg);
}
.step-left span{
    width: 2px;
    height: 72px;
    background-color: #b69d74;
    display: block;
}
.step-right{
    display: flex;
    flex-direction: column;
    gap: 38px;
    max-width: 360px;
    margin-top: 25px;
}
.step-right h4, .featured-content-right h4{
    font-size: 30px;
    line-height: 36px;
    font-weight: 600;
    color: #1f2639;
    text-transform: uppercase;
}
.step-right p, .single-common-question h5{
    font-size: 20px;
    line-height: 25px;
    color: #1f2639;
}
.work-step-three{
    margin: -100px 0 0 140px;
}
.work-step-two{
    margin: 75px 0 72px 0;
}
.work-step-four{
    margin: 0 0 0 212px;
}
.banner-points-dark{
    margin-top: 0;
}
.banner-points-dark .point p{
    color: #1f2639;
}
.featured-case{
    padding: 131px 0 150px 0;
}
.featured-case .container{
    max-width: 1400px;
    margin: 0 auto;
}
.featured-case-header{
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 1020px;
}
.featured-case-header small, .expertise-header small, .free-guide-content small, .faq-left small, .footer-col-one p, .footer-links ul li a, .get-help-today p{
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    color: #b69d73;
}
.featured-case-header h2{
    font-size: 50px;
    line-height: 55px;
    font-weight: 600;
    color: #1f2739;
}
.featured-case-content{
    padding: 87px 0 116px 78px;
    position: relative;
    margin-top: 35px;
    z-index: 10;
}
.featured-case-content:after{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 89%;
    height: 100%;
    background: #f4f5ef;
    z-index: -1;
    border-radius: 30px;
    overflow: hidden;
}
.featured-left-cards{
    margin-top: 37px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    max-width: 775px;
    width: 100%;
}
.single-card{
    padding: 25px 22px;
    background: #1f2839;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
    flex: 1;
}
.single-card h4{
    font-size: 16px;
    line-height: 20px;
    color: #b69d74;
    font-weight: 700;
}
.single-card p{
    font-size: 20px;
    line-height: 22px;
    color: #fff;
    font-weight: 700;
}
.featured-content-right h4{
    text-transform: Capitalize;
    padding-left: 16px;
    border-left: 3px solid #b69d74;
    margin-bottom: 13px;
}
.expertise{
    padding-bottom: 150px;
}
.expertise-header{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.expertise-header h2, .faq-left h2, .arc-story-content h2{
    font-size: 70px;
    line-height: 75px;
    font-weight: 600;
    color: #1f2739;
    margin: 11px 0 17px 0;
}
.expertise-cards{
    margin: 70px auto 0 auto;
    max-width: 1300px;;
}
.expertise-header p{
    max-width: 636px;
    margin: 0 auto;
    text-align: center;
}
.expertise-card{
    background: #f4f5ef;
    border-radius: 30px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    margin: 50px 10px 0 10px;
    position: relative;
    transition: 0.3s all;
}
.expertise-card h4{
    font-size: 22px;
    line-height: 26px;
    font-weight: 600;
    margin: 50px 0 14px 0;
    color: #1f2639;
}
.expertise-card p{
    max-width: 250px;
    width: 100%;
}
.expertise-card a{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #b69d74;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -25px;
    right: 45px;
}
.expertise-card a img{
    filter: brightness(0) invert(1);
}
.expertise-card:hover a{
    background: #f4f5ef;
}
.expertise-card:hover img{
    filter: brightness(0) invert(1);
}
.expertise-card:hover a img{
    filter: brightness(100%) invert(0);
}
.expertise-card:hover{
    background: #b69d74;
    color: #fff;
}
.expertise-card:hover h4, .expertise-card:hover p{
    color: #fff;
}
.discuss-case{
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 100px;
}
.discuss-case h5{
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    color: #1f2739;
    padding: 10px 0 10px 38px;
    border-left: 3px solid #b69d74;
}
.free-guide{
    max-width: 1800px;
    height: 724px;
    padding: 50px 264px 50px 0;
    width: 100%;
    border-radius: 30px;
    background-color: #353d4c;
    position: relative;
    margin: 0 auto;
}
.free-guide .container{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.free-guide-content{
    max-width: 640px;
    width: 100%;
    margin-left: auto;
    display: flex;
    flex-direction: column;
}
.free-guide-content h2, .nationwide-reach-wrapper h2{
    font-size: 70px;
    line-height: 75px;
    color: #fff;
    font-weight: 600;
}
.free-guide-content small{
    margin: 35px 0 25px 0;
}
.free-guide-image{
    position: absolute;
    bottom: 45px;
    left: 0;
    width: 700px;
    height: 700px;
}
.free-guide-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}
.free-guide-content form{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 35px;
    max-width: 580px;
    width: 100%;
}
.free-guide-content form .form-group{
    position: relative;
    height: 62px;
    width: 100%;
}
.free-guide-content form .form-group .form-control{
    height: 100%;
    background-color: #fff;
    border-radius: 30px;
    padding: 20px 20px 20px 90px;
    font-size: 18px;
    line-height: 20px;
    color: #b69d74 !important;
}
.free-guide-content form .form-group img{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 35px;
    padding-right: 15px;
    border-right: 2px solid #d6d6d6;
}
.free-guide-content form .form-group .form-control::placeholder{
    color: #b69d73;
}
.form-footer{
    display: flex;
    align-items: center;
    gap: 35px;
}
.form-footer p{
    font-size: 16px;
    line-height: 26px;
    color: #fff;
}
.banner-btns-orange a, .banner-btns-orange button{
    background-color: #b69d74;
}
.banner-btns-orange button{
    border: none;
}
.banner-btns-orange a p{
    font-size: 18px;
}
.faq{
    padding: 140px 0;
    background-color: #f4f5ef;
    margin-top: -30px;
}
.faq .container{
    max-width: 1400px;
    margin: 0 auto;
}
.faq-left{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.faq-left small, .faq-header h4, .faq-body, .attorney-details-left small, .attorney-details-left p, .attorney-details-left ul li{
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    color: #b69d73;
}
.faq-left h2{
    font-size: 70px;
    line-height: 75px;
    font-weight: 600;
    color: #1f2739;
    margin: 11px 0 17px 0;
}
.have-question{
    display: flex;
    align-items: center;
    gap: 10px;
}
.have-question>div{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.have-question>div h4{
    font-size: 34px;
    line-height: 40px;
    font-weight: 600;
    color: #1f2639;
}
.have-question>div a{
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
    color: #1f2639;
    text-decoration: underline;
    text-decoration-color: #b69d73;
    text-underline-offset: 5px;
}
.faq-wrapper{
    display: flex;
    flex-direction: column;
    padding: 70px;
    background-color: #fff;
    border-radius: 20px;
}
.faq-item{
    padding: 25px 0;
    border-bottom: 1px solid #eff0e8;
}
.faq-item:nth-child(1){
    padding-top: 0;
}
.faq-item:nth-last-child(1){
    padding-bottom: 0;
    border: none;
}
.faq-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.faq-header img{
    transition: transform 0.3s ease;
}
.faq-header h4, .case-overview p{
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    color: #1f2639;
}
.faq-body{
    color: #1f2639;
    font-weight: 400;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding-top: 0;
}
.faq-item.active .faq-body{
    max-height: 500px;
    padding-top: 25px;
}
.faq-item.active .faq-header img{
    transform: rotate(180deg);
}
.next-steps{
    padding-top: 150px;
}
.next-steps .container{
    max-width: 1800px;
    margin: 0 auto;
}
.next-steps-content{
    border-radius: 30px;
    background: url("../images/nextsteps2.png") no-repeat center center/cover;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.next-steps-content p{
    font-size: 34px;
    line-height: 40px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 35px;
    margin-top: 15px;
    text-align: center;
}
.next-steps-content .banner-points .point p{
    margin: 0;
}
footer{
    padding: 188px 0 118px 0;
}
.footer-col-one{
    display: flex;
    flex-direction: column;
    gap: 43px;
    align-items: flex-start;
}
.footer-col-one p{
    display: flex;
    flex-direction: column;
    gap: 43px;
    font-weight: 400;
    color: #1f2639;
}
.footer-links{
    display: flex;
    flex-direction: column;
    gap: 44px;
}
.footer-links h4{
    display: flex;
    flex-direction: column;
    gap: 44px;
    text-transform: uppercase;
    font-weight: bold;
}
.footer-links ul{
    display: flex;
    flex-direction: column;
    gap: 22px;
    list-style-type: none;
    padding: 0;
}
.footer-links ul li a{
    color: #1f2639;
    font-weight: 400;
}
.social-icons{
    flex-direction: row !important;
}
.footer-contact{
    margin-top: 83px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eff0e8;
    margin-bottom: 25px;
}
.single-contact{
    display: flex;
    align-items: center;
    gap: 10px;
}
.single-contact>div{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.single-contact a h5, .single-contact a p{
    font-size: 18px;
    font-weight: 600;
    color: #1f2639;
}
.single-contact a p{
    color: #b69d73;
}
.footer-bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-bottom p, .footer-bottom ul li a{
    flex: 1;
    font-size: 18px;
    line-height: 21px;
    color: #1f2639;
}
.footer-bottom ul{
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    list-style-type: none;
    padding: 0;
}
footer a{
    transition: 0.3s all;
}
footer a:hover{
    color: #b69d73 !important;
}
footer small{
    font-size: 12px;
    line-height: 14px;
    display: block;
    margin-top: 41px;
    color: #1f2639;
}
.small-banner{
    min-height: 541px;
    max-height: 541px;
    height: 100%;
    background: url(../images/about-banner2.png) no-repeat center center/cover;
    border-radius: 0 0 30px 30px;
}
.small-banner .banner-content{
    margin: 0 auto;
    padding-left: 0;
    align-items: center;
    text-align: center;
    padding-top: 240px;
}
.arc-story{
    padding: 350px 0 150px 0;
}
.arc-story-content{
    padding: 77px 67px;
    background: #f4f5ef;
    border-radius: 30px;
    max-width: 704px;
}
.arc-story-content h2{
    margin: 0;
}
.arc-story-content p{
    margin-top: 28px;
}
.get-help-today{
    padding: 63px 36px;
    background: #1f2739;
    border-radius: 30px;
    max-width: 601px;
}
.submit-info{
    display: flex;
    align-items: center;
    gap: 15px;
}
.submit-info button{
    min-width: 250px;
    height: 50px;
    border-radius: 10px;
    background: #b69d74;
    border: none;
    text-transform: uppercase;
    font-size: 15px;
    line-height: 26px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}
.submit-info button img{
    position: relative;
    top: 0;
    width: 20px;
    height: auto;
}
.submit-info p{
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    margin: 0;
    font-weight: 400;
}
.get-help-today h3{
    font-size: 50px;
    line-height: 55px;
    font-weight: 600;
    color: #fff;
}
.get-help-today p {
    margin-top: 10px;
}
.get-help-today form{
    margin-top: 30px;
}
.get-help-today form .form-control{
    height: 52px;
    border-radius: 10px;
    padding: 20px 14px;
    color: #1f2739;
    font-size: 16px;
    line-height: 26px;
    border: 1px solid #b69d73;
    background-color: transparent;
    margin-bottom: 12px;
 }
.get-help-today form .form-control::placeholder{
    color: rgba(255, 255, 255, 0.4);
}
.get-help-today form textarea{
    height: 101px !important;
    resize: none;
}
.arc-story .container{
    max-width: 1400px;
    margin: 0 auto;
}
.arc-story img{
    position: absolute;
    top: -250px;
    left: 0;
    width: 80%;
    height: 649px;
    object-fit: contain;
}
.arc-content{
    position: relative;
    z-index: 10;
}
.arc-story-wrapper{
    position: relative;
}
.meet-attorney{
    padding: 0 0 40px 0;
}
.meet-attorney .container{
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}
.attorney-details{
    margin-top: 45px;
    position: relative;
}
.attorney-details-left h3{
    font-size: 30px;
    line-height: 26px;
    font-weight: 600;
    color: #1f2639;
    margin-bottom: 13px;
}
.attorney-details-left p, .attorney-details-left ul li{
    color: #1f2639;
    font-weight: 400;
}
.attorney-details-left ul{
    list-style-type: disc;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 35px;
}
.attorney-details-left ul li{
    font-weight: 600;
}
.attorney-blocks{
    display: flex;
    align-items: center;
}
.attorney-details{
    max-width: 925px;
    margin-left: auto;
}
.attorney-details-left{
    padding-right: 65px;
}
.attorney-details h2{
    text-align: left;
    margin-bottom: 55px;
}
.attorney-details-left, .attorney-details-right{
    flex: 0 0 50%;
}
.attorney-detail-right{
    padding: 62px 52px;
    background: #b69d73;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 30px;
}
.attorney-detail-right h6{
    font-size: 30px;
    line-height: 32px;
    font-weight: 700;
    color: #fff;
}
.attorney-detail-right p{
    font-size: 20px;
    line-height: 26px;
    color: #fff;
    margin: 0;
}
.attorney-detail-right button{
    width: 250px;
    height: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    border-radius: 10px;
    background: #fff;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
}
.nations-content-wrapper{
    position: relative;
}
.attorney-image{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
}
.nationwide-reach-wrapper{
    height: 1000px;
    background: #1f2839;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding-bottom: 100px;
    position: relative;
    margin-top: -20px;
}
.nationwide-reach .container, .common-questions .container{
    max-width: 1800px;
    margin: 0 auto;
}
.nationwide-reach-wrapper p{
    color: #fff;
    margin-top: 42px;
    margin-bottom: 47px;
}
.nations{
    display: flex;
    align-items: center;
    gap: 10px;
}
.nations p, .nations button{
    font-size: 20px;
    line-height: 24px;
    color: #fff;
    margin: 0;
    width: 145px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #b69d73;
    border-radius: 30px;
}
.nations-border{
    width: 100%;
    margin: 100px auto 65px auto;
}
.nations-border img{
    width: 100%;
}
.nations-content-wrapper{
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}
.nation-points{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 128px;
}
.nation-points .nation-single-point{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.nation-points .nation-single-point h3{
    font-size: 50px;
    line-height: 60px;
    font-weight: 700;
    color: #fff;
}
.nation-points .nation-single-point p{
    font-size: 18px;
    line-height: 21px;
    color: #fff;
    margin: 0;
}
.map-image{
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
}
.map-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.common-questions h2, .detention-row-left h2, .case-overview h2, .expect-wrapper h2{
    font-size: 70px;
    line-height: 75px;
    font-weight: 600;
    color: #1f2739;
    text-align: center;
}
.common-questions-wrapper{
    background: #f4f5ef;
    padding: 110px 0 130px 0;
    margin-top: -50px;
    border-radius: 30px;

}
.questions-blocks{
    max-width: 1400px;
    margin: 80px auto 0 auto;
}
.single-common-question{
    padding: 27px 41px;
    background: #fff;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 20px;
}
.single-common-question h5{
    color: #b69d73;
}
.safe-here{
    padding-top: 155px;
}
.safe-here .container{
    max-width: 1800px;
    margin: 0 auto;
}
.safe-here-wrapper{
    height: 450px;
    background: url("../images/safe-here.png") no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    gap: 30px;
    border-radius: 30px;
    text-align: center;
    justify-content: center;
}
.safe-here-wrapper h2{
    color: #b69d73;
}
.safe-here-wrapper p{
    font-size: 34px;
    line-height: 40px;
    font-weight: 600;
    color: #fff;
    max-width: 875px;
    margin: 0 auto;
}
.small-banner-case{
    background-image: url("../images/case-baner2.png");
}
.small-banner-case .banner-content{
    max-width: 1100px;
}
.detention-abuse .container{
    max-width: 1400px;
    margin: 0 auto;
}
.detention-abuse{
    padding: 155px 0 95px 0;
}
.detention-row-left{
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-right: 100px;
}
.detention-row-left h2{
    text-align: left;
}
.who-may-qualify{
    padding: 54px;
    background: #f4f5ef;
    border-radius: 30px;
}
.who-may-qualify h4{
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    color: #1f2639;
    margin-bottom: 24px;
}
.who-may-qualify ul{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
}
.who-may-qualify ul li{
    display: flex;
    align-items: center;
    gap: 12px;
}
.who-may-qualify ul li p{
    font-size: 18px;
    color: #1f2639;
}
.who-may-qualify small{
    font-size: 16px;
    line-height: 22px;
    color: #1f2639;
}
.case-overview h2{
    color: #b69d73;
}
.case-overview p{
    font-weight: 400;
    text-align: center;
    margin-top: 10px;
}
.case-studies{
    max-width: 1300px;
    margin: 80px auto 0 auto;
}
.single-case{
    height: 300px;
    background: #b69d74;
    border-radius: 20px;
    padding: 59px 40px;
}
.single-case h6{
    font-size: 22px;
    line-height: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}
.single-case p, .expect-wrapper p{
    font-size: 20px;
    line-height: 26px;
    text-align: left;
    color: #fff;
}
.expect-wrapper{
    padding: 95px 0;
    background-color: #1f2839;
    border-radius: 30px;
}
.what-to-expect{
    padding: 130px 0 0 0;
    position: relative;
    z-index: 1;
}
.what-to-expect .container{
    max-width: 1800px;
    margin: 0 auto;
}
.expect-wrapper h2{
    color: #fff;
}
.expect-wrapper p{
    text-align: center;
    color: #b69d73;
    margin-top: 25px;
}
.single-expect{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 23px;
    padding: 0 20px;
    position: relative;
    height: 100%;
}
.expect-blocks .row .col-md-6:nth-child(4) .single-expect::after{
    display: none;
}
.single-expect:after{
    content: '';
    width: 1px;
    height: 130px;
    background-color: #b69d74;
    display: block;
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    right: 0;
}
.expect-blocks{
    max-width: 1350px;
    margin: 65px auto 0 auto;
}
.single-expect h6, .single-expect p{
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    color: #b69d74;
    margin: 0;
}
.single-expect p{
    color: #fff;
    margin: 0;
    font-weight: 400;
}
.expect-blocks .row .col-md-3:nth-child(4) .single-expect:after {
    display: none;
}
.support-resources{
    padding: 100px 0;
}
.support-resources h2{
    text-align: center;
}
.support-resources p{
    color: #b69d73;
    text-align: center;
    margin-top: 25px;
}
.support-cards{
    max-width: 1300px;
    margin: 44px auto 0 auto;
}
.single-support-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    border-radius: 30px;
    background-color: #f4f5ef;
    padding: 43px 45px;
    height: 100%;
    transition: 0.5s all;
    border: 1px solid #f4f5ef;
    border-bottom: 3px solid #b69d73;
}
.single-support-card:hover{
    border-color: #b69d74;
}
.single-support-card h5, .single-support-card p{
    font-size: 22px;
    line-height: 26px;
    font-weight: 700;
}
.single-support-card p{
    font-weight: 400;
    color: #333;
    margin: 0;
}
.case-next-step h2{
    color: #b69d73;
}
.case-next-step p{
    max-width: 900px;
    font-size: 20px;
    line-height: 24px;
}
.small-banner-contact{
    background-image: url("../images/contact-bg2.png");
}
.get-in-touch{
    padding: 160px 0 0 0;
}
.get-in-touch .container{
    max-width: 1400px;
    margin: 0 auto;
}
.touch-left p{
    font-size: 20px;
    line-height: 30px;
    color: #b69d74;
    font-weight: 700;
}
.contact-card-left{
    display: flex;
    flex-direction: column;
    gap: 42px;
    position: relative;
}
.contact-card-left a{
    display: flex;
    align-items: center;
    gap: 36px;
}
.contact-card-left a p{
    font-size: 18px;
    line-height: 30px;
    color: #1f2739;
}
.contact-border{
    position: absolute;
    right: -20px;
    top: 0;
    bottom: 0;
    height: 100%;
}
.contact-card-left a img{
    width: 35px;
}
.contact-card h6{
    font-size: 20px;
    line-height: 24px;
    font-weight: bold;
    color: #1f2639;
    margin-bottom: 46px;
}
.contact-social{
    display: flex;
    align-items: center;
    gap: 27px;
    list-style-type: none;
    padding: 0;
}
.contact-card{
    padding: 58px 52px;
    background-color: #f4f5ef;
    border-radius: 30px;
}
.get-help-today form .position-relative img{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
}