@charset "UTF-8";
/*=====================
01. General css start
==========================*/
@font-face {
    font-family: var(--main-font);
    src: url('fonts/Nunito-Regular.ttf');
}
:root{
    --primary-color: #0b2515;
    --secondary-color: #ff9600;
    --golden-color: #d19f29;
    --border-color: #C4C4C4;
    --light-bg: #F2F3F5;
    --text-color: #666666;
    --dark-color: #181A25;
    --dark-color-2: #11131E;
    --white-color: #ffffff;
    --black-color: #000000;
    --red-color: #d91919;
    --gradient-color: linear-gradient(to bottom, rgba(246, 251, 246, 1) 55%, rgba(255, 255, 255, 0) 95%);
    --box-shadow: 0 2px 6px 0 #20212451;
    --transition: .3s;
    --transition-md: .4375s;
    --transition-lg: .625s;
    --input-color: rgb(70 69 71 / 0.7);
    --body-font: "Roboto", sans-serif;
    --title-font: "Cormorant Upright", serif;
    --third-font: "Cormorant Upright", serif;
    --secondary-overlay-color: 114, 6, 6;
    --scrollbar-thumb-color: var(--primary-color);
    --scrollbar-track-color: var(--dark-color);
    --selection-color: rgba(36, 77, 77, 0.1);
    --top-header: 46px;
    --main-header: 100px;
    --box-space: 120px;
    --content-space: calc(var(--box-space) - 7px);
}
::-webkit-scrollbar-track{
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  background-color: #F5F5F5;
}

::-webkit-scrollbar
{
  width: 6px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb
{
  background-color: var(--primary-color);
}

body {
    position: relative;
    background: white;
    font-size: 15px;
    font-family: var(--main-font);
    overflow-x: hidden;
}
img{
    max-width: 100%;
}
h1, h2, h3, h4, h5, h6, 
.h1, .h2, .h3, .h4, .h5, .h6{
    font-family: var(--title-font);
}

.clrblack {
    color: black !important;
}

.cleblue {
    color: var(--primary-color);
}


.loganame {
    font-size: 40px;
    color:#fff;
}

.margintop1 {
    margin-top: -13px;
    color: #fff;
    font-size: 25px;
}
.fw-medium {
    font-weight: 500 !important;
}
.text-primary{
    color: var(--primary-color) !important;
}
.text-theme{
    color: var(--primary-color) !important;
}
.bg-primary{
    background-color: var(--primary-color) !important;
}
.bg-theme{
    background-color: var(--primary-color) !important;
}
.clrw {
    color: white;
}
.theme-color{
    color: var(--primary-color);
}

.text-block {
    position: absolute;
    border: 2px solid white;
    width: 90%;
    height: 90%;
    bottom: 20px;
    right: 20px;
    color: white;
    padding-left: 20px;
    padding-right: 20px;
    box-shadow: rgb(220, 219, 216);
    text-align: left;
}
.new_container{
    max-width: 1240px;
    width: 100%;
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
    margin-right: auto;
    margin-left: auto;
}
.light-bg {
    background-color: var(--light-bg);
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

h1 {
    font-size: calc(26px + (50 - 26) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.1;
    text-transform: uppercase;
}

h2 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.001em;
    line-height: 32px;
    text-transform: capitalize;
}

h3 {
    font-size: calc(20px + (24 - 20) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.2;
}

h4 {
    font-size: calc(18px + (22 - 18) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.2;
    text-transform: capitalize;
}

h5 {
    font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.2;
}

h6 {
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.03em;
}

ul {
    padding-left: 0;
    margin-bottom: 0;
}

li {
    font-size: 16px;
    letter-spacing: 0.03em;
}

p {
    font-size: 16px;
/*    line-height: 18px;*/
color: #383838;
letter-spacing: 0.03em;
}

a {
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    letter-spacing: 0.03em;
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    color: var(--secondary-color);
}

a:focus {
    outline: none;
}
.white-text p, .white-text h1, .white-text h2, .white-text h3, .white-text h4, .white-text h5, .white-text h6, .white-text .h1-title, .white-text .h2-title, .white-text .h3-title, .white-text .h4-title, .white-text .h5-title, .white-text .h6-title, .white-text ul li, .white-text .read-more, .white-text span {
    color: var(--white-color);
}
label {
    letter-spacing: 0.03em;
}

button:focus,
.btn:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

section,
.section-t-space {
    padding-top: 50px;
}
/*==========title CSS Start==========*/
.sub-title {
    text-transform: uppercase;
    letter-spacing: 0.62em;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-family: var(--body-font);
}
.sec-title {
    font-size: 45px;
    font-family: var(--title-font);
    color: var(--primary-color);
    letter-spacing: -0.01em;
    line-height: 1.02;
    margin-bottom: 36px;
    position: relative;

    span {
        color: var(--secondary-color);
        width: max-content;
        position: relative;
        
        &::after {
            content: '';
            position: absolute;
            bottom: -10%;
            left: 0;
            height: 30%;
            mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='247' height='22' fill='none'%3E%3Cmask id='a' width='246' height='23' x='0' y='1' maskUnits='userSpaceOnUse' style='mask-type:alpha'%3E%3Cpath fill='%23D9D9D9' d='M0 1h246v23H0z'/%3E%3C/mask%3E%3Cg mask='url(%23a)'%3E%3Cpath fill='%2300a661' d='M.225 13.987c40.77-3.247 81.218-6.304 122.486-5.61 40.217.68 80.07 3.493 119.823 8.284 4.828.577 4.966-4.727.193-5.301-40.597-4.886-82.029-7.082-123.059-6.436-39.896.627-80.713 2.548-119.53 8.822-.233.04-.132.263.087.25v-.009z'/%3E%3C/g%3E%3C/svg%3E");
            mask-repeat: no-repeat;
            mask-size: 95%;
            width: 100%;
            background-color: var(--secondary-color); /* Fixed from background-image */
            background-repeat: no-repeat;
            animation: background-size-300 0.4s 1.5s ease-in both;
            background-size: 300%;
        }
    }
}

/*==========title CSS end==========*/


/*==========Btn CSS Start==========*/

.btn-theme {
    border: none;
    background-color: var(--secondary-color);    
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    appearance: none;
    outline: none !important;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 15px 40px 15px;
    border-radius: 30px;
    transition: all 0.5s linear;
    z-index: 1;
}

.btn-theme:after {    
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    background-color: var(--primary-color);
    content: "";
    border-radius: 30px;
    transform: scaleY(0) rotateX(0deg);
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    z-index: -1;
}
.btn-theme:hover:after{
    transform: scaleY(1) rotateX(0deg);
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}
.btn-theme:hover{
    color: #fff;
}
/*==========Button CSS End==========*/


/*==========Header CSS Start==========*/
.site-header li{
    display: inline-block;
}
.site-header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: var(--primary-color);
    transition: 0.3s;
    border-bottom: 1px solid var(--secondary-color);
}

.site-header.sticky-header {
    box-shadow: 6px 6px 60px 0px rgba(255 255 255 / 0.0625);
    z-index: 101;
    transition: 0.3s;
    position: fixed;
}

.header-social li a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.header-social li a span {
    color: inherit;
}

.header-social li a:hover {
    color: var(--secondary-color);
}

.header-social li:not(:first-child) {
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid rgba(255 255 255 / .2);
}

.sticky-header .header-top {
    margin-top: calc(var(--top-header) * -1);
}

.header-top {
    transition: var(--transition);
}

.top-hader-main-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 3px;
}

.heder-main {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255 255 255 / 70%);
}

.header-social {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.main-navigation ul li ul.sub-menu {
    position: absolute;
    top: 150%;
    left: 50%;
    min-width: 275px;
    max-width: 276px;
    max-height: 375px;
    transform: translate(-50%, 0);
    background: var(--white-color);
    box-shadow: 0 0 10px rgba(60, 140, 244, 0.15);
    padding-left: 0;
    display: none;
    opacity: 0;
    overflow: auto;
}

.main-navigation ul li {
    position: relative;
    color: var(--white-color);
}

.main-navigation ul li a {
    font-family: var(--title-font);
    font-weight: 500;
    line-height: 1;
}


.main-navigation ul.main-menu>li {
    display: inline-flex;
    align-items: center;
    padding-block: 30px;
}

.main-navigation ul.main-menu>li.menu-parent>a {
    padding-right: 18px;
    position: relative;
}

.main-navigation ul li.menu-parent>a:after {
    content: "\f078";
    position: absolute;
    right: 0;
    top: 60%;
    transform: translate(0, -50%);
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    font-size: 12px;
    line-height: 1;
    color: currentColor;
    transition: transform var(--transition);
    pointer-events: none;
}

.main-navigation ul li ul.sub-menu li:not(:last-child) {
    border-bottom: 1px solid rgba(24 26 37/ .1375);
}
.main-navigation ul li ul.sub-menu li{
    display: block;
}
.main-navigation ul li ul.sub-menu li a {
    display: block;
    padding: 7px 38px 7px 18px;
    text-align: left;
    color: var(--dark-color);
}


.main-navigation ul li ul.sub-menu li a:hover,
.main-navigation ul.main-menu>li.active-menu .active-sub-menu a {
    color: var(--white-color);
    background-color: var(--secondary-color);
}

.main-navigation ul.main-menu {
    display: inline-flex;
    gap: 40px;
    align-items: center;
}

.header-mobile-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 40px;
}
.header-cta .btn-theme{
    border: 2px dashed var(--secondary-color);
}
.header-cta .btn-theme:hover{
    border-color: var(--secondary-color);
}
.site-branding {
    height: 100%;
    display: flex;
    align-items: center;
    margin-left: var(--spacer);
}
.site-branding a{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 3px;
}
.site-branding img{
    width: 100px;
    background: #fff;
    border-radius: 8px;
}
.site_name{
    color: #fff;
    font-size: 24px;
    line-height: 0.9;
    font-family: var(--title-font);
    font-weight: 900;
    text-align: center;
    max-width: 123px;
}
@media (min-width: 992px) {

    .main-navigation ul.main-menu>li.menu-parent:hover ul.sub-menu {
        display: block;
        top: 75%;
        opacity: 1;
        animation: swip_up var(--transition) linear 1;
    }

    @keyframes swip_up {
        from {
            top: calc(100% + 20px);
            opacity: 0;
        }

        to {
            top: 100%;
            opacity: 1;
        }

    }


    .main-navigation ul.main-menu>li.menu-parent:hover>a:after, .main-navigation ul.main-menu>li.menu-parent>a:hover:after {
        transform: translate(0, -50%) rotate(-180deg);
    }

    .main-navigation ul.main-menu li a:hover,
    .main-navigation ul.main-menu>li.menu-parent:hover>a,
    .main-navigation ul.main-menu>li.active-menu>a,
    .main-navigation ul.main-menu>li.active-menu>a:after {
        color: var(--secondary-color);
    }
        
}
@media(max-width:992px){
    .site-branding {
        position: relative;
        top: 6px;
    }
}

.menu-toggle {
    --menu-inset: 8px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: var(--spacer);
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    align-items: center;
    width: 44px;
    aspect-ratio: 1/1;
    padding: 0;
    background-color: var(--secondary-color);
    text-align: center;
    border: none;
    outline: none;
    display: none;
    z-index: 110;
}

.menu-toggle span {
    width: calc(100% - 16px);
    height: 3px;
    background: var(--white-color);
    display: block;
    position: relative;
    top: 0;
    opacity: 1;
    float: left;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}
@media (max-width: 991px) {
    :root {
        --main-header: 70px;
        --box-space: 100px;
    }

    .h2-title {
        margin-bottom: 20px;
    }

    .h4-title {
        font-size: 22px;
    }

    .for-des {
        display: none !important;
    }

    .for-mob {
        display: block !important;
    }

    .for-des-flex {
        display: none !important;
    }

    .for-mob-flex {
        display: flex !important;
    }

    .menu-toggle {
        --menu-inset: 8px;
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
        right: var(--spacer);
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        align-items: center;
        width: 44px;
        aspect-ratio: 1/1;
        padding: 0;
        background-color: var(--secondary-color);
        text-align: center;
        border: none;
        outline: none;
        display: none;
        z-index: 110;
    }

    .menu-toggle span {
        width: calc(100% - 16px);
        height: 3px;
        background: var(--white-color);
        display: block;
        position: relative;
        top: 0;
        opacity: 1;
        float: left;
        transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
    }

    .main-navigation .header-mobile-menu {
        --inline-gap: 40px;
        display: block;
        position: fixed;
        top: 0;
        right: -400px;
        width: 320px;
        height: 100vh;
        max-height: 100vh;
        overflow: auto;
        background: var(--primary-color);
        text-align: center;
        padding: 100px 0 30px;
        box-shadow: -30px 0 30px rgba(0, 0, 0, 0.1);
        transition: 0.5s;
        opacity: 0;
        z-index: 100;
    }

    .main-navigation.toggle-menu .header-mobile-menu {
        right: 0;
        opacity: 1;
        z-index: 100;
    }

    .header-top {
        display: none;
    }

    .heder-main {
        border: 0;
        height: 100%;
    }

    .site-header {
        --spacer: 30px;
        height: calc(var(--main-header) + 10px);
    }

    .site-header.sticky-header {
        padding: 0;

    }

    .heder-main .container, .heder-main .container .row {
        max-width: 100%;
        padding: 0;
        margin: 0;
        height: 100%;
    }

    .heder-main .row .col-lg-2 {
        height: 100%;
        padding: 0;
    }

    .main-navigation.toggle-menu button span:first-child {
        transform: rotate(45deg);
        top: var(--menu-inset);
        transform-origin: center;
    }

    .main-navigation.toggle-menu button span:last-child {
        transform: rotate(-45deg);
        top: calc(var(--menu-inset) * -1);
        transform-origin: center;
    }

    .main-navigation.toggle-menu button span:nth-child(2) {
        opacity: 0;
    }

    .banner-image-path-main, .banner-image-path-sub, .banner-image-path-sub .back-img {
        clip-path: unset;
    }

    .banner-image-path-main {
        height: 100%;
        width: 100%;
        inset: 0;
    }

    .banner-content {
        z-index: 2;
    }

    .banner-image-path-main:before {
        content: '';
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        background-color: var(--primary-color);
        opacity: .875;
    }

    .main-banner-slide {
        padding: 40px 0 0 0;
        min-height: 650px;
    }

    .banner-stripes {
        width: 100%;
        max-width: calc(100% - 100px);
        z-index: 96;
    }

    .banner-image-path-main {
        transform: translate(0);
        transition-duration: .8s;
        transition-delay: 0.8s;
    }

    .main-banner-slide.swiper-slide-active .banner-image-path-main {
        transition-delay: 1s;
    }

    .main-navigation ul.main-menu {
        display: block;
        text-align: left;
    }

    .main-navigation ul.main-menu>li {
        display: block;
        padding: 15px 15px;
        border-bottom: solid 1px rgb(225, 225, 225, 0.2);
    }

    .main-navigation ul li.menu-parent>a:after {
        top: 50%;
    }

    .main-navigation ul.main-menu>li.menu-parent.opened-menu a:after {
        transform: translate(0, -50%) rotate(-180deg);
    }

    .main-navigation ul.main-menu>li.active-menu>a, .main-navigation ul.main-menu>li.active-menu>a:after, .main-navigation ul.main-menu>li.active-menu ul li.active-sub-menu a {
        color: var(--secondary-color);
    }

    .black-shadow {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #000000;
        opacity: 0.5;
        z-index: 90;
        display: none;
    }

    .header-cta {
        flex-flow: row-reverse;
        justify-content: flex-end;
        margin-top: 20px;
        margin-left: 10px;
    }

    .main-navigation ul li a:hover {
        color: var(--secondary-color);
    }

    .main-navigation ul.main-menu li a {
        display: inline-flex;
        gap: 10px;
        align-items: center;
        width: 100%;
    }

    .main-navigation ul li ul.sub-menu {
        position: relative;
        background: transparent;
        box-shadow: unset;
        min-width: unset;
        left: 0;
        transform: translate(00);
        white-space: unset;
        opacity: 1;
    }

    .main-navigation ul li ul.sub-menu li a {
        text-align: left;
        background-color: transparent !important;
        color: var(--white-color);
    }

    .main-navigation ul li ul.sub-menu li a:hover {
        color: var(--secondary-color);
    }
}
/*==========Header CSS End==========*/


/**************Index Slider**************/
.slider{
    position: relative;
    width: 100%;
    height: 520px;
    padding-block: 40px;
    overflow: hidden;
}
.bg_vedio {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%; 
    height: 100%;
    video{
        width: 100%;
        object-fit: cover;
        height: 100%;
        filter: brightness(0.6);
        transform: scaleX(-1);
    }
}
.slides {
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide {
  display: flex;
  justify-content: end;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s linear;
}

.slide.active {
  opacity: 1;
}

.slide .content {
  width: 51%;
  padding: 0 2% 0 1%;
  color: #333;
  margin-top: 0;
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
}
.slide h1 {
  text-transform: capitalize;
  font-size: 65px;
  line-height: 1;
  color: var(--white-color);
  font-family: var(--title-font);
  line-height: 1;
  margin-bottom: 8px;
  font-weight: 900;
  max-width: 800px;
  animation-delay: 0s;
  margin-block: 8px 12px;
  span{
    display: inline-block;
    width: max-content;
    position: relative;
    img{
        position: absolute;
        width: 100%;
        height: auto;
        bottom: -8px;
        right: 0;
        z-index: -1;
    }
}
}
.slide h6{
  color: var(--secondary-color);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: normal;
}

.slide p {
  color: #EDECEC;
  font-size: 22px;
  font-weight: 400;
  font-family: var(--title-font);
  line-height: 24px;
  max-width: 550px;
  margin-bottom: 40px;
  animation-delay: 0.4s;
  font-size: 18px;
  margin-bottom: 30px;
  text-transform: capitalize;
}

.slide button {
  cursor: pointer;
  animation: fadeDown 0.5s ease-in-out;
}

.slide .image {
    height: 100%;
    width: 62%;
    position: absolute;
    top: 50%;
    right: 0;
    background: var(--dark-color);
    z-index: 1;
    transform: translateY(-50%);
    transition-duration: .6s;
    transition-delay: .4s;
    overflow: hidden;
    clip-path: polygon(52% 100%, 0% 0%, 100% 0%, 100% 100%, 62% 82%);
}
.slide .image .image-inner{
    height: 100%;
    width: 100%;
    background-color: var(--secondary-color);
}
.back-img {
}
.back-img {
    display: block;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.slide .image img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  border-radius: 0px;
  object-fit: cover;
  position: relative;
  margin: 0;
  filter: brightness(1.2) contrast(1.02);
}
/*.slide.active .image img {
  animation: effectMoveHorizontalZoom 7s ease;
}

.slide.active .image.odd img {
  animation: effectMoveHorizontalscale 7s ease;
}
*/
@keyframes float-bob-x {
  0% {
    transform: translateX(-30px);
}

50% {
    transform: translateX(-10px);
}

100% {
    transform: translateX(-30px);
}
}

.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}


@keyframes effectMoveHorizontalZoom {
  0% {
    transform: scale(1);
    opacity: 1;
}

50% {
    transform: scale(1.1);
    opacity: 0.8;
}

100% {
    transform: scale(1.2);
    opacity: 1;
}
}

@keyframes effectMoveHorizontalscale {
  0% {
    transform: scale(1.2);
    opacity: 1;
}

50% {
    transform: scale(1.1);
    opacity: 0.8;
}

100% {
    transform: scale(1);
    opacity: 1;
}
}

@keyframes opacityEffect {
  0% {
    opacity: 1;
}

50% {
    opacity: 0.8;
}

100% {
    opacity: 1;
}
}

.slider .slider_btn span{
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  display: block;
}
.slider_btns{
  display: flex;
  align-items: center;
  justify-content: start;
  margin-top: 38px;
  gap: 68px;
}
.slider .slider_btn{
}
.slider .slider_btn a{
  font-size: 29px;
  color: #fff;
  font-weight: 900;
  display: block;
}
.slider .slider_btn a:hover{
  cursor: pointer;
  color: var(--primary-color);
}
.slider .nav-dots{
  text-align: center;
  padding-top: 20px;
  position: absolute;
  bottom: 16px;
  left: 7%;
  .dot{
    width: 13px;
    height: 13px;
    background-color: #fff;
}
.dot.active{
    background-color: var(--primary-color);
}
}
.slider .nav-icons {
    position: absolute;
    left: 50%;
    bottom: 3%;
    display: flex;
    gap: 10px;
    z-index: 5;
    transform: translateX(-50%);
}


.slider .nav-icon {
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: 0.4s;
    opacity: 0.6;
}
.slider .nav-icon.down{
    transform: rotate(-180deg);
}
.slider .nav-icon i {
  pointer-events: none;
}

.slider .nav-icon:hover {
    opacity: 1;
}
@keyframes fadeUp {
  from {
    transform: translateY(20px);
    opacity: 0;
}
to {
    transform: translateY(0);
    opacity: 1;
}
}

@keyframes fadeDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
}
to {
    transform: translateY(0);
    opacity: 1;
}
}
@media(max-width:768px){
  .slider .dots-container{
    top: 50%;
}
}
@keyframes effectMoveHorizontalZoom {
  0% {
    transform: scale(1)
}

50% {
    transform: scale(1.1)
}

100% {
    transform: scale(1.2)
}
}
@keyframes effectMoveHorizontalscale {
  0% {
    transform: scale(1.2)
}

50% {
    transform: scale(1.1)
}

100% {
    transform: scale(1)
}
}


/***********Service***********/
.service_section_main{
    position: relative;
    z-index: 1;
    padding-top: 100px;
}
.service_section_main:before{
    background-image: url(../images/bg/indian-monuments.png);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background-color: var(--primary-color);
    content: "";
    z-index: -1;
    background-blend-mode: luminosity;
    background-size: cover;
    opacity: 0.3;
    background-position: bottom;
}
.service_item{
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
}

.place-box{
    background-color: var(--white-color);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    z-index: 1;
    position: relative;
    padding: 20px 7px;
}
.place-box:before{
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    content: "";
    background-color: var(--primary-color);
    transform: scaleX(0.7) rotateX(20deg);
    opacity: 0;
    transition: all 0.4s linear;
    z-index: -1;
}
.place-box:hover:before{
    transform: scaleX(1) rotateX(0deg);
    transition: all 0.4s linear;
    opacity: 1;
}
.place-box .image {
    height: 230px;
    overflow: hidden;
}
.place-box .image img{
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.place-box .icon{
    position: relative;
    left: 15px;
    width: 57px;
    height: 57px;
    img{
        transition: .625s;
        width: 100% !important;
        height: auto;
    }
}
.lower_content{    
    position: relative;
    padding: 15px 15px 0 15px;
    .h4{
        font-size: 24px;
        line-height: 1.4;
        color: var(--primary-color);
        font-family: var(--body-font);
        font-weight: 700;
        text-transform: capitalize;
        margin-bottom: 12px;
        display: block;
        letter-spacing: -0.02em;
    }
    .btn-theme{
        gap: 0;
        display: inline-flex;
        padding: 20px;
        border: 2px solid #fff;
    }
    p{
        font-size: 15px;
        line-height: 1.3;
    }
}
.place-box:hover .h4{
    color: #fff;
    transition: all 0.4s linear;
}
.place-box:hover p{
    color: #fff;
    transition: all 0.4s linear;
}
.author-img img{
    max-width: 70px;
}
.service_item:hover .place-box .icon img{

    transform: rotatey(360deg);
}

/*************Cabs Section*************/
.cab-card{
    position: relative;
}
.cab-img{
    height: 330px;
    width: 100%;
    overflow: hidden;
    img{
        height: 100%;
        object-fit: cover;
    }
}
.cabs_body{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--white-color);
    padding: 20px;
    margin-top: -56px;
    margin-inline: auto;
    width: 90%;
    gap: 12px;
    box-shadow: 0 4px 60px -1px rgba(0 0 0 / .1);
    z-index: 1;
    position: relative;
}
.cabs_btn .btn-theme{
    padding: 22px;
    gap: 0;
}

/******Footer*****/

.footer-wrapper.footer-layout1 {
    overflow: initial;
    background-color: var(--secondary-color);
    border-top: 2px solid var(--secondary-color);
}
.footer-layout1 {
    background-color: var(--primary-color);
}
.footer-wrapper {
    --border-color: rgba(255, 255, 255, 0.3);
    --body-color: #788094;
    position: relative;
    z-index: 2;
    background-color: var(--primary-color);
    overflow: hidden;
}
.footer-layout1 .widget-area {
    padding-top: 60px;
    padding-bottom: 30px;
    position: relative;
}
.bg-footer-color {
    background-color: var(--primary-color);
}
footer .container{
    max-width: 1250px;
}
.footer-border-right {
    position: relative;
}
.footer-border-right:before {
    position: absolute;
    background: #ffffff1f;
    height: 85%;
    width: 1px;
    top: 0;
    content: "";
    right: -20px;
}

@media (max-width: 1299px) {
    .footer-border-right:before {
        display:none
    }
}

.footer-border-right:last-child:before {
    display: none
}
.widget {
    background-color: #F5F5F5;
    margin-bottom: 40px;
    position: relative;
    border-radius: 24px;
}
.footer-widget, .footer-widget .widget {
    padding: 0;
    border: none;
    padding-bottom: 0;
    background-color: transparent;
    box-shadow: none;
}
.footer-widget {
    margin-bottom: 50px;
}
.footer-widget .widget_title {
    max-width: 270px;
    color: var(--white-color);
    text-transform: capitalize;
    margin: -0.12em 0 24px 0;
    padding: 0 0 7px 0;
    position: relative;
}
.widget_title:after, .widget_title:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
    border-radius: 20px;
}
.widget_title:after {
    left: 44px;
    width: 10px;
    background-color: var(--white-color);
}
.widget_title {
    position: relative;
    font-size: 22px;
    font-weight: 500;
    font-family: var(--title-font);
    line-height: 1em;
    margin: -0.12em 0 28px 0;
}
.widget_nav_menu li, .widget_meta li, .widget_pages li, .widget_archive li, .widget_categories li, .wp-block-categories li {
    display: block;
    position: relative;
}
.footer-widget.widget_meta a, .footer-widget.widget_pages a, .footer-widget.widget_archive a, .footer-widget.widget_categories a, .footer-widget.widget_nav_menu a {
    font-size: 16px;
    font-weight: 400;
    padding: 0 0 0 0px;
    margin-bottom: 18px;
    font-family: var(--body-font);
    color: #99a4a3;
    display: block;
    max-width: 100%;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding-right: 0;
    background-color: transparent;
    border-bottom: none;
    position: relative;
    border: 0;
}
.widget_nav_menu a, .widget_meta a, .widget_pages a, .widget_archive a, .widget_categories a, .wp-block-categories a {
    display: block;
    background-color: var(--white-color);
    margin: 0 0 14px;
    padding: 16px 30px 16px 30px;
    font-size: 16px;
    line-height: 1.313;
    color: #788094;
    border-radius: 50px;
    -webkit-transition: 0.4s all ease;
    transition: 0.4s all ease;
}
.footer-widget.widget_meta a:hover, .footer-widget.widget_pages a:hover, .footer-widget.widget_archive a:hover, .footer-widget.widget_categories a:hover, .footer-widget.widget_nav_menu a:hover {
    background-color: transparent;
    color: var(--secondary-color);
}
.th-widget-about .about-logo {
    margin-bottom: 40px;
    max-width: max-content;
    height: auto;
    margin-inline: auto;
    a{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 3px;
    }
    img{
    background: #fff;
    border-radius: 8px;
    width: 100px;
    }
}
.footer-widget .th-widget-about .about-text {
    color: #99a4a3;
}
.th-widget-about .about-text {
    margin-bottom: 30px;
    margin-top: -0.9em;
}
.footer-layout1 .th-widget-about .th-social a {
    background-color: var(--secondary-color);
    border: 0;
    border-radius: 50%;
    --icon-size: 40px;
    font-size: 13px;
}
.footer-layout1 .th-social a {
    border-radius: 50%;
    background: transparent;
}
.footer-wrapper .th-social a {
    background-color: #1F2432;
    color: var(--white-color);
}
.widget .th-social a {
    box-shadow: 0px 2px 14px rgba(4, 6, 66, 0.1);
}
.th-social a {
    display: inline-block;
    width:  46px;
    height:  46px;
    line-height:  46px;
    background-color: transparent;
    color: #788094;
    font-size: 16px;
    text-align: center;
    margin-right: 5px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}
.th-widget-contact {
    max-width: 300px;
}
.info-box {
    display: flex;
    margin-bottom: 22px;
}
.info-box_icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    line-height: 56px;
    font-size: 22px;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--secondary-color);
    border-radius: 30px;
    text-align: center;
    margin-right: 15px;
    border: 0;
}

.info-box_icon i {
    -webkit-transition: .4s;
    transition: .4s;
}
.footer-layout1 .th-widget-about .th-social a:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.info-box:hover .info-box_icon i {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}
.th-widget-contact .footer-info-title {
    font-size: 20px;
    color: var(--white-color);
    line-height: 1;
}
.info-box_text {
    display: block;
    color: #bcbcbc;
    margin-top: -0.45em;
    margin-bottom: -0.45em;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    word-break: break-all;
}
.footer-layout1 .copyright-wrap {
    padding: 7px 0;
    background-color: var(--secondary-color);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
}
.copyright-wrap .copyright-text {
    color: var(--white-color);
    line-height: 1.4;
    margin-bottom: 0;
}
.copyright-wrap .copyright-text a {
    color: var(--primary-color);
}

/***************Taxi Services****************/
.single-service-wrap{
    border-radius: 24px;
    border: 1px solid var(--border-color);
    border-bottom: 6px solid var(--border-color);
    -webkit-transition: .4s;
    box-shadow: var(--box-shadow);
    transition: .4s;
    background-color: var(--white-color);
    .thumb{
        overflow: hidden;
        border-radius: 24px;
        height: 300px;
        img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
    .details{
        position: relative;
        z-index: 3;
        padding: 16px;
        padding-bottom: 22px;
        border-radius: 0 0 24px 24px;
        padding-bottom: 10px;
        h5{
            font-size: 22px;
            line-height: 1.417;
            font-weight: 900;
            margin-top: -0.32em;
            margin-bottom: 2px;
            letter-spacing: -0.02em;
        }
    }
    .destination{
        position: relative;
        top: -12px;
        width: max-content;
        background: var(--primary-color);
        color: #fff;
        padding: 2px 8px;
        border-radius: 5px;
        box-shadow: var(--box-shadow);
        margin-block: 7px 2px;
    }
    p{
        letter-spacing: -0.01em;
    }
}
.service-area .container{
    max-width: 1250px;
}
/****************about-section-three***************/
.about-section-three{
    position: relative;
    .row{
        border-radius: 24px;
        border: 1px solid var(--border-color);
        border-bottom: 6px solid var(--border-color);
        -webkit-transition: .4s;
        box-shadow: var(--box-shadow);
        overflow: hidden;
        transition: .4s;
        background-color: var(--white-color);
    }
    .about-car{
        width: 100%;
        height: 100%;
        .about-img-01 {
            height: 100%;
        }
        img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
    .section-header{
        margin-left: 40px;
        padding: 20px;
    }
    .order-first .section-header{
        margin-left: 0;
        margin-right: 40px;
    }
    .section-header p:last-child{
        margin-bottom: 0;
    }
}

/********Form*********/
.form_section{
    position: relative;
    z-index: 1;
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-bottom: 6px solid var(--border-color);
    box-shadow: var(--box-shadow);
    padding: 18px;
    border-radius: 20px;
}
.form-control {
    padding: 0 10px 0 15px;
    border: 1px solid #D2D2D2;
    color: #555555;
    background-color: var(--white-color);
    border-radius: 9999px;
    border-radius: 0;
    font-size: 14px;
    width: 100%;
    border-radius: 10px;
    height: 48px;
    transition: all ease 0.4s;
}
.form-control:focus{
    box-shadow: none;
    border-color: transparent;
    box-shadow: var(--box-shadow);
}
.form-group{
    position: relative;
    margin-bottom: 17px;
}
.form-group i{
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    font-size: 14px;
}
.form-title{
    font-weight: 900;
    font-size: 23px;
    margin-bottom: 16px;
}
.common-booking-form{
    margin-bottom: 20px;
}
/*******************/
.spad {
    padding-top: 100px;
    padding-bottom: 100px;
    background-repeat: no-repeat;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}
.breadcrumb__links {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 15px;
    border-bottom: none;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.breadcrumb__links a {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-right: 26px;
    display: inline-block;
    position: relative;
}
.breadcrumb__links span {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-right: 26px;
    display: inline-block;
    position: relative;
}

.breadcrumb__links a::after {
    position: absolute;
    right: -18px;
    top: 0px;
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    font-size: 20px;
    font-weight: 700;
}

.breadcrumb__links span:last-child {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-right: 26px;
    display: inline-block;
    position: relative;
    color: var(--secondary-color);
}

.breadcrumb__links span {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
    margin-right: 26px;
    position: relative;
}

.breadcrumb__text h2 {
    color: #fff;
    font-size: 46px;
    font-weight: 700;
}
.single-section{
  padding: 35px 0;
}
.single-service-details {
    padding: 20px;
    background-color: #eeeeee;
    border-radius: 10px;
}
.single-section .sidebar-item{
  margin-bottom: 30px;
  position: relative;
  background-color: #eeeeee;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0px 6px 35px rgba(0, 0, 0, 0.08);
}


.sidebar-category {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
}

.sidebar-category li {
    list-style: none;
    margin-bottom: 5px;
    width: 100%;
}

.sidebar-category li .active {
    background: var(--primary-color);
    color: #FFF;
}

.sidebar-category li a {
    background: #ffffff none repeat scroll 0 0;
    color: #000;
    display: block;
    font-size: 13px;
    font-weight: 500;
    padding: 12px 20px;
    text-transform: capitalize;
    box-shadow: 0px 6px 30px rgba(7, 36, 95, 0.08);
    border-radius: 6px;
}
.sidebar-category li a:hover {
    background: var(--primary-color);
    color: #fff;
}
.sidebar-category li a:after{
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    float: right;
}
.single-section img{
    margin-bottom: 20px;
    border-radius: 10px;
    max-height: 400px;
    width: 100%;
    object-fit: cover;
}

/**********Floats***********/

.popup_form {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: 0.4s;
}
.popup_form.active {
  display: flex; 
}

.popup_content {
  background-color: white;
  padding: 20px;
  max-width: 500px;
  width: 92%;
  border-radius: 8px;
  position: relative;
}
.popup_content {
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 400px;
  position: relative;
}
.close_btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: #333;
  cursor: pointer;
}
.form_group {
  margin-bottom: 15px;
}

.form_group label {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
  color: var(--secondary-color);
}


.form_group textarea {
  resize: none;
  height: 80px;
}


/*float  buttons*/
.fixed__btns{
    position: fixed;
    right: 0;
    left: 50%;
    bottom: 13px;
    background-color: #fff;
    width: 90%;
    height: 50px;
    z-index: 99;
    padding: 0;
    gap: 0;
    overflow: hidden;
    flex-wrap: wrap;
    display: flex;
    border-radius: 40px ;
    transform: translateX(-50%);
    border: 1px solid #d1d1d1;
    box-shadow: var(--box-shadow);
}
.float{
    position: relative;
    width: 35px;
    height: 100%;
    color: #FFF;
    border-radius: 0;
    text-align: center;
    font-size: 18px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 35px;
    font-weight: 800;
    img{
        width: 35px;
    }
}
.float_whatsapp{
  background-color: #fff;
}
.float-popup{
  background-color: #fff;
  border-left: 1px solid #d1d1d1;
  color: var(--primary-color);
}
.float:hover{
  color: #000;
}
.float-call{
  background-color: #fff;
  border-left: 1px solid #d1d1d1;
  font-size: 15px;
  font-weight: 100 !important;
}
.float-mail{
  background-color: var(--secondary-color);
  font-size: 15px;
  font-weight: 100 !important;
}

.my-float{
  margin-top:5px;
  color: #25d366;
}
.my-call{
  margin-top:5px;
}

.phone_res-float-btn {
  width: 100%;
  display: flex;
  position: fixed;
  bottom: 0 !important;
  z-index: 111;
}
.phone_res-float-btn a{
  width: 50% !important;
  border-radius: 0;
  padding: 10px 0;
  text-align: center;
  background-color: #fff;
  border: 1px solid #bababa;
  font-size: 17px;
  display: flex;
  justify-content: center;
  gap: 4px;
  font-weight: 600;
  color: #000;
}
.phone_res-float-btn .button__1{
  position: relative;
  left: 0 !important;
  border-top-left-radius: 20px;
}
.phone_res-float-btn .button__2{
  position: relative;
  border-top-right-radius: 20px;
  right: 0 !important;
}
.phone_res-float-btn img{
  width: 25px;
  height: 25px;
}
@media(max-width:768px){
    .footer-layout1 .copyright-wrap{
        padding-bottom: 80px;
    }
    .service_item{
        margin-inline: 10px;
    }
    .btn-theme{
        padding: 16px 30px;
    }
}
.booking-page .card{
    position: relative;
    padding: 20px 0;
    z-index: 1;
    background-color: #fff;
    border: 1px solid #fff;
    box-shadow: var(--box-shadow);
    border-radius: 25px;
}
.booking-page .form-group .form-control{
    height: 49px;
}
.booking-page .card .form-title{
    position: relative;
}
.booking-page .form-group textarea.form-control{
    height: 80px;
}

/***********New Css************/

/*--------------------------------------------------------------
# About Two
--------------------------------------------------------------*/
.about-two {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: top left;
}

.about-two__shape-1 {
    position: absolute;
    top: 45px;
    right: -140px;
}

.about-two__shape-1 img {
    width: auto;
}

.about-two__shape-2 {
    position: absolute;
    bottom: 0;
    right: 85px;
}

.about-two__shape-2 img {
    width: 250px;
    height: auto;
    opacity: 0.07;
    filter: brightness();
    margin-bottom: 35px;
}
.about-two__left {
    position: relative;
    display: block;
    margin-right: 135px;
}

.about-two__img-box {
    position: relative;
    display: block;
}

.about-two__img-one {
    position: relative;
    display: block;
}

.about-two__img-one img {
    width: 441px;
    height: 394px;
    object-fit: cover;
}

.about-two__img-two {
    position: absolute;
    right: -135px;
    bottom: -119px;
    box-shadow: 0px 0px 43px 0px rgba(0, 0, 0, 0.07);
}
.about-two__img-two {
  mask-image: url('../images/bg/about-two-img-2.png');
  -webkit-mask-image: url('../images/bg/about-two-img-2.png');
  width: 444px;
  height: 349px;
}

.about-two__img-two img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.about-two__icon {
    position: absolute;
    top: 145px;
    left: 250px;
    height: 107px;
    width: 107px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.about-two__icon:before {
    content: "";
    position: absolute;
    top: -13px;
    bottom: -13px;
    left: -13px;
    right: -13px;
    border: 1px solid rgba(255,255,255, 0.3);
    border-radius: 50%;
}

.about-two__icon img {
    width: auto;
}

.about-two__right {
    position: relative;
    display: block;
    margin-left: 69px;
}

.about-two__right .section-title {
    margin-bottom: 29px;
}

.about-two__right__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    color: var(--secondary-color);
    margin-bottom: 23px;
    letter-spacing: 0;
}

.about-two__right-points {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 32px;
    margin-bottom: 40px;
}

.about-two__right-points li {
    position: relative;
    display: flex;
}

.about-two__right-points li+li {
    margin-left: 26px;
}

.about-two__right-points li .icon {
    position: relative;
    display: block;
    margin-right: 10px;
    top: 5px;
}

.about-two__right-points li .icon span {
    font-size: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 21px;
    height: 21px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    color: #fff;
}

.about-two__right-points li .text h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 27px;
}

.about-two__btn {
    background-color: var(--secondary-color);
}

.about-two__btn:before {
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    background-color: var(--primary-color);
    content: "";
    border-radius: 30px;
    transform: scaleY(0) rotateX(0deg);
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    z-index: -1;
}

.about-two__btn:hover {
    color: #fff;
}

.about-two__btn:hover:before {
    transform: scaleY(1) rotateX(0deg);
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}
/*--------------------------------------------------------------
# Testimonial Two
--------------------------------------------------------------*/
.testimonial-two {
    position: relative;
    display: block;
    background-color: var(--primary-color);
    padding: 120px 0 118px;
    overflow: hidden;
    z-index: 1;
}

.testimonial-two__shape-1 {
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 360px;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    opacity: 0.03;
    z-index: -1;
    filter: brightness(100);
    width: 100%;
    background-size: cover;
}

.testimonial-two__left {
    position: relative;
    display: block;
    z-index: 5;
}

.testimonial-two__left .section-title {
    margin-bottom: 0px;
}

.testimonial-two__left .section-title__title {
    color: #fff;
}

.testimonial-two__right {
    position: relative;
    display: block;
    margin-top: 42px;
}

.testimonial-two__carousel {
    position: relative;
    display: block;
}

.testimonial-two__single {
    position: relative;
    display: block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.testimonial-two__single:hover {
    transform: translateY(-10px);
}

.testimonial-two__content {
    position: relative;
    display: block;
    background-color: white;
    box-shadow: 0px 12px 43px 0px rgba(0, 0, 0, 0.07);
    padding-left: 50px;
    padding-right: 45px;
    padding-top: 70px;
    padding-bottom: 40px;
}

.testimonial-two__content:before {
    content: "";
    position: absolute;
    left: 50px;
    bottom: -30px;
    border-top: 30px solid #fff;
    border-right: 75px solid transparent;
    border-left: 0px solid transparent;
}

.testimonial-two__img-box {
    position: absolute;
    top: -42px;
    left: 50px;
    height: 104px;
    width: 104px;
    background-color: var(--secondary-color);
    border-radius: 50%;
}

.testimonial-two__quote {
    position: absolute;
    top: 26px;
    right: 45px;
}

.testimonial-two__quote span {
    position: relative;
    display: inline-block;
    font-size: 32px;
    color: var(--secondary-color);
}

.testimonial-two__img {
    position: relative;
    display: inline-block;
    width: 88px;
    height: 88px;
    img{
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }
}

.elementor .testimonial-two__img img {
    width: 100%;
    border-radius: 50%;
}

.testimonial-two__text {
    font-size: 18px;
    line-height: 34px;
}

.testimonial-two__star {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 19px;
}

.testimonial-two__star i {
    position: relative;
    display: inline-block;
    font-size: 15px;
    color: var(--secondary-color);
}

.testimonial-two__star i+i {
    margin-left: 1px;
}

.testimonial-two__client-info {
    position: relative;
    display: block;
    margin-left: 90px;
    margin-top: 23px;
}

.testimonial-two__client-name {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 20px;
    margin-bottom: 7px;
}

.testimonial-two__client-sub-title {
    font-size: 12px;
    color: #889f91;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 12px;
}

.testimonial-two__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.testimonial-two__carousel.owl-carousel .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

.testimonial-two__carousel.owl-carousel .owl-item.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-two__carousel.owl-theme .owl-nav {
    position: absolute;
    bottom: 56px;
    left: -400px;
    margin: 0;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-next {
    height: 50px;
    width: 50px;
    line-height: 50px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    color: #fff;
    font-size: 15px;
    margin: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-prev {
    height: 50px;
    width: 50px;
    line-height: 50px;
    border-radius: 50%;
    color: #fff;
    background-color: var(--secondary-color);
    font-size: 15px;
    margin: 0;
    text-align: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-next {
    margin-left: 5px;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-prev {
    margin-right: 5px;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-next span,
.testimonial-two__carousel.owl-theme .owl-nav .owl-prev span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-next:hover,
.testimonial-two__carousel.owl-theme .owl-nav .owl-prev:hover {
    opacity: 0.6;
    color: #fff;
}


/*--------------------------------------------------------------
# Benefits One
--------------------------------------------------------------*/
.benefits-one {
    position: relative;
    display: block;
    background-color: #f8f7f1;
    padding: 120px 0 100px;
    z-index: 1;
    background-position: left center;
    background-repeat: no-repeat;
    background-blend-mode: luminosity;
}
.benefits-one .sec-title span:after{
    display: none;
}

.benefits-one__shape-1 {
    position: absolute;
    bottom: 0;
    left: 95px;
    z-index: -1;
}

.benefits-one__shape-1 img {
    width: auto;
}

.benefits-one__shape-2 {
    position: absolute;
    top: 180px;
    right: 120px;
    z-index: -1;
}

.benefits-one__shape-2 img {
    width: auto;
}

.benefits-one__left {
    position: relative;
    display: block;
}

.benefits-one .section-title {
    margin-bottom: 28px;
}

.benefits-one__text {
    padding-bottom: 40px;
}

.benefits-one__btn {
    background-color: var(--secondary-color);
}

.benefits-one__btn:before {
    background-color: var(--primary-color);
}

.benefits-one__right {
    position: relative;
    display: block;
    margin-left: 10px;
}

.benefits-one__right .row {
    --bs-gutter-x: 20px;
}

.benefits-one__single {
    position: relative;
    display: flex
;
    align-items: center;
    justify-content: space-between;
    padding: 21px 20px 22px;
    background-color: white;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.04);
    margin-bottom: 20px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
    border-radius: 15px;
}

.benefits-one__single:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--primary-color);
    transform: scaleX(0.7) rotateX(20deg);
    opacity: 0;
    transition: all 0.4s linear;
    z-index: -1;
}

.benefits-one__single:hover:before {
    transform: scaleX(1) rotateX(0deg);
    transition: all 0.4s linear;
    opacity: 1;
}

.benefits-one__content {
    position: relative;
    display: flex;
    align-items: center;
}

.benefits-one__icon {
    position: relative;
    display: inline-block;
    margin-right: 18px;
    top: 5px;
}

.benefits-one__icon span {
    font-size: 50px;
    color: var(--secondary-color);
}

.benefits-one__title {
    position: relative;
    display: block;
}

.benefits-one__title h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    margin-bottom: 0;
}

.benefits-one__title a {
    color: var(--primary-color);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.benefits-one__single:hover .benefits-one__title a {
    color: #fff;
}

.benefits-one__arrow {
    position: relative;
    display: block;
}

.benefits-one__arrow a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #f8f7f1;
    border-radius: 50%;
    font-size: 14px;
    color: var(--secondary-color);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.benefits-one__single:hover .benefits-one__arrow a {
    color: #fff;
    background-color: var(--secondary-color);
}

.text-second{
    color: var(--secondary-color);
}

/*Taxi sErvices******************/
.service-area {
    padding: 120px 0;
    position: relative;
    background-color: var(--primary-color);
    z-index: 1;
}
.service-area:before{
    background-image: url(../images/taxi-service.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0.5;
    background-attachment: fixed;
    content: '';
    z-index: -1;
}
.service-area    .form-title {
    color: var(--white-color);
}
.ul-menus-title-slider {
  margin-bottom: clamp(20px, 2.1vw, 40px);
}
.ul-menus-title-slider .splide__slide{
    display:block;
    padding-block: 8px;
}
.ul-menus-title-slider .splide__slide:nth-child(odd) .ul-menus-title-txt {
  text-decoration: 4px underline;
  text-underline-offset: 8px;
}
.ul-menus-title-txt {
  color: var(--white-color);
  text-transform: uppercase;
  font-weight: 900;
  font-size: clamp(40px, 4.2vw, 80px);
  margin-bottom: 0;
}

.ul-menus-tabs-wrapper {
  background-color: var(--white-color);
  border-radius: 20px;
  max-width: clamp(1141px, 75.35vw, 1434px);
  margin: auto;
}
.ul-menu-tab{
    display: none;
}
.ul-menu-tab.active{
    display: block;
}
@media screen and (max-width: 1199px) {
  .ul-menus-tabs-wrapper {
    margin: 0 15px;
}
}
.ul-menus-tabs-wrapper .tabs {
  padding: clamp(20px, 1.58vw, 30px) clamp(15px, 6.83vw, 130px);
}
@media screen and (max-width: 767px) {
  .ul-menus-tabs-wrapper .tabs {
    padding: clamp(20px, 1.58vw, 30px) 15px;
}
}
.ul-menus-tab-navs {
  display: flex;
  justify-content: center;
  padding: clamp(15px, 1.58vw, 30px);
  border-bottom: 1px solid #d1d1d1;
  gap: clamp(15px, 1.58vw, 30px);
  flex-wrap: wrap;
}
.ul-menus-tab-navs button {
  display: flex;
  align-items: center;
  gap: clamp(7px, 0.53vw, 10px);
  font-weight: 600;
  font-size: clamp(15px, 0.95vw, 18px);
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: clamp(4px, 0.37vw, 7px) clamp(12px, 0.79vw, 15px);
  border-radius: 99px;
}
.ul-menus-tab-navs button:hover, .ul-menus-tab-navs button.active {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}
.ul-menus-vectors > * {
  position: absolute;
  pointer-events: none;
}
@media screen and (max-width: 1399px) {
  .ul-menus-vectors > * {
    z-index: -1;
}
}
.ul-menus-vectors .vector-1 {
  top: clamp(130px, 16.08vw, 306px);
  left: 0;
  max-width: clamp(150px, 15.92vw, 303px);
}
.ul-menus-vectors .vector-2 {
  bottom: clamp(114px, 12.93vw, 246px);
  right: 0;
  max-width: clamp(130px, 15.34vw, 292px);
}

.ul-menu-item {
  display: flex;
  align-items: center;
  gap: clamp(8px, 0.84vw, 16px);
  border: 1px dashed rgba(0, 0, 0, 0.2);
  border-radius: clamp(12px, 1.05vw, 20px);
  padding: 10px;
  transition: 0.3s;
}
.ul-menu-item:hover{
    border-color: var(--secondary-color);
}
@media screen and (max-width: 479px) {
  .ul-menu-item {
    flex-wrap: wrap;
}
}
.ul-menu-item:hover .ul-menu-item-img img {
  border-color: var(--primary-color);
}
.ul-menu-item-img img {
  width: 100px;
  min-width: 100px;
  height: 100px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border: 1px dashed transparent;
  padding: clamp(0px, 0.11vw, 2px);
  border-radius: 15px;
  object-fit: cover;
  transition: 0.5s;
}
.ul-menu-item-txt {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.ul-menu-item .btn-theme{
    padding: 15px;
    width: 50px;
    display: inline-flex;
    height: 50px;
    align-items: center;
    justify-content: center;
}
.ul-menu-item-title {
    font-weight: 700;
    font-size: clamp(18px, 1.26vw, 24px);
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}
.ul-menu-item .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(5px, 0.42vw, 8px);
}
.ul-menu-item-sub-title{
    font-size: 12px;
    line-height: 1.2;
    display: block;
    color: #d1d1d1;
}
@media screen and (max-width: 479px) {
  .ul-menu-item .bottom {
    flex-direction: column;
    align-items: flex-start;
}
}
.ul-menu-item .stroke {
  border-top: 1px dashed var(--primary-color);
  width: 100%;
}
@media screen and (max-width: 479px) {
  .ul-menu-item .stroke {
    display: none;
}
}

/*--------------------------------------------------------------
# FAQ Page
--------------------------------------------------------------*/
.faq-page {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    background-color: #f8f7f1;
}

.faq-page__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: bottom center;
    opacity: 0.03;
    opacity: 0.03;
    mix-blend-mode: difference;
}

.faq-page .container {
    position: relative;
}

.faq-page__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

/*--------------------------------------------------------------
# FAQ One
--------------------------------------------------------------*/
.faq-one {
    position: relative;
    display: block;
    background-color: #f8f7f1;
    padding: 120px 0 120px;
    z-index: 1;
}

.faq-one__shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .40;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.faq-one__left {
    position: relative;
    display: block;
    margin-right: 70px;
}

.faq-one__img {
    position: relative;
    display: block;
}

.faq-one__img:before {
    position: absolute;
    right: -10px;
    top: 30px;
    bottom: 30px;
    width: 40px;
    background-color: var(--secondary-color);
    content: "";
    z-index: -1;
}

.faq-one__img img {
    width: 100%;
}

.faq-one__right {
    position: relative;
    display: block;
}

.faq-one-accrodion .accrodion {
    position: relative;
    display: block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background-color: var(--white-color);
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
}

.faq-one-accrodion .accrodion-title {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 22px 40px 22px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.faq-one-accrodion .accrodion-title h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    color: var(--primary-color);
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.faq-one-accrodion .accrodion+.accrodion {
    margin-top: 10px;
}

.faq-one-accrodion .accrodion.active .accrodion-title {
    color: var(--secondary-color);
}

.faq-one-accrodion .accrodion.active .accrodion-title h4 {
    color: var(--secondary-color);
}

.faq-one-accrodion .accrodion-title h4::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 15px;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--white-color);
    position: absolute;
    top: 50%;
    right: -25px;
    line-height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    text-align: center;
}

.faq-one-accrodion .accrodion.active .accrodion-title h4::before {
    content: "\f107";
    color: var(--white-color);
    background-color: var(--primary-color);
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-one-accrodion .accrodion-content {
    position: relative;
    padding: 0 40px 32px;
}

.faq-one-accrodion .accrodion-content p {
    margin: 0;
}

/*--------------------------------------------------------------
# CAb Section
--------------------------------------------------------------*/
.team {
    position: relative;
    display: block;
    padding: 120px 0 90px;
}

.team__single {
    position: relative;
    display: block;
    border-radius: 12px;
    padding-block: 10px;
    overflow: hidden;
}

.team__single-inner {
    background-color: white;
    box-shadow: 0px 10px 90px 0px rgba(0, 0, 0, 0.07);
    position: relative;
    display: block;
    margin-bottom: 30px;
    padding-right: 20px;
    padding-bottom: 15px;
    overflow: hidden;
    z-index: 1;
    border-radius: 12px;
    overflow: hidden;
}

.team__single-inner:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: var(--secondary-color);
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    background-position: center center;
    z-index: -1;
}

.team__single:hover .team__single-inner:after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
}

.team__img {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--primary-color);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
    border-radius: inherit;
    overflow: hidden;
    border-bottom-left-radius: 0;
    height: 200px;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.team__img img {
    width: 100%;
    transition: all 500ms ease;
}

.team__single:hover .team__img img {
    transform: scale(1.05);
    opacity: 0.5;
}

.team__content {
    position: relative;
    display: block;
    padding-top: 17px;
    padding-left: 16px;
}

.team__name {    
    font-size: 35px;
    font-weight: 900;
    line-height: 30px;
    margin-bottom: 13px;
}

.team__name a {
    color: var(--primary-color);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.team__single:hover .team__name a {
    color: var(--white-color);
}

.team__title {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 12px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.team__single:hover .team__title {
    color: #ede2b1;
}

.team__social {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 28px;
}

.team__social a {
    position: relative;
    height: 45px;
    width: 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    color: var(--primary-color);
    background-color: #f8f7f1;
    font-size: 15px;
    border-radius: 50%;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.team__single:hover .team__social a {
    color: var(--white-color);
    background-color: var(--primary-color);
}

.team__social a:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: var(--primary-color);
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
    -webkit-transition-property: all;
    transition-property: all;
    opacity: 1;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    z-index: -1;
}

.team__single:hover .team__social a:after {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.team__social a+a {
    margin-left: 10px;
}

.team__social a:hover {
    color: var(--primary-color) !important;
}

.team__social a:hover:after {
    background-color: var(--white-color);
}
.cabs_btn .btn-theme {
    display: inline-flex;
    background-color: var(--primary-color);
}
.cabs_btn .btn-theme::after {
        background: #fff;
    }

.cabs_btn .btn-theme:hover {
        color: var(--primary-color);
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-page {
    position: relative;
    display: block;
    padding: 120px 0 90px;
}

.contact-page__single {
    position: relative;
    display: block;
    background-color: white;
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.07);
    padding: 20px 25px 20px;
    margin-bottom: 30px;
}

.contact-page__title-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.contact-page__title span {
    position: relative;
    display: inline-block;
    font-size: 12px;
    color: var(--secondary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 12px;
}

.contact-page__title h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    margin-top: 2px;
}

.contact-page__icon {
    position: relative;
    display: flex;
    align-items: center;
}

.contact-page__icon span {
    position: relative;
    display: inline-block;
    font-size: 60px;
    color: var(--secondary-color);
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.contact-page__icon--last span {
    font-size: 42px;
}

.contact-page__single:hover .contact-page__icon span {
    transform: scale(1.2);
}

.contact-page__text a {
    position: relative;
    display: block;
    color: #79817c;
    transition: all 500ms ease;
}

.contact-page__text a:hover {
    color: var(--secondary-color);
}

/*--------------------------------------------------------------
# Contact Form
--------------------------------------------------------------*/
.contact-one {
    position: relative;
    display: block;
    padding: 0px 0px 120px;
    z-index: 1;
}
.contact-one__form-box {
    position: relative;
    display: block;
}

.contact-one__form {
    position: relative;
    display: block;
}

.contact-one__form .row {
    --bs-gutter-x: 20px;
}

.contact-form__input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.contact-form__input-box input[type="text"],
.contact-form__input-box input[type="email"] {
    height: 60px;
    width: 100%;
    border: none;
    background-color: #f8f7f1;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-size: 14px;
    color: #79817c;
    display: block;
    font-weight: 400;
}

.contact-form__input-box textarea {
    font-size: 14px;
    color: #79817c;
    height: 155px;
    width: 100%;
    background-color: #f8f7f1;
    padding: 15px 30px 30px;
    border: none;
    outline: none;
    margin-bottom: 0px;
    font-weight: 400;
}

.contact-form__input-box.text-message-box {
    height: 155px;
}

.contact-form__btn {
    display: block;
    margin: 0 auto;
    border: none;
    background-color: var(--secondary-color);
}

.contact-form__btn:before {
    background-color: var(--primary-color);
}

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.google-map {
    position: relative;
    display: block;
    height: 100%;
    background-color: #f8f7f1;
    iframe{
        width: 100%;
        height: 100%;
    }
}

.google-map__one {
    position: relative;
    display: block;
    border: none;
    height: 470px;
    width: 100%;
    mix-blend-mode: luminosity;
}
