* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #000;
}

/*Loader*/
.spinner-fixed {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
    background: rgba(0, 0, 0, .9)
}

.spinner {
    margin: 0 auto;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fff;
    -webkit-animation: 2s infinite spinner-ease;
    animation: 2s infinite spinner-ease
}

@-webkit-keyframes spinner-ease {

    0%,
    100% {
        transform: rotateX(0)
    }

    32.5%,
    57.5%,
    7.5%,
    82.5% {
        background-color: #f6f2ef
    }

    32.51%,
    57.51%,
    7.51%,
    82.51% {
        background-color: #f9f5f2
    }

    25% {
        transform: rotateX(180deg)
    }

    50% {
        transform: rotateZ(180deg)
    }

    75% {
        transform: rotateY(180deg)
    }
}

@keyframes spinner-ease {

    0%,
    100% {
        transform: rotateX(0)
    }

    32.5%,
    57.5%,
    7.5%,
    82.5% {
        background-color: #f6f2ef
    }

    32.51%,
    57.51%,
    7.51%,
    82.51% {
        background-color: #f9f5f2
    }

    25% {
        transform: rotateX(180deg)
    }

    50% {
        transform: rotateZ(180deg)
    }

    75% {
        transform: rotateY(180deg)
    }
}

body {
    font-family: "Jost", sans-serif;
    font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    margin: 0;
    line-height: 1.2;
    font-weight: 600;
    text-transform: inherit;
}

p {
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 16px;
    color: #000;
    overflow: hidden;
}

p:nth-last-child(1) {
    margin-bottom: 0;
}

.heading {
    font-size: 36px;
    margin-bottom: 30px;
    color: #000;
}

.toptext {
    font-size: 16px;
    color: #e7b962;
    display: block;
    margin-bottom: 15px;
    font-weight: 500;
}

/* .subhd{} */
/* img {
    max-width: 100%;
    object-fit: cover;
    object-position: center
} */

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.relative {
    position: relative;
}

.pad80 {
    padding: 100px 0px;
}

.padb80 {
    padding-bottom: 100px;
}

.max_w800 {
    max-width: 900px;
}

.grey {
    background: #e1e1e1;
}

.overlay {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.overlay:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, #000000a3 30%, transparent 70%);
    z-index: -1
}

.animated {
    visibility: visible;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -ms-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-play-state: running;
    -moz-animation-play-state: running;
    -ms-animation-play-state: running;
    -o-animation-play-state: running;
    animation-play-state: running;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

@-webkit-keyframes fadeUp {
    0% {
        -webkit-transform: translateY(100px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        opacity: 1;
    }
}

@-moz-keyframes fadeUp {
    0% {
        -moz-transform: translateY(100px);
        opacity: 0;
    }

    100% {
        -moz-transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeUp {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate__fadeUp {
    -webkit-animation-name: fadeUp;
    animation-name: fadeUp;
    transform: translateY(0);
}

@-webkit-keyframes navbar-animation {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes navbar-animation {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.enq_btn {
    width: auto;
    position: fixed;
    right: -45px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    background: #bfa85d;
    transition: all 0.85s ease;
    z-index: 999;
}

.enq_btn a {
    width: 100%;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Durer';
    font-size: 16px;
    padding: 15px 30px;
}

.enq_btn a::before {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    content: '';
    height: 0;
    background: #000;
    transition: all 0.3s ease 0s;
    z-index: -1;
}

.enq_btn a:hover {
    color: #fff;
    border: 1px solid rgb(255 255 255 / 34%);
    background: transparent;
}

.enq_btn a:hover::before {
    height: 100%;
}

/*Responsive Button Css*/
.logo {
    width: 100px;
    animation: linear infinite alternate;
    animation-name: run;
    animation-duration: 2s;
    font-size: 30px;
    color: #bfa85d
}

@keyframes run {
    0% {
        left: 0;
        transform: translateX(0);
    }

    100% {
        right: 50%;
        transform: translateX(50%);
    }
}

@-webkit-keyframes run {
    0% {
        left: 0;
        transform: translateX(0);
    }

    100% {
        right: 50%;
        transform: translateX(50%);
    }
}

.top_bg_wrap {
    width: 100%;
    background: #000;
    padding: 8px 0px;
}

.top_email_media {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ph_email {
    width: 100%;
    display: flex;
    gap: 20px
}

.ph_email a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: all 0.85s ease;
    opacity: 1;
}

.ph_email a:hover {
    opacity: 1;
}

.social_media {
    transition-delay: 0.85s;
    transition: all 0.5s ease;
    display: flex;
    gap: 12px;
}

.social_media a {
    width: 25px;
    height: 25px;
    border: 1px solid #fff;
    background: #fff;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: all 0.5s ease;
    opacity: 1;
}

.social_media a:hover {
    opacity: 1;
    background: #fff;
}

.social_media a i {
    font-size: 15px;
    color: #fff;
    transition: all 0.85s ease;
}

.social_media a:hover i {
    color: #000;
}

/* .logo:hover{color:#bfa85d;} */
.navbar-toggler {
    border: none;
    background: transparent !important;
    padding: 0;
}

.navbar-toggler:hover {
    background: transparent !important;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler .icon-bar {
    height: 2px;
    width: 26px;
    background-color: #fff;
    border-radius: 1px;
    display: block;
    margin-top: 6px;
    transition: all 0.2s;
}

.navbar-toggler .top-bar {
    transform: rotate(45deg);
    transform-origin: 6% 50%;
}

.navbar-toggler .middle-bar {
    opacity: 0;
}

.navbar-toggler .bottom-bar {
    transform: rotate(-45deg);
    transform-origin: 7% 90%;
}

.navbar-toggler.collapsed .top-bar {
    transform: rotate(0);
}

.navbar-toggler.collapsed .middle-bar {
    opacity: 1;
}

.navbar-toggler.collapsed .bottom-bar {
    transform: rotate(0);
}

/*Nav Css*/
.navbar {
    overflow: hidden;
    width: 100%;
    padding: 10px 0px;
    background: transparent;
    position: absolute;
    left: 0;
    right: 0;
    top: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all .4s ease-in;
    z-index: 99
}

.navbar:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgb(0 0 0 / 30%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    transition: all 0.8s ease 0.5s;
    z-index: -1;
    filter: blur(2px);
}

.navbar .navbar-brand img {
    width: 220px;
}

.navbar .navbar-nav .nav-item {
    margin-right: 40px;
    display: inline-block;
}

.navbar .navbar-nav .nav-item:last-child {
    margin: 0;
}

.navbar .navbar-nav .nav-item .nav-link {
    color: #fff;
    font-size: 14px;
    position: relative;
    padding: 10px 0;
    letter-spacing: 1px;
}

.navbar .navbar-nav .nav-item:last-child .nav-link:after {
    display: none;
}

.navbar .navbar-nav .nav-item .nav-link:before {
    content: '';
    position: absolute;
    right: 0px;
    bottom: 7px;
    width: 0px;
    background: #fff;
    height: 0.5px;
    transition: all 0.5s ease 0s;
}

.navbar .navbar-nav .nav-item .nav-link:hover:before {
    width: 100%;
    right: unset;
    left: 0;
}

.navbar-brand:focus,
.navbar-brand:hover {
    color: #fff !important;
}

.nav_fixed {
    position: fixed !important;
    top: 0;
    background-color: #212121;
    -webkit-animation: navbar-animation .6s;
    animation: navbar-animation .6s;
}

@media screen and (min-width: 1024px) {
    .navbar {
        letter-spacing: 0.1em;
    }
}

/*Navigation Close*/

.clrwht {
    color: #fff;
}

.clrblk {
    color: #000;
}

/*Banner*/
.banner {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.banner video {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: initial;
}

.banner .contol_custom {
    display: none;
}

.banner:hover .contol_custom {
    display: block;
}

.caption_text {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 22;
    text-align: center;
}

.caption_text .ban_hd {
    font-size: 52px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
}

.text_wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}

.otherbannerht {
    height: 70vh
}

.expbtn {
    width: auto;
    display: inline-flex;
    background: #fff;
    position: relative;
    padding: 15px 35px;
    text-transform: uppercase;
    font-size: 14px;
    color: #000;
    transition: all 0.85s ease;
    z-index: 1;
    margin-top: 20px;
}

.expbtn:hover {
    color: #fff;
    border: 1px solid rgb(255 255 255 / 34%);
    background: #000;
}

.columns {
    columns: 2;
    column-gap: 50px;
}

.columns p {
    margin-top: 0;
}

.columns2 {
    columns: 2;
    column-gap: 50px;
}

.columns2 p {
    margin-top: 0;
}

.leftarrow {
    width: 100%;
    height: 100%;
    position: relative;
}

.leftarrow span {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: end;
    position: absolute;
    bottom: 50px;
    padding-right: 30px;
}

.leftarrow span i {
    font-size: 100px;
    color: #6F7C84;
    transform: rotate(44deg);
}

.cus_btns {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.cus_btns a {
    display: inline-block;
    color: #000;
    position: relative;
}

.cus_btns a i {
    font-size: 18px;
    color: #000;
    position: relative;
    top: 2px;
    transition: all 0.85s ease;
}

.cus_btns a:hover i {
    margin-left: 5px;
}

.backimgwrap {
    width: 100%;
    height: 90vh;
    position: relative;
    z-index: 2;
}

.backimgwrap:after {
    content: '';
    width: 100%;
    height: 60vh;
    background: url(../images/grid_banner.jpg) no-repeat;
    background-size: cover;
    background-position: top;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.grid_description {
    width: 100%;
    text-align: center;
    background: #fff;
    padding: 50px 40px 65px;
    box-shadow: 0 10px 50px rgba(110, 123, 131, 0.2);
    transition: all 0.85s ease;
    margin-top: 200px;
}

.grid_description img {
    width: 60px;
    margin-bottom: 30px;
}

.grid_description h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.grid_description:hover {
    transform: translateY(-30px);
}


.contol_custom {
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 55;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    margin-top: 0px;
    width: 100%;
}

.contol_custom span {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 21px;
    padding: 10px;
    margin: 0;
    cursor: pointer;
    -webkit-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.contol_custom span:hover {
    background: #000;
    border-color: #000 important;
}

.contol_custom span:before {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    content: '';
    height: 0;
    background: #000;
    transition: all 0.3s ease 0s;
    z-index: -1;
}

.contol_custom span:hover:before {
    height: 100%;
}

.contol_custom span i {
    font-size: 20px;
    color: #fff;
}

.contol_custom span:hover i {
    color: #fff;
}

.contol_custom span.a_left {
    left: 2%;
}

.contol_custom span.a_right {
    right: 2%;
    left: unset;
    transform: rotate(180deg);
}

.servicearrow span {
    width: 35px;
    height: 35px;
    background-color: #000;
    border-radius: 4px;
}

.servicearrow span.a_right {
    right: 1%;
    top: -14px !important;
}

.servicearrow span.a_left {
    left: -1%;
    top: 2px !important;
}

.video_full_wrap {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}

.video_full_wrap:after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.vd_img_wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.vd_img_wrap img {
    transition: all 0.85s ease;
    transform: scale(1);
    width: 100%;
    height: 100%;
}

.vd_content {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    max-width: 450px;
    padding: 50px;
}

.vd_content .date {
    font-size: 14px;
    color: #cdcdcd;
    margin-bottom: 8px;
    display: flex;
}

.vd_content .vd_text_hd {
    font-size: 20px;
    color: #000;
}

.play_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    z-index: 11;
}

.play_btn a {
    display: flex;
}

.play_btn span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    border: 1px solid #fff;
    transition: all 0.85s ease;
}

.play_center {
    width: 0;
    height: 0;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 40px solid #fff;
    position: relative;
    left: 6px;
}

.video_full_wrap:hover .play_btn .playbutton-utuberesu {
    transform: scale(1.1);
}

.playbutton-utuberesu {
    width: 100px;
    height: 100px;
    text-align: center;
    transition: all 0.85s ease
}

.video-play-button-su {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-55%);
    transform: translateX(-50%) translateY(-55%);
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    display: block;
    border-radius: 50%;
}

.video-play-button-su span {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 22;
}

.video-play-button-su span i {
    font-size: 25px;
    color: #000;
}

.video-play-button-su::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #fff9f2;
    border-radius: 50%;
    -webkit-animation: 1.5s ease-out infinite pulse-border;
    animation: 1.5s ease-out infinite pulse-border;
}

.video-play-button-su::after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #fff9f2;
    border-radius: 50%;
    -webkit-transition: .2s;
    transition: .2s;
}

@-webkit-keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0
    }
}

@keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0
    }
}

.righttext_grid {
    width: 100%;
    height: 100%;
    padding-left: 40px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px
}

.inner_description {
    width: 100%;
    transition: all 0.85s ease;
}

.inner_description h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 30px;
}

.count-area {
    position: relative;
    text-align: center;
    color: #fff
}

.count-area-content {
    margin-top: 30px
}

.plus {
    font-size: 50px;
    color: #000;
}

.count-digit {
    margin: 20px 0;
    color: #000;
    font-weight: 600;
    font-size: 50px
}

.count-digit span {
    display: inline-block;
    font-size: 50px
}

.count-title {
    font-size: 20px;
    color: #000
}

.inner_img {
    width: 100%;
    height: 80vh;
    overflow: hidden;
    position: relative;
}

.inner_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.85s ease;
    transform: scale(1);
}

.inner_img:hover img {
    transform: scale(1.05);
    /* subtle zoom on hover */
}

.hover_description {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    /* always visible */
    visibility: visible;
    z-index: 3;
}

.hover_description::after {
    content: '';
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.hover_description h3 {
    font-size: 22px;
    color: #fff;
    text-align: center;
    padding: 0 10px;
}

.hover_description i {
    font-size: 30px;
    color: #fff;
}

/* Slick arrows */
.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    padding: 10px 15px;
    z-index: 5;
    border-radius: 50%;
    cursor: pointer;
}

.slick-prev {
    left: 10px;
}

.slick-next {
    right: 10px;
}

.slick-prev:hover,
.slick-next:hover {
    background: rgba(0, 0, 0, 0.8);
}



.gallery_slider .slick-slide {
    opacity: 0.5
}

.gallery_slider .slick-slide.slick-current {
    opacity: 1;
}

.gallery_slider .slick-slide.slick-active {
    opacity: 1;
}

ul.slick-dots {
    position: initial;
    padding-top: 40px;
    display: flex;
    align-items: center;
    list-style: none;
    width: 100%;
    justify-content: center;
    margin: 0;
}

.slick-dots li {
    margin: 0 10px !important
}

.slick-dots li button {
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 100%;
    background-color: transparent;
    text-indent: -9999px;
    position: relative;
    transition: .2s
}

.slick-dots li button:before {
    width: 20px !important;
    height: 20px !important;
    content: '•';
    border: 1px solid #999999;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .2s
}

.slick-dots li.slick-active button {
    background-color: #e7b962;
    border-color: transparent
}

.slick-dots li.slick-active button:before {
    border-color: transparent;
}

.testimonial_slider .slick-list {
    margin: 0 -50px
}

.testimonial_slider .slick-slide {
    margin: 0 50px
}

.testimonial_slider ul.slick-dots {
    position: absolute;
    bottom: -10px;
    padding: 0
}

.testimonial_grid_description {
    width: 100%;
    text-align: center;
    position: relative;
    background: #fff;
    margin: 80px 0 55px;
    padding: 80px 40px 65px;
    box-shadow: 0 10px 50px rgba(110, 123, 131, 0.2);
    transition: all 0.85s ease;
    border: 1px solid #cccccc4f;
}

.testimonial_grid_description img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial_grid_description h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

/* .testimonial_grid_description:hover{ transform: translateY(-30px);} */

.subscription_area {
    width: 100%;
}

.subscription_area {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subscription_area:after {
    content: '';
    width: 100%;
    height: 70vh;
    background: url(../images/subscribe_bg.jpg) no-repeat;
    background-size: cover;
    background-position: top;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.subscribe_now {
    padding-top: 22vh;
}

.subscribe_now p {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 2px;
    color: #34495e;
    text-align: center
}

.subscribe_form {
    max-width: 470px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 2px 5px 0 rgba(10, 6, 20, .24);
    border-radius: 40px;
    overflow: hidden;
}

.subscribe_form:focus {
    outline: 0
}

.subscribe_form .form-control {
    border: none
}

.subscribe_form .form-control:focus {
    box-shadow: none
}

.subscribe_form .input-group {
    position: relative;
}

.subscribe_form .input-group i {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 25px;
    color: #000;
    z-index: 11;
    opacity: 0.7;
}

.subscribe_form input {
    height: 50px;
    text-indent: 40px;
}

.subscribe_form button {
    border: none;
    height: 50px;
    padding: 12px 0px;
    background-color: #e7b962;
    color: #fff;
    margin: -1px;
    border-radius: 0;
    width: 135px;
    position: relative;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    -ms-transition: .3s
}

.subscribe_form button:active,
.subscribe_form button:focus,
.subscribe_form button:hover,
.subscribe_form button:visited {
    color: #fff;
    background-color: #000;
    outline: 0;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    -ms-transition: .3s
}

.subscribe_form button:active:before,
.subscribe_form button:focus:before,
.subscribe_form button:hover:before,
.subscribe_form button:visited:before {
    background-color: #000;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    -ms-transition: .3s
}

.subscribe_form button:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    height: 1px;
    background-color: #e7b962;
    width: 100%;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    -ms-transition: .3s
}

.subscribe_form .input-group-btn:last-child>.btn,
.subscribe_form .input-group-btn:last-child>.btn-group {
    z-index: 2;
    margin-left: 0
}

.partner_wrap {
    width: 100%;
    background: #fff;
    margin-top: 110px;
    padding: 30px;
    box-shadow: 0 10px 50px rgba(110, 123, 131, 0.2);
    overflow: hidden;
}

.grid_description2 {
    width: 100%;
    text-align: center;
    background: #fff;
    border-radius: 8px;
    padding: 50px 40px 65px;
    border: 1px solid #e6e6e6;
    transition: all 0.85s ease;
}

.grid_description2 img {
    width: 60px;
    margin-bottom: 30px;
}

.grid_description2 h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.grid_description2 p {
    font-size: 18px;
}

.grid_description2:hover {
    transform: translateY(-5px);
}

.grid_description2 .cus_btns {
    margin-top: 18px;
}

.grid_description2 .cus_btns a {
    display: inline-block;
    color: #7b7b7b;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.grid_description2 .cus_btns a i {
    font-size: 14px;
    color: #7b7b7b;
    top: 1px;
    margin-left: 12px;
}


footer {
    width: 100%;
    background: #000;
    padding-bottom: 0px !important;
    position: relative;
    z-index: 2;
}

footer::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: url(../images/footer-bg.jpg) no-repeat;
    background-size: cover;
    background-position: right;
    z-index: -1;
}

.foot_hd_line {
    width: 100%;
}

.foot_hd_line strong {
    font-size: 30px;
    color: #fff;
    display: block;
    margin-bottom: 10px;
}

.foot_hd_line p {
    color: #fff
}

.mediaicon {
    transition-delay: 0.85s;
    transition: all 0.5s ease;
}

.mediaicon a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 12px;
    margin-bottom: 15px;
    background: transparent;
    transition: all 0.5s ease;
    opacity: 1;
}

.mediaicon a:hover {
    opacity: 1;
    padding-left: 2%;
    letter-spacing: 1px;
}

.mediaicon a i {
    font-size: 20px;
    color: #fff;
    transition: all 0.85s ease;
}

.mediaicon a span {
    display: inline-block;
    color: #fff;
    font-size: 16px;
}

/* .mediaicon a:hover i{color: #fff;} */

.quick_links {
    width: 100%;
}

.quick_links a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    position: relative;
    margin-top: 12px;
    display: block;
    transition: all 0.85s ease;
    opacity: 0.6;
}

.quick_links a:hover {
    opacity: 1;
}

.copyright_wrap {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    padding: 12px 0px;
    text-align: center;
    margin-top: 60px;
}

.copyright_wrap .copyright_text {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright_wrap .copyright_text p {
    color: #fff;
    font-size: 12px;
    margin: 0;
}

.copyright_wrap .copyright_text p a {
    color: #fff;
    font-size: 12px;
}

#topbtns {
    background-color: transparent;
    border: none;
    text-align: center;
    border-radius: 8px;
    position: fixed;
    bottom: 35px;
    right: 35px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.85s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 3;
    transform: translateX(100%);
}

#topbtns span {
    width: 45px;
    height: 45px;
    cursor: pointer;
    background: #bfa85d;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    transition: all 0.5s ease-in-out;
}

#topbtns span i {
    font-size: 16px;
    color: #fff;
}

#topbtns.shows {
    opacity: 1 !important;
    visibility: visible;
    transform: translateX(0%);
}

.form_wrap {
    width: 100%;
    padding-top: 20px;
}

.form_wrap .btn {
    border-radius: 0
}

.form_wrap .form-group {
    position: relative;
    padding-top: 0px;
    margin-bottom: 20px;
    z-index: 2;
}

.form_wrap .form-group textarea {
    resize: none
}

.form_wrap .form-group .input-highlight {
    content: "";
    width: 0;
    height: 1px;
    background: #000;
    position: absolute;
    display: block;
    bottom: 0;
    transition: width .4s
}

.form_wrap .form-group label {
    position: absolute;
    left: 0px;
    top: 15px;
    transition: .4s;
    color: #000;
    z-index: -1;
    font-size: 15px;
}

.form_wrap .form-group .form-control {
    background: transparent;
    border: 0px;
    border-bottom: 1px solid #ccc;
    border-radius: 0px;
    padding: 12px 0px;
    font-size: 14px;
    box-shadow: none;
}

.form_wrap .form-group .form-control::placeholder {
    color: #000;
    font-weight: normal;
}

.form_wrap .form-group .form-control.hasValue,
.form_wrap .form-group .form-control:focus {
    box-shadow: none;
    border-color: #000;
    color: #000;
}

.form_wrap .form-group .form-control.hasValue~.input-highlight,
.form_wrap .form-group .form-control:focus~.input-highlight {
    width: 100%
}

.form_wrap .form-group .form-control.hasValue~label,
.form_wrap .form-group .form-control:focus~label {
    font-size: 11px;
    top: 0;
    left: 0;
    color: #6F7C84;
    font-size: 13px;
}

.form_wrap .form-group label.error {
    color: red;
    font-size: 10px;
    position: absolute;
    bottom: -30px;
    top: unset;
    letter-spacing: 1px;
}

.form_wrap .form-group .form-control.hasValue~label.error,
.form_wrap .form-group .form-control:focus~label.error {
    font-size: 10px;
    top: unset;
    left: unset;
    color: red;
}

.form_wrap .submit_btn {
    position: relative;
    display: flex;
    transition: all 0.3s ease 0s;
    border: 0px;
    margin-top: 30px;
}

.form_wrap .submit_btn button {
    border-radius: none;
    background: none;
    border: none;
}

.form_wrap .submit_btn .sb_btn {
    font-weight: bold;
    background: #bfa85d;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    position: relative;
    transition: all 0.3s ease 0s;
    letter-spacing: 0.8px;
    text-align: center;
    padding: 10px 25px;
    border: 1px solid rgb(255 255 255 / 34%);
    z-index: 22;
}

.form_wrap .submit_btn .sb_btn::before {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    content: '';
    height: 0;
    background: #000;
    transition: all 0.3s ease 0s;
    z-index: -1;
}

.form_wrap .submit_btn .sb_btn:hover {
    color: #fff;
    border: 1px solid rgb(255 255 255 / 34%);
    background: transparent;
}

.form_wrap .submit_btn .sb_btn:hover::before {
    height: 100%;
}

.form_wrap .form-group select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background: url(../images/dwon_arrow.svg) no-repeat 100% center !important;
    background-size: 25px !important;
}

.s-input {
    padding-top: 2px;
    display: inline-block;
}

.s-input>input {
    width: 35px !important;
    height: 33px !important;
    opacity: 0;
    position: absolute;
    font-weight: bold;
    z-index: 1;
}

.s-input>label {
    font-size: 14px;
    width: 100%;
    cursor: pointer;
}

.s-input>label.error {
    font-size: 10px;
    display: block;
    color: red;
    margin-top: 5px;
    font-weight: normal;
    letter-spacing: 1px;
    position: absolute;
    bottom: -22px;
}

.s-input>label>i {
    position: relative;
    padding: 0 5px;
    display: inline-block;
    vertical-align: middle;
    width: 35px;
    height: 33px;
    margin-right: 20px;
    border: 1px solid #606060
}

.s-input>input:checked+label>i:after {
    content: "\f00c";
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -6px;
    margin-left: -6px;
    display: inline-block;
    font: 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #6F7C84;
}

.s-input--rounded>label i,
.s-input--rounded>label i:after {
    border-radius: 0;
    display: inline-block
}

.s-input--rounded>label b {
    font-weight: 500;
    color: #6F7C84;
    font-weight: bold;
}

.s-input--rounded>label b a {
    font-weight: 500;
    color: #6F7C84;
    transition: all 0.85s ease;
    display: inline;
}

.s-input--rounded>label b a:hover {
    color: #000;
}

.portfolio-item,
.tab-content {
    position: relative
}

.tabbuttonwrap {
    width: 100%;
    margin-bottom: 50px;
}

.tabbuttonwrap .nav-tabs {
    justify-content: center;
    border: none
}

.tabbuttonwrap .nav-tabs .nav-link {
    position: relative;
    color: #333;
    border: none;
    background: 0 0;
    margin: 0 10px;
    font-weight: 500
}

.tabbuttonwrap .nav-tabs .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 2px;
    background: #000;
    transition: width .3s, left .3s;
    left: 0;
    width: 0
}

.tabbuttonwrap .nav-tabs .nav-item.active .nav-link::after {
    left: unset;
    right: 0;
    width: 100%
}

.tabbuttonwrap .nav-tabs .nav-link:hover:after {
    color: #000;
    width: 100%
}

.tabbuttonwrap .nav-tabs .nav-item {
    position: relative;
}

.tabbuttonwrap .nav-tabs .nav-item::after {
    content: '';
    width: 1.5px;
    height: 20px;
    background: #000000;
    position: absolute;
    right: -5px;
    top: 9px;
    transform: rotate(20deg);
}

.tabbuttonwrap .nav-tabs .nav-item:last-child:after {
    width: 0;
}

.project_grid {
    display: block;
    position: relative;
}

.portfolio-grid {
    opacity: 0;
    transition: opacity 0.85s;
    margin-top: 20px
}

.portfolio-grid.active,
.project_grid:hover .portfolio-item .portfolio-overlay {
    opacity: 1
}

.portfolio-item {
    overflow: hidden;
    border-radius: 0px;
    transition: transform .3s;
    opacity: 0;
    transform: translateY(30px)
}

.portfolio-item img {
    width: 100%;
    height: auto;
    transition: transform 0.85s
}

.project_grid:hover .portfolio-item img {
    transform: scale(1.05)
}

.portfolio-overlay {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    background: rgba(0, 0, 0, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s
}

.portfolio-overlay i {
    color: #fff;
    font-size: 24px
}

.loader {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #6F7C84;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: 1s linear infinite spin
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0)
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg)
    }
}

.tab-content.loading .loader {
    display: block
}

.tab-content.loading .portfolio-grid {
    opacity: 0
}

.portfolio-item.show {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .6s, transform .6s
}

.title_name_pro {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.title_name_pro h3 {
    font-size: 22px;
    color: #000;
    margin-bottom: 5px;
}

.pro_link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.pro_link a {
    color: #6F7C84;
    display: inline-flex;
    font-size: 16px;
    position: relative;
}

.pro_link a:after {
    content: '';
    width: 1px;
    height: 12px;
    background: #6F7C84;
    position: absolute;
    right: -15px;
    top: 6px;
    transform: rotate(20deg);
}

.pro_link a:last-child:after {
    width: 0;
}


.our_overview {
    width: 100%;
    position: relative;
}

.our_overview strong {
    font-size: 20px;
    display: block;
    margin-bottom: 15px;
    color: #000
}

.our_overview_img {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}

.our_overview_img img {
    width: 100%;
    height: 100%;
    transition: all 0.85s ease;
    transform: scale(1);
}

.our_overview_img:hover img {
    transform: scale(1.1);
}

.wwd_icon {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    border: 1px solid #000;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wwd_icon img {
    width: 60px
}

.wedo_wrap {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: space-between;
    padding-left: 50px;
}

.wedo_wrap .row {
    border-bottom: 1px solid #00000026;
    padding-bottom: 30px;
    margin: 0;
    position: relative;
}

.wedo_wrap .row:last-child {
    border: 0;
    padding-bottom: 0;
}

.wedo_wrap .row::after {
    content: '';
    width: 0;
    height: 1px;
    background: #000;
    position: absolute;
    right: 0;
    bottom: 0;
    transition: all 0.85s ease;
}

.wedo_wrap .row:hover::after {
    width: 100%;
    right: unset;
    left: 0;
}

.wedo_wrap .row:last-child::after {
    width: 0%;
    right: unset;
    left: 0;
}


.contact_grid {
    width: 100%;
    height: 100%;
    border: 1px solid #bfa85d;
    padding: 80px 40px;
    text-align: center;
    position: relative;
}

.contact_grid::before {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    content: '';
    height: 0;
    background: #bfa85d;
    transition: all 0.5s ease 0s;
    z-index: -1;
}

.contact_grid:hover {
    color: #fff;
    border-color: #bfa85d;
    background: transparent;
}

.contact_grid:hover::before {
    height: 100%;
}

.contact_grid:hover h2,
.contact_grid:hover .inquiries a,
.contact_grid:hover .inquiries b,
.contact_grid:hover address {
    color: #fff;
}

.contact_grid:hover .inquiries a:after {
    background: #fff;
}

.contact_grid h2 {
    font-size: 30px;
    margin-bottom: 20px;
    transition: all 0.5s ease;
}

address {
    color: #4E4E4E;
    transition: all 0.5s ease;
    font-size: 14px;
}

.inquiries {
    display: flex;
    justify-content: center;
    gap: 5px;
    align-items: center;
}

.inquiries b {
    display: inline-block;
    color: #4E4E4E;
    font-weight: normal;
    margin-bottom: 10px;
}

.inquiries a {
    color: #4E4E4E;
    font-size: 14px;
    text-decoration: none;
    position: relative;
    text-align: center;
    margin: 0 5px 10px;
}

.inquiries a:before {
    content: '';
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 0px;
    background: #fff;
    height: 0.5px;
    transition: all 0.5s ease 0s;
}

.inquiries a:hover:before {
    width: 100%;
    right: unset;
    left: 0;
}

.inquiries a:after {
    content: "";
    background: #4E4E4E;
    width: 0.8px;
    height: 12px;
    display: inline-block;
    position: absolute;
    top: 4.5px;
    right: -10px;
}

.inquiries a:last-child:after {
    display: none;
}

.inquiries a:hover {
    opacity: 1;
}

.contactmap {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.contactmap iframe {
    width: 100%;
    height: 100%;
}

@media(max-width:991px) {
    .contact_grid h2 {
        font-size: 20px;
    }

    .contact_grid:last-child {
        margin-top: 25px;
        height: auto;
    }
}

@media(max-width:767px) {
    .contact_grid {
        padding: 25px;
    }

    .inquiries {
        display: block;
    }

    address br {
        display: none;
    }

    .inquiries a {
        margin: 0 10px 5px;
        display: inline-block;
    }

    .inquiries b {
        display: block;
        margin: 12px 0px 6px;
    }
}

@media(max-width:387px) {
    .inquiries a:after {
        display: none;
    }

    .inquiries b {
        margin-bottom: 8px;
        margin-top: 10px;
    }

    .inquiries a {
        margin: 0 10px 6px;
    }
}

.clients_grid {
    width: 100%;
    border-radius: 0;
    margin-top: 25px;
    box-shadow: 0px 0px 10px 3px #ececec;
    overflow: hidden;
}

.clients_img {
    width: 100%;
    overflow: hidden;
}

.services_grid {
    width: 100%;
    border-radius: 0;
    margin-top: 25px;
    box-shadow: 0px 0px 10px 3px #ececec;
    overflow: hidden;
}

.services_img {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.services_img img {
    width: 100%;
    height: 100%;
    transition: all 0.85s ease;
    transform: scale(1);
}

.services_grid:hover .services_img img {
    transform: scale(1.1);
}

.services_description {
    width: 100%;
    height: 100%;
    padding: 50px;
    position: relative;
    text-align: center;
}

.services_description h3 {
    font-size: 18px;
    color: #000;
    margin-bottom: 15px;
}

.services_description p {
    line-height: normal;
    font-size: 14px;
}

.services_description span {
    position: relative;
    display: inline-block;
    margin-top: 0px;
    border: none;
}

.services_description span:after {
    content: "";
    width: 0%;
    height: 1px;
    background: #000;
    position: absolute;
    bottom: 0;
    right: 0;
    transition: all 0.85s ease;
}

.services_description span.btns {
    color: #000;
    font-size: 13px;
    padding: 0;
}

.services_description span.btns i {
    font-sizE: 12px;
    color: #000;
    margin-left: 5px;
    transition: all 0.85s ease;
}

.services_grid:hover .services_description span.btns i {
    margin-left: 8px;
}

.services_grid:hover .services_description span:after {
    width: 100%;
    right: unset;
    left: 0;
}

.service_grid_slider .slick-list {
    margin: 0 -12px;
}

.service_grid_slider .slick-slide {
    margin: 0 12px;
}

.text-white{
    color: #ffffff !important;
}