

body {

    overflow-x: hidden;

    font-family: "Rethink Sans", sans-serif;

    direction: rtl;

    margin: 0;

    padding: 0;

}



html {

    overflow-x: hidden;

}



h1,

h2,

h3,

h4,

h5,

h6,

p,

ul {

    margin: 0;

    padding: 0;

}



li {

    list-style: none;

}



a {

    text-decoration: none;

}



.header {

    width: 100%;

    background: transparent;

    padding: 0px;

    position: absolute;

    z-index: 9;

    border-bottom: 1px solid #797979;

}



.header.is-sticky {
    animation: slideDown 0.35s ease-out;
    position: fixed;
    top: 0;
    left: 0;
    background: #192D2F;
    border: 0px;
}


@keyframes slideDown {

    from {

        transform: translateY(-100%);

    }



    to {

        transform: translateY(0);

    }

}



.header.is-sticky .logo_main .brand img {

    width: 100px;

}



.wrapper {

    padding: 0px 80px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}



.logo_main {

    text-align: center;

    width: max-content;

    padding: 0 74px;

    position: relative;

}

/* .logo_main img {
    width: 116px;
} */

.logo_main::after {

    position: absolute;

    content: '';

    left: 0;

    top: -13px;

    width: 1px;

    height: 132px;

    background: #797979;

}



.is-sticky .logo_main::after {

    top: -16px;

}



nav#navbar {

    justify-content: center;

    /* border-right: 1px solid #797979; */

    border-left: 1px solid #797979;

    padding: 8px 0px;

}



.submenu li a {

    font-size: 1rem;

    font-weight: 500;

    line-height: inherit;

    cursor: pointer;

    color: #FFF;

    transition: all 0.35s ease;

    position: relative;

    white-space: nowrap;

}



.submenu li a:hover {

    color: #000;

}



button#close-btn {

    border: 0;

    outline: none;

    background: transparent;

    color: #FFF;

    font-size: 22px;

    display: none;

    padding: 10px;

}



.contact_details {
    display: flex;
    justify-content: center; /*end*/
}



.contact_details ul li {

    display: flex;

    gap: 10px;

    color: #FFF;

    margin-bottom: 20px;

    align-items: center;

}

.contact_details ul li:last-child {

    margin-bottom: 0px;

    align-items: flex-start;

}



.contact_details ul li a {

    color: #FFF;

    text-align: right;

    font-family: "Rethink Sans", sans-serif;

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: normal;

    display: block;

}



@media screen and (max-width: 992px) {

    .navbar {

        position: fixed;

        top: 0;

        left: -100%;

        width: 100%;

        height: 100%;

        z-index: 10;

        opacity: 0;

        overflow-y: auto;

        visibility: hidden;

        background-color: #B79E63;

        transition: all 0.5s ease;

        display: unset;

    }



    button#close-btn {

        display: inline-block;

    }



    .navbar.active {

        left: 0rem;

        opacity: 1;

        visibility: visible;

    }



}



.navbar #menu {
    display: flex;
    align-items: center;
    gap: 58px;
}



.menu-item {

    position: relative;

    display: inline-block;

    padding: 45px 0px;

    display: flex;

    align-items: center;

    justify-content: center;

}



.submenu .menu-item{

    padding: 0;

}



#menu span {
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-family: "Rethink Sans", sans-serif;
}

#menu span a{
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-family: "Rethink Sans", sans-serif;
}


#menu span svg path {

    transition: all 0.3s ease-in-out;

}



#menu span:hover svg path {

    stroke: #ba993e;

}



#menu span a:hover {

    color: #ba993e;

}



.is-sticky #menu span a:hover {

    color: #000;

}



.is-sticky #menu span:hover svg path {

    stroke: #000;

}



@media only screen and (min-width: 993px) {

    .menu-dropdown:hover>.submenu {

        display: block;

        opacity: 1;

        visibility: visible;

        transform: translateY(0.9rem);

    }

}



@media only screen and (max-width: 992px) {

    .header {

        padding: 10px 0;

    }



    .menu {

        width: 100%;

        height: auto;

        padding: 1rem 0.7rem;

        display: flex;

        flex-direction: column;

        gap: 16px;

    }



    .menu-item {
        display: block;
        /* margin: 0 auto; */
        padding: 0px;
    }



    .menu-link:hover {

        color: #FFF;

    }



    .submenu li a:hover {

        color: #FFF;

    }



}



.submenu {
    min-width: 170px;
    position: absolute;
    top: 6.9rem;
    /* left: 0rem; */
    padding: 1rem 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(2rem);
    border-radius: 0 0 0.25rem 0.25rem;
    background-color: #B79E63;
    transition: all 0.3s ease-in-out;
}



.submenu li {
    display: block;
    margin-top: 0;
}



@media only screen and (max-width: 992px) {

    .submenu {
        position: relative;
        top: 0.8rem;
        left: 24px;
        width: 100%;
        max-height: 100%;
        padding: 0px;
        border: none;
        outline: none;
        opacity: 1;
        overflow: hidden;
        visibility: visible;
        transform: translateY(0px);
        box-shadow: none;
        background: transparent;
        display: none;
        flex-direction: column;
        gap: 7px;
    }
    #menu span:hover {
        color: #FFF;
    }

    .navbar #menu {
        gap: 20px !important;
    }
}



.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: #FFF;

}



.burger-line:nth-child(1) {

    top: 0px;

}



.burger-line:nth-child(2) {

    top: 0.5rem;

    width: 70%;

}



.burger-line:nth-child(3) {

    top: 1rem;

}





@media only screen and (max-width: 992px) {

    .burger {

        display: block;

        opacity: 1;

        visibility: visible;

    }

}



.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);

}



@media only screen and (max-width: 992px) {

    .overlay.active {

        display: block;

        opacity: 1;

        visibility: visible;

    }

}





/* ============ Full Page Slider ================= */
.creative-showcase--slider {
    width: 100%;
    height: 100vh;
    position: relative;
}

.creative-showcase--slider .swiper-slide {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 80px 0;
    height: 100vh;
}




.creative-showcase--slider .swiper-slide .slide-bg {

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-box-align: center;

    -ms-flex-align: center;

    align-items: center;

    position: absolute;

    top: 0;

    right: 0;

    bottom: 0;

    left: 0;

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

}



.creative-showcase--slider .swiper-slide .overlay-dark:before {

    content: '';

    background: rgba(0, 0, 0, 0.5);

    position: absolute;

    width: 100%;

    height: 100%;

    top: 0;

    left: 0;

    z-index: 1;

    pointer-events: none;

}



.creative-showcase--slider .swiper-slide .video-container {

    position: absolute;

    top: 0;

    right: 0;

    bottom: 0;

    left: 0;

}



.creative-showcase--slider .swiper-slide .video-container video {

    width: 100%;

    height: 100%;

    -o-object-fit: cover;

    object-fit: cover;

    -o-object-position: center center;

    object-position: center center;

}



.swiper-slide .slide-bg .slide-container {
    max-width: 1470px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 7;
    padding-left: 15px;
    padding-right: 15px;
}



.slide-bg .slide-container .slide-row {

    display: flex;

    flex-wrap: wrap;

}



.slide-container .slide-row .slider-content {

    flex: 0 0 auto;

    width: 91.66666667%;

    margin-left: 8.33333333%;

    padding-left: 15px;

    padding-right: 15px;

}



.slider-content .slide-subtitle {

    color: #B79E63;

    text-align: right;

    font-family: "Tangerine", cursive;

    font-size: 40px;

    font-style: normal;

    font-weight: 400;

    line-height: normal;

}



.slider-content .slide-heading {

    color: #FFF;

    text-align: right;

    font-family: "Rethink Sans", sans-serif;


    font-size: 120px;

    font-style: normal;

    font-weight: 400;

    line-height: 130px;

    margin-bottom: .2rem;

    position: relative;

}



.slider-content .slide-heading img {

    position: absolute;

    right: 18%;

    top: 10%;

    width: 230px;

    z-index: -1;

}



.slider-content .slide-heading a {

    text-decoration: none;

    color: #fff;

    outline: none;

}



.creative-showcase--slider .banner-horizental .swiper-pagination {

    top: 34%;

    left: 110px;

    width: auto;

}


.creative-showcase--slider .banner-horizental .swiper-pagination-bullet {
    background: transparent;
    display: block;
    color: #B79E63;
    font-family: "Marcellus", serif ; 
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 90px;
    opacity: 1;
    position: relative;
}





.creative-showcase--slider .banner-horizental .swiper-pagination-bullet.swiper-pagination-bullet-active {
    color: #FFF;
    font-size: 30px;
    line-height: 8px;
}



.creative-showcase--slider .banner-horizental .swiper-pagination-bullet:last-child {

    margin-bottom: 0px;

}



.creative-showcase--slider .banner-horizental .swiper-pagination-bullet::after {

    content: '';

    position: absolute;

    left: -4px;

    top: 37px;

    background-color: #797979;

    width: 1px;

    height: 50px;

}



.creative-showcase--slider .banner-horizental .swiper-pagination-bullet:last-child::after {

    content: unset;

}



.creative-showcase--slider .banner-horizental .path {

    display: none;

}



.creative-showcase--slider .banner-horizental .swiper-pagination-bullet-active .path {

    display: inline-block !important;

    stroke-dasharray: 1000;

    stroke-dashoffset: 0;

    -webkit-animation: dash linear 10s;

    animation: dash linear 10s;

    -webkit-animation-iteration-count: unset;

    animation-iteration-count: unset;

}



@keyframes dash {

    0% {

        stroke-dashoffset: 1000;

    }



    100% {

        stroke-dashoffset: 0;

    }

}



/* ====================== Responsive Ipad =============================== */

@media (max-width: 991px) {

    .slide-container .slide-row .slider-content {

        flex: 0 0 auto;

        width: 100%;

        margin-left: 0px;

    }



    .slider-content .slide-heading {

        font-size: 72px;

        line-height: 90px;

    }



    .creative-showcase--slider .banner-horizental .swiper-pagination {

        left: 50px;

    }



    .creative-showcase--slider .creative-button--wrapper .swiper-button-prev {

        left: 15px;

    }



    .creative-showcase--slider .creative-button--wrapper .swiper-button-next {

        right: 15px;

    }



}



/* ====================== Responsive Iphone =============================== */

@media screen and (max-width: 767px) {

    .slide-container .slide-row .slider-content {

        padding-left: 0px;

        padding-right: 0px;

    }



    .slider-content .slide-heading {

        font-size: 40px;

        line-height: 50px;

    }



    .slider-content .slide-subtitle {

        margin-bottom: 15px;

    }



    .creative-showcase--slider .banner-horizental .swiper-pagination {

        left: 30px;

    }



    .creative-showcase--slider .banner-horizental .swiper-pagination-bullet {

        font-size: 16px;

        margin-bottom: 90px;

    }



    .creative-showcase--slider .banner-horizental .swiper-pagination-bullet.swiper-pagination-bullet-active {

        font-size: 18px;

    }

}



.about_section {
    background-color: #192D2F;
    background-image: url(../image/about_bg.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 40%;
}



.about_content {

    display: flex;

    align-items: center;

    gap: 112px;

    padding: 106px 0;

}



.about_text {

    max-width: 450px;

    text-align: start;

}



.about_content .title_bar {

    padding-bottom: 0px;

    text-align: start;

    width: 30%;

}



.about_content .title_bar small {

    padding-right: 60px;

}



.about_content .title_bar small::before {

    background: #B79E63;

    right: 0px;

}



.about_content .title_bar small::after {

    content: unset;

}



.about_content .title_bar h2 {

    color: #FFF;

}



.about_text p {

    font-style: normal;

    font-weight: 400;

    font-size: 25px;

    line-height: 30px;

    color: #FFFFFF;

    font-family: "Rethink Sans", sans-serif;

}



.about_content .title_bar a {
    width: 196px;
    height: 48px;
    background: #B79E63;
    padding: 11px 26px;
    color: #FFF;
    font-family: "Rethink Sans", sans-serif;

    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 47px;
    display: inline-block;
    transition: 0.5s ease-in-out;
    border: 1px solid #b79e63;
    text-align: end;
    display: flex;
    align-items: center;
    justify-content: end;
}


.about_content .title_bar a:hover {

    background: #192D2F;

}



.about_profile {

    position: relative;

    margin-top: -159px;

    z-index: 5;

}

/* Service Section */

.service_section {

    padding: 120px 0px 0;

    position: relative;

}

section#experienced {
    padding-top: 120px;
}



.pen_effect {

    position: absolute;

    top: 0;

    left: 0;

    z-index: -1;

}



.title_bar {

    padding-bottom: 90px;

    text-align: center;

}



.title_bar small {

    color: #B79E63;

    font-family: "Tangerine", cursive;

    font-size: 40px;

    font-style: normal;

    font-weight: 400;

    line-height: normal;

    position: relative;

}



.title_bar small::after {

    content: '';

    position: absolute;

    top: 59%;

    left: -60px;

    width: 50px;

    height: 1px;

    background-color: #192D2F;

}



.title_bar small::before {

    content: '';

    position: absolute;

    top: 59%;

    right: -60px;

    width: 50px;

    height: 1px;

    background-color: #192D2F;

}



.title_bar h2 {
    color: #192D2F;
    font-family: "Rethink Sans", sans-serif;

    font-size: 45px;
    font-style: normal;
    font-weight: 400;
    line-height: 50px;
    padding: 12px 0px 25px;
}


.title_bar h2 span {

    color: #B79E63;

}



.title_bar p {

    color: #767676;

    font-family: "Rethink Sans", sans-serif;

    font-size: 18px;

    font-style: normal;

    font-weight: 400;

    line-height: 30px;

}



.service_content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

div#service_page_category {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.arbitration {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 100%;
}

.arbitration_image {
    width: 100%;
    height: 100%;
}

.arbitration_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.arbitration_text {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
}

.arbitration_text h2 {
    color: #FFF;
    font-family: "Marcellus", serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    margin-bottom: 10px;
}

.arbitration_text p {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #FFF;
    margin-bottom: 10px;
}

.arbitration_text a {
    width: 140px;
    height: 40px;
    background: #B79E63;
    padding: 11px 10px;
    color: #FFF;
    font-family: "Rethink Sans", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: inline-block;
    transition: 0.5s ease-in-out;
    border: 1px solid #b79e63;
    text-align: end;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arbitration_text a:hover {
    background: #192D2F;
    border-color: #192D2F;
}


.service_item {
    background: #192D2F;
    padding: 60px;
    text-align: center;
    max-width: 100%;
    height: 280px;
    transition: 0.5s ease-in-out;
}

.service_item:hover{
    background: #F4F4F4;
}

.service_item:hover .hover_txt {
    opacity: 1;
    position: relative;
    transition: 0.5s ease-in-out;
    display: block;
}

.hover_txt{
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.service_item:hover .icon, .service_item:hover .text_service {
    display: none;
    position: absolute;
}


.service_item .icon,
.service_item .text_service{
    transition: 0.5s ease-in-out;
}

.service_item .text_service p {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-family: "Rethink Sans", sans-serif;
    margin-top: 30px;
}

.hover_txt h4 {
    color: #192D2F;
    text-align: center;
    font-family: "Rethink Sans", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 16px;
    display: none;

}



.experienced {

    background: #F4F4F4;

    padding: 100px 0px;

    position: relative;

}


.experienced::after {
    position: absolute;
    content: '';
    left: 44px;
    top: 44px;
    width: 100%;
    height: 100%;
    background: url(../image/img.webp);
    background-repeat: no-repeat;
    z-index: 0;
}

.tem_member.d-flex.mt-0.mt-md-2 {
    height: 50px;
    align-items: baseline;
}

.experienced_text small {

    color: #B79E63;

    font-family: "Tangerine", serif;

    font-size: 40px;

    font-style: normal;

    font-weight: 400;

    line-height: normal;

    position: relative;

    padding-right: 60px;

}



.experienced_text small::before {

    content: '';

    position: absolute;

    top: 59%;

    right: 0px;

    width: 50px;

    height: 1px;

    background-color: #B79E63;

}



.experienced_text h2 {

    color: #192D2F;

    font-family: "Rethink Sans", sans-serif;


    font-size: 45px;

    font-style: normal;

    font-weight: 400;

    line-height: 50px;

}



.experienced_text h2 span {

    color: #B79E63;

}



.experienced_text p {

    color: #767676;

    font-family: "Rethink Sans", sans-serif;

    font-size: 18px;

    font-style: normal;

    font-weight: 400;

    line-height: 30px;

    padding: 30px 0 50px 0;

}



.experienced_text a {

    background: #192D2F;

    display: flex;

    width: 196px;

    height: 48px;

    justify-content: center;

    align-items: center;

    color: #FFF;

    font-family: "Rethink Sans", sans-serif;


    font-size: 20px;

    font-style: normal;

    font-weight: 400;

    line-height: normal;

    transition: 0.5s ease-in-out;

}



.experienced_text a:hover {

    background: #B79E63;

}



.count-up {

    padding: 50px 30px;

    background: #FFF;

    width: 278px;

    height: 213px;

}



#counter {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 50px;

    max-width: 606px;

}



.experienced .row {
    gap: 0px;
    z-index: 1;
    position: relative;
}


.tem_member .count {

    color: #192D2F;

    font-family: "Rethink Sans", sans-serif;


    font-size: 60px;

    font-style: normal;

    font-weight: 400;

    line-height: 50px;

}



.tem_member .count.percent {

    color: #192D2F;

    font-family: "Rethink Sans", sans-serif;


    font-size: 20px;

    font-style: normal;

    font-weight: 400;

    line-height: 50px;

}



.count-txt .heading_text {

    color: #192D2F;

    font-family: "Rethink Sans", sans-serif;


    font-size: 22px;

    font-style: normal;

    font-weight: 400;

    line-height: normal;

    margin-top: 35px;

}



.our_team {

    padding-top: 120px;

    position: relative;

}



.our_team .title_bar {

    text-align: start;

    padding-bottom: 35px;

}



.our_team .title_bar small {

    padding-right: 60px;

}



.our_team .title_bar small::after {

    content: unset;

}



.our_team .title_bar small::before {

    right: 0px;

}



.team_box {

    position: relative;

}



.team_name {

    position: relative;

    max-width: 80%;

    background: #192D2F;

    padding: 14px;

    text-align: center;

    margin: auto;

    margin-top: -50px;

}



.team_name h4 {

    font-family: "Rethink Sans", sans-serif;


    font-style: normal;

    font-weight: 400;

    font-size: 22px;

    line-height: 28px;

    color: #FFFFFF;

}



.team_name p {

    font-style: normal;

    font-weight: 400;

    font-size: 16px;

    line-height: 16px;

    color: #B79E63;

    font-family: "Rethink Sans", sans-serif;

    margin-top: 8px;

}



.team_carousel_btn .swiper-button-prev::after {

    content: unset;

}



.team_carousel_btn .swiper-button-next::after {

    content: unset;

}



.team_topbar .swiper-button-next {

    left: 0px;

}



.team_topbar {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

}



.team_carousel_btn {

    position: relative;

    width: 125px;

    z-index: 1;

}



.team_carousel_btn .swiper-button-prev,

.team_carousel_btn .swiper-button-next {

    width: 48px;

    height: 48px;

    background: #F4F4F4;

    color: #192D2F;

    font-size: 20px;

    transition: 0.4s ease-in-out;

}



.team_carousel_btn .swiper-button-prev:hover,

.team_carousel_btn .swiper-button-next:hover {

    background: #192D2F;

    color: #FFF;

}



.pen_effect_right {

    position: absolute;

    top: 0;

    right: 0;

}



.together_sec {
    background-image: url(../image/together_bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 135px 0px 110px;
    /* margin-top: 120px; */
}

.submit_btn button {
    width: 196px;
    height: 48px;
    background: #B79E63;
    color: #FFF;
    font-family: "Marcellus", serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border: 0;
    outline: none;
    transition: 0.5s ease-in-out;
}

.submit_btn button:hover {
    background: #192D2F;
}


.together_text {
    max-width: 700px;
}



.together_text small {

    font-style: normal;

    font-weight: 700;

    font-size: 40px;

    line-height: 40px;

    color: #B79E63;

    font-family: "Tangerine", cursive;

}



.together_text h2 {

    font-style: normal;

    font-weight: 400;

    font-size: 80px;

    line-height: 90px;

    color: #FFFFFF;

    font-family: "Rethink Sans", sans-serif;


    margin-bottom: 50px;

}



.together_text a {

    display: flex;

    width: 216px;

    height: 48px;

    justify-content: start;

    padding: 12px 20px;

    gap: 10px;

    align-items: center;

    background: #B79E63;

    color: #FFF;

    text-align: right;

    font-family: "Rethink Sans", sans-serif;


    font-size: 20px;

    font-style: normal;

    font-weight: 400;

    line-height: normal;

    margin-bottom: 20px;

    transition: 0.5s ease-in-out;

}



.together_text a:hover {

    background: #192D2F;

}



.together_text a:last-child {

    margin-bottom: 0px;

}



.testimonial {
    padding: 120px 0px 0;
    position: relative;
}



.testimonial .title_bar {
    padding-bottom: 80px;
}



.testimonial .title_bar h2 {

    padding-bottom: 0px;

}



.testimonials_carousel {

    max-width: 1270px;
    padding-bottom: 28px;

}



.testimonial_item {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    width: 100%;
}


.testimonial_text {
    width: 45%;
}

.testimonial_img img {
    width: 100%;
}


.testimonial_img {
    width: 30%;
    padding-left: 60px;
    position: relative;
}

img.blockquote_image {
    width: 98%;
}

.case_box {
    width: 26%;
}

.testimonial_item .client-image {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0%, -50%);
}



.testimonial_item .testimonial_img::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 297px;
    top: -24px;
    left: -20px;
    background: #C9C9C9;
}
.founder_image img {
    border-radius: 10px;
}


.testimonial_text p {

    font-style: normal;

    font-weight: 400;

    font-size: 18px;

    line-height: 30px;

    color: #767676;

    margin-bottom: 40px;

}



.testimonial_text h4 {

    font-style: normal;

    font-weight: 400;

    font-size: 22px;

    line-height: 28px;

    color: #192D2F;

    font-family: "Rethink Sans", sans-serif;


}



.testimonial_text span {

    font-style: normal;

    font-weight: 400;

    font-size: 16px;

    line-height: 20px;

    color: #B79E63;

    font-family: "Rethink Sans", sans-serif;
    display: block;
    padding: 5px 0px;

}



.testimonial .team_carousel_btn {
    margin-right: auto;
    margin-top: 40px;
}

#contact{
    padding-top: 120px;
}

.contact_section {
    background-color: #F4F4F4;
    background-image: url(../image/contact-img.webp);
    background-repeat: no-repeat;
    background-position: left;
}


.conatct_text {

    padding: 107px 0px 111px;

    max-width: 680px;

}

#home_contect {
    padding: 96px 0px 96px;
    max-width: 680px;
    position: relative;
    z-index: 1;
}

.conatct_text .title_bar {

    padding-bottom: 64px;

}



.conatct_text .title_bar h2{

    padding-bottom: 0;

}



.conatct_text .title_bar small {

    padding-right: 60px;

    text-transform: lowercase;

}



.conatct_text .title_bar small::after {

    content: unset;

}



.conatct_text .title_bar small::before {

    right: 0;

    background: #192D2F;

}



.contact_form {

    display: flex;

    flex-wrap: wrap;

    gap: 20px;

}



.input_grid{

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 20px;

    width: 100%;

}



.contact_form .input_feild {

    width: 100%;

}



.contact_form .input_feild input, .contact_form .input_feild textarea {
    width: 100%;
    background: #FFF;
    border: 0px;
    outline: none;
    padding: 17px 30px;
    color: #B1B1B1;
    font-family: "Rethink Sans", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    direction: rtl;
}



.contact_form .input_feild textarea {
    padding: 40px 30px;
    max-height: 130px;
    resize: unset;
}



.submit_btn {

    width: 100%;

}



.submit_btn input {

    width: 157px;

    height: 48px;

    background: #B79E63;

    color: #FFF;

    font-family: "Rethink Sans", sans-serif;


    font-size: 20px;

    font-style: normal;

    font-weight: 400;

    line-height: normal;

    border: 0;

    outline: none;

    transition: 0.5s ease-in-out;

    border: 1px solid #B79E63;

}



#home_page_submit input{

    width: 196px;

}







.submit_btn input:hover {

    background: transparent;

    color: #B79E63;

}


.submit_btn:hover svg path {
    stroke: #B79E63;
}



.submit_btn input:hover > svg path{

    stroke: #B79E63;

}





.partners {

    padding: 120px 0px;

    position: relative;

}



.text_member h4 {

    font-family: 'Inter', sans-serif;

    font-style: normal;

    font-weight: 500;

    font-size: 22px;

    line-height: 24px;

    color: #192D2F;

    margin: 20px 0px 12px;

}



.text_member p {

    font-family: 'Rethink Sans', sans-serif;

    font-style: normal;

    font-weight: 400;

    font-size: 16px;

    line-height: 20px;

    color: #555555;

}



.learn_more_btn a {

    font-family: "Rethink Sans", sans-serif;


    font-style: normal;

    font-weight: 400;

    font-size: 20px;

    line-height: 25px;

    text-decoration-line: underline;

    color: #000000;

    transition: 0.4s ease-in-out;

}



.learn_more_btn a:hover {

    color: #192D2F;

}



.blog_section {

    position: relative;
    padding-top: 120px;

}



.blog_section .title_bar {

    padding-bottom: 50px;

}

.blog_section .title_bar h2 {
    padding: 0px;
}

.blog_section .title_bar small::before {
    content: unset;
}
.blog_page_section{
    padding-top: 100px;
}

.blog_box .blog_text span {
    font-family: "Rethink Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
    /* font-size: 18px;
    line-height: 23px; */
    font-size: 24px;
    line-height: 30px;
    color: #B79E63;
    display: block;
    margin: 20px 0px 15px;
}


.blog_box .blogimage img {
    width: 100%;
}

.blog_box .blog_text h3 {
    display: -webkit-box;
    max-width: 400px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: "Rethink Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
    /* font-size: 24px;
    line-height: 30px; */
    font-size: 18px;
    line-height: 22px;
    color: #192D2F;
    max-width: 345px;
}
.blogimage img {
    height: 250px;
    object-fit: cover;
}


.blog_box .blog_text ul li {

    display: inline-block;

    margin-top: 15px;

    font-family: "Rethink Sans", sans-serif;

    font-style: normal;

    font-weight: 400;

    font-size: 16px;

    line-height: 18px;

    color: #B1B1B1;

    margin-left: 25px;

}



.blog_box .blog_text ul li small {
    display: inline-block;
    margin: 0px 10px;
    width: 6px;
    height: 6px;
    border-radius: 10px;
    background-color: #717171;
}



.footer {

    background-image: url(../image/footer_bg.webp);

    background-repeat: no-repeat;

    background-size: cover;

    background-position: center 50px;

    background-color: #192D2F;

    padding-top: 84px;

    margin-top: 120px;

}

.ft_logo {
    display: flex;
    gap: 20px;
    align-items: center;
}

.ft_content_box {

    padding-bottom: 46px;

    border-bottom: 1px solid #686868;

    position: relative;

}



.ft_content_box::after {
    content: '';
    position: absolute;
    top: 0;
    right: 34rem;
    width: 1px;
    height: 100%;
    background: #686868;
}



.ft_contact ul {

    margin-top: 75px;

    display: flex;

    flex-wrap: wrap;

    gap: 25px 50px;

}



.ft_contact ul li a {

    font-family: "Rethink Sans", sans-serif;


    font-style: normal;

    font-weight: 400;

    font-size: 18px;

    line-height: 22px;

    color: #FEFEFE;

    vertical-align: middle;

    transition: 0.4s ease-in-out;

}



.ft_contact ul li a:hover {

    color: #B79E63;

}



.ft_contact ul li {

    font-family: "Rethink Sans", sans-serif;


    font-style: normal;

    font-weight: 400;

    font-size: 18px;

    line-height: 22px;

    color: #FEFEFE;

    width: 171px;

    white-space: nowrap;

}



.ft_contact ul li img {

    margin-left: 5px;

}



.ft_list_item {
    display: flex;
    flex-wrap: wrap;
    gap: 44px;
    margin-top: 38px;
}



.ft_list h4 {

    font-family: "Rethink Sans", sans-serif;


    font-style: normal;

    font-weight: 400;

    font-size: 22px;

    line-height: 22px;

    color: #FFFFFF;

    margin-bottom: 35px;

}



.ft_list:not(:first-child) h4 {

    opacity: 0;

}



.ft_list ul li {

    margin-bottom: 25px;

}



.ft_list ul li a{
    font-family: "Rethink Sans", sans-serif;

    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    color: #FFFFFF;
    transition: 0.4s ease-in-out;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    justify-content: flex-start;
}



.ft_list ul li a:hover {

    color: #B79E63;

}



.link_item {

    margin-top: 60px;

}



.ft_right_content {

    margin-top: 10px;

}



.link_item ul {

    display: flex;

    gap: 15px 85px;

    flex-wrap: wrap;

}



.link_item ul li a{

    font-family: "Rethink Sans", sans-serif;


    font-style: normal;

    font-weight: 400;

    font-size: 24px;

    line-height: 22px;

    text-decoration-line: underline;

    color: #FFFFFF;

    transition: 0.4s ease-in-out;

}



.link_item ul li a:hover {

    color: #B79E63;

}



.copyright p,

.copyright p a {

    font-family: "Rethink Sans", sans-serif;


    font-style: normal;

    font-weight: 400;

    font-size: 15.9978px;

    line-height: 25px;

    color: #A8A8A8;

    padding: 25px 0px;

}



.inner_banner {

    background-repeat: no-repeat;

    background-size: cover;

    background-position: center;

    height: 600px;

    position: relative;

}



.inner_banner::after {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background-color: rgba(0, 0, 0, 0.5);

}



.inner_banner_text {

    text-align: center;

    position: absolute;

    bottom: 30%;

    left: 0px;

    right: 0px;

    z-index: 1;

}



.inner_banner_text h2 {

    font-family: "Rethink Sans", sans-serif;


    font-style: normal;

    font-weight: 400;

    font-size: 70px;

    line-height: 75px;

    color: #FFFFFF;

    margin-bottom: 15px;

}



.inner_banner_text ul li {

    font-family: "Rethink Sans", sans-serif;

    font-style: normal;

    font-weight: 400;

    font-size: 18px;

    line-height: 30px;

    color: #FFFFFF;

    display: inline-block;

}



.inner_banner_text ul li a,
.inner_banner_text ul li strong {

    font-family: "Rethink Sans", sans-serif;

    font-style: normal;

    font-weight: 400;

    font-size: 18px;

    line-height: 30px;

    color: #FFFFFF;

}



.inner_banner_text ul li strong {

    color: #B79E63;

}



.specialization_section {
    margin: 120px 0;
}


.specialization_content .title_bar {

    padding-bottom: 0px;

}



.specialization_content .title_bar small {
    padding-right: 60px;
    text-transform: lowercase;
}



.specialization_content .title_bar small::after {

    content: unset;

}



.specialization_content .title_bar small::before {

    right: 0;

}



.specialization_image img {

    width: 100%;

}


.specialization_content p {
    font-family: "Rethink Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px; /*17.8*/
    line-height: 30px;
    color: #767676;
    margin-bottom: 30px;
    direction: ltr;
    text-align: end;
}



.specialization_image {

    margin-bottom: 30px;

    padding-left: 100px;

}


.specialization_btn {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 0;
}


.specialization_btn span {

    font-family: "Rethink Sans", sans-serif;


    font-style: normal;

    font-weight: 400;

    font-size: 16px;

    line-height: 20px;

    color: #B79E63;

}



.specialization_btn p,
.specialization_btn p a {

    font-family: "Rethink Sans", sans-serif;


    font-style: normal;

    font-weight: 400;

    font-size: 22px;

    line-height: 28px;

    color: #192D2F;

    margin: 0px;

}



.our_Services_box {

    background: #F4F4F4;

    padding: 60px 50px;

    margin-bottom: 40px;
    margin-top: 40px;

}



.our_Services_box:last-child {

    margin-bottom: 0px;

}



.our_Services_box h3 {

    font-family: "Rethink Sans", sans-serif;


    font-style: normal;

    font-weight: 400;

    font-size: 35px;

    line-height: 35px;

    color: #B79E63;

    margin-bottom: 40px;

    padding-right: 60px;

    position: relative;

}



.our_Services_box h3::after {

    content: '';

    position: absolute;

    top: 5px;

    right: 0px;

    bottom: 0;

    width: 50px;

    height: 1px;

    margin: auto;

    background: #192D2F;

}



.our_Services_box li:not(:last-child) {

    margin-bottom: 34px;

}



.our_Services_box li a {

    font-style: normal;

    font-weight: 400;

    font-size: 20px;

    line-height: 25px;

    font-family: "Rethink Sans", sans-serif;


    color: #192D2F;

    display: flex;

    align-items: center;

    gap: 6px;

}

.our_Services_box li.active a {

    color: #B79E63;

}





.form_service:not(:last-child) {

    margin-bottom: 20px;

}
.form_service.text-center{
    position: relative;
    width: max-content;
    margin: auto;
}

.form_service input, .form_service textarea {
    padding: 12px 33px;
    border: 0px;
    outline: none;
    width: 100%;
    direction: rtl;
}
.form_service textarea {
    max-height: 96px;
    resize: unset;
}


.form_service input[type='submit'] {

    width: 157px;

    height: 48px;

    padding: 11px 20px;

    background: #B79E63;

    font-family: "Marcellus", sans-serif;

    font-style: normal;

    font-weight: 400;

    font-size: 20px;

    line-height: 25px;

    color: #FFFFFF;

    border: 0;

    outline: none;

    transition: 0.4s ease-in-out;

    margin-top: 20px;

}


.form_service .wpcf7-spinner {
    position: absolute;
}


.form_service svg {
    position: absolute;
    right: 16px;
    top: 32px;
}


.form_service input[type='submit']:hover {

    background: #192D2F;

}



.team_carousel2 {

    margin-bottom: 40px;

    padding-bottom: 30px;

}



.team_carousel2 .team_carousel_btn {

    margin: auto;

    margin-top: 50px;

}



.profile_section {

    padding: 120px 0px;

    position: relative;

}



.profile_content {

    display: flex;

    flex-wrap: wrap;

    gap: 40px;

}



.information {

    width: 58%;

}



.admin_profile {

    width: 25%;

    text-align: center;

}



.profile_adminname {

    margin-top: 30px;

}



.profile_adminname h4 {

    font-family: "Rethink Sans", sans-serif;


    font-style: normal;

    font-weight: 400;

    font-size: 45px;

    line-height: 50px;

    color: #192D2F;

    margin-bottom: 10px;

}



.profile_adminname span {

    font-family: "Rethink Sans", sans-serif;

    font-style: normal;

    font-weight: 400;

    font-size: 20px;

    line-height: 16px;

    color: #B79E63;

}



.profile_adminname ul {

    display: flex;

    gap: 25px;

    justify-content: center;

    margin-top: 30px;

}



.profile_adminname ul li a {

    display: flex;

    width: 40px;

    height: 40px;

    padding: 8px;

    justify-content: center;

    align-items: center;

    background: #192D2F;

    color: #FFF;

    font-size: 20px;

    transition: 0.4s ease-in-out;

}



.profile_adminname ul li a:hover {

    background: #B79E63;

}



.information .item:not(:last-child) {

    margin-bottom: 30px;

}



.information .item h4 {

    font-family: "Rethink Sans", sans-serif;

    font-style: normal;

    font-weight: 600;

    font-size: 22px;

    line-height: 16px;

    margin-bottom: 15px;

    color: #192D2F;

}



.information .item p {

    font-family: "Rethink Sans", sans-serif;

    font-style: normal;

    font-weight: 400;

    font-size: 18px;

    line-height: 30px;

    color: #767676;

}





/*---------------- Service Page -------------------*/

.service_post_content {
    margin-top: 30px;
}


#service_page_box h3 {
    font-family: "Tangerine";
    font-style: normal;
    font-weight: 400;
    font-size: 35px;
    line-height: 40px;
    color: #B79E63;
    margin-bottom: 50px;
    padding-right: 60px;
    position: relative;
    text-transform: lowercase;
}


.article_boxex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 38px;
    margin-top: 40px;
}


.article_details{

    display: flex;

    flex-direction: column;

    gap: 20px;

    margin-top: 15px;

}



.article_details h4{

    color: #192D2F;

    text-align: right;

    font-family: "Rethink Sans", sans-serif;


    font-size: 24px;

    font-style: normal;

    font-weight: 400;

    line-height: normal;

}



.article_details p {
    color: #767676;
    text-align: right;
    font-family: "Rethink Sans", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    direction: ltr;
}



.article_details a {

    background: #192D2F;

    color: #FFF;

    font-family: "Rethink Sans", sans-serif;


    font-size: 20px;

    font-style: normal;

    font-weight: 400;

    line-height: normal;

    padding: 11px 21px;

    width: max-content;

    transition: 0.5s ease-in-out;

}

.article_details a:hover {

    background: #B79E63;

}



div#service_page_box {

    padding: 60px 60px;

}



.star{

    margin-bottom: 30px;

}



.testimonial_div{

    max-width: 1275px;

    margin: auto;

}



section.partners .row {

    gap: 16px 0;

}



.member_profile {

    max-width: 207px;

    margin: auto;

}



.submit_btn {
    margin-top: 15px;
    position: relative;
    width: max-content;
}

div#home_page_submit button {

    margin-top: 30px;

}























/* =====================================Development CSS===================================== */

ul#footer_menu .menu-item {

    padding: 0 !important;

    justify-content: flex-start;

}



span.dashicons.fas.fa-arrow-left.fa-2x.after-menu-image-icons {

    font-size: 18px;

    margin-top: 2px;

    display: flex;

    align-items: center;

    justify-content: center;

}



.menu-image-title-after.menu-image-not-hovered img, .menu-image-hovered.menu-image-title-after .menu-image-hover-wrapper, .menu-image-title-before.menu-image-title {

    padding-right: 0 !important; 

}

.contact_form {
    direction: rtl;
}

.wpcf7 input[type="url"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"] {
    direction: rtl !important;
}

ul#breadcrumbs {
    direction: ltr;
    display: flex;
    justify-content: center;
    gap: 5px;
}


.our_Services_box div#v-pills-tab {
    margin: 0 !important;
    gap: 35px;
    display: flex;
}
.our_Services_box .nav-link {
    display: block;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    font-family: "Rethink Sans", sans-serif;

    color: #192D2F;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color .15s ease-in-out,
    background-color .15s ease-in-out,
    border-color .15s ease-in-out;
    padding: 0;
}


.our_Services_box .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #B79E63;
    background-color: transparent;
}
.our_Services_box .nav-link:focus, .nav-link:hover {
    color: #B79E63;
}

.menu-item a {
    display: flex;
    gap: 5px;
    justify-content: center;
}

.team_member img {
    width: 100% !important;
    /* height: 506px !important; */
    object-fit: cover;
}

.service_content {
    direction: ltr;
}


.about_container {
    max-width: 1551px;
    margin: auto;
    padding: 0px 0;
}


.container.p-4.setdata_page {
    display: none;
}

.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 1em;
    font-weight: normal;
    display: block;
    direction: ltr;
    text-align: end;
}

.wpcf7-response-output {
    margin-right: 0 !important;
}


.experienced_text {
    padding-left: 80px;
}

.inner_banner_text a.active {
    color: #b79e63 !important;
}

.page_404 {
    text-align: center;
    padding: 100px 0 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.page_404 a {
    margin: 0 auto;
    width: 220px;
    height: 52px;
    background: #B79E63;
    padding: 11px 26px;
    color: #FFF;
    font-family: "Rethink Sans", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 47px;
    display: inline-block;
    transition: 0.5s ease-in-out;
    border: 1px solid #b79e63;
    text-align: end;
    display: flex;
    align-items: center;
    justify-content: end;
    margin: auto;
    gap: 7px;
}

.about_content .title_bar a:hover {
    background: transparent;
}


.team_box {
    position: relative;
    overflow: hidden;
  }
  
  .team_front {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: transform 0.5s ease-in-out;
  }
  
  .team_member {
    width: 100%;
    overflow: hidden;
  }
  
  .team_name{
    position: relative;
    z-index: 3;
  }
  
  .team_person_detail {
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    bottom: 0;
    color: white;
    padding: 20px 20px 60px;
    text-align: center;
    transition: top 0.5s ease-in-out;
    z-index: 0;
    background-color: #DADADA;
    height: 93%;
}   
.team_box:hover .team_person_detail {
    top: 0;
    z-index: 1;
    transition: top 0.5s ease-in-out;
    height: 93%;
    display: flex;
    align-items: center;
}
  
  .team_box:hover .team_front {
    transform: translateY(40px); 
  }
  
  .team_person_detail p {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.20px;
}


div#aboutus {
    height: 200px;
    z-index: -1;
    position: relative;
    margin-top: -200px;
}


/* Partner Scetion None */
.partners {
    padding: 120px 0px;
    position: relative;
    display: none;
}
.social-btn {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}


/* NEW 01/01/25 */

.creative-showcase--slider{
    position: relative;
}

.creative-showcase--slider::after {
    position: absolute;
    content: '';
    top: calc(10% + 50px);
    left: calc(10% + 10px);
    width: calc(100vw - 1120px);
    height: calc(100vw - 1120px);
    z-index: 99;
}
.about_content{
    position: relative;
}
.about_content::after {
    position: absolute;
    content: '';
    top: 10%;
    left: 0;
    width: calc(100vw - 1170px);
    height: calc(100vw - 1470px);
}

.small_icon{
    margin-bottom: 22px;
}
.small_logo_icon{
    width: 100px;
}
/* .experienced_text .small_logo_icon{
    width: 100px;
} */

.service_section::after {
    position: absolute;
    content: '';
    top: 80px;
    left: 50px;
    width: 1000px;
    height: 688px;
    z-index: -1;
}
.small_icon_txt {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    gap: 20px;
}

.experienced::before {
    position: absolute;
    content: '';
    right: 70px;
    top: 97px;
    width: 645px;
    height: 100%;
}


.experienced_text img {
    display: block;
}


.title_bar h2 {
    padding: unset;
}

.small_icon_heading {
    display: flex;
    align-items: center;
    gap: 21px;
    padding: 12px 0px 25px;
}
.small_icon_heading_contact{
    display: flex;
    align-items: center;
    gap: 21px;
}

.our_team .title_bar small {
    padding-right: 60px;
    margin-right: 110px;
}

.main_team{
    position: relative;
}

.main_team::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 943px;
    height: 688px;
    z-index:-1;
}

section.testimonial::after{
    position: absolute;
    content: '';
    top: 120px;
    left: 204px;
    width: calc(100vw - 1170px);
    height: calc(100vw - 1470px);
    z-index:-1;
}
.contact_section{
    position: relative;
}
.contact_section::after {
    position: absolute;
    content: '';
    top: 86px;
    right: 57px;
    width: 848px;
    height: 619px;
    z-index: 0;
}

.conatct_text .title_bar small {
    margin-right: 110px;
}

.team_topbar small {
    margin-right: 110px;
}

.blog_section::after{
    position: absolute;
    content: '';
    top: 120px;
    left: 235px;
    width: 813px;
    height: 593px;
    z-index: -1;
}

div#home_page_submit svg {
    top: 13px;
    position: absolute;
    right: 22px;
}

/* Home Tabbing Gallery CSS Start */

.photo-block {
    justify-content: center;
    gap: 20px;
    direction: ltr;
}

.photo_block_section{
    margin: 120px 0 0;
}

.photo-block .nav-link {
    display: flex;
    width: max-content;
    height: 48px;
    justify-content: start;
    padding: 12px 20px;
    gap: 10px;
    align-items: center;
    background: transparent;
    color: #B79E63;
    text-align: right;
    font-family: "Rethink Sans", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
    transition: 0.5s ease-in-out;
    border: 1px solid #B79E63;
}
.photo-block .nav-link:hover{
    background: #B79E63;
    color: #FFF;
}

.photo-block .nav-link.active{
    background: #B79E63;
    color: #FFF;
}

.main .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
    justify-content: center;
    align-items: center;
  }
  .main .card {
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
    color: #333333;
    border-radius: 2px;
  }
  .main .card-image {
    background: #ffffff;
    display: block;
    padding-top: 70%;
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  .main .card-image img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease-in-out;
}

.main .card-image:hover img {
    transform: scale(1.05);
    opacity: 0.8;
}

/* .client-image img {
    width: 100px;
} */
img.small_logo_image {
    width: 150px;
}

.zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease-in-out;
    background-color: #B79E63;
    color: #FFF;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main .card-image:hover .zoom-icon{
    visibility: visible;
    opacity: 1;
}

/* Disable People Button CSS */

span.keyboard-shorcut {
    display: none !important;
}
body.trigger-position-center #enable-toolbar-trigger{
    left: unset !important;
    right: 0.7%;
}

/* Blog Detail Page CSS */

.related_title{
    color: #192D2F;
    font-family: "Rethink Sans", sans-serif;
    font-size: 45px;
    font-style: normal;
    font-weight: 400;
    line-height: 50px;
    margin-bottom: 30px;
}
.related_title span{
    color: #B79E63;
}
.realted_blogs_inner_container {
    display: flex;
    gap: 20px;
    align-items: center;
}
.related_blog_img img {
    width: 200px;
    height: 100%;
}
.related_blog_title h4{
    color: #192D2F;
    font-family: "Rethink Sans", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 24px;
}
.related_blog_title {
    margin-bottom: 10px;
}
.related_blog_excerpts p{
    color: #767676;
    font-family: "Rethink Sans", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
}
.service_post_content img{
    width: 100%;
}
.service_post_content h2,.service_post_content h3,.service_post_content h4,.service_post_content h5,.service_post_content h6{
    color: #192D2F;
    font-family: "Rethink Sans", sans-serif;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 30px;
}
.service_post_content h2{
    font-size: 35px;
}
.service_post_content h3{
    font-size: 30px;
}
.service_post_content h4{
    font-size: 25px;
}
.service_post_content h5{
    font-size: 20px;
}
.service_post_content h6{
    font-size: 18px;
}
.service_post_content ul, .service_post_content ol {
    padding-right: 20px;
    margin-bottom: 30px;
}
.service_post_content ul li{
    list-style-type: disc;
}
.service_post_content ol li{
    list-style-type: auto;
}
.service_post_content li{
    color: #767676;
    font-family: "Rethink Sans", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}



/* css 19-03-26 (A) */

.specialization_section .row {
    --bs-gutter-x: 80px;
}
.related_blog_excerpts {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.button-style a{
  border-bottom: 2px solid #B79E63;
    display: flex;
    /* width: 196px; */
    height: 48px;
    justify-content: center;
    align-items: center;
    color: #192D2F;
    font-family: "Rethink Sans", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: 0.5s ease-in-out;
}
.button-style {
    display: flex;
    justify-content: space-between;
}