html,
body {
    padding: 0px 0px;
    margin: 0px 0px;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

h1,h2,h3,h4,h5,h6 {font-family: "Cormorant Garamond", serif;color: #1a2332;}

* {
    padding: 0px 0px;
    margin: 0px 0px;
    /*font-family: "Poppins", sans-serif;*/
    transition: .3s;
    /*font-family: "Oswald", sans-serif;*/
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}

h2 {font-size: 2.5rem;}
h4 {font-size: 1.7rem;}
h1 {font-size: 3rem;}

.logo-container { display: flex; align-items: center; gap: 1rem; cursor: pointer; }
.logo-mark { width: 50px; height: 50px; }
.logo-text h1 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: #1a2332; letter-spacing: 3px;margin-bottom: 0px; }
.logo-text p { font-size: 0.7rem; letter-spacing: 6px; color: #c9a961; text-transform: uppercase;margin-bottom: 0px; }

#toolbar {
    background: linear-gradient(135deg, #1a2332 0%, #2d3f5f 100%);
    overflow: hidden;
    padding: 0.3rem 1rem;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid #fff;
}

#toolbar a {
    color: #fff;
    display: inline-block;
    font-size: .8125rem;
    padding: .125rem .25rem;
    position: relative;
    width: auto;
    line-height: 1.9rem;
    text-decoration: none;
    font-weight: 500;
}

#toolbar .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

#toolbar .row a {
    margin: 0 1rem;
}

#toolbar .row a:not(:last-of-type)::after {
    background: #fff;
    bottom: 8px;
    display: block;
    content: '';
    position: absolute;
    right: -1rem;
    top: 8px;
    width: 1px;
}

#toolbar a>i {
    color: #fff;
    margin-right: .5rem;
    -webkit-transition: color .3s ease;
    -o-transition: color .3s ease;
    transition: color .3s ease;
}

#toolbar a:hover,
#toolbar a:hover i {
    color: #c9a961;
}

.nav-bar {
    /*background: linear-gradient(135deg, #1a2332 0%, #2d3f5f 100%);*/
}

.menubar {
    position: relative;
}

.menubar ul {
    list-style: none;
    padding: 0px 0px;
    margin: 0px 0px;
}

.menubar ul li {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.menubar ul li a {
    display: block;
    color: #1a2332;
    font-size: 16px;
    text-decoration: none;
    padding: 0px 15px;
    border-bottom: none;
    padding-bottom: 4px;
    font-weight: 500;
    letter-spacing: 1px;
    border-bottom: 2px solid #fff;
}

.menubar ul ul li a {
    color: #fff;
    font-size: 14px;
}

.menubar ul li a:hover {
    color: #c9a961;
    border-bottom: 2px solid #c9a961;
    padding-bottom: 4px;
}

.menubar ul li a.active {
    color: #c9a961;
    border-bottom: 2px solid #c9a961;
    padding-bottom: 4px;
}

.accordion-button {
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}

@media (max-width: 655px) {

    #toolbar {
        text-align: center;
    }

    #toolbar .row {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    #toolbar .row a,
    #toolbar .row a:not(:last-of-type) {
        margin: 0;
        width: calc(50% - 2rem);
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    }

    #toolbar .row a:not(:last-of-type)::after {
        display: none;
    }
}

@media (max-width: 420px) {
    #toolbar a>span {
        display: none;
    }
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  CAROUSEL SLIDER
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

#carousel-wrapper {
    background: #F2F2F2;
    position: relative;
}

#myCarousel {
    background: #333;
    overflow-x: hidden;
    position: relative;
}

#myCarousel .carousel-indicators {
    display: none;
}

#myCarousel .carousel-control-prev,
#myCarousel .carousel-control-next {
    width: 100px;
    z-index: 2;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

#myCarousel .carousel-control-prev {
    left: -75px;
}

#myCarousel .carousel-control-next {
    right: -75px;
}

#myCarousel:hover .carousel-control-prev {
    left: -15px;
}

#myCarousel:hover .carousel-control-next {
    right: -15px;
}

#myCarousel img {
    width: 100%;
}

#myCarousel .carousel-indicators li:hover {
    cursor: pointer;
}

#myCarousel .wrapper {
    bottom: 0;
    left: 50%;
    max-width: 1295px;
    position: absolute;
    top: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    z-index: 1;
}

#myCarousel .carousel-caption {
    bottom: auto;
    left: 0%;
    padding: 1.5rem 0 2rem;
    text-align: right;
    top: 46%;
    width: 650px;
    opacity: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-animation-name: slideLeft;
    animation-name: slideLeft;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.animated {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 2s !important;
    animation-duration: 2s !important;
}

#myCarousel .carousel-caption-right {
    left: auto;
    right: 15%;
    text-align: right;
}

#myCarousel .carousel-caption h2 {
    color: #FFF;
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 5rem;
}

#myCarousel .carousel-caption h2 span {
    color: #FFF;
    display: block;
    font-size: 4.6875rem;
    line-height: 5rem;
    font-weight: 700;
}

#myCarousel .carousel-caption p {
    color: #FFF;
    font-family: var(--byf-font2);
    font-size: 1.6875rem;
    font-weight: 200;
    line-height: 2.25rem;
}

#myCarousel .carousel-item {
    background-position: 45% center;
    background-size: cover;
    max-height: 740px;
    min-height: 700px;
}

#myCarousel .carousel-item img {
    opacity: 0;
    visibility: hidden;
}

#myCarousel .carousel-inner .carousel-item:nth-of-type(1) {
    background-image: url('/images/slider/1.jpg');
}

#myCarousel .carousel-inner .carousel-item:nth-of-type(2) {
    background-image: url('/images/slider/2.jpg');
}

#myCarousel .carousel-inner .carousel-item:nth-of-type(3) {
    background-image: url('/images/slider/3.jpg');
}

#myCarousel .overlay {
    background: #131e21;
    bottom: 0;
    left: 0;
    opacity: .65;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

.carousel-fade .carousel-item {
    opacity: 0;
    -webkit-transition-duration: .6s;
    -o-transition-duration: .6s;
    transition-duration: .6s;
    -webkit-transition-property: all;
    -o-transition-property: all;
    transition-property: all
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
    opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
    opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

@-webkit-keyframes slideLeft {
    from {
        opacity: 0;
        -webkit-transform: translate(-50%, 0, -50%);
        transform: translate(-50%, 0, -50%);
        visibility: visible;
    }

    to {
        opacity: 1;
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        visibility: visible;
    }

    to {
        opacity: 1;
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }
}

/* - - - - - - - - - - - - - - - - - - - - - - - */

#consultation-bar {
    background: rgb(22 74 87 / 85%);
    border-radius: 4px;
    padding: 2.25rem 2rem 1.375rem;
    z-index: 1;
    width: 330px;
    margin-left: auto;
}

#carousel-wrapper #consultation-bar {
    background: #1a2332;
    position: absolute;
    right: calc(50% - 40rem);
    top: 50%;
    width: 450px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

#consultation-bar h2 {
    color: #FFF;
    font-size: 3.5rem;
    letter-spacing: .4px;
    line-height: 2.875rem;
}

#consultation-bar h3 {
    color: #FFF;
    font-size: 2rem;
    font-weight: 300;
    line-height: 2rem;
    margin: 0 0 1.875rem;
}

#carousel-wrapper #consultation-bar h3 {
    font-size: 2.25rem;
    line-height: 2.5rem
}

#consultation-bar h3>span {
    font-size: 2.25rem;
    color: var(--byf-pop);
    font-weight: 400;
    text-transform: uppercase;
}

#consultation-bar form {
    margin: 1.5rem 0 0;
}

#consultation-bar .form-control {
    background: #EFEFEF;
    color: #202020;
    font-family: var(--byf-font2);
    font-size: 1rem;
    height: 2.75rem;
    margin: 0 0 1.125rem;
}

#consultation-bar .form-control:focus {
    background: #FFF;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#consultation-bar .btn-primary {
        background: linear-gradient(135deg, #c9a961 0%, #e6d5a8 100%);
    margin: 1rem 0 0;
    padding: 1rem 3em;
    border: none;
    font-weight: 600;
    color: #000;
}

#consultation-bar p {
    color: #f7f7f7;
    font-size: 1.0625rem;
    font-style: italic;
    line-height: 1.5rem;
    margin-top: 1.25rem;
}

.step__item_count {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-align: center;
    line-height: 42px;
    background: linear-gradient(135deg, #1a2332 0%, #2d3f5f 100%);
    font-weight: 500;
    font-family: "Oswald", sans-serif;
}

.step__area {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.05), rgba(201, 169, 97, 0.05));
}

.step__title-sm {
    font-size: 2rem;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  1350 MEDIA QUERY
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

@media (max-width: 1350px) {
    #carousel-wrapper #consultation-bar {
        right: calc(50% - 30rem);
        width: 380px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    #myCarousel .carousel-caption h2 span {
        color: #FFF;
        display: block;
        font-size: 4rem;
        line-height: 4.5rem;
        font-weight: 700;
    }

    #myCarousel .carousel-caption h2 {
        color: #FFF;
        font-size: 2.5rem;
        font-weight: 300;
        line-height: 5rem;
    }

    #myCarousel .carousel-caption p {
        font-size: 1.5rem;
        line-height: 2.25rem;
    }

    #myCarousel .carousel-caption {
        padding: 1.5rem 0 2rem 4rem;
    }

}

@media (max-width: 991px) {

    #carousel-wrapper #consultation-bar,
    #consultation-bar {
        background: #FBFBFB;
        border: 1px solid #CCC;
        border-radius: 4px;
        padding-bottom: 2rem;
        margin: 2rem auto 0;
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }

    #carousel-wrapper #consultation-bar {
        width: calc(100% - 2rem);
    }

    #carousel-wrapper {
        padding: 0 0 2rem;
    }
}

@media (max-width: 767px) {
    .gradiant-home__wrapper .journey__area {
        padding-bottom: 0;
    }

    #consultation-bar p {
        color: #fff;
    }

    .we_advise {
        margin-top: 0;
    }
}

/*----------------------------------------*/
/*  16. journey CSS START
/*----------------------------------------*/
.journey__shape-1 {
    position: absolute;
    top: 40%;
    left: 14%;
    animation: rotate2 15s linear infinite;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .journey__shape-1 {
        top: 34%;
        left: 8%;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .journey__shape-1 {
        top: 33%;
        left: 2%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .journey__shape-1 {
        left: 1%;
        top: 35%;
    }
}

.journey__shape-2 {
    position: absolute;
    top: 81%;
    left: 32%;
    animation: jumpTwo 4s infinite linear;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .journey__shape-2 {
        top: 79%;
        left: 27%;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .journey__shape-2 {
        left: 25%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .journey__shape-2 {
        top: 80%;
        left: 23%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .journey__shape-2 {
        top: 63%;
    }
}

.journey__left-box {
    padding-right: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .journey__left-box {
        padding-right: 0;
        margin-bottom: 120px;
    }
}

.journey__thumb-inner {
    position: absolute;
    bottom: -30%;
    left: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .journey__thumb-inner {
        bottom: -31%;
        left: 35px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .journey__thumb-inner {
        bottom: -11%;
    }
}

.journey__section-box p {
    padding-bottom: 15px;
}

.journey__expricene-text {
    background: linear-gradient(135deg, #1a2332 0%, #2d3f5f 100%);
    display: inline-block;
    padding: 30px;
    position: absolute;
    bottom: -15%;
    right: 25%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .journey__expricene-text {
        bottom: -43%;
    }
}

@media (max-width: 767px) {
    .journey__expricene-text {
        bottom: -18%;
        right: 12%;
    }
}

.journey__expricene-text h4 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
}

.journey__expricene-text span {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.journey__text {
        background: linear-gradient(135deg, rgba(26, 35, 50, 0.05), rgba(201, 169, 97, 0.05));
    padding: 30px;
    border-left: 6px solid #c9a961;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .journey__text {
        padding: 18px;
    }
}

.journey__text p {
    margin-bottom: 0;
}

@keyframes rotate2 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.tp-btn-similar {
        background: linear-gradient(135deg, #c9a961 0%, #e6d5a8 100%);
    margin: 1rem 0 0;
    padding: 1rem 3em;
    border: none;
    color: #000;
}

.journey__right-box .btn-primary {
        background: linear-gradient(135deg, #c9a961 0%, #e6d5a8 100%);
    margin: 1rem 0 0;
    padding: 1rem 2em;
    border: none;
    font-weight: 600;
    color: #000;
}

.section-title {
    font-size: 2.5rem;
    color: #000;
}

#reviewSlider .carousel-inner {
    width: 100%;
    margin: 0 auto;
}

.service-card--txt {
    font-size: 15px;
    color: #1a2332;
    line-height: 1.7;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  AFFILIATES
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

#affiliates {
    background: #FFF;
    padding: 0rem 1.5rem;
}

#affiliates .affiliates {
    margin: 0 -15px;
    text-align: center;
}

#affiliates .affiliates img {
    display: inline-block;
    margin: 0px 1.875rem;
    max-width: 145px;
}


@media (max-width: 480px) {

    #carousel-wrapper #consultation-bar h2 {
        font-size: 2.25rem;
        line-height: 2.5rem;
        margin-bottom: .5rem;
        color: #000;
    }

    #carousel-wrapper #consultation-bar h3 {
        font-size: 1.675rem;
        line-height: 2rem;
        margin-bottom: 0;
        color: #000;
    }

    #carousel-wrapper #consultation-bar h3 span {
        font-size: 1.675rem;
    }

    #affiliates .container,
    #footer-bottom .container {
        padding: 0 1.25rem;
    }

}

.underline {
    width: 70px;
    height: 3px;
    background: #18a2a4;
    margin-top: 10px;
}

.review-box {
        background: linear-gradient(135deg, rgba(26, 35, 50, 0.05), rgba(201, 169, 97, 0.05));
    padding: 35px 30px;
    text-align: center;
    position: relative;
    border-radius: 6px;
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.review-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

.review-box p {
    font-size: 15px;
    color: #1a2332;
    line-height: 1.7;
}

.review-box h6 {
    margin-top: 20px;
    font-weight: 600;
    font-size: 24px;
}

.quote-icon {
    font-size: 60px;
    color: #18a2a4;
    line-height: 1;
    margin-bottom: 10px;
    position: absolute;
    right: 0px;
    top: 0px;
    opacity: 0.05;
}

.quote-icon svg {
    width: 100px;
    height: 100px;
}

.stars {
    color: #c9a961;
    font-size: 18px;
    margin-top: 5px;
}

.testimonial-pagination {
    position: relative;
    margin-top: 30px;
}

.testimonial-pagination [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #cfcfcf;
    opacity: 1;
    margin: 0 6px;
}

.testimonial-pagination .active {
    background-color: #c9a961;
}

.we_advise {
        background: linear-gradient(135deg, rgba(26, 35, 50, 0.05), rgba(201, 169, 97, 0.05));
    margin-top: 180px;
    position: relative;
}

.we_advise:before {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    background: url(../images/1.png);
    width: 100%;
    height: 100%;
    opacity: 0.25;
    /*background-attachment: fixed;*/
}

.service-card {
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, .08);
    border-radius: 8px;
    background: #fff;
    transition: .5s;
    height: 100%;
}

.service-card a {
    padding: 35px 30px;
    display: block;
    color: #000;
}

/*----------------------------------------*/
/*  24. footer CSS START
/*----------------------------------------*/
.footer__widget.footer-col-2 {
    padding-left: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .footer__widget.footer-col-2 {
        padding-left: 30px;
    }
}

@media (max-width: 767px) {
    .footer__widget.footer-col-2 {
        padding-left: 0;
    }
}

.footer__widget.footer-col-4 {
    padding-left: 30px;
}

@media (max-width: 767px) {
    .footer__widget.footer-col-4 {
        padding-left: 0;
    }
}

.footer__title {
    color: #fff;
    font-size: 26px;
    font-weight: 500;
    padding-bottom: 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .footer__title {
        padding-bottom: 10px;
    }
}

.footer__title-inner {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    padding-bottom: 15px;
}

@media (max-width: 767px) {
    .footer__content {
        padding-top: 10px;
        padding-bottom: 20px;
    }
}

.footer__content p {
    color: #fff;
    padding-bottom: 15px;
    font-size: 15px;
}

.phone--txt i {
    color: #fff;
    font-size: 24px;
    margin-right: 15px;
    background: #b08153;
    padding: 6px 6px;
    border-radius: 4px;
}

.phone--txt .phone--txt--number {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .footer__content p {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .footer__content p {
        margin-bottom: 0;
        padding-bottom: 0;
    }
}

.footer__social a {
    height: 50px;
    width: 50px;
    line-height: 50px;
    color: #000000;
    text-align: center;
    background-color: #c9a961;
    display: inline-block;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
    font-size: 17px;
}

.footer__social a:hover {
    background-color: #c9a961;
}

.footer__menu ul li {
    margin-bottom: 15px;
}

.footer__menu ul {
    list-style: none;
    padding: 0;
    margin: 0px;
}

.footer__address ul {
    list-style: none;
    padding: 0;
    margin: 0px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .footer__menu ul li {
        margin-bottom: 10px;
    }
}

.footer__menu ul li:last-child {
    margin-bottom: 0;
}

.footer__menu ul li a {
    font-size: 15px;
    color: #fff;
    font-family: "Poppins", sans-serif;
    transition: 0.3s;
}

.footer__menu ul li a:hover {
    color: #c9a961;
}

.footer__address ul li {
    position: relative;
    padding-left: 30px;
    padding-bottom: 20px;
}

.footer__address ul li a {
    font-size: 15px;
    color: #fff;
    font-family: "Poppins", sans-serif;
    line-height: 1.3;
}

.footer__address ul li a i {
    position: absolute;
    top: 3px;
    left: 0;
    color: #c9a961;
}

.footer__social a i {
    font-size: 18px;
}

.footer__input {
    position: relative;
    padding-bottom: 20px;
}

.footer__input input {
    width: 100%;
    background-color: #162b3b;
    border: 0;
    padding-left: 20px;
    padding-right: 70px;
    height: 55px;
    color: #fff;
}

.footer__input input::placeholder {
    color: #fff !important;
}

.footer__input button {
    height: 55px;
    width: 55px;
    background-color: #c9a961;
    color: #fff;
    font-size: 20px;
    position: absolute;
    top: 0;
    right: 0;
}

.footer__icon i {
    font-size: 40px;
    color: #c9a961;
    margin-right: 20px;
}

.footer__number a {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    padding-bottom: 0px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .footer__number a {
        font-size: 18px;
    }
}

.footer__number span {
    font-size: 15px;
    color: #d7d7d7;
}

.copyright__bg {
    background: linear-gradient(135deg, #1a2332 0%, #2d3f5f 100%);
}

.copyright__text span {
    font-size: 16px;
    color: #fff;
}

/* Hamburger */
.menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* Overlay */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
    z-index: 9998;
}

/* Offcanvas menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 86vw);
    height: 100vh;
    background: #000;
    color: #fff;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    padding: 18px 16px;
}

/* Header */
.menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 12px;
}

.menu-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.menu-close {
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    padding: 0 6px;
}

/* Links */
.menu-links {
    list-style: none;
    padding: 16px 0;
    margin: 0;
    flex: 1;
}

.menu-links li {
    margin-bottom: 6px;
}

.menu-links a {
    display: block;
    padding: 12px 10px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.menu-links a:hover {
    background: rgba(255, 255, 255, 0.10);
    transform: translateX(3px);
}

/* Footer CTA */
.menu-footer {
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.menu-cta {
    display: block;
    text-align: center;
    padding: 12px 14px;
    border-radius: 4px;
        background: linear-gradient(135deg, #c9a961 0%, #e6d5a8 100%);
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

/* Active states (when menu is open) */
.mobile-menu.active {
    transform: translateX(0);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Optional: hide hamburger on desktop */
@media (min-width: 992px) {
    .menu-btn {
        display: none;
    }
}

.breadcrumb-item+.breadcrumb-item::before {
    display: none;
}

.page-header {
    background: url(../images/1.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}

.page-header:after {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
}

#about li {
    list-style: inside;
    color: #0045aa;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    font-family: "Poppins", sans-serif;
}

#contact .form-control {
    font-size: 14px;
    padding: 10px 16px;
}

.tp-contact-info a {
    color: var(--bs-body-color);
}

.has-dropdown>a::after {
    content: "▾";
    font-size: 12px;
    margin-left: 6px;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #111;
    min-width: 220px;
    display: none;
    flex-direction: column;
    padding: 10px 0;
    border-radius: 6px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    z-index: 999;
    text-align: left;
}

.dropdown li a {
    padding: 10px 16px;
    color: #fff;
    display: block;
    border-bottom: none !important;
    padding: 10px 15px !important;
}

.dropdown li a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #c9a961;
}

/* Show Dropdown on Hover */
.has-dropdown:hover .dropdown {
    display: block;
}

.value-letter {
    color: #c9a961;
    font-weight: 600;
}

#inner-content a {
    color: #c9a961;
}

.mobile-menu .menu-links .has-dropdown .dropdown li {
    list-style: none;
}

/* Responsive (Mobile Friendly) */
@media (max-width: 991px) {
    .menubar ul {
        flex-direction: column;
        gap: 0;
    }

    .dropdown {
        position: static;
        display: none;
        box-shadow: none;
        background: #1a1a1a;
    }

    .has-dropdown.open .dropdown {
        display: block;
    }
}

#contact .btn-primary {
        background: linear-gradient(135deg, #c9a961 0%, #e6d5a8 100%);
    margin: 1rem 0 0;
    padding: 1rem 3em;
    border: none;
    color: #000;
    font-weight: 600;
}

#reviewModal .btn-primary {
        background: linear-gradient(135deg, #c9a961 0%, #e6d5a8 100%);
    margin: 0.3rem 0;
    padding: 0.7rem 1em;
    border: none;
    font-weight: 600;
    color: #000;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  CALL-TO-ACTION SECTION
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

#call-to-action {
    background: linear-gradient(135deg, #1a2332 0%, #2d3f5f 100%);
    padding: 0;
}

#call-to-action .container-fluid {
    padding: 0 1rem;
}

#call-to-action .col-lg-6 {
    min-height: 400px;
    padding: 5rem 3rem;
}

#call-to-action #cta-text {
    margin-left: auto;
    max-width: 100%;
    padding: 0 0 0 1rem;
    width: 560px;
}

#call-to-action h2 {
    color: #F3F6F4;
    font-size: 3.25rem;
    line-height: 3.75rem;
    margin: 0 0 1rem;
}

#call-to-action h2 span {
    display: table;
    font-weight: 600;
}

#call-to-action p {
    color: #F3F6F4;
    margin: 0 0 .75rem;
}

#call-to-action .btn-primary {
    margin-right: .5rem;
}

#call-to-action .btn-primary {
    background: #F3F6F4;
    color: #c9a961;
    margin: 1rem 0;
}

#call-to-action .btn-primary {
        background: linear-gradient(135deg, #c9a961 0%, #e6d5a8 100%);
    margin: 1rem 0 0;
    padding: 1rem 2em;
    border: none;
    font-weight: 600;
    color: #000;
}

#call-to-action .btn-primary:hover {
    background: #fff !important;
    color: #c9a961 !important;
}

#call-to-action .btn-default {
    border-color: #F3F6F4;
    color: #f2f2f2;
    margin: 0 0 .75rem;
}

#call-to-action .btn-primary:hover,
#call-to-action .btn-default:hover {
    border-color: var(--byf-secondary);
    background: var(--byf-secondary);
    color: #FFF;
}

#call-to-action .video-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

#call-to-action .video-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

#cta-background {
    background-image: url("../images/consultside.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 0;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background-position: center;
}

@media (max-width: 991px) {

    #call-to-action #cta-text,
    #call-to-action h2 span {
        margin: 0 auto;
        padding: 0 1rem;
        text-align: center;
    }
}

/*  17. work CSS START
/*----------------------------------------*/
.work__feature-item {
    padding-bottom: 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .work__feature-item {
        padding-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .work__feature-item {
        padding-bottom: 30px;
        flex-wrap: wrap;
    }
}

.work__shape-1 {
    position: absolute;
    top: 0;
    right: 0;
    animation: zoom 5s infinite;
}

.work__shape-1 img {
    opacity: 0.4;
}

.work__shape-2 {
    position: absolute;
    top: 44%;
    left: 0;
    animation: movinglight 10s linear infinite;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .work__shape-2 {
        top: 86%;
        left: 70px;
    }
}

.work__left-side {
    padding-right: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .work__left-side {
        padding-right: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .work__left-side {
        padding-right: 0px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .work__thumb-main img {
        width: 100%;
        margin-bottom: 40px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .work__section-title {
        padding-bottom: 10px;
    }
}

.work__feature-icon {
    margin-right: 20px;
}

@media (max-width: 767px) {
    .work__feature-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

.work__feature-icon a {
    font-size: 40px;
    color: #1a2332;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    text-align: center;
    line-height: 80px;
        background: linear-gradient(135deg, rgba(26, 35, 50, 0.05), rgba(201, 169, 97, 0.05));
    display: inline-block;
    transition: 0.4s;
}

.work__feature-icon a:hover {
    background-color: #c9a961;
    color: #fff;
}

.work__title-sm {
    font-size: 18px;
    font-weight: 400;
    transition: 0.3s;
    font-family: "Montserrat", sans-serif;
}

.work__feature-content p {
    margin-bottom: 0;
}

.breadcrumb {
    display: none !important;
}

.breadcrumb-item {
    display: none;
}

@keyframes movinglight {
  0% {
    transform: translatey(0px);
  }
  20% {
    transform: translateX(-70px);
  }
  50% {
    transform: translatey(-70px);
  }
  100% {
    transform: translatey(0px);
  }
}

@keyframes zoom {
  0% {
    transform: scale(0.5);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.5);
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .work__feature-content p {
        padding-right: 30px;
    }

    .work__feature-content p br {
        display: none;
    }
}

@media (max-width: 767px) {
    .work__feature-content p {
        padding-right: 0px;
    }

    .work__feature-content p br {
        display: none;
    }
}

@media (max-width: 767px) {
    .we_advise {
        margin-top: 0;
    }

    #call-to-action h2 {
        font-size: 2rem;
        line-height: 3rem;
    }

    #call-to-action .col-lg-6 {
        padding: 2rem 2rem;
        min-height: 300px;
    }

    .footer__title {
        padding-bottom: 0px;
        padding-top: 20px;
    }

    #myCarousel .carousel-caption {
        width: 100%;
        text-align: center;
        padding: 0px;
    }

    #myCarousel .carousel-caption h2 span {
        font-size: 2rem;
        line-height: normal;
    }

    #myCarousel .carousel-caption h2 {
        font-size: 1.5rem;
        line-height: normal;
    }

    #myCarousel .carousel-item {
        max-height: 320px;
        min-height: 320px;
    }

    .ctc {
        max-width: 50px !important;
    }

    .section-title {
        font-size: 1.7rem;
        color: #000;
    }

    .ls-iconic-count {
        letter-spacing: 0.4px !important;
    }
    .work__thumb-main img {max-width: 360px;}
}