* {
    list-style: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,
body {
    ::-webkit-scrollbar {
        display: none;
        scroll-behavior: smooth;
    }
}

body {
    overflow-x: hidden !important;
}


/* ****************** */
/* Cursor style  */
/* ****************** */
.cursor-dot{

    height: 15px;
    width: 15px;
    background: var(--pink-500);
}
.cursor-outline{
    height: 50px;
    width: 50px;
    border: 2px solid var(--pink-300);
    filter: blur(1px);
}
.cursor-dot,
.cursor-outline{
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 100000000000000 !important;
    pointer-events: none;
}
/* ****************** */
/* Cursor end */
/* ****************** */

:root {
    --white-100: #fff;
    --white-200: #e4e6e7;
    --white-300: #c9cccf;
    --white-400: #a1a6aa;
    --white-500: #6d7478;
    --black-100: #181f25;
    --black-200: #12171c;
    --black-300: #0c0f13;
    --black-400: #060809;
    --black-500: #020303;
    --night-100: #253041;
    --night-200: #1e2634;
    --night-300: #161d27;
    --night-400: #0f131a;
    --night-500: #070a0d;
    --pink-100: #f6faff;
    --pink-200: rgb(199, 227, 255);
    --pink-300: #87c3ff;
    --pink-400: #70b8ff;
    --pink-500: #4a8cce;
    --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

#google_translate_element {
    height: 50px !important;
    display: flex !important;
    align-items: center !important;

}

#google_translate_element img {
    display: flex !important;
    mix-blend-mode: hard-light;
}

.goog-te-gadget .goog-te-combo {
    margin: 4px 0;
    outline: none !important;
    border: none !important;
    padding: 3px !important;
}

.goog-te-gadget {
    /* display: none !important; */
    font-family: 'Public Sans', sans-serif;
    /* font-size: 11px; */
    color: #666;
    white-space: nowrap;
    font-family: arial;
    font-size: 11px;
    height: 28px !important;
    color: #666;
    white-space: nowrap;
    overflow: hidden !important;
}

.goog-te-gadget .goog-te-combo {
    margin: 4px 0;
    background-color: var(--white-100);
    outline: none !important;
    border: none !important;
    padding: 3px !important;
}
.goog-te-gadget .goog-te-combo {
    margin: 4px 0;
    width: 128px;
    color: var(--black-100) !important;
    background: var(--white-100);
    outline: none !important;
    border: none !important;
    padding: 3px !important;
}
.darkmode .goog-te-gadget .goog-te-combo {
    margin: 4px 0;
    width: 128px;
    color: var(--white-100) !important;
    background: var(--night-300);
    outline: none !important;
    border: none !important;
    padding: 3px !important;
}
.go-back{
    color:var(--pink-300);
}
/* after show google translate then hide google navbar  */
.VIpgJd-ZVi9od-ORHb {
    display: none !important;
    margin: 0;
    background-color: #e4effb00;
    overflow: hidden;
}
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf-ti6hGc {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    left: -14px;
    display: none !important;
    top: -14px;
}
body table{
    display: none !important;
}
.VIpgJd-ZVi9od-ORHb-OEVmcd {
    left: 0;
    top: 0;
    height: 39px;
    width: 100%;
    z-index: 10000001;
    position: fixed;
    border: none;
    border-bottom: none !important;
    margin: 0;
    box-shadow: none !important;
}
.VIpgJd-ZVi9od-ORHb-OEVmcd {
    display: none !important;
    left: 0;
    top: 0;
    height: 39px;
    width: 100%;
    z-index: 10000001;
    position: fixed;
    border: none;
    border-bottom: 1px solid #6B90DA;
    margin: 0;
    box-shadow: 0 0 8px 1px #999;
}

/* NAVBAR CSS */
@import url('https://fonts.googleapis.com/css2?family=Cedarville+Cursive&family=Public+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600&display=swap');
*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}

body {
    font-family: 'Public Sans', sans-serif;
    font-size: clamp(1rem, calc(0.97rem + 0.14vw), 1.09rem);
    font-weight: normal;
    line-height: 1.5;
    color: var(--black-300);
    background-color: var(--white-100);
}

body.darkmode {
    color: var(--white-100);
    background-color: var(--night-400);
}


main {
    overflow: hidden;
}

a,
button {
    cursor: pointer;
    user-select: none;
    border: none;
    outline: none;
    background: none;
}

img,
video {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

@keyframes slideLeft {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}

@keyframes slideRight {
    0% {
        opacity: 1;
        transform: translateX(0%);
    }

    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

.section {
    margin: 0 auto;
    padding: 6rem 0 2rem;
}

.container {
    /* max-width: 75rem; */
    height: auto;
    margin-inline: auto;
    /* padding-inline: 1.5rem; */
}

.centered {
    text-align: center;
    vertical-align: middle;
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    user-select: none;
    border-radius: 0.25rem;
    text-transform: capitalize;
    transition: all 0.3s ease;
}

.btn-primary {
    padding: 0.75rem 1.5rem;
    color: var(--white-100);
    background-color: var(--pink-500);
    box-shadow: var(--shadow-medium);
}

.btn-darken {
    padding: 0.75rem 1.5rem;
    color: var(--white-100);
    background-color: var(--night-300);
    box-shadow: var(--shadow-medium);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 100;
    padding: 0px 10px 0px 7px;
    margin: 0 auto;
    background-color: var(--white-100);
    box-shadow: var(--shadow-medium);
}

.darkmode .header {
    background-color: var(--night-300);
}
 *,a {
    text-decoration: none;
    list-style: none;
}
.brand {
    line-height: 1.5;
    order: 1;
}

.navbar {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 5rem;
    margin: 0 auto;
}

.navbar-left {
    display: flex;
    align-items: center;
    flex: 0 0 17%;
}

.navbar-center {
    display: flex;
}

.navbar-right {
    display: flex;
    flex: 1 0 17%;
    align-items: center;
    justify-content:center;
    column-gap: 1.5rem;
}

@media only screen and (max-width: 992px) {

    .navbar-left,
    .navbar-right {
        flex: 1 0 0;
    }

    .navbar-right {
        align-items: center;
    }

    .navbar-center {
        flex: 0 0 100%;
        order: 3;
        align-items: center;
    }
}

@media only screen and (max-width: 992px) {
    .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 75%;
        height: 100%;
        z-index: 100;
        overflow: hidden;
        transform: translate(-100%);
        background-color: var(--white-100);
        transition: all 0.4s ease-in-out;
    }

    .menu.is-active {
        transform: translate(0%);
    }

    .darkmode .menu {
        background-color: var(--night-300);
    }
}

.menu-header {
    display: none;
    box-shadow: var(--shadow-medium);
}

.menu-item {
    display: inline-block;
    line-height: 1.5;
    padding-right: 1.25rem;
}

.menu-link {
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    line-height: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--black-300);
    text-transform: capitalize;
    transition: all 0.25s ease;
}
.menu-link:hover{
    color: var(--pink-500);
}
.menu-link:is(:active, :focus){
    color: var(--pink-500);
}

.menu-link>i.bx {
    font-size: 1.35rem;
    margin-left: 0.25rem;
    transform: rotate(90deg);
}

.darkmode .menu-link {
    color: var(--white-100);
}

.menu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
    font-size: 1.45rem;
    color: var(--black-300);
    transition: all 0.25s ease;
}

.darkmode .menu-icon {
    color: var(--white-100);
}

@media only screen and (min-width: 993px) {
    .menu-dropdown:hover>.submenu {
        opacity: 1;
        visibility: visible;
        margin-top: 1rem;
    }
}

@media only screen and (max-width: 992px) {
    .menu-header {
        position: relative;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        height: 4rem;
        z-index: 110;
        visibility: hidden;
        background: transparent;
    }

    .menu-header.is-active {
        visibility: visible;
        background-color: var(--white-100);
    }

    .menu-header.is-active>.menu-arrow {
        display: block;
    }

    .darkmode .menu-header.is-active {
        background-color: var(--night-100);
    }

    .menu-arrow {
        display: none;
        cursor: pointer;
        width: 3rem;
        height: 4rem;
        text-align: center;
    }

    .menu-arrow>i.bx {
        font-size: 1.5rem;
        line-height: 4rem;
        color: var(--black-300);
        transition: all 0.25s ease;
    }

    .darkmode .menu-arrow>i.bx {
        color: var(--white-100);
    }

    .menu-title {
        font-family: inherit;
        font-size: inherit;
        font-weight: 500;
        line-height: inherit;
        text-transform: capitalize;
        color: var(--black-300);
    }

    .darkmode .menu-title {
        color: var(--white-100);
    }

    .menu-inner {
        height: 100%;
        margin-top: -3rem;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .menu-item {
        display: block;
        line-height: 1;
        padding-inline: 0;
    }

    .menu-link {
        justify-content: space-between;
        height: 2.5rem;
        line-height: 2.5rem;
        padding-inline: 1.25rem;
    }

    .menu-link>i.bx {
        margin-left: 0.5rem;
        transform: rotate(0deg);
    }
}

.submenu {
    position: absolute;
    width: 100%;
    height: auto;
    margin-top: 1.75rem;
    padding: 1rem 2rem;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    border-radius: 0.25rem;
    border-top: 2px solid var(--pink-400);
    background-color: var(--white-100);
    box-shadow: var(--shadow-medium);
    transition: all 0.25s ease-in-out;
}

.darkmode .submenu {
    border-top: 2px solid var(--pink-300);
    background-color: var(--night-300);
}

ul{
    padding: 0;
    margin: 0 !important;
}
.submenu-inner {
    flex: 0 0 25%;
    padding: 0 1rem;
}

.submenu-title {
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    line-height: 1;
    padding: 0.75rem 0;
    color: var(--pink-500);
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.darkmode .submenu-title {
    color: var(--pink-300);
}

.submenu-item {
    display: block;
    line-height: 1;
    margin: 0 ;
}

.submenu-link {
    margin-left: 0;
    display: inline-block;
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    line-height: inherit;
    padding: 0.75rem 0;
    white-space: nowrap;
    text-transform: capitalize;
    color: var(--black-300);
    transition: all 0.25s ease-in-out;
}

.darkmode .submenu-link {
    color: var(--white-100);
}

.submenu-image {
    display: block;
    width: 100%;
    height: 150px;
    object-fit: cover;
    margin-block: 0.5rem;
    object-fit: cover;
}

@media only screen and (max-width: 992px) {
    .submenu {
        position: absolute;
        display: none;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        min-width: auto;
        margin: 0;
        padding: 1rem;
        padding-top: 4rem;
        opacity: 1;
        overflow-y: auto;
        visibility: visible;
        box-shadow: none;
        transform: translateX(0%);
    }

    .submenu.is-active {
        display: block;
    }

    .submenu-inner {
        flex: 0 0 100%;
        padding: 0rem;
    }

    .submenu-list {
        margin-bottom: 1rem;
    }

    .submenu-link {
        display: block;
    }

    .submenu-image {
        margin-top: 0;
    }
}

.megamenu {
    left: 50%;
    width: 100%;
    height: auto;
    margin: 0 auto;
    transform: translateX(-50%);
}

.megamenu a:hover{
    color: var(--pink-500);
}
.megamenu-column-1 {
    left: 43%;
    max-width: 15rem;
    width: 100%;
    height: auto;
}

.megamenu-column-4 {
    display: flex;
    flex-wrap: wrap;
    max-width: 62rem;
    height: auto;
    margin: 0 auto;
}

@media only screen and (max-width: 992px) {
    .megamenu {
        position: absolute;
        display: none;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        min-width: auto;
        margin: 0;
        padding: 1rem;
        padding-top: 4rem;
        opacity: 1;
        overflow-y: auto;
        visibility: visible;
        transform: translateX(0%);
        box-shadow: none;
    }
}

.switch {
    position: relative;
    display: block;
    cursor: pointer;
    user-select: none;
    margin-right: 0;
}

.switch-light,
.switch-dark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-in;
}

.switch-light {
    font-size: 1.3rem;
    visibility: visible;
    color: var(--black-300);
}

.darkmode .switch-light {
    font-size: 0rem;
    visibility: hidden;
}

.switch-dark {
    font-size: 0rem;
    visibility: hidden;
    color: var(--white-100);
}

.darkmode .switch-dark {
    font-size: 1.3rem;
    visibility: visible;
}

.overlay {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.7);
    transition: all 0.45s ease-in-out;
}

@media only screen and (max-width: 992px) {
    .overlay.is-active {
        opacity: 1;
        visibility: visible;
    }
}

.burger {
    position: relative;
    display: block;
    cursor: pointer;
    width: 1.6rem;
    height: 1rem;
    margin-right: 1rem;
    opacity: 0;
    visibility: hidden;
    background: transparent;
}

@media only screen and (max-width: 992px) {
    .burger {
        opacity: 1;
        visibility: visible;
    }
}

.burger-line {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 2px;
    opacity: 1;
    border-radius: 1rem;
    background: var(--black-400);
}

.darkmode .burger-line {
    background: var(--white-100);
}

.burger-line:nth-child(1) {
    top: 0px;
}

.burger-line:nth-child(2) {
    top: 0.5rem;
    width: 70%;
}

.burger-line:nth-child(3) {
    top: 1rem;
}

/* // Progress Bar */
.progress {
    position: absolute;
    border-radius: 0;
    bottom: -4px !important;
    left: 0;
    height: 4px;
    background-color: var(--pink-500);
    transition: all linear 0.1s;
    min-width: 1%;
}

/* modal registration button css */
.darkmode .modal-content{
    background: var(--night-300);
}
.darkmode .modal input{
    background: var(--black-200);
    color: var(--white-100);
}
.darkmode .btn-close{
    color: white;
    fill: #fff;
}
.submit_btn{
    margin: 1rem 0;
    height: 30px;
    width: 100%;
    background: var(--pink-500);
    color: var(--white-100);
}
/* Banner.css */
/* Hero Video */
.outter.hero-video {
    width: 100%;
    height: 98vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-video .video-container {
    height: 98vh;
    width: 100%;
    display: flex;
    position: relative;
    overflow: hidden;
}

@media (max-width: 767px) {
    .hero-video .video-container {
        height: 98vh;
    }
}



.hero-video video {
    object-fit: cover;
    position: absolute;
    height: 98vh;
    width: 100%;
    top: 0;
    left: 0;
}

@media (max-width: 767px) {
    .hero-video video {
        height: 640px;
    }
}

.hero-video .video-container:after {
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;

    z-index: 1;
}

.hero-video .callout {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: left;
    position: relative;
    z-index: 10;
    width: 90%;
    margin: auto;
}

.text-1 {
    color: var(--white-100);
    font-weight: 900;
    font-size: 50px;
    text-shadow: 4px 4px 4px var(--black-200);
}

.custom-btn {
    height: 40px;
    background-color: var(--pink-500);
    width: 130px;
    transform: skew(0deg);
    transition: all .3s;
    color: white;
}

.darkmode .custom-btn {
    background-color: var(--pink-400);
}


.right_side_banner h2 {
    color: var(--pink-500);
}

.right_side_banner p {
    color: var(--white-100);
}

.right_side_banner .custom-btn:hover {
    transform: scale(1.0512);
    box-shadow: var(--shadow-small);
    height: 40px;
    background-color: var(--pink-300);
    width: 130px;
    transition: all .3s;
}

/* Form input label css */
.form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: max-content;
    padding: 2rem;
    width: 90%;
    row-gap: 16px;
   background:rgba(255, 255, 255, 0.237);
    border-radius: 10px;
    backdrop-filter: blur(3px);
}

.select2.select2-container {
    width: 100% !important;
    height: 40px !important;
    
}

.content {
    width:100% !important;
height:40px;
}

.select2.select2-container .select2-selection {
    border: 1px solid var(--pink-300);
    background: rgba(0, 0, 0, 0.272);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    height: 40px;
    margin-bottom: 15px;
    outline: none;
    transition: all .15s ease-in-out;
}

.select2.select2-container .select2-selection .select2-selection__rendered {
    color: #ffffff;
    font-weight:100;
    line-height: 40px !important;
    padding-right: 33px;
}

.select2.select2-container .select2-selection .select2-selection__arrow {
    background: transparent;
    border-left: 1px solid var(--pink-300);
    -webkit-border-radius: 0 3px 3px 0;
    -moz-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0;
    height: 40px !important;
    width: 41px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #fff transparent transparent transparent !important;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0;
}
.select2.select2-container.select2-container--open .select2-selection.select2-selection--single {
    background: rgba(0, 0, 0, 0.084)
}

.select2.select2-container.select2-container--open .select2-selection.select2-selection--single .select2-selection__arrow {
    -webkit-border-radius: 0 3px 0 0;
    -moz-border-radius: 0 3px 0 0;
    border-radius: 0 3px 0 0;
}
/* dropdown below css */
.select2-container--open .select2-dropdown--below {
    border-top: none;
    color: white;
    backdrop-filter: blur(13px);
    background: rgba(15, 15, 15, 0.685) !important;
    /* background: transparent !important; */
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    outline: none !important;
    color: white;
    border: 1px solid var(--pink-300);
    background-color: rgba(0, 0, 0, 0.356) !important;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--pink-300) !important;
    color: white;
}
.select2-container--default .select2-results__option--selected {
    background-color:var(--white-300) !important;
    color: var(--night-100) !important;
}
.select2.select2-container.select2-container--focus .select2-selection {
    border: 1px solid #34495e;
}

.form button {
    width: 100%;
    height: 40px;
    color: white;
    background-color: var(--pink-500);
}

.darkmode .form button {
    background-color: var(--pink-300);
}

@media screen and (max-width:768px) {
    .form {
        width: 100%;
        margin-top: 3rem;
        padding: 1rem;
    }

    .text-1 {
        color: var(--mainColor);
        font-weight: 900;
        font-size: 33px;
        text-shadow: var(--SmallShadow);
    }

    .right_side_banner h2 {
        font-size: 16px;
        color: white;
    }
}

@media screen and (max-width:340px) {
    .text-1 {
        color: var(--mainColor);
        font-weight: 900;
        font-size: 25px;
        text-shadow: var(--SmallShadow);
    }

    .right_side_banner h2 {
        font-size: 16px;
        color: white;
    }
}

/* Working Steps.css */
.level {
    background-color: var(--white-200);
    padding: 5rem 0;
    margin: 0 !important;
  }

  .title {
    color: inherit;
    width: 200px;
    height: 36px;
  }

  box-icon {
    height: 40px;
    width: 40px;

  }
#working-steps {
    margin: calc(3rem - 2vh) 0;
}

.step {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* column-gap: 16px; */
    height: 250px;
    margin: 12px 0px;
    padding: calc(3.5rem - 1vw) 1rem !important;
    background: linear-gradient(95deg, var(--pink-200), var(--white-100));
    text-align: start;
    border: 1px solid var(--white-200);
    border-radius: 10px;
    backdrop-filter: blur(4px);
    position: relative;
    transition: all .3s;
}

.step:hover {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.306);
    scale: 1.03;
    transition: all .3s;
}

.step::after {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    content: attr(data-step);
    height: 40px;
    width: 120px;
    background: var(--pink-400);
    color: var(--white-100);
    border-radius: 15px 0px 10px 0px;
    bottom: 0;
    right: 0;
    border: 2px solid var(--white-200);
}

.step-1 {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.233), transparent, transparent);
    border-color: rgba(255, 0, 0, 0.299);
}

.step-2 {
    background: linear-gradient(135deg, rgba(0, 200, 255, 0.347), transparent, transparent);
    border-color: rgba(0, 157, 255, 0.299);
}

.step-3 {
    background: linear-gradient(135deg, rgba(255, 0, 247, 0.237), transparent, transparent);
    border-color: rgba(255, 0, 242, 0.299);
}

/* about us css here */
.about_image {
    background: url(../img/others/about-1.jpg);
    height: 400px;
    width: 100%;
    /* background-attachment: fixed; */
    background-size: cover ;
    /* border-radius: 26% 74% 22% 78% / 100% 0% 100% 0%; */
    overflow: hidden;
}
.background-image{
    height: 50vh;
    width: 100%;
    background: url(../img/others/about-1.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.row {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(0 * var(--bs-gutter-x)) !important;
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

  /* JOIN US.css */
  /* background image join us */
#joinus {
    height: 100vh;
    width: 100%;
    background: rgba(0, 0, 0, 0.616) url(../img/exterior/glass/g-3.jpg);
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    background-blend-mode: soft-light;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
}

#joinus form {
    background: transparent !important;
    margin: 0;
    backdrop-filter: blur(0px) !important;
    padding: 15px !important;
}

#joinus .card {
    height: auto;
    padding: 10px 0 !important;
    background-color: transparent;
    background: linear-gradient(rgba(255, 255, 255, 0.151), rgba(255, 255, 255, 0.151), rgba(255, 255, 255, 0.297));
    backdrop-filter: blur(3px);
    color: var(--white-100);
}

#joinus .card img {
    object-fit: cover;
    object-position: center bottom;
    height: 399px;
    border-right: 10px solid var(--pink-400);
}

/* form css here */
.form-inputs {
    height: 40px;
    width: 100%;
    outline: none;
    border: none;
    padding: 0px 20px;
    background-color: rgba(0, 0, 0, 0.196);
    border-radius: 5px;
}

/* toasts fade or show css here */
#toast {
    position:fixed !important;
    visibility:hidden;
    max-width: 50px;
    height: 50px;
    /*margin-left: -125px;*/
    margin: auto;
    text-align: center;
    border-radius: 2px;
    z-index: 1000000;
    bottom: 0%;
    right: -50px;
    transform: translate(-0%, -0%);
    bottom: 90px;
    font-size: 17px;
    white-space: nowrap;
}

#toast #img {
    size: 40px;
    width: 50px;
    height: 50px;
    float: left;
    overflow: hidden;
    box-sizing: border-box;
    background-color: #ffffff;
}

#toast #desc {
    padding: 16px;
    overflow: hidden;
    white-space: nowrap;
}

#toast.success {
background: rgb(197, 255, 207);
color:rgb(0, 115, 4);
}
#toast.error {
background: rgb(255, 197, 197);
color:red;
}
#toast.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, expand 0.5s 0.5s, stay 3s 1s, shrink 0.5s 2s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, expand 0.5s 0.5s, stay 3s 1s, shrink 0.5s 4s, fadeout 0.5s 4.5s;
}

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes expand {
    from {
        min-width: 50px
    }

    to {
        min-width: 350px
    }
}

@keyframes expand {
    from {
        min-width: 50px
    }

    to {
        min-width: 350px
    }
}

@-webkit-keyframes stay {
    from {
        min-width: 350px
    }

    to {
        min-width: 350px
    }
}

@keyframes stay {
    from {
        min-width: 350px
    }

    to {
        min-width: 350px
    }
}

@-webkit-keyframes shrink {
    from {
        min-width: 350px;
    }

    to {
        min-width: 50px;
    }
}

@keyframes shrink {
    from {
        min-width: 350px;
    }

    to {
        min-width: 50px;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 60px;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 60px;
        opacity: 0;
    }
}
/* CATEGORY CSS */
  /* === HEADING STYLE #1 === */
  .heading h1 {
    position: relative;
    text-align: center;
  text-transform: uppercase;
  padding-bottom: 5px;
}
.heading h1:before {
  width: 28px;
  height: 5px;
  display: block;
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  margin-left: -14px;
  background-color: var(--pink-500);
 
}
.heading h1:after {
  width: 100px;
  height: 1px;
  display: block;
  content: "";
  position: relative;
  margin-top: 25px;
  left: 50%;
  margin-left: -50px;
  background-color: var(--pink-500);
}

.demo-btn{
    height: 40px;
    width: 130px;
    border: 0px;
    color: var(--white-100);
    border-radius: 5px;
    background: var(--pink-500);
}
.darkmode .demo-btn{
    background: var(--pink-100);
    color: var(--black-300);
}

/* category hero section css */
.hero {
    display: flex;
    max-width: 1440px;
    gap: 2em;
    justify-content: space-between;
    margin: 5em 2em;
  }
  
  .text {
    width: 40%;
    height: 638px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .text__short {
    text-transform: uppercase;
    font-size: 1.5rem;
    color: var(--pink-500);
  }
  
  .text__title {
    line-height: 01;
    margin: 1rem 0;
  }
  
  .text__description {
    line-height: 145%;
    font-size: 1em;
    font-weight: 300;
    padding-bottom: 1em;
  }
  
  .text__button {
    max-width: 300px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    color: var(--white-100);
    background-color:var(--pink-500);
    padding: calc(2.25rem - 2vw) 2rem;
    border-radius: 0.4em;
  }
  
  .grid__container {
    min-width: 60%;
    display: grid;
    grid-gap: .8em;
    grid-template-columns: repeat(8, 1fr);
  }
  
  .grid__item {
    background-color: grey;
    border-radius: 0.5em;
    position: relative;
    overflow: hidden;
  }
  
  .one {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    background-image: url(../img/interior/pooja/p-1.avif);
    background-position: center;
    background-size: cover;
  }
  
  .two { 
    grid-column: 2 / 5;
    grid-row: 1 / 4;
    background-image: url(../img/interior/kitchen/k-1.jpg);
    background-position: center;
    background-size:cover;
  }
  
  .three {
    grid-column: 5 / 6;
    grid-row: 1 / 2;
    background-image: url(../img/interior/sofa/s-1.jpeg);
    background-position: center;
    background-size: cover;
  }
  
  .four {
    grid-column: 6 / 7;
    grid-row: 1 / 2;
    background-color: var(--white-200);
    border-radius: 0 0 100px 0;
    -moz-border-radius: 0 0 100px 0;
    -webkit-border-radius: 0 0 100px 0;
  }
  
  
  .five {
    grid-column: 5 / 7;
    grid-row: 2 / 4;
    background-image: url(../img/interior/living-room/l-1.avif  );
    background-position: center;
    background-size: cover;
  }
  
  .six {
    grid-column: 7 / 8;
    grid-row: 2 / 3;
    background-color: var(--pink-100);
    border-radius: 0 100px 0 0;
    -moz-border-radius: 0 100px 0 0;
    -webkit-border-radius: 0 100px 0 0;
  }
  
  .seven {
    grid-column: 7 / 8;
    grid-row: 3 / 4;
    background-image: url(../img/interior/tv-units/t-1.avif);
    background-position: center;
    background-size: cover;
  }
  
  .eight {
    grid-column: 8 / 9;
    grid-row: 3 / 4;
    border-radius: 0 0 100px 0;
    background-color: var(--pink-300);
  }
  
  .nine {
    grid-column: 1 / 2;
    grid-row: 4 / 5;
    background-color: var(--pink-200);
    border-radius: 100px 0 0 0;
    -moz-border-radius: 100px 0 0 0;
    -webkit-border-radius: 100px 0 0 0;
  }
  
  .ten {
    grid-column: 2 / 3;
    grid-row: 4 / 5;
    background-image: url(../img/interior/office/o-1.jpg);
    background-position: center;
    background-size: cover;
  }
  
  .eleven {
    grid-column: 3 / 6;
    grid-row: 4 / 6;
    background-image: url(../img/interior/balcony/b-1.avif);
    background-position: center;
    background-size: cover;
  }
  
  .twelve {
    grid-column: 6 / 8;
    grid-row: 4 / 5;
    background-image: url(../img/interior/bathroom/b-1.avif);
    background-position: center;
    background-size: cover;
  }
  
  @media (max-width: 900px) {
    .grid__container {
      min-width: 50%;
      height:300px;
      margin: auto;
  }}
    
    @media (max-width: 780px) {
        .grid__container{
            min-width: 100%;
        }
      .hero {
        flex-direction: column-reverse;
        margin: 2em 2em;
      }
      
      .text {
        height: 350px;
        width: 100%;
      }
    }
    @media (max-width: 548px) {
      .text{
        margin-top: 40px;
        height: 500px;
      }
    }
    .grid__item a::after{
        height: 40%;
        width: 100%;
        position: absolute;
        left: 0;
        bottom: -50%;
        content: "See more";
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white-100);
        background-color: var(--black-300);
        transition: all .4s;
    }
    .grid__item:hover.grid__item a::after{
        scale: 1.1;
        bottom: 0;
    }

    .exe-one {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        display: none;
        background-image: url(../img/exterior/glass/g-1.jpg);
        background-position: center;
        background-size: cover;
      }
      
      .exe-two { 
        grid-column: 1 / 5;
        grid-row: 1 / 4;
        background-image: url(../img/exterior/glass/g-1.jpg);
        background-position: center;
        background-size:cover;
      }
      
      .exe-three {
        grid-column: 5 / 7;
        grid-row: 1 / 2;
        background-image: url(../img/exterior/light/l-1.avif);
        background-position: center;
        background-size: cover;
      }
      
      .exe-four {
        grid-column: 6 / 7;
        grid-row: 1 / 2;
        display: none;
        background-color: var(--white-200);
        border-radius: 0 0 100px 0;
        -moz-border-radius: 0 0 100px 0;
        -webkit-border-radius: 0 0 100px 0;
      }
      
      
      .exe-five {
        grid-column: 5 / 7;
        grid-row: 2 / 4;
        background-image: url(../img/exterior/paint/p-1.webp);
        background-position: center;
        background-size: cover;
      }
      
      .exe-six {
        grid-column: 7 / 8;
        grid-row: 2 / 3;
        display: none;
        background-color: var(--pink-100);
        border-radius: 0 100px 0 0;
        -moz-border-radius: 0 100px 0 0;
        -webkit-border-radius: 0 100px 0 0;
      }
      
      .exe-seven {
        grid-column: 7 / 9;
        grid-row: 2 / 4;
        background-image: url(../img/exterior/park/p-1.jpg);
        background-position: center;
        background-size: cover;
      }
      
      .exe-eight {
        grid-column: 8 / 9;
        grid-row: 2 / 4;
        display: none;
        border-radius: 0 0 100px 0;
        background-color: var(--pink-300);
    }
    
    .exe-nine {
          display: none;
        grid-column: 1 / 2;
        grid-row: 1 / 5;
        background-color: var(--pink-200);
        border-radius: 100px 0 0 0;
        -moz-border-radius: 100px 0 0 0;
        -webkit-border-radius: 100px 0 0 0;
      }
      
      .exe-ten {
        grid-column: 1 / 3;
        grid-row: 4 / 5;
        background-image: url(../img/exterior/planting/p-1.jpg);
        background-position: center;
        background-size: cover;
      }
      
      .exe-eleven {
        grid-column: 3 / 6;
        grid-row: 4 / 6;
        background-image: url(../img/exterior/wallpaper/w-1.jpg);
        background-position: center;
        background-size: cover;
      }
      
      .exe-twelve {
        grid-column: 6 / 8;
        grid-row: 4 / 5;
        background-image: url(../img/interior/balcony/b-4.jpg);
        background-position: center;
        background-size: cover;
      }

      /* construction css here */
      #construction{
        background: var(--white-300);
        z-index: -1;
        padding: 3rem 0px;
    

      }
      .darkmode #construction{
        background: var(--night-200);
      }
      #construction .construction { 
        display: grid;
        align-items: center;
        justify-content: center;
        grid-template-columns: 4fr 1fr 4fr; 
        grid-template-rows: 1fr 6fr 1fr;    
        gap: 0px 0px;
        grid-auto-flow: row;
        max-width: 1200px;
        width: 90%;
        margin: 0 auto;
    }
    
    /* LEFT PART */
    .left { 
        grid-area: 1 / 1 / 3 / 3;
        border: 3px solid var(--pink-500);
        padding: 30px 0px 30px 20px;
        background:linear-gradient(135deg, rgb(148, 203, 248), rgba(88, 210, 255, 0.71),rgb(159, 159, 159));
        position: relative;
        border-radius: 0px 0px 50px 0;
        z-index: 2;
    }
    .darkmode .left{
      background: var(--night-400);
    }
    .left h1{
        text-transform: uppercase;
        font-size: calc(15px + 1.990625vw - 10%);
        font-weight: 700;
        white-space: nowrap;
    }
    /*Waves*/
.waves {
  color: transparent;
  -webkit-text-stroke: 1px var(--pink-500);
  position: relative;
}
.waves:after{
  content: attr(data-word);
  position: absolute;
  top: 0;
  left: 0;
  color: var(--pink-300);
  animation: waves 2s ease-in-out infinite forwards;
}
@keyframes waves{
  0%, 100% {
      clip-path: polygon(0 66%, 11% 59%, 18% 51%, 26% 46%, 35% 41%, 48% 44%, 55% 54%, 63% 63%, 76% 60%, 82% 50%, 92% 48%, 100% 53%, 100% 100%, 0% 100%);
  }
  50% {
      clip-path: polygon(0 66%, 8% 74%, 17% 77%, 28% 70%, 35% 57%, 48% 44%, 56% 39%, 69% 41%, 75% 47%, 84% 60%, 92% 61%, 100% 53%, 100% 100%, 0% 100%);
  }
}
    .left p{
        margin-top: 25px;
        margin-bottom: 50px;
        font-size: 16px;
    }
    .left a{
        padding: 10px;
        text-transform: uppercase;
        text-decoration: none;
        border: 2px solid var(--pink-500);
        color:var(--white-100);
        font-weight: 700;
    }
    .left a:hover{
        color: var(--black-300);
        background-color: var(--pink-500);
    }
    
    
    /* RIGHT PART */
    .right { 
        grid-area: 2 / 2 / 4 / 4;
        border: 3px solid var(--pink-500);
        z-index: 1;
        position: relative;
        overflow: hidden;
        border-radius: 0px 0px 0px 50px;
      }
      
      .right img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
      
      /* LEFT AND RIGHT BANDS */
      .left::before,
      .right::before{
          content: '';
          position: absolute;
        top: 50%;
        height: 50%;
        width: 50vw;
        background: var(--pink-500);
      }
      .left::before{
        left: 0;
        transform: translateY(-50%) translateX(-100%);
      }
      .right::before{
        right: 0;
        transform: translateY(-50%) translateX(100%); 
      }
      
      @media screen and (max-width: 450px){
        #construction .construction { 
          grid-template-rows: 6fr 1fr 6fr;
        }
        .left{
          grid-area: 1 / 1 / 3 / 4;
          border-radius: 0px 50px 0px 0px;
        }
        .right{
          grid-area: 2 / 1 / 4 / 4
        }
      }

      /* Background Text */
      .back-text {
        font-size:calc(190% + 1 * ((100vw - 320px) / 680));
        font-weight: 800;
        opacity: 30%;
        text-transform: uppercase;
        -webkit-text-stroke: .1px #f6f7f8;
        -webkit-text-fill-color: transparent;
        margin: 20px 0 0 0;
        line-height: 1;
        position: absolute;
        transform: translateY(-114%);
        right: 0;
        left: 12px;
    }
    /* TESTIMONIALS .CSS*/
      
/* TESTIMONIALS .CSS*/

.main_testimonials {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white-200);
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

.darkmode .main_testimonials {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--night-200);
    overflow: hidden;
    height: 60vh;
    width: 100vw;
}

.testimonials {
    background-color: var(--pink-100);
    width: 100%;
    max-width:600px;
    /*max-width: 280px;*/
    /*max-width: 740px;*/
    margin: 20px;
    box-shadow: 0 6px 5px -7px #cbcbcb;
    border-radius: 3px;
    position: relative;
    opacity: 0;
    animation: showTestimonials 0.32s 0.78s cubic-bezier(0.55, 0.055, 0.675, 0.19) forwards;
}

.testimonials input {
    display: none;
    visibility: hidden;
    height: 0;
    width: 0;
    pointer-events: none;
    opacity: 0;
}

@keyframes showTestimonials {
    to {
        opacity: 1;
    }
}

.testimonials-inner {
    position: relative;
    min-height: 100px;
}

.testimonial {
    padding: 40px 34px 20px 20px;
    margin: 0 30px;
    pointer-events: none;
    position: relative;
    z-index: 1;
}

input[name="testimonial"]:nth-child(1):checked~.testimonials-inner .testimonial:nth-child(1),
input[name="testimonial"]:nth-child(2):checked~.testimonials-inner .testimonial:nth-child(2),
input[name="testimonial"]:nth-child(3):checked~.testimonials-inner .testimonial:nth-child(3),
input[name="testimonial"]:nth-child(4):checked~.testimonials-inner .testimonial:nth-child(4) {
    pointer-events: initial;
}

.testimonial {
    transition: 0.72s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.32s 0.12s;
    opacity: 0;
    transform: translate(0, 38px);
    max-height: 80px;
    animation: hideTestimonial 0s 0.52s forwards;
    position: relative;
}

input[name="testimonial"]:nth-child(1):checked~.testimonials-inner .testimonial:nth-child(1),
input[name="testimonial"]:nth-child(2):checked~.testimonials-inner .testimonial:nth-child(2),
input[name="testimonial"]:nth-child(3):checked~.testimonials-inner .testimonial:nth-child(3),
input[name="testimonial"]:nth-child(4):checked~.testimonials-inner .testimonial:nth-child(4) {
    animation: showTestimonial 0s 0.72s forwards;
    position: absolute;
    opacity: 1;
    transform: none;
    max-height: 500px;
    transition: 0.3s 0.52s, opacity 0.68s 0.92s, max-height 0.82s 0.72s;
}

@keyframes hideTestimonial {
    to {
        position: absolute;
    }
}

@keyframes showTestimonial {
    to {
        position: relative;
    }
}

input[name="testimonial"]:nth-child(1):checked~.testimonials-bullets label:nth-child(1) span,
input[name="testimonial"]:nth-child(2):checked~.testimonials-bullets label:nth-child(2) span,
input[name="testimonial"]:nth-child(3):checked~.testimonials-bullets label:nth-child(3) span,
input[name="testimonial"]:nth-child(4):checked~.testimonials-bullets label:nth-child(4) span {
    background-color: rgba(245, 34, 34, 0.836);
    transform: scale(1);
    transition: transform 0.36s cubic-bezier(0.26, -0.59, 0.43, 2.48), background-color 0.41s ease-in;
}

.testimonial-photo {
    height: 84px;
    width: 84px;
    position: absolute;
    top: -50px;
    left: 30;
    right: auto;
    margin: 0 auto;
}

.photo-background {
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    height: 100%;
    box-shadow: 0 -4px 3px -2px #c3c2c2;
    width: 100%;
    transform: scale(0.87);
    transition: 0.32s;
}

input[name="testimonial"]:nth-child(1):checked~.testimonials-inner .testimonial:nth-child(1) .photo-background,
input[name="testimonial"]:nth-child(2):checked~.testimonials-inner .testimonial:nth-child(2) .photo-background,
input[name="testimonial"]:nth-child(3):checked~.testimonials-inner .testimonial:nth-child(3) .photo-background,
input[name="testimonial"]:nth-child(4):checked~.testimonials-inner .testimonial:nth-child(4) .photo-background {
    transform: scale(1);
    transition: 0s;
}

.photo-author {
    background-size: 68px;
    background-position: center;
    height: 0;
    width: 0;
    border-radius: 50%;
    background-color: #dbdbdb;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    opacity: 0;
    transform: scale(1.18) translate(0, -6px);
    transition: transform 0.42s ease-out, opacity 0.58s, width 0s 0.6s, height 0s 0.6s;
}

input[name="testimonial"]:nth-child(1):checked~.testimonials-inner .testimonial:nth-child(1) .photo-author,
input[name="testimonial"]:nth-child(2):checked~.testimonials-inner .testimonial:nth-child(2) .photo-author,
input[name="testimonial"]:nth-child(3):checked~.testimonials-inner .testimonial:nth-child(3) .photo-author,
input[name="testimonial"]:nth-child(4):checked~.testimonials-inner .testimonial:nth-child(4) .photo-author {
    transform: scale(1);
    opacity: 1;
    height: 68px;
    width: 68px;
    transition: width 0.26s 1.01s, height 0.26s 1.01s;
}

.testimonial-text {
    color: #606060;
    font-size: 20px;
    text-align: center;
    text-shadow: 0 0 1px #939393;
    letter-spacing: 0.12px;
    font-style: italic;
    line-height: 26px;
}

.testimonial-text p {
    margin-bottom: 10px;
    font-size: initial;
}

.testimonial-author {
    font-size: 15px;
    text-align: right;
    color: #bdbdbd;
    letter-spacing: 0.24px;
    text-transform: uppercase;
    text-shadow: 0 0 1px #e3e3e3;
}

.testimonial-author:before {
    content: '– ';
}

.testimonials-bullets {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 30px;
    transform: translate(0, 8px);
}

.testimonials-bullets .bullet {
    height: 30px;
    width: 30px;
    cursor: pointer;
    margin: 0 1px;
}

.testimonials-bullets .bullet div {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 4px 6px -7px #000;
}

.testimonials-bullets .bullet div span {
    background-color: #c3c3c3;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    transform: scale(0.82);
    transition: 0.72s;
}

.testimonials-bullets .bullet:hover span {
    background-color: rgba(216, 118, 118, 0.836);
}

.testimonials-arrows {
    height: 100%;
}

.testimonials-arrows .arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    position: absolute;
    top: calc(50% - 25px);
}

.testimonials-arrows .arrow span {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 50%;
    height: 40px;
    width: 40px;
}

.testimonials-arrows .arrow span:before {
    font-size: 32px;
    font-family: monospace, sans-serif;
    font-weight: 600;
    color: #c3c3c3;
    transition: color 0.21s ease-in;
}

.testimonials-arrows .arrow:hover span:before {
    color: #444;
    transition: color 0.17s ease-out;
}

.testimonials-arrows .arrow label {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
}

.testimonials-arrows .arrow-left {
    left: -20px;
}

.testimonials-arrows .arrow-left span {
    box-shadow: 40px 0 20px 20px #fff, -5px 0 30px 0px #e1e1e1;
}

.testimonials-arrows .arrow-left span:before {
    content: '<';
}

.testimonials-arrows .arrow-right {
    right: -20px;
}

.testimonials-arrows .arrow-right span {
    box-shadow: -40px 0 20px 20px #fff, 5px 0 30px 0px #e1e1e1;
}

.testimonials-arrows .arrow-right span:before {
    content: '>';
}

input[name="testimonial"]:nth-child(1):checked~.testimonials-arrows .arrow-left label[for="input-testimonial4"],
input[name="testimonial"]:nth-child(1):checked~.testimonials-arrows .arrow-right label[for="input-testimonial2"],
input[name="testimonial"]:nth-child(2):checked~.testimonials-arrows .arrow-left label[for="input-testimonial1"],
input[name="testimonial"]:nth-child(2):checked~.testimonials-arrows .arrow-right label[for="input-testimonial3"],
input[name="testimonial"]:nth-child(3):checked~.testimonials-arrows .arrow-left label[for="input-testimonial2"],
input[name="testimonial"]:nth-child(3):checked~.testimonials-arrows .arrow-right label[for="input-testimonial4"],
input[name="testimonial"]:nth-child(4):checked~.testimonials-arrows .arrow-left label[for="input-testimonial3"],
input[name="testimonial"]:nth-child(4):checked~.testimonials-arrows .arrow-right label[for="input-testimonial1"] {
    z-index: 1;
}

.testimonial:nth-child(1) .photo-author {
    background-image: url(../img/others/review-1.jpg);
    background-size: cover;
}

.testimonial:nth-child(2) .photo-author {
    background-image: url(../img/others/review-2.webp);
    background-size: cover;
}

.testimonial:nth-child(3) .photo-author {
    background-image: url(../img/others/review-3.jpg);
    background-size: cover;
}

.testimonial:nth-child(4) .photo-author {
    background-image: url(../img/others/review-4.jpg);
    background-size: cover;
}

    
     /* follow us on social media css here */
    
     @keyframes scroll {
        0% {
            transform: translateX(0);
       }
        100% {
            transform: translateX(calc(-250px * 7));
       }
   }
    .slider {
        background: rgb(255, 255, 255);
        box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .125);
        height: 60px;
        margin: auto;
        overflow: hidden;
        position: relative;
        width: 100%;
   }
    .slider::before, .slider::after {
        background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
        content: "";
        height: 100px;
        position: absolute;
        width: 200px;
        z-index: 2;
   }
    .slider::after {
        right: 0;
        top: 0;
        transform: rotateZ(180deg);
   }
    .slider::before {
        left: 0;
        top: 0;
   }
    .slider .slide-track {
        animation: scroll 40s linear infinite;
        display: flex;
        width: calc(250px * 15);
        user-select: none;
   }
    .slider .slide {
        height: 100px;
        width: 250px;
   }
   
/* Hire image backgrond */
#hire_background{
    height: auto;
    width: 100%;
    background:rgba(0,0,0,0.4) url(../img/others/hire_background.png);
    display: flex;
    align-items: center;
    background-position: bottom;
    background-size: cover;
    background-blend-mode:darken;
    background-attachment: fixed;
    color:white;
}
#hire_background .img-sec{
    margin: 2rem 0;
}
#hire_background .col-md-3{
    margin: 4rem 0;
}
#hire_background .col-md-3{
    display: flex;
    align-items: center;
    padding: 5rem 2rem;
    flex-direction:column ;
    margin: auto;
}
#hire_background h6{
    color: var(--pink-500);
}
#hire_background a{
    padding: 10px 10px;
    height: 40px;
    color:var(--pink-500);
    width: auto;
    border-radius: 5px;
    background: var(--night-100);
}
.hire_section{
    padding: 2rem 2rem;
    border-radius: 10px;
    background-color: var(--pink-100);
    border: 2px solid var(--pink-300);
}
   /* Gallery section is here */
#gallery{
    -webkit-column-count:4;
    -moz-column-count:4;
    column-count:4;
    -webkit-column-gap:20px;
    -moz-column-gap:20px;
    column-gap:20px;
  }
#gallery img:hover{
   transform:scale(1.1);
  }
  @media (max-width:1200px){
    #gallery{
    -webkit-column-count:3;
    -moz-column-count:3;
    column-count:3;
      
    -webkit-column-gap:20px;
    -moz-column-gap:20px;
    column-gap:20px;
  }
  }
  @media (max-width:800px){
    #gallery{
    -webkit-column-count:2;
    -moz-column-count:2;
    column-count:2;
      
    -webkit-column-gap:20px;
    -moz-column-gap:20px;
    column-gap:20px;
  }
  }
  @media (max-width:600px){
    #gallery{
    -webkit-column-count:1;
    -moz-column-count:1;
    column-count:1;
  }  
  }
  #gallery img {
    width:100%;
    height:auto;
    margin: 4% auto;
    box-shadow:-3px 5px 15px #000;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  .modal-img,.model-vid{
    width:100%;
    height:auto;
  }
  .modal-body{
    padding:0px;
  }
  
    /* Instapost */
  .insta_post{
    background:rgba(0, 0, 0, 0.114) url(../img/others/asi_insta_background.png);
    background-position: center top;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-blend-mode: darken;
    width: 100%;
    
  }
  @media  (max-width:400px) {
    .insta_post{
        background:rgba(0, 0, 0, 0.114) url(../img/others/asi_insta_background.png) no-repeat;
        background-position: center top;
        background-size: 100% 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 50vh;
        background-blend-mode: darken;
        width: 100%;
        
      }
  }
   
   