@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css');

@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

:root {
    --theme-color: #EF494D;
    --theme-color2: #211854;
    --black: #111111;
    --white: #fff;
    --paragraph: #343434;
}

/*
font-family: "Google Sans", sans-serif;
*/

@font-face {
    font-family: 'Satoshi-Bold';
    src: url('../fonts/Satoshi-Bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi-Medium';
    src: url('../fonts/Satoshi-Medium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi-Regular';
    src: url('../fonts/Satoshi-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

* {
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-decoration: none;
    outline: none;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

::selection {
    background-color: var(--theme-color);
    color: #fff;
    text-shadow: none;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-family: 'Satoshi-Bold';
}

p {
    font-family: "Google Sans", sans-serif;
    font-size: 17px;
    padding: 0;
    margin: 0 0 15px;
    color: var(--paragraph);
    font-weight: normal;
}

ul, li {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

img {
    max-width: 100%;
    border: none;
}

a {
    text-decoration: none;
    outline: none !important;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

.p-80 {
    padding: 80px 0;
}

.title1 h1 {
    font-size: 70px;
    color: var(--white);
    position: relative;
}

.title2 h2 {
    font-size: 38px;
    color: var(--white);
    margin: 0 0 10px;
    position: relative;
    line-height: 60px;
}

.title3 h3 {
    font-size: 46px;
    color: var(--black);
    margin: 0 0 10px;
    transition: 0.6s;
}

.title4 h4 {
    font-size: 36px;
    color: #121212;
    margin: 0 0 15px;
    transition: 0.6s;
    font-weight: 500;
}

.title5 h5 {
    font-size: 34px;
    color: var(--black);
    margin: 0;
    transition: 0.6s;
    line-height: 34px;
}

.title6 h6 {
    font-size: 16px;
    color: var(--paragraph);
    font-weight: 500;
    margin-bottom: 0px;
    transition: 0.6s;
}

.btn01 {
    font-family: 'Satoshi-Medium';
    font-size: 16px;
    font-weight: normal;
    padding: 11px 50px 11px 20px;
    color: var(--white);
    text-align: center;
    line-height: normal;
    background-color: var(--theme-color2);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    transition: 0.6s;
    border: none;
}

.btn01:hover {
    background-color: var(--theme-color);
    color: var(--white);
    box-shadow: 0 4px 12px rgb(230 81 81 / 31%);
}

.btn01:after {
    content: "";
    position: absolute;
    top: 6px;
    right: 5px;
    width: 32px;
    height: 32px;
    padding: 4px;
    border-radius: 50%;
    background: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px;
    background-image: url(../images/arrow.png);
    display: flex;
    align-items: center;
    justify-content: center;
}

/*// backToTop //*/
#backToTop { position: fixed; bottom: 30px; right: 30px; width: 45px; height: 45px; padding: 4px; background: linear-gradient(to bottom, #fe8484, #e65151); border: none; border-radius: 50%; cursor: pointer; display: none; align-items: center; justify-content: center; z-index: 1000; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); border: 1px solid rgb(255 255 255 / 89%); transition: 0.6s; }
#backToTop .fa-arrow-up { font-size: 18px; color: #fff; top: -1px; position: relative; }
#backToTop:hover { background-color: #f15c5a; transform: scale(1.1); }
#backToTop:hover svg { transform: translateY(-3px); }
/*// backToTop //*/

.form-select:focus {
    box-shadow: none;
    border-color: transparent;
}

a {
    text-decoration: none;
}

/* ======================================================================= */
    /* header start */
/* ======================================================================= */
.headerarea {
    background-color: #fff;
    position: relative;
    padding: 10px 0;
    z-index: 444;
}

.navarea {
    background-color: var(--theme-color2);
    padding: 5px 10px;
    border-radius: 50px;
}

.headerarea .btn01 {
    border: 1px solid #fff;
}

.headerarea .logo {
    width: 100%;
    max-width: 180px;
    position: relative;
    display: inline-block;
}

.nav-menu > li > a:hover {
    color: var(--theme-color);
}

.headerarea.fix {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    border-radius: 0;
    background-color: #fff;
    /*padding: 5px 100px;*/
    z-index: 444;
    box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

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

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

/* ======================================================================= */
    /* banner_sec start */
/* ======================================================================= */
/*.banner_sec {
    width: 98%;
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
}

.banner_sec video {
  position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 18px;
    margin: auto;
}*/

.banner_sec {
    width: 98%;
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
}
.banner_sec::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background-color: #140b387a;
    /* background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.71) 0%,
        rgba(255, 255, 255, 0) 50%,
        rgba(255, 255, 255, 0) 100%
    ); */
    z-index: 1;
}

.banner_sec .container-fluid {
    position: relative;
    width: 100%;
    height: 850px;             
    overflow: hidden;
    border-radius: 18px;
    padding: 0;
}

.banner_sec video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;          
    object-position: center;
    display: block;
}

.vdotext {
    width: min(100%, 1230px);
    margin: 0 auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
	z-index: 222;
}

.vdotext .title1 {
    width: 65%;
}

.vdotext .title1 h1 {
    font-size: 44px;
    margin-bottom: 15px;
}

.banner_sec .scroll-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    border: none;
    width: 20px;
    background: transparent;
    transform: translateY(-5px);
    cursor: pointer;
}

.bnr_left {
    width: 100%;
    height: 700px;
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: 100%;
    background-image: url(../images/shape1.webp);
    border-radius: 25px;
    position: relative;
    padding: 150px 100px 50px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
}

.morethan {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 160px;
    height: 100px;
    display: flex;
    overflow: hidden;
    z-index: 1;
}

.morethan h6 {
    font-family: 'Satoshi-Regular';
    position: absolute;
    right: 10px;
    bottom: 10px;
    text-align: right;
    font-size: 12px;
    color: var(--black);
}

.morethan img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.btn02 {
    font-family: 'Satoshi-Regular';
    font-size: 16px;
    font-weight: normal;
    padding: 12px 23px 12px 45px;
    color: var(--theme-color2);
    text-align: center;
    line-height: normal;
    background-color: var(--white);
    border: 1px solid var(--white);
    position: relative;
    display: inline-block;
    border-radius: 30px;
    transition: 0.6s;
    border: none;
}

.btn02:hover {
    background-color: var(--theme-color2);
    border-color: var(--theme-color2);
    color: #fff;
}

.btn02:after {
    content: "";
    position: absolute;
    top: 7px;
    left: 5px;
    width: 32px;
    height: 32px;
    padding: 3px;
    border-radius: 50%;
    background: var(--theme-color);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px;
    background-image: url(../images/icon4.png);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner_sec p {
    margin-bottom: 25px;
    font-size: 18px;
    color: #fff;
    width: 80%;
}

.bnr_right {
    width: 100%;
    height: 700px;
    position: relative;
    display: flex;
    border-radius: 25px;
    overflow: hidden;
}

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

.bnr_right:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: bottom left;
    background-image: url(../images/shape2.jpg);
    mix-blend-mode: screen;
    border-radius: 25px;
}

.experience {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background-color: #ffffff3b;
    border: 1px solid #fff;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-radius: 15px;
    z-index: 1;
}

.experience h2 {
    font-size: 32px;
    color: var(--white);
}

.experience small {
    font-size: 14px;
    color: var(--white);
}

.experience img {
    max-width: 120px;
    object-fit: contain;
}

.experience article {
    text-align: left;
}

.cont {
    width: 100%;
    color: #000;
}

.mouse {
    width: 31px;
    height: 50px;
    position: absolute;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 20px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 700%);
}

.mouse::before {
    content: '';
    position: relative;
    background-color: #ffffff;
    height: 8px;
    width: 2px;
    display: block;
    left: 48%;
    top: 5px;
    animation-name: scroll;
    animation-duration: 2s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
}

@keyframes scroll {
    0% {
        top: 5%;
        opacity: 100%;
    }

    100% {
        top: 50%;
        opacity: 0%;
    }
}

/* ======================================================================= */
    /* sec1 start */
/* ======================================================================= */
.sec1 {
    width: 100%;
}

.sec1 article {
    width: 63%;
    margin: 0 auto;
}

.sec1 p {
    font-size: 30px;
    color: var(--black);
    text-align: center;
    line-height: 40px;
}

.sec1 a {
    font-size: 16px;
    color: #000;
    text-transform: uppercase;
    text-align: right;
    position: relative;
    display: block;
    margin-top: 50px;
    margin-right: 50px;
}

.sec1 a:before {
    content: "";
    position: absolute;
    top: 12px;
    right: 115px;
    width: 75px;
    height: 1px;
    background-color: #000;
}

.sec1 b, .sec1 strong {
    color: var(--theme-color2);
}

.sec1 span {
    color: #6b6b6b;
}

.on_counter {
    width: 100%;
    padding: 50px 0 0;
}

.counter_card {
    width: 100%;
    position: relative;
    text-align: center;
    transition: 0.6s;
}

.counter_card:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, rgb(255 255 255 / 0%), #a2a2a2, rgb(255 122 122 / 0%));
    transform: translateX(12px);
}

.on_counter h2 {
    font-size: 100px;
    color: #D9D9D9;
    position: relative;
    transition: 0.6s;
}

.on_counter h2 span {
    font-size: 100px;
    color: #D9D9D9;
    transition: 0.6s;
}

.on_counter h6 {
    font-family: "Google Sans", sans-serif;
    font-size: 15px;
    color: var(--black);
    font-weight: 400;
    width: 100%;
    background-color: #ffffff80;
    padding: 0 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
}

.on_counter .col-lg-3:last-child .counter_card:after {
    display: none;
}

.counter_card:hover h2, .counter_card:hover h2 span {
    color: var(--theme-color2);
}

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

/* ======================================================================= */
    /*  welcome_sec start */
/* ======================================================================= */
.welcome_sec {
    width: 100%;
    padding: 0 0 120px;
}

.welcome_secpic {
    width: 90%;
    height: auto;
    position: relative;
    display: flex;
}

.welcome_secpic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    overflow: hidden;
}

.circlebox {
    position: absolute;
    right: 40px;
    bottom: -60px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 10px solid #fff;
    overflow: hidden;
}

.circle-rotate {
    width: 100%;
    height: 100%;
    animation: rotateCircle 20s linear infinite;
}

.circle-rotate img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.arrowbox {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.arrowbox img {
    max-width: 15px;
    height: auto;
    object-fit: contain;
}

.welcome_sec .btn01 {
    background-color: transparent;
    border: 1px solid var(--theme-color);
    color: var(--theme-color2);
    margin-top: 20px;
}

.welcome_sec .btn01:after {
    background: var(--theme-color2);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px;
    background-image: url(../images/arrow2.png);
}

.welcome_sec .btn01:hover {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
    color: var(--white);
}

/* ======================================================================= */
    /* solutions_sec start start */
/* ======================================================================= */
.solutions_sec {
    width: 98%;
    max-width: 1920px;
    margin: 0 auto;
    background-color: var(--theme-color2);
    border-radius: 20px;
}

.solutions_sec .title3 h3 {
    width: 45%;
    margin: 0 auto;
    color: #fff;
}

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

.solutions_cardpic {
    width: 100%;
    height: 425px;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}

.solutions_cardpic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

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

.solutions_tag {
    background-color: #ffffff54;
    border-radius: 30px;
    text-align: center;
    padding: 7px 15px;
    font-size: 14px;
    color: #000;
    border: 1px solid #ffffffa8;
    position: absolute;
    top: 15px;
    left: 15px;
    max-width: 220px;
    line-height: normal;
}

.actionbtn {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 20px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    bottom: 0;
    transition: 0.6s;
}

.actionbtn .fa-arrow-right {
    font-size: 25px;
    color: var(--theme-color2);
    transform: rotate(-45deg);
    transition: 0.6s;
}

.solutions_card:hover .actionbtn {
    background-color: var(--theme-color);
}

.solutions_card:hover .actionbtn .fa-arrow-right{
    color: var(--white);
}

/* ======================================================================= */
    /* journeys_sec start */
/* ======================================================================= */
.journeys_sec {
    width: 100%;
}

.journeys_sec .title3 {
    width: 80%;
    padding-left: 50px;
}

.journeys_sec_left {
    width: 100%;
    height: 345px;
    display: flex;
    position: relative;
    overflow: hidden;
}

.journeys_sec_left img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.journeys_action {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 22px;
    color: #fff;
    transform: rotate(-45deg);
}

.journeys_card {
    width: 100%;
    background-color: var(--theme-color2);
    border-radius: 15px;
    padding: 25px;
    transition: 0.6s;
}

.journeys_card:hover {
    background-color: var(--theme-color);
}

.journeys_circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.journeys_circle img {
    max-width: 24px;
    object-fit: contain;
    transition: 0.6s;
    filter: brightness(0) saturate(100%) invert(12%) sepia(15%) saturate(7477%) hue-rotate(232deg) brightness(93%) contrast(104%);
}

.journeys_card:hover .journeys_circle img {
    filter: brightness(0) saturate(100%) invert(35%) sepia(62%) saturate(4116%) hue-rotate(336deg) brightness(98%) contrast(85%);
}

.journeys_card h5 {
    font-size: 18px;
    color: #ffffff;
    text-transform: uppercase;
    margin: 15px 0;
}

.journeys_card .learnmore1 {
    font-size: 14px;
    background-color: transparent;
    border: 1px solid #fff;
    display: inline-block;
    border-radius: 30px;
    padding: 6px 15px;
    text-align: center;
    color: #fff;
}

.journeys-carousel {
    padding-right: 80px;
    position: relative;
    margin-top: 35px;
}

/**/
.journeys-carousel .owl-nav { position: absolute; top: 0; width: 100%; left: 0; right: 0; text-align: center;}
.journeys-carousel .owl-nav button.owl-prev, .journeys-carousel .owl-nav button.owl-next { width: 55px; height: 55px; border: 1px solid #a5a5a5; background-color: #fff; border-radius: 50%; color: #000; font-size: 30px; pointer-events: all; box-shadow: 0px 0px 5px 0px #ddd;}
.journeys-carousel .owl-nav button.owl-prev span { position: relative; top: 0px; font-size: 0; display: flex; align-items: center; justify-content: center;}
.journeys-carousel .owl-nav button.owl-prev span::after { content: '\f060'; color: #817979; font-family: FontAwesome; position: absolute; border-radius: 50%; font-size: 22px; }
.journeys-carousel .owl-nav button.owl-prev:hover span::after { content: '\f060'; color: var(--green2) !important; }
.journeys-carousel .owl-nav button.owl-next span { position: relative; top: 0px; font-size: 0; display: flex; align-items: center; justify-content: center;}
.journeys-carousel .owl-nav button.owl-next span::before { content: '\f061'; color: #817979; font-family: FontAwesome; position: absolute; border-radius: 50%; font-size: 22px; }
.journeys-carousel .owl-nav button.owl-next:hover span::before { content: '\f061'; color: var(--green2) !important; }
.journeys-carousel .owl-nav button.owl-prev { left: 0px; position: relative; transition: 0.6s;}
.journeys-carousel .owl-nav button.owl-next { right: 0px; position: relative; transition: 0.6s;}
.journeys-carousel .owl-nav { position: absolute; display: inline-flex; bottom: 0; align-items: end; justify-content: flex-end; width: 100%; pointer-events: none; margin: 0 auto; }
.journeys-carousel .owl-nav button.owl-prev:hover, .journeys-carousel .owl-nav button.owl-next:hover { background: var(--black); border-color: var(--black); color: #fff; transition: all .3s ease-in-out; }
.journeys-carousel .owl-nav {
    margin-top: 0;
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    width: auto;
    left: auto;
    justify-content: center;
}
/**/

/* ======================================================================= */
    /*  difference_sec start */
/* ======================================================================= */
.difference_sec {
    width: 100%;
}

.difference_sec .title3 {
    width: 35%;
}

.difference_sec .container {
    position: relative;
}

.difference_sec .btn01 {
    background-color: transparent;
    border: 1px solid var(--theme-color);
    color: var(--theme-color2);
    margin-top: 0;
    position: absolute;
    top: 30px;
    right: 0;
}

.difference_sec .btn01:after {
    background: var(--theme-color2);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px;
    background-image: url(../images/arrow2.png);
}

.difference_sec .btn01:hover {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
    color: var(--white);
}

.before-after-section {
    width: 100%;
}

.comparison-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1024/490;
    border-radius: 20px;
    overflow: hidden;
    cursor: ew-resize;
    background: #ddd;
    user-select: none;
}

.comparison-box img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.after-image {
    clip-path: inset(0 0 0 50%);
}

.divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    transform: translateX(-50%);
    background: #fff;
    z-index: 10;
    box-shadow: 0 0 8px rgba(0,0,0,.18);
}

.handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    box-shadow: 0 8px 22px rgba(0,0,0,.18);
    transition: .3s;
}

.comparison-box:hover .handle {
    transform: translate(-50%,-50%) scale(1.05);
}

.handle svg {
    width: 20px;
    height: 20px;
}

.label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px 18px;
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 40px;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,.12);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    z-index: 15;
}

.label.before {
    left: 22px;
}

.label.after {
    right: 22px;
}

@media(max-width:768px) {

    .comparison-box {
        border-radius: 18px;
    }

    .handle {
        width: 44px;
        height: 44px;
    }

    .label {
        font-size: 13px;
        padding: 8px 14px;
    }
}

/* ======================================================================= */
    /* specialists_sec start */
/* ======================================================================= */
.specialists_sec {
    width: 100%;
    padding: 0 0 120px;
}

.specialists_sec .title3 {
    width: 52%;
    margin: 0 auto;
}

.specialists_card {
    width: 100%;
    transition: 0.6s;
    position: relative;
}

.specialists_bg {
    width: 100%;
    height: 370px;
    background-color: #F2F0FD;
    border-radius: 15px;
    padding: 35px 15px 0;
    overflow: hidden;
    position: relative;
}

.specialists_pic {
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.specialists_pic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.6s;
}

.specialists_btm {
    width: 85%;
    margin: -50px auto 0;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,.1);
    text-align: center;
    padding: 18px 15px;
    position: absolute;
    left: 0;
    right: 0;
    transition: .4s ease;
}

.specialists_btm h5 {
    font-size: 18px;
    color: var(--black);
    margin-bottom: 5px;
}

.specialists_btm h6 {
    font-family: 'Satoshi-Medium';
    font-size: 14px;
    color: #424242;
    transition: .4s;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    max-height: 0;
    overflow: hidden;
    transition: all .4s ease;
}

.footer-social li {
    list-style: none;
}

.footer-social li a {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.footer-social li a:hover {
    background: #fff;
    color: var(--theme-color2) !important;
}

.footer-social li a::before {
    display: none;
}

.specialists_card:hover .specialists_btm {
    background: var(--theme-color2);
    padding-bottom: 25px;
    border-radius: 15px;
    margin: -100px auto 0;
}

.specialists_card:hover .specialists_btm h5,
.specialists_card:hover .specialists_btm h6 {
    color: #fff;
}

.specialists_card:hover .footer-social {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 60px;
}

.specialists_card:hover .specialists_pic img {
    transform: scale(1.05);
}

/* ======================================================================= */
    /* event_sec start start */
/* ======================================================================= */
.event_sec {
    width: 98%;
    max-width: 1920px;
    margin: 0 auto;
    background-color: var(--theme-color);
    border-radius: 20px;
}

.event_sec .title3 h3 {
    width: 50%;
    color: var(--white);
}

.event_sec .container {
    position: relative;
}

.event_sec .btn01 {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    margin-top: 0;
    position: absolute;
    top: 30px;
    right: 0;
}

.event_sec .btn01:after {
    background: var(--white);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px;
    background-image: url(../images/arrow.png);
}

.event_sec_pic1 {
    width: 100%;
    height: 420px;
    display: flex;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}

.event_sec_pic1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

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

.event_sec h6 {
    font-family: 'Satoshi-Medium';
    font-size: 15px;
    color: var(--white);
    margin-bottom: 5px;
}

.event_sec h4 {
    font-family: 'Satoshi-Medium';
    font-size: 28px;
    color: var(--white);
    width: 75%;
    margin-bottom: 25px;
}

.event_sec p {
    color: var(--white);
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.event_sec .row > .col-lg-6:nth-child(2) .event_sec_pic1 {
    height: 300px;
}

.event_sec .journeys_action {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    position: inherit;
    flex-basis: 50px;
    flex-shrink: 0;
    transition: 0.6s;
}

.event_sec .journeys_action:hover {
    background-color: #fff;
    border-color: #fff;
    color: var(--theme-color);
}

/* ======================================================================= */
    /* testimonials start */
/* ======================================================================= */
.testimonials {
    width: 100%;
}

.testimonials .title3 {
    width: 40%;
    margin: 0 auto;
}

.testimonials_in {
    width: 100%;
    margin-top: 35px;
    position: relative;
    z-index: 1;
}

.slidebox {
    width: 300px;
    height: 300px;
    position: relative;
    text-align: center;
    border-radius: 50%;
    background-color: #fff;
    padding: 50px 40px 45px;
    margin: 20px auto 15px;
    box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slidebox::before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    right: 0;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    border: 2px solid #D9D9D9;
    border-bottom-color: transparent;
}

.testimonials_slide .owl-item.active.center .slidebox::after {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    right: 0;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    border: 2px solid var(--theme-color);
    border-bottom-color: transparent;
}

.slidebox p {
    font-size: 15px;
    position: relative;
    display: inline-block;
    line-height: 20px;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
}

.slidebox p::before {
    content: '\201c';
    font-size: 32px;
    color: #000;
    font-family: serif;
    font-weight: bold;
    position: absolute;
    top: 0px;
    left: -1px;
}

.slidebox p::after {
    content: '\201c';
    font-size: 32px;
    color: #000;
    font-family: serif;
    font-weight: bold;
    position: absolute;
    bottom: 0px;
    transform: rotate(-180deg);
}

.testimonials_slide .owl-nav { position: absolute; top: -130px; width: 100%; left: 0; right: 0; text-align: center;}
.testimonials_slide .owl-nav button.owl-prev, .testimonials_slide .owl-nav button.owl-next { width: 45px; height: 45px; border: 1px solid #d72c25; box-shadow: 0 4px 10px rgb(0 0 0 / 10%); border-radius: 50%; color: #fff; font-size: 30px;}
.testimonials_slide .owl-nav button.owl-prev span { position: relative; top: 0px; font-size: 0; display: flex; align-items: center; justify-content: center;}
.testimonials_slide .owl-nav button.owl-prev span::after { content: '\f060'; color: #000 !important; font-family: FontAwesome; position: absolute; border-radius: 50%; font-size: 16px; }
.testimonials_slide .owl-nav button.owl-prev:hover span::after { content: '\f060'; color: #000 !important; }
.testimonials_slide .owl-nav button.owl-next span { position: relative; top: 0px; font-size: 0; display: flex; align-items: center; justify-content: center;}
.testimonials_slide .owl-nav button.owl-next span::before { content: '\f061'; color: #000 !important; font-family: FontAwesome; position: absolute; border-radius: 50%; font-size: 16px; }
.testimonials_slide .owl-nav button.owl-next:hover span::before { content: '\f061'; color: #000 !important; }
.testimonials_slide .owl-nav button.owl-prev { left: 0px; position: relative;}
.testimonials_slide .owl-nav button.owl-next { right: 0px; position: relative;}
.testimonials_slide .owl-nav { position: absolute; bottom: 10px; display: inline-flex; left: 0; justify-content: end; width: 100%;}
.testimonials_slide .owl-nav button.owl-prev:hover, .testimonials_slide .owl-nav button.owl-next:hover { background: #d72c25; border: 1px solid #d72c25; color: #fff; transition: all .3s ease-in-out;}
.owl-theme .owl-nav { margin-top: 0; }
.testimonials_slide .owl-nav button.owl-prev:hover span::after, .testimonials_slide .owl-nav button.owl-next:hover span::before {
    color: #fff !important;
    transition: 0.6s;
}

.owl-carousel .testimonials_slide .owl-dots.disabled, .owl-carousel .testimonials_slide .owl-nav.disabled {
    display: block !important;
}

.customer_box {
    width: 100%;
    position: relative;
    text-align: center;
}

.client_row {
    width: 100%;
    margin-top: -60px;
    position: relative;
    z-index: 1;
}

.client_circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
}

.client_circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.client_row h5 {
    font-size: 18px;
    color: var(--black);
    margin: 10px 0 5px;
    font-weight: 500;
}

.client_row h6 {
    font-family: "Google Sans", sans-serif;
    font-size: 15px;
    color: var(--black);
    margin-bottom: 0;
    font-weight: 300;
}

.testimonials_slide .owl-nav.disabled+.owl-dots {
    margin-top: 30px;
}

.testimonials_slide .owl-dots .owl-dot span {
    width: 25px;
    height: 6px;
    margin: 3px 3px;
    transition: 0.6s;
}

.testimonials_slide .owl-dots .owl-dot.active span, .testimonials_slide .owl-dots .owl-dot:hover span {
    background: var(--theme-color);
}

/* ======================================================================= */
    /* footer start */
/* ======================================================================= */
.footer_sec {
    width: 100%;
    background-color: #100C27;
    padding: 50px 0px 20px;
}

.footertop {
    background: #fff;
    padding: 40px 100px;
    margin-bottom: 55px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer_sec .title2 h2 {
    font-size: 40px;
    color: var(--black);
    margin: 0 0 10px;
    position: relative;
}

.footer_sec .title2 {
    width: 40%;
}

.footer_sec .btn01 {
    background-color: var(--theme-color);
}

.footertop img {
    max-width: 300px;
    object-fit: contain;
}

.joinarea {
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
}

.joinarea .form-control {
    width: 80%;
    height: 47px;
    border-radius: 25px;
    padding: 15px;
}

.joinarea .btn-primary {
    background: #FF9600;
    border: none;
    border-radius: 25px;
    padding: 6px 14px;
    margin-left: 10px;
    font-size: 20px;
    width: 200px;
}

.footer_logo {
    width: 100%;
    max-width: 125px;
    position: relative;
    display: inline-block;
    background: #fff;
    padding: 5px;
}

.footer_sec h5 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 20px;
}

.footer_sec ul {
    padding: 0px;
    margin: 0px;
}

.footer_sec ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.footer_sec ul li::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
    top: 10px;
    left: 0px;
}

.footer_sec ul li a {
    color: #FFF;
    font-size: 16px;
    transition: 0.6s;
}

.footer_sec ul li a:hover {
    color: var(--theme-color);
}

.footer_sec h6 {
    font-family: "Google Sans", sans-serif;
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
}

.footer_sec h3 {
    font-size: 80px;
    color: #fff;
}

.footerlogo {
    width: 250px;
    margin: 0 0px 20px;
}

.footer_box h5 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 20px;
}

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

.footer_box ul li {
    width: 100%;
}

.footer_box ul li a {
    font-size: 16px;
    color: #fff;
    padding-bottom: 10px;
    text-decoration: none;
    display: block;
    transition: 0.5s;
    position: relative;
}

.footer_box ul li a::before {
    content: "\f105";
    position: absolute;
    top: 0px;
    left: -20px;
    font-size: 14px;
    font-family: FontAwesome;
    color: #f7b650;
    transition: 0.5s;
}

.footer_box ul li a:hover {
    color: #f7b650;
}

.socialmedia {
    position: relative;
}

.socialmedia ul {
    padding: 0px;
    text-align: right;
    position: relative;
    z-index: 9;
}

.socialmedia ul li {
    display: inline-block;
    list-style: none;
    padding-left: 0px;
    margin: 0;
}

.socialmedia ul li::after {
    display: none;
}

.socialmedia ul li a {
    width: 42px;
    height: 42px;
    display: flex;
    background-color: transparent;
    justify-content: center;
    border: 1px solid #fff;
    align-items: center;
    font-size: 20px;
    color: #fff;
    border-radius: 7px;
    margin: 0px 2px;
    transition: all .3s ease-in-out;
    fill: #fff;
}

.socialmedia ul li a:hover {
    background-color: #fff;
    color: var(--theme-color2);
    fill: var(--theme-color2);
}

.copyright {
    margin-top: 35px;
    border-top: 2px dashed #e6e6e661;
    padding-top: 35px;
}

.copyright h6 {
    font-family: "Google Sans", sans-serif;
    font-size: 16px;
    color: #fff;
    margin: 0;
    font-weight: 300;
}

.copyright h6 span {
    color: var(--theme-color);
}

/* ======================================================================= */
    /* inner_ban start */
/* ======================================================================= */
.inner_ban {
    width: 98%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 80px 0;
    height: 100%;
    border-radius: 20px;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.inner_ban::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.71) 0%,
        rgba(255, 255, 255, 0) 50%,
        rgba(255, 255, 255, 0) 100%
    );
}

.inner_ban .title1 h1 {
    font-size: 55px;
    color: #000;
    margin-bottom: 5px;
}

.breadcrumb {
    font-family: 'Satoshi-Regular';
    font-size: 16px;
    color: var(--white);
    position: relative;
    margin-bottom: 0;
}

.breadcrumb a, .breadcrumb-item.active, .breadcrumb-item+.breadcrumb-item::before {
    color: var(--black);
}

/* ======================================================================= */
    /* about_sec1 start start */
/* ======================================================================= */
.about_sec1 {
    width: 100%;
}

.about_sec1pic {
    width: 90%;
    height: 100%;
    display: flex;
    position: relative;
}

.about_sec1pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
    overflow: hidden;
}

.about_sec1pic:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: bottom left;
    background-image: url(../images/shape6.jpg);
    mix-blend-mode: screen;
}

.expertise {
    width: 150px;
    height: 150px;
    text-align: center;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 12px;
    position: absolute;
    right: 20px;
    bottom: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
    z-index: 22;
}

.expertise h4 {
    font-size: 35px;
    color: #000;
}

.expertise h6 {
    font-family: 'Satoshi-Regular';
    font-size: 14px;
    line-height: normal; 
}

/*.expertise:before {
    content: '';
    position: absolute;
    top: 0px;
    left: -60px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: bottom left;
    background-image: url(../images/beforeshape.webp);
    z-index: -1;
}*/

.about_sec1pic2 {
    width: 90%;
    height: 100%;
    margin-left: auto;
    display: flex;
    position: relative;
    overflow: hidden;
}

.about_sec1pic2 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.6s;
}

/* ======================================================================= */
    /*  our_mission start */
/* ======================================================================= */
.our_mission {
    width: 98%;
    max-width: 1920px;
    margin: 0 auto;
    background-color: var(--theme-color2);
    border-radius: 20px;
}

.our_missionpic {
    width: 95%;
    height: 450px;
    display: flex;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}

.our_missionpic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.our_mission .title3 h3 {
    color: #fff;
    margin-bottom: 35px;
}

.our_mission .title3 p {
    color: #fff;
    width: 85%;
}

.bx_icon {
    width: 65px;
    height: 65px;
    background-color: #ebe7ff26;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: #fff;
    text-align: center;
}

.our_mission .title3 h5 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 5px;
}

/* ======================================================================= */
    /*  pain_point start */
/* ======================================================================= */
.pain_point {
    width: 100%;
}

.point_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 70px;
}

.point_card {
    width: 100%;
    position: relative;
    display: inline-block;
}

.point_card:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(145%, -550%);
    width: 90px;
    height: 20px;
    background-image: url(../images/arrow.webp);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
}

.point_card:last-child:after {
    display: none;
}

.point_circle {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background-color: var(--theme-color);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.point_circle img {
    max-width: 40px;
    object-fit: contain;
}

.point_card h5 {
    font-size: 20px;
    color: var(--black);
    text-align: center;
    width: 75%;
    margin: 0 auto 10px;
}

.point_card p {
    color: var(--paragraph);
    text-align: center;
    margin: 0;
}

.no_circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--theme-color2);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    font-size: 18px;
    color: var(--white);
    font-weight: 600;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(70%, -50%);
}

/* ======================================================================= */
    /* patient_journeys start */
/* ======================================================================= */
.patient_journeys {
    width: 98%;
    max-width: 1920px;
    margin: 0 auto;
    background-color: var(--theme-color);
    border-radius: 20px;
}

.patient_journeys h5 {
    font-size: 21px;
    color: #fff;
    margin-bottom: 10px;
}

.patient_journeys p {
    color: #fff;
    margin-bottom: 0;
}

.patient_journeys .bx_icon img {
    max-width: 38px;
    object-fit: contain;
}

.patient_journeys .our_missionpic {
    width: 95%;
    height: 350px;
    display: flex;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}

.patient_journeys .our_missionpic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.patient_journeys .title3 h3  {
    margin-bottom: 10px;
}

.patient_journeys .title3 {
    margin-bottom: 35px;
}

/* ======================================================================= */
    /* asked_sec start */
/* ======================================================================= */
.asked_sec {
    width: 100%;
}

.asked_sec .headertext {
    width: 40%;
    margin: 0 auto;
}

.asked_sec .accordion { width: 100%;  position: relative; z-index: 1;}
.asked_sec .accordion-item { border: none; margin: 7px 0; background-color: transparent; }
.asked_sec .accordion-item:last-of-type>.accordion-header .accordion-button.collapsed { border-bottom-right-radius: 0; border-bottom-left-radius: 0; }
.asked_sec .accordion-item:first-of-type>.accordion-header .accordion-button { border-top-left-radius: 0; border-top-right-radius: 0; }
.asked_sec .accordion-item:first-of-type { border-top-left-radius: 0; border-top-right-radius: 0; }
.asked_sec .accordion-item:last-of-type { border-bottom-right-radius: 0; border-bottom-left-radius: 0; }
.asked_sec .accordion-button:not(.collapsed) { box-shadow: none; color: #0FB3D0; background-color: transparent; }
.asked_sec .accordion-button { padding: 15px; font-size: 22px; color: #000;  background-color: transparent; }
.asked_sec .accordion-button span {
    color: #e65151;
    margin-right: 0px;
}
.asked_sec .accordion-body { padding: 0 15px 15px 15px; }
.asked_sec .accordion-body p { width: 100%; margin: 0 auto; padding: 0px; margin-bottom: 15px; }
.asked_sec .accordion-body h6 { font-size: 18px; color: #000; margin-bottom: 10px; }
.asked_sec .accordion-body ul {
    margin: 0 0 15px;
}
.asked_sec .accordion-body ul li {
    width: 100%;
    font-size: 16px;
    color: #000;
    padding: 0 0 3px 15px;
    position: relative;
}

.asked_sec .accordion-body ul li:before { 
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    background-color: #000;
    border-radius: 50%;
}

.asked_sec .accordion-button::after { background-color: #ececec; padding: 4px; border-radius: 50%; width: 30px; height: 30px; background-position: 8px 8px; background-size: 15px; }
.asked_sec .accordion-button:not(.collapsed)::after { background-color: #c3f5ff5c; }
.asked_sec .accordion-item { border-radius: 0px; overflow: hidden; border: none !important; box-shadow: 0 1px 10px rgb(0 0 0 / 10%);}
.asked_sec .accordion-item:first-of-type { border-top-left-radius: 15px; border-top-right-radius: 15px; }
.asked_sec .accordion-item:last-of-type { border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; }

.asked_sec .accordion-item:last-of-type {
    box-shadow: 0 1px 10px rgb(0 0 0 / 10%);
}

.asked_sec .accordion-item {
    margin: 0 0 15px;
    background: transparent;
    border-radius: 15px;
}

.asked_sec .accordion-button {
    font-family: 'Satoshi-Regular';
    padding: 15px;
    color: #000;
    background: transparent;
    box-shadow: none;
    font-size: 22px;
    gap: 10px;
}

.asked_sec .accordion-button:not(.collapsed) {
    color: #e65151;
}

.asked_sec .accordion-button::after {
    background-color: #ececec;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    background-size: 14px;
    background-position: center;
}

.asked_sec .accordion-button:not(.collapsed)::after {
    background-color: #e6515163;
}

.asked_sec .accordion-body {
    padding: 0 15px 15px;
}

.asked_sec .accordion-body ul li {
    font-size: 16px;
    padding-left: 15px;
    position: relative;
}

.asked_sec .accordion-body ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    background: #000;
    border-radius: 50%;
}

/* ======================================================================= */
    /* gallery_sec start */
/* ======================================================================= */
.gallery_sec {
    width: 100%;
}

.gallery_sec .nav-link {
    font-family: 'Satoshi-Regular';
    border: 1px solid var(--theme-color);
    font-size: 16px;
    color: var(--white);
    min-width: 150px;
    text-align: center;
    background-color: var(--theme-color);
}

.gallery_sec .nav-pills .nav-link {
    border-radius: 30px;
}

.gallery_sec .nav {
    gap: 10px;
    margin-bottom: 25px;
    align-items: center;
    justify-content: center;
}

.gallery_sec .nav-pills .nav-link.active, .gallery_sec .nav-pills .show>.nav-link {
    color: var(--white);
    background-color: var(--theme-color2);
    border-color: var(--theme-color2);
}

.gallery_card {
    width: 100%;
    background-color: #E7E3FF;
    border-radius: 15px;
    padding: 8px;
}

.gallery_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 8px;
}

.gallery_gridpic {
    width: 100%;
    height: 300px;
    display: flex;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.gallery_gridpic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.gallery_gridpic:hover img {
    transform: scale(1.2);
}

.gallery_tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #fff;
    border-radius: 30px;
    text-align: center;
    padding: 3px 15px;
    font-family: 'Satoshi-Regular';
    font-size: 14px;
    color: #000;
    min-width: 70px;
}

/* ======================================================================= */
    /* contact_sec start */
/* ======================================================================= */
.contact_sec {
    width: 100%;
}

.contact_innerbox {
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: inset 6px 4px 20.4px rgb(0 0 0 / 10%);
}

.contact_sec h2 {
    position: relative;
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 35px;
}

.contact_sec h2::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100px;
    height: 1px;
    background-image: url(../images/line.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.form-group label {
    font-family: 'Satoshi-Regular';
    color: var(--black);
    font-size: 15px;
    font-weight: 400;
    display: block;
    margin-bottom: 8px;
}

.form-group label sup {
    color: #FF0000;
}

.form-control {
    font-family: 'Satoshi-Regular';
    height: 60px;
    background-color: #F3F3F5;
    border: 1px solid #F3F3F5;
    font-size: 16px;
    color: var(--black);
    border-radius: 8px;
}

.form-control::placeholder {
    color: #626262;
}

.form-control:focus {
    box-shadow: none;
    border-color: #F3F3F5;
    background-color: #F3F3F5;
}

.contact_sec .btn01 {
    border-radius: 8px;
    position: relative;
    padding: 12px 25px;
    margin-top: 15px;
}

.contact_sec .btn01:after {
    display: none;
}

.form-group {
    margin-bottom: 15px;
}

textarea.form-control {
    resize: none;
    height: 278px;
    padding: 20px;
}

.form-select {
    font-family: 'Satoshi-Regular';
    height: 60px;
    background-color: #F3F3F5;
    border: 1px solid #F3F3F5;
    font-size: 16px;
    color: var(--black);
    border-radius: 8px;
}

.contact_sec .contact-map {
    height: 350px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 24px;
}

.contact_sec .contact-map iframe {
    width: 100%;
    height: 100%;
}

.contact_sec .info_box {
    position: relative;
    padding: 0;
    padding-left: 30px;
}

.contact_sec .info_box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--theme-color);
    border-radius: 30px;
}

.contact_sec p {
    color: var(--paragraph);
}

.contact_sec p a {
    color: var(--paragraph);
}

.contact_sec h5 {
    font-size: 18px;
    color: var(--paragraph);
    margin-bottom: 8px;
}

.info_box .info_card-img {
    width: 50px;
    height: 50px;
    background-color: #4d31c12b;
    border-radius: 50%;
    text-align: center;
    justify-content: center;
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.info_box .info_card-img img {
    max-width: 20px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(13%) sepia(12%) saturate(7390%) hue-rotate(230deg) brightness(97%) contrast(106%);
}

/* ======================================================================= */
    /*  refer_sec start */
/* ======================================================================= */
.refer_sec {
    width: 100%;
}

.refer_secbox {
    background-color: var(--theme-color2);
    border-radius: 30px;
    width: 90%;
    margin: 0 auto 25px;
    padding: 55px;
}

.refer_secbox h2 {
    font-family: 'Satoshi-Regular';
    font-size: 38px;
    color: #fff;
    margin-bottom: 35px;
    text-align: center;
    text-decoration: underline;
}

.refer_secbox .form-control, .refer_secbox .form-select {
    height: 55px;
    background-color: #ffffff08;
    border: 1px solid #ffffff63;
    color: var(--white);
}

.refer_secbox .textfild1 {
    height: 70px;
    background-color: #ffffff08;
    border: 1px solid #ffffff63;
    color: var(--white);
    width: 100%;
    font-size: 16px;
    color: var(--white);
    border-radius: 8px;
    padding: .375rem .75rem;
}

.refer_secbox .textfild2 {
    height: 130px;
}

.refer_secbox .form-control::placeholder, .refer_secbox .textfild1::placeholder {
    color: #ffffffad;
}

.refer_secbox .form-group label {
    color: var(--white);
}

.refer_secbox .form-group {
    margin-bottom: 7px;
}

.date-input {
    color: #fff;
}

.date-input::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(100);
    cursor: pointer;
    opacity: 1;
}

.date-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.date-input::-webkit-calendar-picker-indicator:hover {
    filter: invert(1) brightness(120);
}

.refer_secbox .custom-select {
    width: 100%;
    height: 55px;
    padding: 0 45px 0 15px;
    color: #fff;
    background-color: transparent;
    border: 1px solid #ffffff63;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5L8 12l6.5-6.5' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

.refer_secbox .custom-select option {
    color: var(--theme-color2);
    background: #fff; 
}

.refer_secbox .btn01 {
    color: var(--white);
    background-color: var(--theme-color);
}

p br {
    display: none;
}
.update_card .btn01:after {
    display: none;
}













/* ======================================================================= */
    /*  whyjourneys start */
/* ======================================================================= */


/* ======================================================================= */
    /* appointment_sec start */
/* ======================================================================= */


























