/*------------------------------------------------------------------
Project: Lawyer
Author: The_Krishna
Last change: 08/07/2024
Primary use:
------------------------------------------------------------------ */
/*-----------------------[Table of contents]------------------------
1.Default CSS
2.Page Loader CSS
3.Button CSS
4.Whole Site Image Animtion CSS
5.Small Header CSS
6.Main Header Menu CSS
7.Section One CSS
8.Section Two CSS
9.Section Three CSS
10.Section Four CSS
11.Section Five CSS
12.Section Six CSS
13.Section Seven CSS
14.Section Eight CSS
15.left-right-box-section CSS
16.Section Nine CSS
17.Section Ten CSS
18.Bottom top button CSS
19.About Section one CSS
20.FAQ Section one CSS
21.Coming Soon Section one CSS
22.404 Section one CSS
23.Conatct Section one CSS
24.Services Page1 Section one CSS
25.Services Page2 Section one CSS
26.Services Page3 Section one CSS
27.Single Services CSS
28.Case Studis CSS
29.blog page CSS
30.single blog CSS
------------------------------------------------------------------ */
/*-----------------------[ 1.Default CSS ]------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal;
    scroll-behavior: smooth;
}
html {
    scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}
a {
    text-decoration: none;
}
ol,
ul {
    padding-left: 0rem !important;
}
dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0rem;
}
ul li {
    list-style: none;
}
button {
    border: none;
}
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-corner {
    display: none;
}
::-webkit-scrollbar-thumb {
    background: #F1BE87;
    background-clip: content-box;
}
::-webkit-scrollbar-track {
    background-color: #0F141C;
}
body {
    background: var(--15, #071B35);
}
/*-----------------------[ 2.Page Loader CSS ]------------------------*/
.page-loader {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #071B35;
    z-index: 1000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.page-loader img {
    width: 80px;
    height: auto;
}
.waviy {
    position: relative;
    font-size: 60px;
}
.waviy span {
    font-family: "Marcellus", serif;
    position: relative;
    display: inline-block;
    color: #F1BE87;
    font-weight: 500;
    animation: waviy 1s infinite;
}
.waviy .i1 {
    animation-delay: calc(.1s * 1);
}
.waviy .i2 {
    animation-delay: calc(.1s * 2);
}
.waviy .i3 {
    animation-delay: calc(.1s * 3);
}
.waviy .i4 {
    animation-delay: calc(.1s * 4);
}
.waviy .i5 {
    animation-delay: calc(.1s * 5);
}
@keyframes waviy {
    0%,
    40%,
    100% {
        transform: translateY(0)
    }
    20% {
        transform: translateY(-20px)
    }
}
/*-----------------------[ 3.Button CSS ]------------------------*/
.button {
    position: relative;
}
.button a {
    position: relative;
    display: inline-block;
    color: var(--15, #071B35);
    font-family: "DM Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    gap: 10px;
    overflow: hidden;
}
.button a:hover,
.button a:focus {
    outline: none;
}
.button a span {
    display: block;
    padding: 18px 30px;
    background: #F1BE87;
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
    color: var(--15, #071B35);
    font-family: "DM Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.button a::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    padding: 18px 30px;
    width: 100%;
    height: 100%;
    background: #fff;
    color: #071B35;
    content: attr(data-hover);
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
    -webkit-transform: translateX(-25%);
    text-align: center;
}
.button a:hover span,
.button a:focus span {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    transform: translateX(100%);
}
.button a:hover::before,
.button a:focus::before {
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    transform: translateX(0%);
}
/*-----------------------[ 4.Whole Site Image Animtion CSS ]------------------------*/
.img-animation-style1,
.img-animation-style2,
.img-animation-style3,
.img-animation-style4,
.img-animation-style5,
.img-animation-style6 {
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
}

.img-animation-style1 img,
.img-animation-style2 img,
.img-animation-style3 img,
.img-animation-style4 img,
.img-animation-style5 img,
.img-animation-style6 img {
    transform-origin: 50% 50%;
    transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
}

.img-animation-style1.active,
.img-animation-style2.active,
.img-animation-style3.active,
.img-animation-style4.active,
.img-animation-style5.active,
.img-animation-style6.active {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.img-animation-style1.active img,
.img-animation-style2.active img,
.img-animation-style3.active img,
.img-animation-style4.active img,
.img-animation-style5.active img,
.img-animation-style6.active img {
    transform: scale(1) translate(0px, 0px);
}

.img-animation-style1 {
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.img-animation-style1 img {
    transform: scale(1.5) translate(-100px, 0px);
}

.img-animation-style2 {
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
}

.img-animation-style2 img {
    transform: scale(1.5) translate(100px, 0px);
}

.img-animation-style3 {
    clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0 100%);
}

.img-animation-style3 img {
    transform: scale(1.5) translate(0, 100px);
}

.img-animation-style4 {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}

.img-animation-style4 img {
    transform: scale(1.5) translate(0, -100px);
}

.img-animation-style5 {
    clip-path: inset(0 15%);
    transform: translate3d(0, 150px, 0);
}

.img-animation-style5.active {
    clip-path: inset(0 0);
    transform: translate3d(0, 0, 0);
}

.img-animation-style5 img {
    transform: scale(1.5) translate(0, -10%);
}

.img-animation-style6 {
    clip-path: circle(15% at 50% 50%);
}

.img-animation-style6.active {
    clip-path: circle(100% at 50% 50%);
}

.img-animation-style6 img {
    transform: scale(1.5) translate(0, 0);
}

/*-----------------------[ 5.Small Header CSS ]------------------------*/
.main-small-heder {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 50px;
    background: var(--15, #071B35);
}
.contact-header {
    display: flex;
    align-items: center;
    gap: 6px;
}
.contact-header p a,
.contact-header p {
    color: var(--1, #FFF);
    font-family: "DM Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.appointment a {
    color: var(--16, #F1BE87) !important;
    text-decoration-line: underline;
}
.form-main.modal-body-form {
    padding: 0 10px;
}
.modal-header.appointment-close-btn {
    border: none;
    padding-bottom: 0;
    box-shadow: none;
}
.modal-header.appointment-close-btn .btn-close {
    box-shadow: none;
    opacity: 1;
}
/*-----------------------[ 6.Main Header Menu CSS ]------------------------*/
header {
    position: sticky;
    top: 0px;
    width: 100%;
    z-index: 100;
    margin: 0 auto;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    background: #FFF;
    padding: 0 50px;
}
.side-menu-logo,
.side-menu-logo2 {
    display: none;
}
.navbar {
    padding: 0;
}
.wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    row-gap: 2rem;
    width: 100%;
    height: 100px;
    margin: 0 auto;
}
.menu-item {
    position: relative;
    display: inline-block;
}
.menu-item:hover {
    background: #F1BE87;
}
li.menu-item.active {
    background: #F1BE87;
}
li.submenu-item.active {
    background: #071B35;
    border-left: 2px solid #F1BE87;
}
li.submenu-item.active a {
    color: #F1BE87;
}
.menu-link {
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 0.25rem;
    column-gap: 0.25rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    color: var(--15, #071B35);
    font-family: "DM Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    height: 100px;
    padding: 0 15px;
}
.menu-link>i.bx {
    font-size: 1.35rem;
    line-height: 1.5;
    color: inherit;
}
@media only screen and (min-width: 993px) {
    .menu-dropdown:hover > .submenu {
      display: block;
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
}
.button1 a::before {
    background: #071B35;
    color: #fff;
}
.submenu {
    position: absolute;
    top: 100px;
    left: -2rem;
    min-width: 14rem;
    height: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    border-top: 2px solid #F1BE87;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    background-color: #FFF;
    transition: all 0.3s ease-in-out;
}
.submenu-item {
    display: block;
    padding: 10px 15px;
    cursor: pointer;
}
.submenu-link {
    color: var(--15, #071B35);
    font-family: "DM Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    transition: all 0.35s ease;
}
.submenu-item:hover .submenu-link {
    color: #F1BE87;
}
.submenu-item:hover {
    outline: none;
    background: #071B35;
    color: #FFF;
    border-left: 2px solid #F1BE87;
}
.burger {
    position: relative;
    display: none;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 1.6rem;
    height: 1.15rem;
    opacity: 0;
    visibility: hidden;
    background: transparent;
}
.burger-line {
    position: absolute;
    display: block;
    right: 0;
    width: 100%;
    height: 2.1px;
    opacity: 1;
    border: none;
    outline: none;
    border-radius: 1rem;
    background: #071B35;
}
.burger-line:nth-child(1) {
    top: 0px;
}
.burger-line:nth-child(2) {
    top: 0.5rem;
    width: 70%;
}
.burger-line:nth-child(3) {
    top: 1rem;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease-in-out;
    background-color: rgba(0, 0, 0, 0.65);
}
/*-----------------------[ 7.Section One CSS ]------------------------*/
.section-one {
    padding: 100px 0;
}
.attorly-img {
    position: absolute;
    left: 0;
    top: 0;
}
.attorly-img2 {
    position: absolute;
    right: 0;
    top: 0;
    transform: rotateY(180deg);
}
.sub-text {
    color: var(--17, #94B0D5);
    text-align: center;
    font-family: "DM Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.hero-text {
    color: var(--1, #FFF);
    text-align: center;
    font-family: Marcellus;
    font-size: 96px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.hero-text2 {
    color: var(--16, #F1BE87);
    z-index: 1;
}
.ellips-circal-main {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}
.ellips {
    margin: 0 auto;
    width: 650px;
    height: 100px;
    border-radius: 50%;
    border: 2px dashed #94B0D5;
    position: absolute;
    top: 22px;
    transform: rotate(-5deg);
}
.star {
    position: absolute;
    animation: rotate 5s linear infinite;
    right: -18px;
    top: 20px;
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.clients {
    color: var(--17, #94B0D5);
    text-align: center;
    font-family: "DM Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
}
.hero-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}
.home-img1 {
    max-width: 100%;
}
.button2 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}
/*-----------------------[ 8.Section Two CSS ]------------------------*/
.legal_support_box {
    background: #F1BE87;
    padding: 40px;
    width: 100%;
    max-width: 1605px;
    position: absolute;
    top: -170px;
    right: 0;
}
.legal-support-text {
    color: var(--15, #071B35);
    font-family: Marcellus;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.price-list-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #071B35;
    display: flex;
    align-items: center;
    justify-content: center;
}
.price-list-circle-main {
    display: flex;
    align-items: center;
    gap: 20px;
}
.competitive {
    font-size: 32px;
    max-width: 200px;
}
.legal-section-col {
    padding: 0;
}
.legal-section-row {
    margin-top: 40px;
    gap: 40px;
    margin-left: 0;
}
.odio {
    color: var(--15, #071B35);
    font-family: "DM Sans";
    font-size: 18px;
    line-height: 30px;
    padding-top: 20px;
    font-weight: 400;
}
/*-----------------------[ 9.Section Three CSS ]------------------------*/
.section-three {
    padding-top: 340px;
}
.violence {
    color: var(--1, #FFF);
    text-align: center;
}
.violence span {
    color: #F1BE87;
}
.creative {
    font-size: 18px;
    line-height: 30px;
    padding-top: 30px;
}
.row.section-three-box-row {
    margin-top: 60px;
}
.section-three-box-col {
    background: #FFF;
    padding: 30px;
    border: 1px solid #94B0D5;
    transition: 0.25s;
    text-align: center;
}
.section-three-box-col:hover,
.section-three-box-col:focus {
    box-shadow: inset 0 30em 0 0 #F1BE87;
}
.section-three-box-col:hover .dui {
    color: #071B35;
}
.competitive2 {
    font-size: 32px;
    padding: 40px 0 20px 0;
    max-width: 370px;
    margin: 0 auto;
}
.dui {
    color: var(--18, #45566C);
    padding: 0;
}
/*-----------------------[ 10.Section Four CSS ]------------------------*/
.section-four {
    background: #FFF;
}
.section-four2-row {
    padding: 100px 0;
    display: flex;
    gap: 30px;
}
.section-four2-col1,
.section-four2-col2 {
    max-width: 630px;
    width: 100%;
}
.rubina-group-img2-main {
    margin-top: 50px;
    position: relative;
}
.button3 {
    position: absolute;
    right: 48px;
    bottom: 0;
    padding: 20px;
    background: #FFF;
}
.button3 a::before {
    z-index: 1;
    background: #071B35;
    color: #FFF;
    -webkit-transform: translateX(-100%);
}
.rubina-group-img2-main img {
    max-width: 100%;
}
.rubina-img2_main {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}
.rubina-img2_main img {
    max-width: 100%;
}
.rubina-img2 {
    border-radius: 185px 185px 0px 0px;
    z-index: 1;
}
.general {
    text-align: start;
    color: #071B35;
    padding: 20px 0 40px 0;
}
.traced {
    z-index: 0;
    position: absolute;
    top: 40px;
    left: 0;
    animation: rotate 60s linear infinite;
}
.check-list-main {
    margin-top: 50px;
}
.check-list {
    font-size: 18px;
    color: var(--18, #45566C);
    text-align: start;
    position: relative;
    padding-left: 30px;
    line-height: 30px;
}
.check-list::before {
    content: url('../images/svg/check-svg.svg');
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(20%);
}
/*-----------------------[ 11.Section Five CSS ]------------------------*/
.section-five {
    padding: 100px 0;
}
.case-studies-text {
    color: var(--1, #FFF);
}
.button4 a::before {
    background: #FFF;
}
.section-five-btn-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}
.case-slides-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    border-top: 2px solid #45566C;
    overflow: hidden;
}
.case-text-group1 {
    display: flex;
    align-items: center;
    gap: 30px;
}
.case-text-group1 p {
    color: var(--1, #FFF);
    text-align: center;
    font-family: Marcellus;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 80px;
}
.case-text-group1 img {
    max-width: 100%;
    border-radius: 70px;
    transition: transform 0.9s ease;
}
.case-slides-main:hover img {
    transform: scale(0.9);
}
.case-text-group2 {
    display: flex;
    align-items: center;
    gap: 140px;
}
.case-text-group2 h2 {
    color: var(--1, #FFF);
    font-family: Marcellus;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 410px;
}
.case-slides-main:hover .case-text-group2 h2 {
    color: #F1BE87;
}
.case-slides-main:hover .case-text-group1 h2,
.case-slides-main:hover .case-text-group1 p {
    color: #F1BE87;
}
.shap-arrow-main {
    width: 80px;
    height: 80px;
    background: #94B0D5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.case-slides-main:hover .shap-arrow-main {
    background: #F1BE87;
}
.shap-arrow-main img {
    transition: all 0.3s ease;
}
/*-----------------------[ 12.Section Six CSS ]------------------------*/
.section-six {
    background-image: url('../images/home-img/zac-nielson.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 600px;
    width: 100%;
    display: flex;
    align-items: flex-end;
}
.lawyer-of-yer-box {
    background: #F1BE87;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 700px;
}
.flower-book-main {
    position: relative;
}
.flower-book-main p {
    color: var(--15, #071B35);
    text-align: center;
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    max-width: 100px;
    z-index: 1;
    line-height: normal;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.firm {
    max-width: 270px;
    color: var(--15, #071B35);
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}
.lawer-of-yer-btn {
    cursor: pointer;
}
.lawer-of-yer-btn:hover .play-icon {
    filter: brightness(0) saturate(100%) invert(77%) sepia(31%) saturate(452%) hue-rotate(348deg) brightness(96%) contrast(97%);
}
/*-----------------------[ 13.Section Seven CSS ]------------------------*/
.section-seven {
    padding: 100px 0;
}
.logos {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
    padding: 40px 0;
    border-bottom: 2px solid #45566C;
}
.logos-slide {
    animation: 40s slide infinite linear;
}
@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
.marquee__content {
    display: flex;
    justify-content: space-around;
    min-width: 100%;
    align-items: center;
    gap: 70px;
    margin: 0 50px;
}
.marquee__content img:hover {
    filter: brightness(0) saturate(100%) invert(100%) sepia(15%) saturate(1%) hue-rotate(83deg) brightness(101%) contrast(101%);
}
.trusted-section p {
    text-align: center;
    overflow: hidden;
    color: var(--1, #FFF);
    font-family: "DM Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.trusted-section p:before {
    right: 70px;
    margin-left: -50%;
}
.trusted-section p:before,
.trusted-section p:after {
    background: #45566C;
    content: "";
    display: inline-block;
    height: 2px;
    position: relative;
    vertical-align: middle;
    width: 50%;
}
.trusted-section p:after {
    left: 70px;
    margin-right: -50%;
}
/*-----------------------[ 14.Section Eight CSS ]------------------------*/
.testimonial-heding {
    color: #FFF;
}
.eget {
    color: var(--16, #F1BE87);
    font-size: 32px;
    max-width: 630px;
    line-height: 40px;
    padding: 10px 0 40px 0;
}
.luke {
    color: var(--1, #FFF);
    font-family: "DM Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
}
.ceo {
    color: var(--17, #94B0D5);
    font-family: "DM Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    padding-top: 10px;
    text-transform: uppercase;
}
.testimonial-swiper-slide {
    display: flex;
    margin-top: 60px;
    padding-bottom: 100px;
}
.client-img-main {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 630px;
    position: relative;
}
.client-img-main img:nth-child(1) {
    border-radius: 50%;
    animation: mover 1s infinite alternate;
}
@keyframes mover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-8px);
    }
}
.Subtract {
    width: 550px;
    position: absolute;
    left: 46%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
}
.star2 {
    position: absolute;
    right: 50px;
    top: 75px;
    z-index: 1;
    animation: rotate 5s linear infinite;
}
.testimonial-arrow {
    width: 60px;
    height: 60px;
    background: #FFF;
}
.swiper-button-prev.testimonial-arrow.testimonial-prev,
.swiper-button-next.testimonial-arrow.testimonial-next {
    width: 60px;
    height: 60px;
    background-color: #FFF;
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-position: center;
}
.swiper-button-prev.testimonial-arrow.testimonial-prev:hover,
.swiper-button-next.testimonial-arrow.testimonial-next:hover {
    background-color: #F1BE87;
}
.swiper-button-next.testimonial-arrow.testimonial-next {
    background-image: url('../images/svg/btn-arrow.svg');
    position: absolute;
    top: -40px;
    left: 80px;
}
.swiper-button-prev.testimonial-arrow.testimonial-prev {
    background-image: url('../images/svg/left-arrow.svg');
    position: absolute;
    top: -40px;
    left: 0;
}
.swiper-button-prev.testimonial-arrow.testimonial-prev:after,
.swiper-button-next.testimonial-arrow.testimonial-next:after {
    display: none;
}
/*-----------------------[ 15.left-right-box-section CSS ]------------------------*/
.left-right-box-section {
    padding: 100px 0;
}
.legal-issue-box-main {
    display: flex;
    justify-content: flex-end;
}
.legal-issue-box {
    padding: 100px;
    background: #FFF;
    max-width: 1165px;
    width: 100%;
    height: 520px;
}
.assist {
    max-width: 750px;
}
.assist-sub-text {
    max-width: 750px;
    padding-top: 40px;
}
.send-mail-img-main {
    position: relative;
    padding: 100px 0;
}
.send-mail-img {
    max-width: 100%;
}
.send-mail-img-main-sub {
    position: absolute;
    left: 0;
    top: -110px;
}
.button5 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
}
/*-----------------------[ 16.Section Nine CSS ]------------------------*/
.section-nine {
    padding: 200px 0 100px 0;
}
.latest-blog {
    color: #FFF;
    text-align: center;
}
.blog-section-row {
    margin-top: 60px;
}
.inner-box {
    background: #FFF;
    padding: 40px 20px 20px 20px;
    position: relative;
    transition: all 0.6s ease-in-out;
}
.latest-blog-img-main {
    position: relative;
}
.latest-blog-img {
    max-width: 100%;
    transition: transform 0.3s ease;
}
.latest-blog-img-main:hover .latest-blog-img {
    transform: scale(1.1);
}
.victims {
    font-size: 24px;
    line-height: 36px;
}
.blog-dates {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #071B35;
    padding: 13px 0;
    max-width: 175px;
    width: 100%;
    position: absolute;
    top: -25px;
    transition: all 0.6s;
}
.blog-dates p {
    color: var(--1, #FFF);
    font-family: Mulish;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
}
.latest-blog-img-main:hover .blog-dates {
    background: #F1BE87;
}
.latest-blog-img-main:hover .inner-box {
    background: #071B35;
}
.latest-blog-img-main:hover .victims {
    color: #F1BE87;
}
/*-----------------------[ 17.Section Ten CSS ]------------------------*/
.section-ten {
    background-image: url('../images/home-img/form-bg-img.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100%;
    padding: 100px 0;
}
.form-main {
    padding: 60px;
    background: #FFF;
}
.form-heading {
    text-align: center;
    padding-bottom: 40px;
}
.form-item {
    position: relative;
    margin-bottom: 10px
}
.form-item2 {
    margin-bottom: 15px;
}
.form-item input {
    display: block;
    width: 100%;
    height: 60px;
    background: rgba(148, 176, 213, 0.2);
    border: none;
    transition: all .3s ease;
    padding: 15px 20px 0;
    outline: none;
    padding-top: 5px;
    color: #071B35;
    font-family: "DM Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.form-item label {
    position: absolute;
    cursor: text;
    z-index: 2;
    top: 25%;
    left: 20px;
    color: #45566C;
    transition: all .3s ease;
    font-family: "DM Sans";
    font-weight: 400;
    line-height: 30px;
    font-size: 18px;
    font-style: normal;
}
.form-item input:focus+label,
.form-item input:valid+label {
    font-size: 14px;
    top: -4px;
    color: #0F141C;
    font-weight: 500;
}
.button6 {
    z-index: 1;
    margin-top: 20px;
}
.form-section-row {
    gap: 110px;
}
.accordion-box {
    max-width: 510px;
    width: 100%;
}
.inquiry-heading {
    color: #FFF;
    padding: 50px 0;
}
.accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: none;
}
.accordion-button:focus {
    box-shadow: none;
}
.accordion-button:not(.collapsed) {
    background: transparent;
    color: #F1BE87;
    border-bottom: 2px solid transparent;
}
.accordion-button {
    color: var(--17, #94B0D5);
    font-family: "DM Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    border-bottom: 2px solid rgba(148, 176, 213, 0.2);
    padding: 20px 0;
}
.accordion-body {
    color: var(--17, #94B0D5);
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    border-bottom: 2px solid rgba(148, 176, 213, 0.2);
    padding: 0 0 15px 0;
}
.accordion-button::after {
    background-image: url('../images/svg/accordion-add-icon.svg');
}
.accordion-button:not(.collapsed)::after {
    background-image: url('../images/svg/accordion-sub-icon.svg');
}
footer {
    padding-top: 100px;
}
.footer-row {
    padding-bottom: 50px;
}
.arcu {
    color: var(--17, #94B0D5);
    padding: 25px 0 20px 0;
}
.open-hours {
    color: #FFF;
    font-size: 20px;
}
.day-time {
    font-size: 16px;
    color: var(--17, #94B0D5);
    padding-top: 10px;
}
.foot-head-txt {
    font-size: 24px;
    padding-top: 15px;
    padding-bottom: 40px;
}
.footer-text-main {
    padding-bottom: 20px;
}
.footer-text-main p a {
    color: #94B0D5;
}
.footer-text-main p a:hover {
    color: #F1BE87;
}
.address {
    max-width: 200px;
}
.services-area-list li {
    padding-bottom: 5px;
}
.services-area-list li a {
    color: var(--17, #94B0D5);
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.services-area-list li a:hover {
    color: #F1BE87;
}
.footer-input {
    border-bottom: 1px solid #94B0D5;
    padding-right: 30px;
    padding-bottom: 10px;
    position: relative;
}
.footer-input input {
    width: 100%;
    background: transparent;
    outline: none;
    border: none;
    color: #F1BE87;
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.footer-input input::placeholder {
    color: var(--17, #94B0D5);
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.message-icon-footer {
    filter: brightness(0) saturate(100%) invert(71%) sepia(11%) saturate(840%) hue-rotate(174deg) brightness(95%) contrast(95%);
    position: absolute;
    top: 0;
    right: 0;
}
.remember input[type=checkbox] {
    position: relative;
    cursor: pointer;
}
.remember input[type=checkbox]:before {
    content: "";
    display: block;
    position: absolute;
    width: 16px;
    height: 16px;
    top: 0;
    left: 0;
    border: 2px solid #94B0D5;
    border-radius: 3px;
    background-color: #071B35;
}
.remember input[type=checkbox]:checked:after {
    content: "";
    display: block;
    width: 5px;
    height: 10px;
    border: solid #FFF;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 2px;
    left: 6px;
}
.remember {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 20px 0;
}
.remember p {
    color: var(--17, #94B0D5);
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.home-media-icon-main-head {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}
.home-media-icon-main {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(148, 176, 213, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.home-media-icon-main:hover img {
    filter: brightness(0) saturate(100%) invert(8%) sepia(25%) saturate(3883%) hue-rotate(188deg) brightness(96%) contrast(97%);
}
.home-media-icon-main::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 0;
    height: 0;
    border-radius: 100%;
    transition: 0.3s;
}
.home-media-icon-main:focus::after,
.home-media-icon-main:hover::after {
    width: 100%;
    height: 100%;
    margin-left: -50%;
}
.social-button::after {
    background: #F1BE87;
    z-index: -1;
}
.copyrights-main {
    padding: 20px 0;
    border-top: 1px solid rgba(148, 176, 213, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.copyrights-main p a,
.copyrights-main p {
    color: var(--17, #94B0D5);
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.copyrights-main p a:hover {
    color: #F1BE87;
}
.privacy-main {
    display: flex;
    align-items: center;
    gap: 40px;
}
/*-----------------------[ 18.Bottom top button CSS ]------------------------*/
button.bottom-top-button {
    position: fixed;
    right: 30px;
    bottom: 20px;
    z-index: 999;
    width: 50px;
    height: 50px;
    color: #000;
    font-size: 30px;
    transform: translateY(0%);
    transition: ease-out 200ms;
    background-color: #F1BE87;
    padding: 0;
    border-radius: 50%;
}
button.bottom-top-button:hover {
    transform: translateY(-15%);
    animation: animate-pulse 3s linear infinite;
}
@keyframes animate-pulse {
    0% {
        box-shadow: 0 0 0 0 #F1BE87, 0 0 0 0 #F1BE87;
    }
    40% {
        box-shadow: 0 0 0 50px rgba(255, 109, 74, 0.0), 0 0 0 0 #F1BE87;
    }
    80% {
        box-shadow: 0 0 0 50px rgba(255, 109, 74, 0.0), 0 0 0 30px rgba(255, 109, 74, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 109, 74, 0.0), 0 0 0 30px rgba(255, 109, 74, 0);
    }
}
/*-----------------------[ 19.About Section one CSS ]------------------------*/
.about-section-one {
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 360px;
    background-attachment: fixed;
}
#about-section-one {
    background-image: radial-gradient(50% 50.00% at 50% 50.00%, #0A1D35 0%, rgba(10, 29, 53, 0.70) 0.01%, #0A1D35 100%), url('../images/about-img/demo1.jpg');
}
.about-h1-text {
    font-size: 72px;
    font-family: "Marcellus", serif;
    line-height: 80px;
    color: #FFF;
    font-weight: 400;
    padding-bottom: 10px;
}
.container.breadcrumb-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.breadcrumb-list {
    display: flex;
    align-items: center;
}
.breadcrumb-list li a {
    color: #FFF;
    font-family: "DM Sans";
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
}
.line-slash a::after {
    content: '/';
    padding: 0 8px;
}
.active-breadcrumb a {
    color: #F1BE87 !important;
}
.about-section-two {
    background: #FFF;
    padding: 100px 0;
}
.about-group-img {
    max-width: 100%;
}
.about-section-play-button {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #071B35;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    right: 50px;
    top: 50px;
}
.about-section-play-button img {
   z-index: 10;
}
.pulse-circle {
    border-radius: 50%;
    background-color: #071B35;
    width: 100px;
    height: 100px;
    position: absolute;
    opacity: 0;
    animation: scaleIn 5s infinite cubic-bezier(0.36, 0.11, 0.89, 0.32);
}
.pulse-circle1 {
    animation-delay: -3s
}
.pulse-circle2 {
    animation-delay: -2s
}
.pulse-circle3 {
    animation-delay: -1s
}
.pulse-circle4 {
    animation-delay: 0s
}
@keyframes scaleIn {
    from {
        transform: scale(0.5, 0.5);
        opacity: 0.5;
    }
    to {
        transform: scale(2.5, 2.5);
        opacity: 0;
    }
}
.about-yer-exp {
    color: #071B35;
    font-size: 30px;
    line-height: 35px;
    font-weight: 600;
    font-family: "Marcellus", serif;
    text-align: center;
    position: absolute;
    bottom: 50px;
    left: 30px;
}
p.odio.amett {
    font-size: 20px;
    color: var(--18, #45566C);
    padding-top: 35px;
}
.sign-img {
    max-width: 40%;
    padding: 40px 0 20px 0;
}
.adv-name {
    font-family: "DM Sans";
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    color: #071B35;
    max-width: 250px;
    text-align: center;
}
.about-section-three {
    background: #FFF;
    padding-bottom: 100px;
}
.about-section-three-col {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.about-section-four {
    background: #071B35;
    padding: 100px 0;
}
.skills-text {
    color: #FFF;
    font-size: 48px;
}
.progresbar-counter {
    margin-bottom: 40px;
}
.progresbar-counter:last-child {
    margin-bottom: 0;
}
.skill-bars {
    margin: 30px 0 50px 0;
}
.progress-title {
    font-family: "DM Sans";
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    color: #FFF;
    margin-bottom: 20px;
    float: left;
}
.progress-value {
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    color: #FFF;
    float: right;
    font-family: "DM Sans";
}
.reveal.active .progress-value {
    animation: animate-counter 4.5s;
    -webkit-animation: animate-counter 4.5s;
    -moz-animation: animate-counter 4.5s;
    -ms-animation: animate-counter 4.5s;
    -o-animation: animate-counter 4.5s;
}
.skil-progressbar {
    height: 2px;
    background-color: #808080;
    margin-top: 20px;
    clear: both;
}
#skil-progressbar1 span {
    width: 80%;
}
#skil-progressbar2 span {
    width: 70%;
}
#skil-progressbar3 span {
    width: 75%;
}
#skil-progressbar4 span {
    width: 90%;
}
.skil-progressbar span {
    display: inline-block;
    position: absolute;
    height: 8px;
    background-color: #94B0D5;
}
.reveal.active .skil-progressbar span {
    animation: animate-positive 4.5s;
    -webkit-animation: animate-positive 4.5s;
    -moz-animation: animate-positive 4.5s;
    -ms-animation: animate-positive 4.5s;
    -o-animation: animate-positive 4.5s;
}
.skills_top_sec {
    margin-bottom: 80px;
}
#skills_sec {
    padding-bottom: 100px;
}
@keyframes animate-counter {
    0% {
        left: 0;
    }
}
@-webkit-keyframes animate-counter {
    0% {
        left: 0;
    }
}
@keyframes animate-positive {
    0% {
        width: 0;
    }
}
@-webkit-keyframes animate-positive {
    0% {
        width: 0;
    }
}
.why-choose-main {
    font-size: 40px;
    color: #FFF;
    line-height: 50px;
    font-family: "Marcellus", serif;
    font-weight: 400;
}
.dolorum {
    color: #FFF;
    font-size: 18px;
    line-height: 26px;
    padding: 20px 0 40px 0;
}
.why-choose-list-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.why-choose-list li {
    color: #FFF;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    font-family: "DM Sans";
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}
.why-choose-list li::before {
    content: url('../images/about-img/check.png');
    filter: brightness(0) saturate(100%) invert(79%) sepia(22%) saturate(678%) hue-rotate(345deg) brightness(96%) contrast(97%);
}
.swiper.aboutSwiper {
    max-width: 450px;
    overflow: hidden;
}
.aboutSwiper-main {
    overflow: hidden;
}
.about-swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-section-six {
    background-image: url('../images/about-img/expernce-bg.jpg');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    background-attachment: fixed;
    height: 100%;
    width: 100%;
    padding: 100px 0;
}
.counter-section-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
}
.counter-box-main {
    text-align: center;
}
.counter-box-main h2 {
    font-size: 60px;
    color: #071B35;
    font-weight: 400;
    font-family: "Marcellus", serif;
    line-height: normal;
    margin: 25px 0 10px;
}
.counter-box-main p {
    font-size: 20px;
    font-weight: 500;
    color: #45566C;
    font-family: "DM Sans";
}
.pluse-sign::after {
    content: '+';
}
.percentage-sign::after {
    content: '%';
}
/*-----------------------[ 20.FAQ Section one CSS ]------------------------*/
#faq-section-one {
    background-image: radial-gradient(50% 50.00% at 50% 50.00%, #0A1D35 0%, rgba(10, 29, 53, 0.70) 0.01%, #0A1D35 100%), url('../images/faq-img/faq-img-main.jpg');
}
.frequently {
    text-align: center;
}
.faq-row-accordion {
    margin-top: 60px;
}
.FAQ-accordion button.accordion-button {
    font-size: 22px;
    color: #071B35;
    font-weight: 500;
    border: 2px solid #F1F5F9;
    margin: 10px 0;
    padding: 20px 15px;
}
.FAQ-accordion .accordion-body {
    font-size: 18px;
    line-height: 30px;
    background: #F1F5F9;
    padding: 20px 20px;
    color: #45566C;
    border-bottom: 0;
}
.FAQ-accordion .accordion-button::after {
    background-image: url(../images/svg/accordion-add-icon.svg);
    filter: brightness(0) saturate(100%) invert(11%) sepia(23%) saturate(1578%) hue-rotate(173deg) brightness(105%) contrast(105%);
}
.FAQ-accordion .accordion-button:not(.collapsed)::after {
    background-image: url(../images/svg/accordion-sub-icon.svg);
}
.justice {
    max-width: 100%;
}
/*-----------------------[ 21.Coming Soon Section one CSS ]------------------------*/
#coming_soon_section {
    background-image: radial-gradient(50% 50.00% at 50% 50.00%, #0A1D35 0%, rgba(10, 29, 53, 0.70) 0.01%, #0A1D35 100%), url('../images/coming-soon/coming_soon_bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.coming-soon-text {
    text-transform: uppercase;
    font-size: 80px;
    line-height: 60px;
    margin-bottom: 60px;
    text-align: center;
    color: #FFF;
    font-family: "Marcellus", serif;
}
.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}
.bloc-time-sub {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.countdown .bloc-time:last-child {
    margin-right: 0;
}
.countdown .count-title {
    display: block;
    font-family: "Marcellus", serif;
    color: #FFF;
    font-weight: 500;
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;
}
.countdown .figure {
    position: relative;
    float: left;
    height: 110px;
    width: 100px;
    margin-right: 10px;
    background-color: #fff;
    border-radius: 8px;
    -moz-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08);
    -webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08);
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08);
    margin-bottom: 30px;
}
.countdown .figure:last-child {
    margin-right: 0;
}
.countdown .figure>span {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    font-weight: 700;
    color: #071B35;
    font-size: 70px;
    font-family: "Marcellus", serif;
}
.countdown .figure .top:after,
.countdown .figure .bottom-back:after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.countdown .figure .top {
    z-index: 3;
    background-color: #f7f7f7;
    transform-origin: 50% 100%;
    -webkit-transform-origin: 50% 100%;
    -moz-border-radius-topleft: 10px;
    -webkit-border-top-left-radius: 10px;
    border-top-left-radius: 10px;
    -moz-border-radius-topright: 10px;
    -webkit-border-top-right-radius: 10px;
    border-top-right-radius: 10px;
    -moz-transform: perspective(200px);
    -ms-transform: perspective(200px);
    -webkit-transform: perspective(200px);
    transform: perspective(200px);
}
.countdown .figure .bottom {
    z-index: 1;
}
.countdown .figure .bottom:before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: rgba(0, 0, 0, 0.02);
}
.countdown .figure .bottom-back {
    z-index: 2;
    top: 0;
    height: 50%;
    overflow: hidden;
    background-color: #f7f7f7;
    -moz-border-radius-topleft: 10px;
    -webkit-border-top-left-radius: 10px;
    border-top-left-radius: 10px;
    -moz-border-radius-topright: 10px;
    -webkit-border-top-right-radius: 10px;
    border-top-right-radius: 10px;
}
.countdown .figure .bottom-back span {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.countdown .figure .top,
.countdown .figure .top-back {
    height: 50%;
    overflow: hidden;
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.countdown .figure .top-back {
    z-index: 4;
    bottom: 0;
    background-color: #fff;
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -moz-transform: perspective(200px) rotateX(180deg);
    -ms-transform: perspective(200px) rotateX(180deg);
    -webkit-transform: perspective(200px) rotateX(180deg);
    transform: perspective(200px) rotateX(180deg);
    -moz-border-radius-bottomleft: 10px;
    -webkit-border-bottom-left-radius: 10px;
    border-bottom-left-radius: 10px;
    -moz-border-radius-bottomright: 10px;
    -webkit-border-bottom-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.countdown .figure .top-back span {
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    margin: auto;
}
.count-title-sub {
    color: #FFF;
    text-align: center;
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
    padding-top: 50px;
    font-family: "Marcellus", serif;
}
/*-----------------------[ 22.404 Section one CSS ]------------------------*/
#error_404_bg {
    background-image: radial-gradient(50% 50.00% at 50% 50.00%, #0A1D35 0%, rgba(10, 29, 53, 0.70) 0.01%, #0A1D35 100%), url('../images/coming-soon/coming_soon_bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    height: 100vh;
    display: flex;
    align-items: center;
}
.waviy404 span {
    font-size: 150px;
    color: #FFF;
    font-weight: normal;
    line-height: 180px;
    text-align: center;
    font-family: "Marcellus", serif;
}
.page-not-found {
    color: #FFF;
    font-size: 55px;
    text-align: center;
    font-family: "Marcellus", serif;
}
.suptext404 {
    color: #FFF;
    font-size: 22px;
    font-weight: 400;
    line-height: 35px;
    font-family: "DM Sans";
    padding-top: 40px;
    max-width: 700px;
    margin: 0 auto;
}
.button404 {
    margin-top: 30px;
}
.button404 a::before {
    z-index: 1;
    background: #FFF;
    color: #071B35;
    -webkit-transform: translateX(-100%);
}
/*-----------------------[ 23.Conatct Section one CSS ]------------------------*/
#contact-section-one {
    background-image: radial-gradient(50% 50.00% at 50% 50.00%, #0A1D35 0%, rgba(10, 29, 53, 0.70) 0.01%, #0A1D35 100%), url('../images/contact/contact-img.jpg');
}
.form-headingsubText {
    text-align: center;
    padding-bottom: 20px;
}
.contact-page-conatact p a,
.contact-page-conatact p {
    font-size: 22px;
    color: #071B35;
    font-weight: 500;
    font-family: "DM Sans";
}
.contact-page-conatact p a:hover {
    color: #F1BE87;
}
.contact-page-conatact {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
    padding-left: 20px;
}
.map-iframe {
    width: 100%;
    height: 500px;
}
/*-----------------------[ 24.Services Page1 Section one CSS ]------------------------*/
#services-section-one {
    background-image: radial-gradient(50% 50.00% at 50% 50.00%, #0A1D35 0%, rgba(10, 29, 53, 0.70) 0.01%, #0A1D35 100%), url('../images/services-img/official.jpg');
    background-position: top center;
}
.Against-violence {
    color: #071B35;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.sunt {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-weight: 400;
    font-family: "DM Sans";
    padding-top: 20px;
}
.services-one-section-three {
    padding-bottom: 100px;
    background: #FFF;
}
.highly-legal {
    color: #071B35;
}
.eiusmod {
    padding: 35px 0;
}
.services-one-icons {
    width: 70px;
}
.Attorneys {
    font-size: 22px;
    line-height: 28px;
    color: #071B35;
    font-family: "Marcellus", serif;
    padding-bottom: 10px;
}
.Attorneys-sub {
    font-size: 18px;
    line-height: 25px;
    color: #45566C;
    font-family: "DM Sans";
}
.services-one-icons-main {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.services-one-icons {
    filter: brightness(0) saturate(100%) invert(97%) sepia(47%) saturate(1744%) hue-rotate(303deg) brightness(99%) contrast(91%);
}
.lawyer-img {
    max-width: 100%;
}
.services-one-blog-section {
    padding: 100px 0;
}
/*-----------------------[ 25.Services Page2 Section one CSS ]------------------------*/
.services2-images {
    max-width: 100%;
    border-radius: 250px 250px 0 0;
    transition: all 0.8s ease-in-out;
}
.services2-href {
    position: relative;
}
.services2-href:hover .services2-images {
    transform: scale(1.1);
    border-radius: 0;
}
.services2-white-box {
    background: #071B35;
    padding: 30px 20px;
}
.services2-white-box h3 {
    font-size: 30px;
    line-height: 36px;
    color: #FFF;
    font-family: Marcellus;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 20px;
    transition: all 0.5s ease-in-out;
}
.services2-href:hover .services2-white-box h3 {
    color: #F1BE87;
}
.services2-white-box p {
    font-size: 18px;
    color: #94B0D5;
    font-style: normal;
    font-weight: 400;
    font-family: "DM Sans";
    line-height: 26px;
    transition: all 0.5s ease-in-out;
}
.services2-href:hover .services2-white-box p {
    color: #FFF;
}
.services2-row {
    gap: 50px 0;
}
.button7 a::before {
    z-index: 1;
    background: #071B35;
    color: #FFF;
    -webkit-transform: translateX(-101%);
}
.services2-page-video {
    width: 100%;
    height: 700px;
    object-fit: cover;
}
/*-----------------------[ 26.Services Page3 Section one CSS ]------------------------*/
.case-text-group1 h2 {
    color: #FFF;
    max-width: 330px;
    width: 100%;
    font-size: 30px;
    line-height: 40px;
    font-family: Marcellus;
}
.case-text-group2 h3 {
    color: #94B0D5;
    max-width: 500px;
    width: 100%;
    font-size: 18px;
    line-height: 30px;
    font-family: "DM Sans";
}
.cursor {
    position: absolute;
    z-index: 90;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.cursor-shadow.active-blog-post-1 {
    background-image: url(../images/services-img/hover-img-1.png);
    border-radius: unset;
    width: 300px;
    height: 300px;
    border-color: transparent !important;
    background-repeat: no-repeat;
}
.cursor-shadow.active-blog-post-2 {
    background-image: url(../images/services-img/hover-img-2.png);
    border-radius: unset;
    width: 300px;
    height: 300px;
    border-color: transparent !important;
    background-repeat: no-repeat;
}
.cursor-shadow.active-blog-post-3 {
    background-image: url(../images/services-img/hover-img-3.png);
    border-radius: unset;
    width: 300px;
    height: 300px;
    border-color: transparent !important;
    background-repeat: no-repeat;
}
.cursor-shadow.active-blog-post-4 {
    background-image: url(../images/services-img/hover-img-4.png);
    border-radius: unset;
    width: 300px;
    height: 300px;
    border-color: transparent !important;
    background-repeat: no-repeat;
}
.cursor-shadow.active-blog-post-5 {
    background-image: url(../images/services-img/hover-img-5.png);
    border-radius: unset;
    width: 300px;
    height: 300px;
    border-color: transparent !important;
    background-repeat: no-repeat;
}
.cursor-shadow.active-blog-post-6 {
    background-image: url(../images/services-img/hover-img-6.png);
    border-radius: unset;
    width: 300px;
    height: 300px;
    border-color: transparent !important;
    background-repeat: no-repeat;
}
/*-----------------------[ 27.Single Services CSS ]------------------------*/
.other-Service-text {
    color: #45566C;
    font-size: 18px;
    line-height: 26px;
    font-family: "DM Sans";
    padding-top: 10px;
    font-weight: 400;
}
.latest-blog-img-main:hover .other-Service-text {
    color: #FFF;
}
.inner-box2 {
    padding-top: 20px;
}
.SingleServices {
    padding: 100px 0;
    background: #FFF;
}
.Singleservices-text-main {
    font-size: 50px;
    color: #071B35;
    line-height: normal;
    font-family: Marcellus;
    padding: 30px 0 20px;
}
.single-services-family {
    max-width: 100%;
}
.libero {
    font-size: 18px;
    color: #45566C;
    line-height: 28px;
    font-family: "DM Sans";
    font-weight: 400;
}
.side-bar-main {
    padding: 40px 40px;
    border: 2px solid rgba(148, 176, 213, 0.2);
    background: #F1F5F9;
}
.ServicesList-Text {
    text-align: center;
    color: #071B35;
    font-size: 35px;
    line-height: normal;
    font-family: Marcellus;
    padding-bottom: 15px;
}
.advice {
    font-size: 35px;
    color: #45566C;
    font-family: Marcellus;
    line-height: normal;
    font-weight: 400;
    padding: 20px 0;
}
.servisces-list-arrow {
    width: 50px;
    height: 50px;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
}
.servisces-list-arrow.active {
    background: #F1BE87;
}
.servisces-list-arrow-main:hover .servisces-list-arrow {
    background: #F1BE87;
}
.servisces-list-arrow-main {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(148, 176, 213, 0.2);
    margin: 15px 0;
    background: #071B35;
}
.servisces-list-arrow-main:hover {
    background: #071B35;
}
.icons-file {
    width: 60px;
}
.servisces-list-arrow-main-sub {
    display: flex;
    align-items: center;
    gap: 10px;
}
.servisces-list-arrow-main h4 {
    color: #FFF;
    font-size: 20px;
    line-height: 30px;
    font-family: "DM Sans";
    font-weight: 400;
}
.servisces-list-arrow-main:hover.servisces-list-arrow-main h4 {
    color: #F1BE87;
}
.servisces-list-arrow-main .active {
    color: #F1BE87;
}
.getInTouch-Heading {
    padding-bottom: 30px;
}
.contact-side-bar {
    background-image: url('../images/services-img/Vector.png');
    background-repeat: no-repeat;
    background-position: center;
    padding: 40px;
    border: 2px solid rgba(148, 176, 213, 0.2);
    margin: 50px 0;
    background-color: #071B35;
    text-align: center;
}
.contact-side-bar h4 {
    color: #FFF;
    font-size: 35px;
    text-align: center;
    padding: 30px 0 20px 0;
    font-family: Marcellus;
}
.resolving {
    font-size: 18px;
    color: #94B0D5;
    text-align: center;
    font-weight: 400;
    font-family: "DM Sans";
    padding-bottom: 30px;
}
.singleservices1-page-video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin: 30px 0;
}
.single-services-imgs-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}
.single-services-imgs-group img {
    max-width: 100%;
}
.row.SingleServicesThreeRow {
    align-items: center;
    justify-content: center;
}
/*-----------------------[ 28.Case Studis CSS ]------------------------*/
#case-studies-section-one {
    background-image: radial-gradient(50% 50.00% at 50% 50.00%, #0A1D35 0%, rgba(10, 29, 53, 0.70) 0.01%, #0A1D35 100%), url('../images/case_studies/case-img-main.jpg');
}
.case-one-group {
    position: relative;
    display: block;
}
.case-one-group .inner {
    position: relative;
    display: block;
    overflow: hidden;
}
.case-one-group-main:hover .case-one-group-content::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
}
.case-one-group-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0px;
    right: 0;
    border-radius: 0px;
    background-color: #F1BE87;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: -1;
}
.case-one-group-main:hover .case-one-group .inner::before {
    opacity: 0.30;
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
}
.case-one-group .inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #071B35;
    opacity: 0;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    z-index: 1;
}
.case-one-group-main:hover .case-one-group .inner img {
    transform: scale(1.05) rotate(0deg);
}
.case-one-group .inner img {
    width: 100%;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
}
.case-one-group-content {
    position: relative;
    display: block;
    background: #071B35;
    padding: 35px 40px 30px;
    margin-left: 25px;
    margin-top: -65px;
    z-index: 5;
}
.case-one-group-content p {
    font-size: 14px;
    color: #94B0D5;
    line-height: 21px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    font-family: "DM Sans";
}
.case-one-group-main:hover .case-one-group-content p {
    color: #071B35;
}
.case-one-group-content h2 {
    font-size: 27px;
    line-height: 37px;
    font-weight: 400;
    margin-top: 8px;
    font-family: Marcellus;
    color: #FFF;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.case-one-group-main:hover .case-one-group-content h2 {
    color: #071B35;
}
.caseStudiesOne-row {
    gap: 40px 0;
    margin-top: 50px;
}
.best-work {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}
.container2 {
    padding: 0 30px;
}
.car-accident-img {
    max-width: 100%;
}
.case-accordion {
    margin: 30px 0;
}
.case-btn-main {
    display: flex;
    align-items: center;
    gap: 20px;
}
.case-btn {
    width: 100%;
    background: #F1F5F9;
    font-size: 20px;
    color: #071B35;
    font-weight: 500;
    font-family: "DM Sans";
    padding: 30px 20px;
}
.case-btn:hover {
    background: #071B35;
    color: #FFF;
}
.case-info-text {
    text-align: start;
}
.case-detail-info span {
    color: #071B35;
    font-size: 18px;
    font-weight: 500;
}
.case-detail-info {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    font-family: "DM Sans";
    color: #45566C;
    padding-bottom: 12px;
}
.newsBlog-List li a {
    color: #071B35;
    font-size: 18px;
    line-height: 26px;
    font-family: "DM Sans";
    font-weight: 500;
}
.newsBlog-List li a:hover {
    color: #F1BE87;
}
.newsBlog-List li {
    padding-bottom: 10px;
    display: flex;
    align-items: stretch;
    gap: 10px;
}
.newsBlog-List li::before {
    content: url('../images/about-img/check.png');
    filter: brightness(0) saturate(100%) invert(10%) sepia(8%) saturate(7497%) hue-rotate(179deg) brightness(94%) contrast(100%);
}
.case-info-heade {
    text-align: start;
}
/*-----------------------[ 29.blog page CSS ]------------------------*/
.blog-date-cal-main {
    display: flex;
    align-items: center;
    margin: 30px 0 15px;
}
.blog-date-cal-main-sub {
    display: flex;
    align-items: center;
    gap: 8px;
}
.blog-date-cal-main-sub2 {
    padding: 0 15px 0 0;
}
.blog-date-cal-main img {
    width: 30px;
}
.blog-date-cal-main p {
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    color: #071B35;
    font-family: "DM Sans";
}
.Courts {
    font-size: 40px;
    color: #071B35;
    font-family: Marcellus;
    line-height: normal;
    padding-bottom: 20px;
}
.button10 {
    margin: 20px 0;
}
.other-services-main {
    padding: 40px;
    border: 2px solid rgba(148, 176, 213, 0.2);
    background: #F1F5F9;
}
#blog-form {
    position: relative;
}
.blog-form {
    display: flex;
    align-items: center;
    gap: 30px;
}
.blog-form input {
    border-radius: 8px;
    border: none;
    width: 100%;
    height: 56px;
    padding: 16px 43px 16px 20px;
    color: #071B35;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    border: 2px solid rgba(148, 176, 213, 0.2);
}
.search-svg {
    position: absolute;
    top: 17px;
    right: 20px;
    cursor: pointer;
}
.recent-post-text {
    font-size: 18px;
    color: #071B35;
    line-height: normal;
    font-family: Marcellus;
}
.recent-post-date {
    color: #45566C;
    font-size: 14px;
    font-weight: 500;
    font-family: "DM Sans";
    padding-top: 10px;
}
.recent-post-main a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 2px dashed #94B0D5;
}
.recent-post-main a img {
    max-width: 100%;
    border-radius: 5px;
    border: 2px solid rgba(148, 176, 213, 0.2);
}
.category-main {
    margin: 50px 0;
}
.pagination-main-ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}
.pagination-main-ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(148, 176, 213, 0.2);
    border-radius: 10px;
    width: 45px;
    height: 45px;
}
.pagination-main-ul li:hover,
.pagination-main-ul li.page-active {
    background: #F1BE87;
}
.pagination-main-ul li a {
    color: #071B35;
    font-size: 18px;
    font-weight: 500;
    font-family: Marcellus;
}
.list-blog-main {
    display: flex;
    gap: 100px;
    padding: 50px 0;
    border-bottom: 1px solid rgba(148, 176, 213, 0.2);
    border-top: 1px solid rgba(148, 176, 213, 0.2);
}
.design-date p {
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
    color: #45566C;
    font-family: "DM Sans";
}
.steps {
    font-size: 30px;
    color: #071B35;
    line-height: 40px;
    font-weight: 500;
    margin: 10px 0;
    font-family: Marcellus;
}
.pursuing {
    font-size: 17px;
    color: #45566C;
    line-height: 30px;
    font-weight: 500;
    padding-bottom: 20px;
    font-family: "DM Sans";
}
/*-----------------------[ 30.single blog CSS ]------------------------*/
.grid-blog-img {
    max-width: 100%;
    padding-bottom: 24px;
}
.grid-blog-row {
    gap: 50px 0;
}
.whatsapp-icons {
    width: 24px;
}
.home-media-icon-main-head2 {
    justify-content: center;
}
.comment-section {
    padding-top: 50px;
}
.drop-down-comments-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}
.drop-down-btn-filter {
    display: flex;
    align-items: center;
    gap: 8px;
}
.dropdown {
    position: relative;
    display: inline-block;
}
.dropbtn {
    background: transparent;
    color: #071B35;
    font-size: 18px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    font-family: "DM Sans";
}
.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 18px;
    font-weight: 500;
    font-family: "DM Sans";
}
.dropdown-content a:hover {
    background-color: #071B35;
    color: #FFF;
}
.dropdown:hover .dropdown-content {
    display: block;
}
.comments-box-main {
    padding: 20px;
    border: 2px solid rgba(148, 176, 213, 0.2);
    background: #F1F5F9;
    margin-bottom: 20px;
}
.client-group-main {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 2px dashed rgba(148, 176, 213, 0.2);
}
.client-group-main img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
}
.blog-comments-profile-name {
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
    color: #071B35;
    font-family: "DM Sans";
    padding-bottom: 8px;
    text-align: left;
}
.blog-comment-sub {
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    color: #45566C;
    font-family: "DM Sans";
}
.comments {
    color: #071B35;
    font-size: 16px;
    line-height: 25px;
    font-family: "DM Sans";
    font-weight: 500;
    padding: 20px 0;
    border-bottom: 2px dashed rgba(148, 176, 213, 0.2);
}
.like-replay-main {
    display: flex;
    align-items: center;
    gap: 50px;
    padding-top: 20px;
}
.like-replay-main-sub {
    display: flex;
    align-items: center;
    gap: 8px;
}
.like-replay-main-sub p {
    font-size: 16px;
    font-family: "DM Sans";
    font-weight: 500;
    cursor: pointer;
}
.like-reply-svg {
    width: 27px;
    cursor: pointer;
}
#MessageComments {
    height: 120px;
}
.writeAComent {
    font-size: 40px;
    padding: 40px 0 20px 0;
}
.button4ViewMore {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}