/*===========================================================
	VARIABLES & FONTS
=============================================================*/
@font-face {
    font-family: 'VoyagerHeavy';
    src: url(../fonts/VoyagerHeavy.otf);
}
:root {
    --ss-global-viewport-content-responsive: 87.5vw;
    --ss-global-viewport-content-responsive-max: 1400px;
    --ss-primary-color: #1F95CB;
    --ss-secondary-color: #790845;
    --ss-primary-text-color-dark: #000;
    --ss-secondary-text-color-dark: #333;
    --ss-tertiary-text-color-dark: #666;
    --ss-primary-text-color-light: #fefefe;
    --ss-secondary-text-color-light: #ccc;
    --ss-tertiary-text-color-light: #999;
    --ss-bg-black: #000;
    --ss-bg-dark: #111;
    --ss-bg-white: #FFF;
    --ss-bg-light: #e4e4e4;
    --ss-font-family-primary: 'TikTok Sans', sans-serif;
    --ss-font-family-secondary: 'TikTok Sans', sans-serif;
    --ss-font-size-xs: 0.64rem; /* 10px */
    --ss-font-size-sm: 0.8rem; /* 13.33px */
    --ss-font-size-base: 1rem; /* 16px */
    --ss-font-size-md: 1.25rem; /* 20px */
    --ss-font-size-lg: 1.563rem; /* 25px */
    --ss-font-size-xl: 1.953rem; /* 31.25px */
    --ss-font-size-2xl: 2.441rem; /* 40px */
    --ss-font-size-3xl: 3.052rem; /* 48.8px */
    --ss-font-size-4xl: 3.815rem; /* 61px */
    --ss-line-height-sm: 1; /* 16px */
    --ss-line-height-md: 1.25; /* 20px */
    --ss-line-height-lg: 1.5; /* 24px */
    --ss-line-height-xl: 1.75; /* 28px */
    --ss-line-height-2xl: 2; /* 32px */
    --ss-gap-xs: 0.5rem; /* 8px */
    --ss-gap-sm: 0.75rem; /* 12px */
    --ss-gap-md: 1rem; /* 16px */
    --ss-gap-lg: 1.25rem; /* 20px */
    --ss-gap-xl: 1.5rem; /* 24px */
    --ss-gap-2xl: 1.75rem; /* 28px */
    --ss-gap-3xl: 2rem; /* 32px */
    --ss-gap-4xl: 2.5rem; /* 40px */
    --ss-gap-5xl: 3.5rem; /* 56px */
    --ss-gap-6xl: 5rem; /* 80px */
    --ss-gap-7xl: 6.25rem; /* 100px */
    --ss-gap-8xl: 7.5rem; /* 120px */
    --ss-border-radius-xs: 0.5rem; /* 8px */
    --ss-border-radius-sm: 0.75rem; /* 12px */
    --ss-border-radius-md: 1rem; /* 16px */
    --ss-border-radius-lg: 1.25rem; /* 20px */
    --ss-border-radius-xl: 1.5rem; /* 24px */
    --ss-border-radius-2xl: 1.75rem; /* 28px */
    --ss-border-radius-3xl: 2rem; /* 32px */
}

/*===========================================================
    ELEMENT STYLES
=============================================================*/
*, *::after, *::before {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body {
    font-family: var(--ss-font-family-primary);
    font-size: 1rem;
    line-height: var(--ss-line-height-lg);
    color: var(--ss-primary-text-color-dark);
    background-color: var(--ss-bg-white);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
a {
    color: var(--ss-primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: var(--ss-secondary-color);
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--ss-font-family-primary);
    color: var(--ss-primary-text-color-dark);
    margin: 0;
    padding: 0;
}
h1 {
    font-size: var(--ss-font-size-3xl);
    margin-bottom: var(--ss-gap-lg);
    margin-top: 0;
}
h2 {
    font-size: var(--ss-font-size-2xl);
    margin-bottom: var(--ss-gap-md);
    margin-top: 0;
}
h3 {
    font-size: var(--ss-font-size-xl);
    margin-bottom: var(--ss-gap-sm);
    margin-top: 0;
}
h4 {
    font-size: var(--ss-font-size-lg);
    margin-bottom: var(--ss-gap-xs);
    margin-top: 0;
}
h5 {
    font-size: var(--ss-font-size-md);
    margin-bottom: var(--ss-gap-xs);
    margin-top: 0;
}
h6 {
    font-size: var(--ss-font-size-sm);
    margin-bottom: var(--ss-gap-xs);
    margin-top: 0;
}
p {
    font-size: var(--ss-font-size-base);
    margin-bottom: var(--ss-gap-md);
    color: var(--ss-secondary-text-color-dark);
}
ul, ol {
    padding-left: 1.5rem;
    margin-bottom: var(--ss-gap-md);
    list-style-type: none;
}
li {
    margin-bottom: var(--ss-gap-xs);
    color: var(--ss-secondary-text-color-light);
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
quote, blockquote {
    margin: 0;
    padding: 0;
    font-style: italic;
    color: var(--ss-secondary-text-color-light);
    border-left: 4px solid var(--ss-primary-color);
    padding-left: 1rem;
    margin-bottom: var(--ss-gap-md);
}
section {
    padding: var(--ss-gap-7xl) 0;
    width: 100%;
    margin: 0 auto;
}


/*===========================================================
    CUSTOM CLASSES
=============================================================*/
.container {
    width: var(--ss-global-viewport-content-responsive);
    max-width: 1680px;
    margin: 0 auto;
    box-sizing: border-box;
}
/* @media (max-width: 992px) {
    .container {
        width: var(--ss-global-viewport-content-responsive);
    }
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .container {
        width: 90vw;
    }
}
@media (min-width: 575.99px) and (max-width: 767.98px) {
    .container {
        width: 95vw;
    }
}
@media (min-width: 0px) and (max-width: 575.98px) {
    .container {
        width: 100vw;
    }
} */
.flex {
    display: flex;
    flex-wrap: wrap;
    gap: var(--ss-gap-md);
}
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hidden {
    display: none !important;
}
.visible {
    display: block !important;
}
.inline-block {
    display: inline-block;
}
.block {
    display: block;
}
.color--primary {
    color: var(--ss-primary-color);
}
.text--primary--dark {
    color: var(--ss-primary-text-color-dark) !important;
}
.text--secondary--dark {
    color: var(--ss-secondary-text-color-dark) !important;
}
.text--primary--light {
    color: var(--ss-primary-text-color-light) !important;
}
.text--secondary--light {
    color: var(--ss-secondary-text-color-light) !important;
}
.text--start {
    text-align: start !important;
}
.text--center {
    text-align: center !important;
}
.text--end {
    text-align: end !important;
}
.img__container--square-box {
    position: relative;
    width: 100%;
    height: auto;
} 
.img__container--square {
    position: relative;
    display: inline-block;
    width: 80%;
    aspect-ratio: 1 / 1;
    transform: translate(10%, 0%);
    z-index: 0;
}
.img__container--square-box .experience_box {
    position: absolute;
    right: 6%;
    bottom: 7%;
    width: fit-content;
    height: fit-content;
    padding: 2rem;
    border-radius: 1.5rem;
    background-color: var(--ss-primary-color);
    display: flex;
    flex-direction: column;
}
.img__container--square-box .experience_box .exp_number {
    font-size: 3rem;
    line-height: 1;
    font-weight: bold;
    color: #FFF;
}
.img__container--square-box .experience_box .exp_text {
    font-size: 1rem;
    line-height: 1;
    color: #FFF;
}
/* .img__container--square::before {
    position: absolute;
    content: '';
    width: 60%;
    aspect-ratio: 1 / 1.1;
    left: -5%;
    top: -5%;
    border: 1px solid var(--ss-primary-color);
    border-radius: 3rem;
    border-left-width: 1rem;
    border-top-width: 1rem;
    z-index: -1;
}
.img__container--square::after {
    position: absolute;
    content: '';
    width: 60%;
    aspect-ratio: 1 / 1.1;
    right: -5%;
    bottom: -5%;
    border: 1px solid var(--ss-primary-color);
    border-radius: 3rem;
    border-right-width: 1rem;
    border-bottom-width: 1rem;
    z-index: -1;
} */
.img__cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 50% 50% 50% 1rem;
}
.border__radius--lg {
    border-radius: var(--ss-border-radius-lg);
}

.modal {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.fs_10 {
    font-size: 0.625rem;
}

.fs_12 {
    font-size: 0.75rem;
}

.fs_14 {
    font-size: 0.875rem;
}

.fs_16 {
    font-size: 1rem;
}

.fs_1r {
    font-size: 1rem;
}

.fs_15r {
    font-size: 1.5rem;
}

.fs_2r {
    font-size: 2rem;
}

.fs_25r {
    font-size: 2.5rem;
}

.fs_3r {
    font-size: 3rem;
}

.fs_35r {
    font-size: 3.5rem;
}

.fs_4r {
    font-size: 4rem;
}

.fs_45r {
    font-size: 4.5rem;
}

.fs_5r {
    font-size: 5rem;
}
.w__35--variable {
    width: 35%;
}
.w__50--variable {
    width: 50%;
}
.w__75--variable {
    width: 75%;
}
@media (max-width: 992px) {
    .w__35--variable {
        width: 35%;
    }
    .w__50--variable {
        width: 50%;
    }
    .w__75--variable {
        width: 80%;
    }
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .w__35--variable {
        width: 65%;
    }
    .w__50--variable {
        width: 65%;
    }
    .w__75--variable {
        width: 85%;
    }
}
@media (min-width: 575.99px) and (max-width: 767.98px) {
    .w__35--variable {
        width: 75%;
    }
    .w__50--variable {
        width: 75%;
    }
    .w__75--variable {
        width: 90%;
    }
}
@media (min-width: 0px) and (max-width: 575.98px) {
    .w__35--variable {
        width: 90%;
    }
    .w__50--variable {
        width: 90%;
    }
    .w__75--variable {
        width: 95%;
    }
}

.inline-block-center {
    display:flex;
    justify-content: center;
    align-items: center;
}
.form-group {
    margin:10px 0;
}
.ss_bg--glossy {
    background: rgba(50, 50, 50, 0.5);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 1.0);
}
.ss_bg--glossy--light {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 1.0);
}
.ss_bg--glossy--dark {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 1.0);
}
.grid__column--equal-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.grid__column--equal-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.grid__column--equal-three #grid-item4 {
    grid-column: 1 / 2;
}
.grid__column--equal-three #grid-item5 {
    grid-column: 2 / 4;
}
.gap-2r {
    gap: 2rem;
}
input[type="text"], input[type="password"], input[type="email"], input[type="number"], input[type="search"], select, select.form-select, textarea, textarea.form-control {
    width: 100%;
    height: 3.5rem;
    color: var(--ss-primary-text-color-dark);
    margin: 0;
    padding: 0 20px;
    border: 1px solid #666 !important;
    /* border-bottom: 1px solid #9d19f4; */
    border-radius: 0.5rem !important;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    -ms-transition: all .3s;
    transition: all .3s;
}
input:focus-visible {
    outline: none;
}
/* select::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 0.6rem;
  height: 0.6rem;
  pointer-events: none;
  background-color: transparent;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: translateY(-50%) rotate(45deg);
} */
input:focus {
    background: transparent;
}
.form-control:focus, .form-select:focus {
    color: var(--ss-primary-text-color-dark);
    background-color: transparent;
    border: 1px solid var(--ss-primary-color) !important;
    outline: 0;
    box-shadow: none;
}
.form-text {
    margin-top: .25rem;
    font-size: .75em;
    color: #6c757d;
    font-style: italic;
}
textarea, textarea.form-control {
    height: unset;
}
textarea.form-control {
    height: unset;
    resize: vertical;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
/*===========================================================
SS SCROLLER STYLES
=============================================================*/
.ss_scroller_block {
    position: relative;
}
.ss_scroller_container {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    overflow-x: auto;
    display: flex;
    scroll-behavior: smooth; /* Smooth scrolling */
    scrollbar-width: none; /* Hide scrollbar in Firefox */
    padding: 0 calc(50vw - min(1680px, var(--ss-global-viewport-content-responsive)) / 2);
}
.ss_scroller_container::-webkit-scrollbar {
    display: none; /* Hide scrollbar in Chrome, Safari, and Edge */
}

/* .ss_scroller_container {
  padding: 0 calc(50vw - min(1680px, var(--ss-global-viewport-content-responsive)) / 2);
} */
.ss_scroller_container > .ss_scroller {
    width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scroll-behavior: smooth;
}
.ss_scroller_container > .ss_scroller > .ss_scroller_item {
    display: inline-block;
    width: calc(100% / 3 - 2rem);
    margin: 1rem;
    vertical-align: top;
    box-sizing: border-box;
    background-color: var(--ss-bg-white);
    border-radius: var(--ss-border-radius-md);
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
  /* .ss_scroller_main {
    padding: 50px 0 100px 0;
    background: #f5f5f7;
} */

.ss_scroller_item_container {
    display: flex;
    gap: 20px;
    /* padding: 0 calc(50vw - min(1680px, var(--ss-global-viewport-content-responsive)) / 2); */
}
.ss_scroller_item_box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
    min-width: 200px;
    text-align: center;
    margin: 1rem 0;
    /* background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    /* cursor: pointer; */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* .ss_scroller_item_box:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
} */
.ss_scroller_item_link {
    text-decoration: none;
    color: #333;
    padding: 1rem;
}
.ss_scroller_item_link h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}
.ss_scroller_btn {
    width: 40px;
    height: 40px;
    position: absolute;
    bottom: -80px;
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}
.ss_scroller_btn_left {
    right: 80px;
}
.ss_scroller_btn_right {
    right: 20px;
}
.ss_scroller_btn.inactive {
    opacity: 0.5;
    cursor: not-allowed;
}
/* .ss_scroller_item_box.ss_services_box {
    width: 320px;
    height: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
} */
.ss_scroller_item_box.ss_services_box .card__title {
    font-size: var(--ss-font-size-md);
}



/*===========================================================
    WEBSITE SCROLLBAR STYLES
=============================================================*/
/* Custom scrollbar styles for Webkit browsers */
/* Hide scrollbar for IE, Edge and Firefox */
html {
    scrollbar-width: none; /* Firefox */
}
body::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}
/* Custom scrollbar styles for Webkit browsers */
body {
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: var(--ss-primary-color) transparent; /* Firefox */
}
/* Hide scrollbar for IE, Edge and Firefox */
body::-webkit-scrollbar {
    width: 0px; /* Chrome, Safari and Opera */
    height: 0px; /* Chrome, Safari and Opera */
}
/* Custom scrollbar styles for Webkit browsers */
body::-webkit-scrollbar {
    width: 5px; /* Width of the scrollbar */
    height: 5px; /* Height of the scrollbar */
}
body::-webkit-scrollbar-track {
    background: transparent; /* Background of the scrollbar track */
}
body::-webkit-scrollbar-thumb {
    background: var(--ss-primary-color); /* Color of the scrollbar thumb */
    border-radius: 10px; /* Rounded corners for the scrollbar thumb */
}
body::-webkit-scrollbar-thumb:hover {
    background: var(--ss-secondary-color); /* Color of the scrollbar thumb on hover */
}
/*===========================================================
    WEBSITE SCROLLBAR STYLES
=============================================================*/




/* /*===========================================================
WEBSITE SCROLLBAR
=============================================================*/

/* width */
/*::-webkit-scrollbar {
    width: 5px;
}
/* Track */
/*::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 10px;
}
*/
/* Handle */
/*::-webkit-scrollbar-thumb {
    background: #a417fa; 
    border-radius: 10px;
}
/* Handle on hover */
/*::-webkit-scrollbar-thumb:hover {
    background: #000; 
} */


/*===========================================================
WEBSITE PROGRESS BAR ON PAGE SCROLL
=============================================================*/
.progressbar-block {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 5;
}
.progress-container {
    background-color: rgba(150, 150, 150, 0.6);
    height: 5px;
    width: 100%;
}
.progress-bar {
    background-color: var(--ss-primary-color);
    height: 5px;
    width: 0%;
}

/*===========================================================
    WEBSITE BACK TO TOP BUTTON
=============================================================*/
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--ss-primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1000;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.back-to-top:hover {
    background-color: var(--ss-secondary-color);
    transform: translateY(-5px);
}


  

/*===========================================================
    SECTION STYLES
=============================================================*/
.section__header {
    margin:0 0 50px 0;
}

/*--------- Section Title Regular -------------*/
.section__title--regular {
    /* font-size: clamp(1.75rem, 1.6125rem + 0.6875vw, 2.4375rem); */
    font-size: var(--ss-font-size-xl);
    font-weight: 500;
    line-height: var(--ss-line-height-md);
    letter-spacing: -0.01em;
    font-family: var(--ss-font-family-primary);
    text-transform: normal;
    /* margin-top: var(--ss-gap-xs) !important; */
    margin-bottom: var(--ss-gap-md);
}
.section__subtitle--regular {
    font-size: var(--ss-font-size-sm);
    font-weight: 600;
    line-height: var(--ss-line-height-lg);
    font-family: var(--ss-font-family-primary);
    text-transform: uppercase;
    margin-top: var(--ss-gap-xs);
    margin-bottom: var(--ss-gap-xs);
    opacity: 0.6;
    color: var(--ss-primary-color);
}
.section__description--regular {
    font-size: var(--ss-font-size-md);
    line-height: var(--ss-line-height-md);
    font-weight: 500;
    letter-spacing: -0.009em;
    font-family: var(--ss-font-family-primary);
}



/*----------- Section Title Large ---------------*/
.section__title--large {
    font-size: var(--ss-font-size-3xl);
    font-weight: 700;
    line-height: var(--ss-line-height-sm);
    letter-spacing: -0.02em;
    font-family: var(--ss-font-family-primary);
    text-transform: normal;
    margin-top: var(--ss-gap-xs);
    margin-bottom: var(--ss-gap-3xl);
}  
.section__subtitle {
    display: inline-block;
    font-size: var(--ss-font-size-sm);
    font-weight: 900;
    font-family: var(--ss-font-family-primary);
    text-transform: uppercase;
    color: var(--ss-primary-text-color-dark);
    margin-bottom: var(--ss-gap-md);
    background: var(--ss-primary-text-color-light);
    padding: var(--ss-gap-xs) var(--ss-gap-md);
    line-height: var(--ss-line-height-sm);
    border-radius: var(--ss-border-radius-md);
    position: relative;
}
.section__subtitle:after {
  position: absolute;
  content: '';
  width: 50px;
  height: 1px;
  top:50%;
  right: 0;
  transform: translateX(100%);
  background: var(--ss-primary-text-color-light);
} 
.section__subtitle:before {
  position: absolute;
  content: '';
  width: 50px;
  height: 1px;
  top:50%;
  left: 0%;
  transform: translateX(-100%);
  background: var(--ss-primary-text-color-light);
} 
.section__description--large {
    font-size: var(--ss-font-size-lg);
    font-weight: 600;
    line-height: var( --ss-line-height-md);
    letter-spacing: -0.009em;
    margin-bottom: var(--ss-gap-3xl);
    font-family: var(--ss-font-family-primary);
}




  /*===========================================================
    BUTTON STYLES
  =============================================================*/
  
  .ss-button-neon-orange {
    position:relative;
    display:inline-block;
    padding:15px 30px;
    border:5px solid #fff;
    color:#fff;
    transition:0.4s linear;
    overflow:hidden;
    border-radius:15px;
    background: linear-gradient(223deg, #790845, #a417fa);
}
.ss-button-neon-orange:hover {
    border:5px solid transparent;
    background:#a417fa;
    border-radius:5px;
    color:#fff;
    box-shadow:0 0 10px #a417fa, 0 0 40px #a417fa, 0 0 80px #a417fa;
} 
.ss-button-neon-orange span{
    position:absolute;
    display:block;
}
.ss-button-neon-orange span:nth-child(1){
    top:0;
    left:-100%;
    width:100%;
    height:2px;
    background:linear-gradient(90deg,transparent,#2196f3);
}
.ss-button-neon-orange:hover span:nth-child(1){
    left:100%;
    transition:0.5s;
}
.ss-button-neon-orange span:nth-child(3){
    bottom:0;
    right:-100%;
    width:100%;
    height:2px;
    background:linear-gradient(270deg,transparent,#2196f3);
}
.ss-button-neon-orange:hover span:nth-child(3){
    right:100%;
    transition:0.5s;
    transition-delay:0.2s;
}
.ss-button-neon-orange span:nth-child(2){
    top:-100%;
    right:0;
    width:2px;
    height:100%;
    background:linear-gradient(180deg,transparent,#2196f3);
}
.ss-button-neon-orange:hover span:nth-child(2){
    top:100%;
    transition:0.5s;
    transition-delay:0.1s;
}
.ss-button-neon-orange span:nth-child(4){
    bottom:-100%;
    left:0;
    width:2px;
    height:100%;
    background:linear-gradient(360deg,transparent,#2196f3);
}
.ss-button-neon-orange:hover span:nth-child(4){
    bottom:100%;
    transition:0.5s;
    transition-delay:0.4s;
} 
.ss_button--one {
    display: inline-block;
    width: inherit;
    background: var(--ss-primary-color);
    /* background: linear-gradient(223deg, var(--ss-secondary-color), var(--ss-primary-color)); */
    padding: 1rem 2.5rem;
    font-family: var(--ss-font-family-primary);
    font-weight: 700;
    line-height: normal;
    color: #fff;
    text-align: center;
    margin-top: 15px;
    border: none;
    border-radius: var(--ss-border-radius-sm);
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear;
    overflow: hidden;
}
.ss_button--one:hover {
    background: var(--ss-secondary-color);
    /* background: linear-gradient(223deg, var(--ss-primary-color), var(--ss-secondary-color)); */
    color: #FFF;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
}


/*===========================================================
TEXT STYLES
=============================================================*/
.ss_text--content {
    font-size: var(--ss-font-size-md);
    line-height: var(--ss-line-height-md);
    font-weight: 600;
    letter-spacing: 0.009em;
    font-family: var(--ss-font-family-primary);
}
.ss_text--gradient {
    background: linear-gradient(223deg, var(--ss-secondary-color), var(--ss-primary-color));
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


  /*============================================================================================
      GLOSSY SECTION
  ==============================================================================================*/
  .ss_card_glossy_block {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    width: 100%;
    height: auto;
    justify-content: start;
    align-items: stretch;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .ss_card_glossy_box {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    width: clamp(275px, 100%, 315px);
    height: auto;
    margin: 0.75rem 0;
    /* border: 1px dashed red; */
  }
  .ss_card_glossy {
    /* flex-grow: 1; */
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: start;
    align-items: start;
    background: rgba(50, 50, 50, 0.5);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 1.0);
    overflow: hidden;
    padding: 1.25rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
  }

  .ss_card_glossy:hover {
    background: rgba(100, 100, 100, 0.5);
  }

  .ss_card_glossy .image-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #dedede;
    background-color: #FFF;
  }

  .ss_card_glossy .image-container img {
    width: 100%;
    transition: transform 4s ease;
  }

  .ss_card_glossy .icon_box {
    width: 30%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(223deg, #790845, #a417fa);
    border-radius: 0.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .ss_card_glossy .icon_box .icon {
    color: #FFF;
    font-size: 2rem;
  }

  .ss_card_glossy .title {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 0;
    color: #FFF;
    text-align: left;
  }

  .ss_card_glossy .content {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.25;
    color: #CCC;
    text-align: left;
  }

  .ss_section--glossy {
    display: flex;
    align-items: center;
    width: 100%;
    height: fit-content;
    padding: 3rem 3.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 1.0);
  }

  .ss_section--glossy > .ss_section--glossy_content {
    flex: 0 0 50%;
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
  }

    .ss_section--glossy > .ss_section--glossy_content > h2 {
        font-size: 4rem;
        font-weight: 600;
        line-height: 1;
        margin-bottom: 1rem;
        color: #000;
        text-align: start;
    }

    .ss_section--glossy > .ss_section--glossy_content > p {
        /* font-size: 1.125rem;
        font-weight: 600;
        line-height: 1.5; */
        color: #404040;
        text-align: start;
        margin-bottom: 1.5rem;
    }

    .ss_section--glossy > .ss_section--glossy_content > .ss_button {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        background: linear-gradient(223deg, #790845, #a417fa);
        color: #FFF;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 0.75rem;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .ss_section--glossy > .ss_section--glossy_content > .ss_button:hover {
            background: linear-gradient(223deg, #a417fa, #790845);
            color: #FFF;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 1.0);
        }


    .ss_section--glossy > .ss_section--glossy--image {
        flex: 0 0 50%;
        width: 100%;
        height: fit-content;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: var(--ss-gap-3xl) 0;
    }

    .ss_section--glossy > .ss_section--glossy--image img {
            width: 100%;
            max-width: 600px;
            height: auto;
            border-radius: 1rem;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }



  
/*============================================================================================
CARD STYLES 
==============================================================================================*/
.card__title {
    font-size: var(--ss-font-size-lg);
    font-weight: 600;
    margin-bottom: var(--ss-gap-xs);
}
.card__description {
    font-size: var(--ss-font-size-base);
    font-weight: 400;
    margin-bottom: var(--ss-gap-md);
    line-height: var(--ss-line-height-md);
}
.card__icon {
    font-size: var(--ss-font-size-xl);
    background: linear-gradient(223deg, var(--ss-secondary-color), var(--ss-primary-color));
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--ss-gap-lg);
}

/*=========== CARD IMAGE COVERED ==========*/
.card__design--img-covered {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: end;
    width: 100%;
    aspect-ratio: 3 / 4;
    padding: var(--ss-gap-lg);
    border-radius: var(--ss-border-radius-md);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: var( --ss-gap-md) 0;
    position: relative;
    z-index: 0;
}
.card__design--img-covered::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 25%, rgba(0, 0, 0, 0.9) 100%);
    border-radius: var(--ss-border-radius-md);
    z-index: 1;
}
.card__design--img-covered h3 {
    color: var(--ss-primary-text-color-light);
    text-align: start;
    position: relative;
    z-index: 2;
}
.card__design--img-covered p {
    color: var(--ss-secondary-text-color-light);
    text-align: start;
    position: relative;
    z-index: 2;
}
.card__design--img-covered#website_importance_box1 {
    background: url('../img/cards/2150040211.jpg');
    background-position: 4% 35%;
}
.card__design--img-covered#website_importance_box2 {
    background: url('../img/cards/94880.jpg');
    background-position: 36% 19%;
}
.card__design--img-covered#website_importance_box3 {
    background: url('../img/cards/2148778043.jpg');
    background-position: 23% 40%;
}
.card__design--img-covered#website_importance_box4 {
    background: url('../img/cards/176747.jpg');
    background-position: 71% 100%;
}
.card__design--img-covered#website_importance_box5 {
    background: url('../img/cards/124755.jpg');
    background-position: 60% 24%;
}
.card__design--img-covered#website_importance_box6 {
    background: url('../img/cards/19598.jpg');
    background-position: 51% 100%;
}


/*=========== CARD IMAGE COVERED END ==========*/
/*=========== CARD DESIGN ICON ==========*/
.card__design--icon {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    width: 100%;
    aspect-ratio: 2 / 1;
    padding: var(--ss-gap-xl) var(--ss-gap-4xl);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: var(--ss-border-radius-md);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: var(--ss-gap-md) 0;
}
.card__design--icon h3 {
    color: var(--ss-primary-text-color-dark);
    text-align: start;
}
.card__design--icon p {
    color: var(--ss-secondary-text-color-dark);
    text-align: start;
}
/*=========== CARD DESIGN ICON END ==========*/

/*=========== CARD DESIGN ICON TWO START ==========*/
.card__design--icon-two {
    background: rgba(245, 245, 245, 0.9);
    border: 1px solid #e7e7e7;
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    text-align: center;
}
.card__design--icon-two:hover {
    transform: translateY(-10px);
}
.card__design--icon-two .card__icon {
    display: block;
    text-align: start;
    font-size: 3.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--ss-primary-color), var(--ss-secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    line-height: 1;
}
.card__design--icon-two .card__description {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #ccc;
}
/*=========== CARD DESIGN ICON TWO END ==========*/
/*=========== CARD DESIGN ICON ==========*/
.card__design--icon-testimonial {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    width: 100%;
    aspect-ratio: 2 / 1;
    padding: var(--ss-gap-xl) var(--ss-gap-4xl);
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: var(--ss-border-radius-md);
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    margin: var(--ss-gap-md) 0;
}
.card__design--icon-testimonial .card__image {
    width: 75px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
}
.card__design--icon-testimonial .card__content {
    font-size: 1.05rem;
    line-height: normal;
    margin-top: 1rem;
    color: var(--ss-secondary-text-color-dark);
    text-align: start;
    position: relative;
}
.card__design--icon-testimonial .card__content::before {
    position: absolute;
    content: '\F6B0';
    font-family: bootstrap-icons;
    font-size: 1.5rem;
    left: -30px;
    top: -10px;
    color: rgba(0,0,0,0.2);
}
.card__design--icon-testimonial .card__person {
    font-size: 1.25rem;
    color: var(--ss-primary-text-color-dark);
    text-align: start;
    margin-bottom: 0%;
}
.card__design--icon-testimonial .card__designation {
    font-size: 0.9rem;
    color: var(--ss-secondary-text-color-dark);
    text-align: start;
    font-style: italic;
}

/*=========== CARD DESIGN ICON END ==========*/



/*=========== CARD DESIGN CONNECT STARTS ==========*/
.card__connect--one {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    aspect-ratio: 2 / 1;
    padding: var(--ss-gap-sm) var(--ss-gap-lg);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    border-radius: var(--ss-border-radius-md);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: var(--ss-gap-md) 0;
    transition: all 0.3s ease;
}
.card__connect--one .card__connect--one-title {
    color: var(--ss-primary-text-color-light);
    font-size: var(--ss-font-size-sm);
    text-align: start;
}
.card__connect--one .card__connect--one-arrow-box {
    display: block;
    width: 100%;
    height: fit-content;
    text-align: end;
}
.card__connect--one .card__connect--one-arrow-box .card__connect--one-arrow {
    display: inline-block;
    text-align: center;
    align-content: center;
    width: 40px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 1.15rem;
    font-weight: 300;
    line-height: var(--ss-line-height-sm);
}
.card__connect--one:hover {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
}

/*=========== CARD DESIGN CONNECT END ==========*/



/*============================================================================================
LIST DESIGNS 
==============================================================================================*/
.list__style--one-block {
    display: block;
    width: 100%;
    height: 100%;
}
.list__style--one-block .list__style--one {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0 2rem;
    margin-bottom: 1rem;
}
.list__style--one-block .list__style--one .content__box {
    display: flex;
    justify-content: start;
    align-items: start;
    margin: 1rem 0;
}
.list__style--one-block .list__style--one .content__box .letter {
    width: 50px;
    height: 50px;
    border-radius: 25%;
    background: linear-gradient(223deg, var(--ss-secondary-color), var(--ss-primary-color));
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    line-height: 0%;
}
.list__style--one-block .list__style--one .content__box .content__box--title {
    font-size: var(--ss-font-size-lg);
    color: #fff;
    font-weight: 600;
    text-align: start;
}


/*============================================================================================
TAB SLIDER  
==============================================================================================*/
.tab-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
    height: 670px;
  }
  .tab-slider .slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    touch-action: pan-y;
  }
  .tab-slider .slide {
    flex-shrink: 0;
    display: flex;
    align-items: start;
    justify-content: start;
    font-size: 2rem;
    color: white;
    background: url('../img/slider/slide-bg.jpg') no-repeat center center / cover;
    padding: clamp(1rem, 0.6rem + 2vw, 3rem);    
    border-radius: var(--ss-border-radius-md);
  }
  .tab-slider .slide .slide_content{
    text-align: start;
    position: relative;
  }
  .tab-slider .nav-button {
    position: absolute;
    bottom: -12px;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    padding: 2px 16px;
    z-index: 10;
    border: 1px solid #FFF;
    border-radius: 1rem;
}
  .tab-slider .nav-button.prev { left: 10px; }
  .tab-slider .nav-button.next { right: 10px; }

  .tab-slider .nav-button:hover {
    border-color: var(--ss-secondary-color);
    background: var(--ss-secondary-color);
  }

  .tab-slider .tabs {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 2rem;
    margin-bottom: 1rem;
    position: relative;
    overflow-x: auto;
    /* bottom: 0px; */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.tab-slider .tabs::-webkit-scrollbar {
    display: none;
}
  .tab-slider .tab {
    flex: 1 0 auto;
    position: relative;
    padding: 12px 16px;
    background: #222;
    border-radius: 12px;
    cursor: pointer;
    font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
    color: #FFF;
    transition: background 0.3s;
    overflow: hidden;
    font-weight: 600;
}
  .tab-slider .tab.active {
    background: #222;
    color: #fff;
    font-weight: bold;
  }
  .tab-slider .tab .progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(var(--ss-secondary-color) 30%, var(--ss-primary-color) 100%);
    width: 0%;
    transition: width linear;
  }

  
  /*============================================================================================
      WEBSITE MAIN LOGO 
  ==============================================================================================*/
  .main-logo {
      display:block;
      width:100%;
      position:fixed;
      z-index:999998;
      top:0;
      left:0;
      text-align:center;
  }
  .main-logo-link {
      font-family: 'MuseoModerno', cursive !important;
      font-size:36px;
      line-height:0rem;
      display:inline-block;
      padding:0px 10px 5px 10px;
      /* background:#001220; */
      border-radius:0 0 10px 10px;
      box-shadow:1px 1px 2px #666;
      backdrop-filter: blur(4px);
  }
  .main-logo-link img{
      width:130px;
  }
  
  
  /*============================================================================================
      MAIN NAVIGATION 
  ==============================================================================================*/
  
.ss-main-navigation {
    display: flex;
    left: -100%;
    right: 100%;
    top: 0%;
    bottom: 50px;
    position:fixed;
    z-index:1050;
    overflow-y:scroll;
    overflow-x: hidden;
    transition: 0.5s linear all;
    background-color: transparent;
    backdrop-filter: blur(2px);
}
    
.ss-main-navigation.show-menu {
    left: 0%;
    right: 0%;
    top: 0%;
    bottom: 50px;
}

.ss-main-sidebar {
    display: grid;
    align-items: center;
    width: 300px;
    height: auto;
    margin: auto;
    position: relative;
}

.list-unstyled.ss-sidebar-list {
    box-shadow: 1px 0 10px 2px rgb(0 0 0 / 50%);
    border-radius: 10px;
}

.list-unstyled.ss-sidebar-list li {
   margin-bottom: 0%;
}

.ss-sidebar-list .nav-item .nav-link img {
    width:24px;
}

.ss-sidebar-list .nav-item .nav-link .nav-link-name {
    display:block;
    margin-left: 10px;
}

.ss-sidebar-list .nav-item .nav-link {
    color:#212529;
    background: #fff;
    font-size:16px;
    padding:15px 20px;
    line-height:1rem;
    display: flex;
    justify-content: start;
    align-items: center;
    border-bottom:1px solid #ccc;
    position: relative;
    transition: all .6s ease;
}

.ss-sidebar-list .nav-item .nav-link:hover {
    text-decoration: none;
}

.ss-sidebar-list .nav-item .nav-link::after {
    content: '';
    width: 24px;
    height: 24px;
    background: url(../img/icons/right-arrow-black.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    right: 20px;
}

.ss-sidebar-list .nav-item .nav-link:hover::after {
    background: url(../img/icons/right-arrow-white.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.ss-sidebar-list .nav-item .nav-link:hover {
    color:#fff;
    background: linear-gradient(223deg, #083479, #a417fa);
    z-index: 1;
    box-shadow: rgb(0 0 0 / 45%) 0px 25px 20px -20px;
    transform: translate3d(10px, 10px, 10px);
    border-bottom:1px solid #083479;
}

.ss-sidebar-list .nav-item:last-child .nav-link {
    border: none;
    border-radius: 0 0 10px 10px;
}

.ss-sidebar-list .nav-item:first-child .nav-link {
    border-radius: 10px 10px 0 0;
}

.ss-main-navigation-close-box {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ss-main-navigation-close-box .ss-main-navigation-close-btn {
    background-color: #000;
    border-radius: 15px;
    cursor: pointer;
    line-height: 1;
}

.ss-main-navigation-close-box .ss-main-navigation-close-btn:hover, .ss-main-navigation-close-box .ss-main-navigation-close-btn:focus {
    background: linear-gradient(223deg, #083479, #a417fa);
}

  

    
/*============================================================================================
    BOTTOM BAR 
==============================================================================================*/
.bottombar-box {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    z-index: 99999;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    -webkit-overflow-scrolling: touch; /* iOS */
    /* Hide scrollbar for Chrome, Safari and Opera */
    &::-webkit-scrollbar {
        display: none; /* Chrome, Safari and Opera */
    }

}
.bottombar {
    width: fit-content;
    height: 4rem;
    box-sizing: content-box;
    background-color: #FFF;
    border-top: 0.0625rem solid #dedede;
    border-left: 0.0625rem solid #dedede;
    border-right: 0.0625rem solid #dedede;
    border-radius: 15px 15px 0 0;
    margin: 0 auto;
    z-index: 99999;
    display: flex;
    flex-wrap: nowrap;
}

.bottombar .bottombar-list-box {
    flex: 0 0 auto;
    width: 90px;
    height: 100%;
    display: flex;
    /* justify-content: center;
    align-items: center; */
    border-left: 1px solid #dedede;
    transition: all .6s ease;
}

.bottombar .bottombar-list-box .bottombar-list-link {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 400;
    font-family: var(--ss-font-family-primary);
    text-transform: capitalize;
    color: #000;
    line-height: 1.0;
    cursor: pointer;
}

.bottombar .bottombar-list-box .bottombar-list-link .bottombar-link-icon {
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
}

.bottombar .bottombar-list-box:first-child {
    border-left: none;
    border-radius: 14px 0 0 0;
}
.bottombar .bottombar-list-box:last-child {
    border-right: none;
    border-radius: 0 14px 0 0;
}


.bottombar .bottombar-list-box:hover {
    color: #fff;
    background: linear-gradient(223deg, #083479, #a417fa);
    /* box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset; */
}

.bottombar .bottombar-list-box:hover::after {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
}

.bottombar .bottombar-list-box:hover .bottombar-list-link {
    color: #FFF;
}

  
  
  /*============================================================================================
      FOOTER 
  ==============================================================================================*/
  
  footer {
    text-align: center;
    background-color: #0d0e0f;
    padding: 3rem 0px 3rem 0;
  }

  footer .footer_links_box {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 0;
  }

  footer .footer_links_box .footer_link {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px) saturate(70%);
    font-size: 0.9rem;
    font-weight: 400;
    color: #FFF;
    text-align: left;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: 2px solid transparent;
    transition: all 0.5s ease;
  }

  footer .footer_links_box .footer_link:hover {
    border: 2px solid #fff;
  }
  
  footer ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
  }
  
  footer ul li {
    display: inline-block;
  }
  
  footer ul li a {
      line-height: 1.5;
      text-align: center;
      display: inline-block;
      color: #ffffff;
      text-decoration: none;
      font-size: 14px;
      font-weight: 200;
      margin: 0 10px;
  }
  
  footer ul li a:hover {
      color: #ff5a00;
  }

  footer .footer_company_links_box ul li {
    position: relative;
  }

  footer .footer_company_links_box ul li::after{
    content: "";
    position: absolute;
    height: 10px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.48);
    margin: 3px 0;
    transform: translateY(50%);
  }

  footer .footer_company_links_box ul li:last-child:after{
    display: none;
  }
  footer h3{
    width: fit-content;
    text-align:left;
    margin:10px 0;
    font-family: var(--ss-font-family-secondary);
    font-size:22px;
    background: linear-gradient(223deg, #790845, #a417fa);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    }

  footer p {
    font-size: 12px;
    color: #fff;
    margin-top: 15px;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    text-align:center;
    font-weight:bold;
  }
  

  



/* .modal {
    z-index: 2247483646!important;
} */
.modal.show .modal-dialog {
    transform: none;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.modal .modal-title {
    font-size: 20px;
    font-family: var(--ss-font-family-secondary);
}
.modal p {
    font-size: 1rem;
    color: #fff;
}
.modal .modal-content {
    border: 6px solid #fff;
    background: #000;
    border-radius: 15px;
}
.modal .modal-header {
    padding: 10px;
    border-bottom: none;
    background: linear-gradient(223deg, #083479, #a417fa);
    border-radius: 8px;
}
.modal .btn-close {
    position: absolute;
    right: -5px;
    top: -5px;
    padding: 0.25rem 0.25rem;
    margin: -0.5rem -0.5rem -0.5rem auto;
    background: #fff;
    opacity: 1;
    border-radius: 50%;
    display: flex;
}
.modal .btn-close img {
    width: 100%;
    height: auto;
}
.modal .btn-close:focus {
    box-shadow: none;
}




#fixed_cta_btns_box {
    display: flex;
    justify-content: center;
    position: fixed;
    z-index: 999;
    left: 1rem;
    bottom: 1rem;
}
#fixed_cta_btns_box .fixed_cta_btn_link {
    display: flex;
    width: 56px;
    aspect-ratio: 1 / 1;
    font-size: 1.5rem;
    background: #25D366;
    color: #FFF;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}
#fixed_cta_btns_box .fixed_cta_btn_link:hover {
    background: #167b3b;
    color: #FFF;
}


/*============================================================================================
	                            BACKGROUND THEME 
==============================================================================================*/
/* #cv {
    position: fixed;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: 0;
  padding: 0;
  overflow: hidden;
} */
.main {
    display: block;
    width: 100%;
    height: auto;
    padding-top: 85px;
}
	 
/*========================== MAIN NAVBAR ===============================*/
.ic-navbar {
    position: fixed;
    z-index: 9999;
    background: #FFF;
    display: block;
    width: 100%;
    border-bottom: 1px solid #CCC;
}
.ic-navbar .navbar-nav {
    column-gap: 1rem;
    margin-left: 2rem;
}
.ic-navbar .navbar-nav .nav-item {
    margin-bottom: 0%;
}
.ic-navbar .navbar-nav .nav-item .nav-link {
    font-weight: 500;
}

	 
/*========================== FIXED SIDE NAVBAR ===============================*/

.fixed-side-navbar {
  position: fixed;
  display: flex;
  width: auto;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 99999;
  text-align: right;
  -webkit-transition: all .3s;
  transition: all .3s;
  justify-content: center;
  align-items: center;
}
.fixed-side-navbar:hover {
  background: transparent;
}
.fixed-side-navbar:hover .nav > li > a > span {
  color: rgba(0, 0, 0, 0.5);
  display: block;
  background-color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  padding: 2px 12px;
  border-radius: 15px;
}
.fixed-side-navbar .nav > li a.active {
  background-color: transparent;
  color: black;
}
.fixed-side-navbar .nav > li a.active:after {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.fixed-side-navbar .nav > li a.active:before {
  content: '';
  position: absolute;
  top: 50%;
  right: 17px;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 10px;
}
.nav>li {
  position: relative;
  display: block;
}
.fixed-side-navbar .nav > li a {
  color: #fff;
  min-height: 32px;
  background: transparent;
  padding: 5px 45px 5px 25px;
  border-right: none;
}
.fixed-side-navbar .nav > li a span {
  display: none;
  -webkit-transition: all .2s;
  transition: all .2s;
}
.fixed-side-navbar .nav > li a:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: rgba(250, 250, 250, 0.75);
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
}
.fixed-side-navbar .nav > li a:hover {
  background-color: transparent;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-color: black;
  border-right: 0;
}
.fixed-side-navbar .nav > li a:hover > span {
  color: black;
  display: block;
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
          animation-name: fadeInRight;
}



/*============================================================================================
                                HERO SECTION 
==============================================================================================*/
.hero_section {
    width: 100%;
    /* min-height: calc(100vh - 85px); */
    height: fit-content;
    align-content: center;
    padding: 4rem;
    position: relative;
    background-image: url(../img/Inovine_Group_members.png);
}
.hero_section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}
/* .hero_section::after {
    content: '';
    position: absolute;
    top: 80%;
    width: 1px;
    height: 35%;
    background: #CCC;
    left: 0%;
    right: 0%;
    margin: 0 auto;
} */
.hero_section .hero_content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
}
.hero_section .hero_content .hero_title {
    font-size: clamp(2rem, 2rem + 2vw, 4rem);    
    /* font-size: 5rem; */
    font-weight: 600;
    letter-spacing: -0.09rem;
    color: var(--ss-primary-text-color-light);
    text-align: center;
    font-family: var(--ss-font-family-primary);
    margin-bottom: 1rem;
    /* text-shadow: 0px 0px 80px rgba(255, 0, 0, 1.0); */
}
.hero_section .hero_content .hero_subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: var(--ss-primary-text-color-light);
    text-align: center;
    font-family: var(--ss-font-family-primary);
    padding: 0.5rem 1.3rem;
    border-radius: 2rem;
    background: var(--ss-primary-color);
}
.hero_section .hero_content .hero_description {
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
    line-height: var(--ss-line-height-md);
    font-weight: 500;
    letter-spacing: -0.009em;
    font-family: var(--ss-font-family-primary);
    color: var(--ss-secondary-text-color-light);
}
.hero_section .form-control {
    background-color: var(--ss-bg-white) !important;
}




/*=========================== HOME PAGE BANNER ===============================*/
#home-banner-section {
    width: 100%;
    height: auto;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.home-welcome {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
/* .home-welcome h2,h3,h4,h5{
	color:#fff;
	text-align:center;
} */
.home-banner-title {
	display:flex;
	justify-content: center;
	align-items: center;
}
.zoom-effect {
	display:inline-block;
	color:#fff;
	font-size:5rem;
    font-family: var(--ss-font-family-secondary) !important;
	line-height:1;
	transition: transform .2s;
}
.zoom-effect:hover{
	transform: scale(1.5);
	color:#ff5a00;
}
.home-banner-title-caption-name {
	color:#fff;
    letter-spacing: 6px;
	margin:0;
    font-family: var(--ss-font-family-primary);
    /* font-family: 'Poppins', sans-serif !important; */
    font-size: 1.25rem;
    text-transform: uppercase;
    font-weight: 300;
}
.typewrite-block {
    margin-top:5vh;
}
.typewrite {
    color:#fff;
    font-size:5rem;
    font-family: var(--ss-font-family-primary);
}
.home-banner-button {
    margin-top:5vh;
}
/* .gradient-bg {
	width: 100%;
	height: 100%;
	position: fixed;
	background: url(../img/background-gradient.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover; 
	z-index: 1;
}

#starfield {
	z-index: 2;
	opacity: 0.7;
} */
/* .star-a, .star-b, .star-c, .star-d, .star-e {
	width: 2px;
	height: 12px;
	background: linear-gradient(#333, #999, #ccc, #ddd, #fff);
	position: relative;
	animation-name: example;
	animation-duration: 10s;
	animation-iteration-count: infinite;
}
.star-a {
	margin:10px 0 0 50px;
}
.star-b {
	margin:50px 0 0 100px;
	animation-delay:0.25s;
}
.star-c {
	margin:50px 0 0 150px;
	animation-delay:0.5s;
}
.star-d {
	margin:50px 0 0 200px;
	animation-delay:0.75s;
}
.star-e {
	margin:50px 0 0 250px;
	animation-delay:1s;
}  */

/* .product-slider-block {
    margin-top:100px;
    
} */

        /*jssor slider loading skin spin css*/
        /* .jssorl-009-spin img {
            animation-name: jssorl-009-spin;
            animation-duration: 1.6s;
            animation-iteration-count: infinite;
            animation-timing-function: linear;
        }

        @keyframes jssorl-009-spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
 */
        /*jssor slider arrow skin 106 css*/
        /* .jssora106 {display:block;position:absolute;cursor:pointer;}
        .jssora106 .c {fill:#fff;opacity:.3;}
        .jssora106 .a {fill:none;stroke:#000;stroke-width:350;stroke-miterlimit:10;}
        .jssora106:hover .c {opacity:.5;}
        .jssora106:hover .a {opacity:.8;}
        .jssora106.jssora106dn .c {opacity:.2;}
        .jssora106.jssora106dn .a {opacity:1;}
        .jssora106.jssora106ds {opacity:.3;pointer-events:none;}
 */
        /*jssor slider thumbnail skin 101 css*/
        /* .jssort101 .p {position: absolute;top:0;left:0;box-sizing:border-box;background:#000;}
        .jssort101 .p .cv {position:relative;top:0;left:0;width:100%;height:100%;border:2px solid #000;box-sizing:border-box;z-index:1;}
        .jssort101 .a {fill:none;stroke:#fff;stroke-width:400;stroke-miterlimit:10;visibility:hidden;}
        .jssort101 .p:hover .cv, .jssort101 .p.pdn .cv {border:none;border-color:transparent;}
        .jssort101 .p:hover{padding:2px;}
        .jssort101 .p:hover .cv {background-color:rgba(0,0,0,6);opacity:.35;}
        .jssort101 .p:hover.pdn{padding:0;}
        .jssort101 .p:hover.pdn .cv {border:2px solid #fff;background:none;opacity:.35;}
        .jssort101 .pav .cv {border-color:#fff;opacity:.35;}
        .jssort101 .pav .a, .jssort101 .p:hover .a {visibility:visible;}
        .jssort101 .t {position:absolute;top:0;left:0;width:100%;height:100%;border:none;opacity:.6;}
        .jssort101 .pav .t, .jssort101 .p:hover .t{opacity:1;} */


        /* .rainbow-block-row {
            background: #fff;
            border-radius: 30px;
        } */


        @keyframes rotate {
            100% {
                transform: rotate(1turn);
            }
        }
        
        .rainbow-block {
            padding: 31px;
        }

        .rainbow {
            position: relative;
            z-index: 0;
            display: inline-block;
            width: 100%;
            padding-top: 100%;
            height: auto;
            border-radius: 50%;
            overflow: hidden;
            box-shadow: rgb(0 0 0 / 75%) 0px 5px 17px;
        }

        .rainbow:hover span {
            transform: scale(1.3);
        }

        .rainbow::before {
            content: '';
            position: absolute;
            z-index: -2;
            left: -50%;
            top: -50%;
            width: 200%;
            height: 200%;
            background-color: #399953;
            background-repeat: no-repeat;
            background-size: 50% 50%, 50% 50%;
            background-position: 0 0, 100% 0, 100% 100%, 0 100%;
            background-image: linear-gradient(#000, #000), linear-gradient(#000, #000), linear-gradient(#000, #ff2972), linear-gradient(#ff2972, #70082b, #000);
            animation: rotate 4s linear infinite;
            }

            #about-circle1 {
                border: 2px solid #ff2972;
            }
            #about-circle1::before {
                background-image: linear-gradient(#000, #000), linear-gradient(#000, #000), linear-gradient(#000, #ff2972), linear-gradient(#ff2972, #70082b, #000);
            }
            
            #about-circle2 {
                border: 2px solid #ff29fc;
            }
            #about-circle2::before {
                background-image: linear-gradient(#000, #000), linear-gradient(#000, #000), linear-gradient(#000, #ff29fc), linear-gradient(#ff29fc, #91048e, #000);
            }
            
            #about-circle3 {
                border: 2px solid #a417fa;
            }
            #about-circle3::before {
                background-image: linear-gradient(#000, #000), linear-gradient(#000, #000), linear-gradient(#000, #a417fa), linear-gradient(#a417fa, #4d057a, #000);
            }
            
            #about-circle4 {
                border: 2px solid #1785fa;
            }
            #about-circle4::before {
                background-image: linear-gradient(#000, #000), linear-gradient(#000, #000), linear-gradient(#000, #1785fa), linear-gradient(#1785fa, #063f7c, #000);
            }
            
            .rainbow::after {
                content: '';
                position: absolute;
                z-index: -1;
                left: 10px;
                top: 10px;
                width: calc(100% - 20px);
                height: calc(100% - 20px);
                background: linear-gradient(135deg, #301923, #210d28);
                border-radius: 50%;
                border: 10px solid #d6d2d2;
                box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
                /* box-shadow: inset 0px 0px 75px 10px #ff2972; */
            }

            .rainbow span {
                position: absolute;
                left: 0%;
                right: 0%;
                margin: auto;
                font-family: 'Poppins', sans-serif;
                font-weight: bold;
                text-transform: uppercase;
                font-size: 26px;
                top: 40%;
                text-align: center;
                color: transparent;
                transition: 0.3s ease-out;
            }

            #about-circle1 span {
                /* -webkit-text-stroke-width: 1px;
                -webkit-text-stroke-color: #ff2972; */
                color: #ff2972;
            }
            
            #about-circle1:hover span {
                -webkit-text-stroke-color: #ff2972;
                color: #ff2972;
                text-shadow: 0px 0px 40px #ff2972;
            }
            
            #about-circle2 span {
                /* -webkit-text-stroke-width: 1px;
                -webkit-text-stroke-color: #a417fa; */
                color: #ff29fc;
            }
            
            #about-circle2:hover span {
                -webkit-text-stroke-color: #ff29fc;
                color: #ff29fc;
                text-shadow: 0px 0px 40px #ff29fc;
            }
            
            #about-circle3 span {
                /* -webkit-text-stroke-width: 1px;
                -webkit-text-stroke-color: #04fcf3; */
                color: #a417fa;
            }
            
            #about-circle3:hover span {
                -webkit-text-stroke-color: #a417fa;
                color: #a417fa;
                text-shadow: 0px 0px 40px #a417fa;
            }
            
            #about-circle4 span {
                /* -webkit-text-stroke-width: 1px;
                -webkit-text-stroke-color: #a417fa; */
                color: #1785fa;
            }
            
            #about-circle4:hover span {
                -webkit-text-stroke-color: #1785fa;
                color: #1785fa;
                text-shadow: 0px 0px 40px #1785fa;
            }
            
        
/*============================= HOME PAGE HIGHLIGHTS ==============================*/
.highlights-section {
    position:relative;
    z-index:99;
    margin-top:-125px;
}
.highlights-section .highlights-single-box {
    padding:0;
}
.highlights-section #highlights-single1 {
    background:#ff3b49;
}
.highlights-section #highlights-single2 {
    background:#091848;
}
.highlights-section #highlights-single3 {
    background:#FFC107;
}
.highlights-section .highlights-single {
    text-align:center;
    padding:50px;
}
.highlights-section .highlights-single .highlights-single-img{
    width:140px;
    height:auto;
}
.highlights-section .highlights-single .highlights-single-content{
    color:#fff !important;
}
.highlights-section .highlights-single .highlights-single-heading{
    color:#fff;
    font-weight:700;
    margin-bottom:15px;
    font-size: 1.5rem;
}


/*============================= HOME PAGE ABOUT ==============================*/
#about {
	width:100%;
}
/* .about-section {
    background:#000;
	text-align:justify;
} */
.about-image-box {
    margin-top: 70px;
}
.about-image {
    width: 80%;
    height: auto;
    -webkit-animation:spin 20s linear infinite;
    -moz-animation:spin 20s linear infinite;
    animation:spin 20s linear infinite;
	margin:15px 0;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
.about-vision, .about-mission {
	border-left:40px solid #ff5a00;
	padding:0 15px;
	border-radius:10px 0 0 10px;
}
.about-vision {
	position:relative;
}
.about-vision>.side-heading:after {
	position:absolute;
	font-family: "Font Awesome 5 Free";
	content:'\f06e';
	top:8px;
	left:-30px;
	color:#fff;
	font-size:20px;
}
.about-mission {
	position:relative;
}

.about-mission>.side-heading:after {
	position:absolute;
	font-family: "Font Awesome 5 Free";
	content:'\f0a4';
	top:8px;
	left:-30px;
	color:#fff;
	font-size:20px;
}


/*============================= HOME PAGE ABOUT ==============================*/


/*============================== HOME PAGE SERVICES ==========================*/

a.animated-button.thar-three {
    width: calc(100% - 60px);
	color:#fff;
	font-size:1rem;
	/* .font-weight:bold; */
	cursor: pointer;
	display: block;
	/* position: relative; */
	position: absolute;
	border: 2px solid #ffffff;
    border-bottom: 5px solid #fff;
    border-radius: 30px;
	transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
	padding:10px;
	background:#000;
	text-transform:uppercase;
    left: 0%;
    right: 0%;
    bottom: -30px;
    margin: auto;
}

a.animated-button.thar-three:focus {
    box-shadow: none;
}
a.animated-button.thar-three:hover {
	color: #fff !important;
	/* background-color: transparent; */
	background-color: #a417fa;
	text-shadow: nthree;
	border: 2px solid #fa177e;
    z-index: 0;
}
a.animated-button.thar-three:hover:before {
	left: 0%;
	right: auto;
	width: 100%;
}
a.animated-button.thar-three:before {
	display: block;
	position: absolute;
	top: 0px;
	right: 0px;
	height: 100%;
	width: 0px;
	z-index: -1;
	content: '';
	color: #fff !important;
	background: #fa177e;
    border-radius: 30px;
	transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}
a.animated-button.thar-three>.far {
	margin-left:5px;
}


/*============================= HOME PAGE CLIENT BENEFITS ==============================*/

/*======================== HOME PAGE BUSINESS CATEGORIES =====================*/
.business-categories-list {
    width: 130px;
    aspect-ratio: 12 / 5;
    border-radius: 62%;
    background: linear-gradient(90deg, #828282, #fff);
    background: #211241;
    position: relative;
}
.business-categories-list .business-categories-list-top {
    position: absolute;
    width: 100%;
    aspect-ratio: 3 / 1;
    border-radius: 50%;
    background: linear-gradient(270deg, #083479, #a417fa);
    top: 0px;
}
.business-categories-list .business-categories-list-img-box {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: -70px;
    width: 50%;
    aspect-ratio: 1 / 1;
    background: #eee;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: revolve 1s linear infinite;
}
.business-categories-list .business-categories-list-img {
    width: 50%;
    height: 50%;
    padding: 0px;
    background: #eee;
    border-radius: 10px;
    position: relative;
    z-index: 5;
}
.business-categories-list .business-categories-list-img-box::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -27px;
    margin: auto;
    content: '';
    width: 0px;
    height: 0px;
    border-radius: 50%;
    border-top: 48px solid #eee;
    border-left: 32px solid transparent;
    border-right: 32px solid transparent;
    z-index: 2;
}
@keyframes locationscale {
    0% {
        transform: scale(1.0);
    }
    50% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1.0);
    }
}
.business-categories-list::before {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 40px;
    top: 23px;
    margin: auto;
    content: '';
    width: 50%;
    aspect-ratio: 4 / 1;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.15);
    z-index: 1;
    animation: locationscale 1s linear infinite;
}


/*========================== HOME PAGE SUBSCRIBE =============================*/

.newsletter-form {
    overflow: hidden;
    padding:10px 0;
    /* display: flex;
    justify-content: space-between; */
}
/* .subscribe-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
} */
/* .newsletter-form button {
    width: 180px;
    height: 45px;
    border: 2px solid #001220;
    font-family: var(--ss-font-family-primary);
    font-weight: 700;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    margin-top: 15px;
    border: 3px solid #fff;
    color: #fff;
    -webkit-transition: 0.4s linear;
    transition: 0.4s linear;
    overflow: hidden;
    border-radius: 15px;
    background: linear-gradient(223deg, #790845, #a417fa);
}
 */



/*============================================================================================
	                            WEB SERVICES PAGE 
==============================================================================================*/

	 
/*========================== WEB SERVICES ===============================*/
.website-types ul {
    list-style:none;
}
.website-types ul li {
    font-size:1rem;
    padding:5px 0;
}
/*.website-types ul li a {
    font-size:1rem;
    line-height:2.0;
    color:#333;
}
.website-types ul li a:before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0a4";
    margin-right: 7px;
    color:#333;
} */
.website-types {
    text-align:center;
    padding:0;
    border-radius:10px;
    margin:15px 0;
	box-shadow: 0 15px 40px 0 rgb(0 0 0 / 8%);
}
.website-type-single-block {
    display: flex;
    justify-content: center;
}
.website-type-single-box {
    width: 250px;
    height: auto;
    margin-bottom: 150px;
    margin-top: 15px;
}
.website-type-single {
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.website-types h3 {
    margin-top:15px;
	margin-bottom:15px;
	text-align:left;
	font-weight:400;
	font-size:1.5rem;
}
.website-types p {
	text-align:left;
}
.website-types a:hover {
    background:#ffaa00;
}
/* .website-types-left {
	.background:#ff5a00;
	.border-radius:10px 0 0 10px;
	.margin:0;
	.padding:0;
} */
.website-type-icon-box {
	display:block;
	background:#ff5a00;
	border-radius:5px 0 0 0;
}
.website-type-icon {
	color:#fff;
	font-size:2rem;
	padding:30px 20px;
	
}
.website-type-quote-box {
    width: 55%;
    padding: 7px 0px;
    display: flex;
    justify-content: center;
    color: #fff;
    background: transparent;
    border-radius: 10px;
    border: 1px solid #8BFFFF;
    position: relative;
}
.website-type-quote-box::after {
    position: absolute;
    top: 39px;
    content: "";
    width: 0;
    height: 0;
    border-top: 14px solid #8BFFFF;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
}
.website-type-quote-box .website-type-quote-text {
    font-family: var(--ss-font-family-secondary);
    color: #8BFFFF;
    font-size: 14px;
}
.website-type-quote-icon {
	color:#fff;
	font-size:2rem;
}
.website-type-quote-text {
	color:#fff;
	font-size:1rem;
}
.website-type-img-box {
    width: 100%;
    height: auto;
    position: relative;
    animation: spaceship 2s linear infinite;
}
.website-type-img-box figure {
    width: 100%;
    height: 100%;
}
.website-type-img-box .website-type-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    object-position: 0px -25px;
}


@keyframes spaceship {
    0% {
        transform: translate(-10px, 0px);
    }
    25% {
        transform: translate(0px, -5px);
    }
    50% {
        transform: translate(10px, 0px);
    }
    75% {
        transform: translate(0px, 20px);
    }
    100% {
        transform: translate(-10px, 0px);
    }
}


.website-text-box {
    position: absolute;
    bottom: -115px;
}
.website-text-box h3 {
    font-family: var(--ss-font-family-secondary);
    color: #8BFFFF;
    font-size: 20px;
    position: relative;
    margin-bottom: 40px;
}
.website-text-box h3::after {
    position: absolute;
    content: '';
    width: 110px;
    height: 10px;
    border-radius: 50%;
    background: #7fdffd;
    bottom: -18px;
    left: 0%;
    right: 0%;
    margin: auto;
    box-shadow: 0 0 14px 6px #a7eeff;
    animation: spaceship-shadow 2s linear infinite;
}


@keyframes spaceship-shadow {
    0% {
        transform: translate(-10px, 0px);
    }
    50% {
        transform: translate(10px, 0px);
    }
    75% {
        transform: scale(0.75);
    }
    100% {
        transform: translate(-10px, 0px);
    }
}

.website-text-box p {
    text-align: center;
}
.website-type-explore-box {
	display:block;
	/* .padding:10px 20px; */
	background:#17A2B8;
	border-radius:0 0 0 8px;
	border-right:1px solid #eee;
}
.pricing-single {
	padding:0;
}
.pricing {
	background:#fff;
    padding: 30px;
    -webkit-box-shadow: 0 5px 30px -5px rgb(0 0 0 / 20%);
    box-shadow: 0 5px 30px -5px rgb(0 0 0 / 20%);
    border-radius: 7px;
    text-align: center;
    z-index: 1;
    position: relative;
}
.pricing h3 {
    color: #ff5a00;
    font-weight: 300;
    margin-bottom: 1.5rem;
}
.pricing .price {
    margin: 30px 0;
}
.pricing .price span {
    display: block;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #ff5a00;
}
.pricing .price strong {
    font-weight: 300;
    font-family: var(--ss-font-family-primary);
    color: #ff5a00;
    font-size: 4rem;
}
.pricing.pricing-popular {
    -webkit-transform: scale(1.10);
    -ms-transform: scale(1.10);
    transform: scale(1.10);
    z-index: 2;
}
.pricing .pricing-specs>li {
	display:block;
	padding:5px 0;
}
.pricing>a {
	margin-top:40px;
}


.modal-content {
    width:85%;
}
.modal-header {
    background:#04b000;
}
.modal-title {
    color:#fff;
    font-weight: 600;
    font-size: 2rem;
    margin-top: 0;
}


/*========================== WORKING PROCESS ===============================*/
/*.working-process i {
    margin:30px 0;
}
.working-process span {
    display:block;
    text-align:center;
    margin:10px 0;
}
.working-process img {
    width:100%;
} */


.working-process-step-box {
	background: linear-gradient(125deg, #fefefe 0%, #ddd 100%);
	padding:30px;
	width:115px;
	height:115px;
	border-radius:65px;
	box-shadow: 0px 0px 0px 5px #fff, 0px 0px 0px 10px #d6d4d4;
	border:2px solid #ff5a00;
}
.working-process-step-img {
	width:100%; 
	height:auto;
}
.working-process-step-block {
	position:relative;
	text-align:center;
	margin: 15px 0;
}
.working-process-step-box:after {
    position: absolute;
    content: '';
    top: 60px;
    left: 125px;
    background: #17A2B8;
    width:100px;
	height:3px;
}
#working-process-step-lastbox:after {
    position: absolute;
    content: '';
    top: 0px;
    left: 0px;
    background: #000;
	opacity:0;
    width:100px;
	height:3px;
}
.working-process-step-block span {
	display:block;
	margin-right:20px;
	margin-top:20px;
}


/*========================== TECHNOLOGIES USED ===============================*/

.web-technologies-box {
    width: 700px;
    min-height: 500px;
    position: relative;
}

.web-technologies-box .web-technologies-img-box {
    width: 100px;
    height: 100px;
    background: transparent;
    border-radius: 50px;
    border: 2px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
}

.web-technologies-box .web-technologies-img-box .web-technologies-img {
    width: 70px;
    height: auto;
}

.web-technologies-box #web-technologies-img-box6 {
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 315px;
    height: 315px;
    padding: 15px;
    background: #000;
    border: 2px solid #c6c8ca;
    border-radius: 200px;
}
.web-technologies-box #web-technologies-img-box6 #web-technologies-img6 {
    width: 55%;
    height: auto;
}

.web-technologies-box #web-technologies-img-box1 {
    top: 267px;
    left: 61px;
    border-color: #E44D26;
}
.web-technologies-box #web-technologies-img-box1::after {
    content: '';
    width: 2px;
    height: 200px;
    background: #E44D26;
    position: absolute;
    transform: rotate(112deg);
    right: -93px;
    top: -5px;
}

.web-technologies-box #web-technologies-img-box2 {
    top: 173px;
    left: 91px;
    border-color: #2062AF;
}
.web-technologies-box #web-technologies-img-box2::after {
    content: '';
    width: 2px;
    height: 200px;
    background: #2062AF;
    position: absolute;
    transform: rotate(130deg);
    right: -73px;
    top: 36px;
}

.web-technologies-box #web-technologies-img-box3 {
    top: 100px;
    left: 158px;
    border-color: #563D7C;
}
.web-technologies-box #web-technologies-img-box3::after {
    content: '';
    width: 2px;
    height: 200px;
    background: #563D7C;
    position: absolute;
    transform: rotate(151deg);
    right: -35px;
    top: 72px;
}

.web-technologies-box #web-technologies-img-box4 {
    top: 60px;
    left: 250px;
    border-color: #F7E018;
}
.web-technologies-box #web-technologies-img-box4::after {
    content: '';
    width: 2px;
    height: 200px;
    background: #F7E018;
    position: absolute;
    transform: rotate(167deg);
    left: 78px;
    top: 95px;
}

.web-technologies-box #web-technologies-img-box5 {
    top: 60px;
    right: 250px;
    border-color: #0868AB;
}
.web-technologies-box #web-technologies-img-box5::after {
    content: '';
    width: 2px;
    height: 200px;
    background: #0868AB;
    position: absolute;
    transform: rotate(193deg);
    right: 78px;
    top: 95px;
}

.web-technologies-box #web-technologies-img-box7 {
    top: 100px;
    right: 158px;
    border-color: #D88605;
}
.web-technologies-box #web-technologies-img-box7::after {
    content: '';
    width: 2px;
    height: 200px;
    background: #D88605;
    position: absolute;
    transform: rotate(216deg);
    right: 133px;
    top: 71px;
}

.web-technologies-box #web-technologies-img-box8 {
    top: 173px;
    right: 91px;
    border-color: #777BB3;
}
.web-technologies-box #web-technologies-img-box8::after {
    content: '';
    width: 2px;
    height: 200px;
    background: #777BB3;
    position: absolute;
    transform: rotate(231deg);
    right: 161px;
    top: 43px;
}

.web-technologies-box #web-technologies-img-box9 {
    top: 267px;
    right: 61px;
    border-color: #EE4323;
}
.web-technologies-box #web-technologies-img-box9::after {
    content: '';
    width: 2px;
    height: 200px;
    background: #EE4323;
    position: absolute;
    transform: rotate(249deg);
    right: 187px;
    top: -5px;
}

.web-technologies-box #web-technologies-heading {
    border: none;
    left: 0%;
    right: 0%;
    margin: auto;
    bottom: -75px;
}
.web-technologies-box #web-technologies-heading h3 {
    font-family: var(--ss-font-family-secondary);
    color: #00f9f9;
    font-size: 20px;
}


/*==================================================================
PORTFOLIO PAGE
==================================================================*/
.portfolio-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 0.95;
    background: rgba(50, 50, 50, 0.5);
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 1.0);
    overflow: hidden;
    margin: 0.75rem 0;
    backdrop-filter: blur(50px);
  }

  .portfolio-card .image-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #dedede;
    background-color: #FFF;
  }

  .portfolio-card .image-container::after {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    z-index: rgba(0, 0, 0, 0.1);
    z-index: 1;
  }

  .portfolio-card .image-container img {
    width: 100%;
    transition: transform 4s ease;
  }

  .portfolio-card:hover .image-container img,
  .portfolio-card.scroll .image-container img {
    transform: translateY(-30%);
  }

  .portfolio-card .content {
    padding: 16px;
  }

  .portfolio-card .title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #FFF;
  }

  .portfolio-card .description {
    font-size: 14px;
    color: #ccc;
  }

  .portfolio-card .scroll-btn, .portfolio-card .view-btn{
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: rgba(125, 125, 125, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 16px;
    z-index: 1;
    text-align: center;
    align-content: center;
  }

  .portfolio-card .view-btn {
    top: unset;
    bottom: 12px;
    color: #000;
  }

  .portfolio-card .scroll-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }

    .portfolio-card .view-btn:hover {
        background-color: rgba(255, 255, 255, 0.8);
        color: #000;
    }

  .horizontal-scroll {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    touch-action: pan-x;
  }
  
  .horizontal-scroll::-webkit-scrollbar {
    display: none;
  }
  
  .horizontal-scroll .scroll-item {
    scroll-snap-align: start;
  }
  




.team-slide .owl-controls .owl-nav > div, .service-box .box-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    aspect-ratio: 1 / 1;
    border: 8px solid #000;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    line-height: 72px;
    background: #ff5a00;
/*  background: rgb(72, 44, 191);
	background: -webkit-linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    background: -o-linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    background: linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#482cbf', endColorstr='#6ac6f0', GradientType=1); */
    overflow: hidden;
    z-index: 1;
    color: #fff;
    -webkit-transition: 1.0s;
    -o-transition: 1.0s;
    transition: 1.0s;
    /* .-webkit-box-shadow: 0 0 30px 0 rgb(0 0 0 / 20%);
    .box-shadow: 0 0 30px 0 rgb(0 0 0 / 20%); */
	box-shadow: 0 15px 40px 0 rgb(0 0 0 / 8%);
}
.team-slide .owl-controls .owl-nav > div:before, .service-box .box-icon:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #ff5a00;
    z-index: -1;
    -webkit-transition: 1.0s;
    -o-transition: 1.0s;
    transition: 1.0s;
    opacity: 1;
}



.single-client-block {
    display:flex;
}
.client-content {
  padding-left: 115px;
  padding-right: 30px;
  padding-top: 15vh;
  padding-bottom: 15vh;
  background:#fff;
  background-attachment: fixed;
  min-height: 100vh;
  background-size: cover;
  background-position: center center;
}

.client-block {
	background:#fff;
	padding:15px 5px;
	border-radius:10px;
	/* .color:#fff; */
	margin:15px 0;
	border:2px solid #333;
}

.client-block .logo-box {
	height: 220px;
	align-content: center;
}

.client-block img{
    max-height:100%;
    max-width:70%;
	padding:5px;
	border-radius:10px;
}

.client-block h5{
	padding:5px 0;
	font-size:20px;
	/* .background:#001220; */
	color:#ff5a00;
	border-radius:0 0 10px 10px;
	text-align:center;
	font-weight:bold;
	margin-top: 1rem;
}

.client-block p{
	color:#000;
	margin-top:10px;
}
.client-block a {
    display:inline-block;
    text-align:center;
}

.button {
	display:inline-block;
	text-align:center;
	padding:5px 10px;
	background:#000;
	color:#fff;
	margin:10px;
	border-radius:5px;
}

.button:hover {
	background:#ff5a00;
	color:#fff;
}








.ss-feature-box {
	width:100%;
	padding:20px;
	background:#001220;
	text-align:center;
	border-radius:10px;
	margin:15px 0;
}

.ss-feature-box img{
	width:50%;
	height:auto;
	padding:20px;
	
}

.ss-printing-feature-block {
    margin:15px 0 20px 0;
}
.ss-printing-feature-box {
	width:100%;
	/* .background:#001220; */
	text-align:center;
	border-radius:10px;
	margin:10px 0;
	box-shadow:0px 10px 13px -7px #000000;
}

.ss-printing-feature-image {
	width:100%;
	height:auto;
	
}

.ss-printing-feature-title {
	color:#000;
	font-size:20px;
	text-align:center;
	font-weight:400;
}




.ss-page-banner {
    width:95%;
	height:300px;
    margin: 2rem auto;
    border-radius: 2rem;
    /* background-image: url('../img/banners/hex-bg.jpg'); */
    background-image: linear-gradient(223deg, rgba(121, 8, 69, 0.1), rgba(164, 23, 250, 0.1)), url('../img/banners/hex-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    /* background-image: 
    linear-gradient(rgba(255, 0, 0, 0.6), rgba(255, 0, 0, 0.6)),
    url('../img/banners/cubes-bg.jpg'); */
    /* background-image: url('../img/cube-bg.jpg'); */
    align-content: center;
}
#ss-page-banner-printing {
	background:url('../img/printing-banner.jpg');
	width:100%;
	height:300px;
	background-repeat:no-repeat;
	/* .background-attachment: fixed;
    .background-size: cover; */
    background-position: center center;
}
.ss-page-banner .ss-pagebanner-title-block {
    display: flex;
    flex-direction: column;
	justify-content: center;
    align-items: center;
}
#ss-page-banner-designing {
	background:url('../img/designing-bg.jpg');
}
#ss-page-banner-printing {
	background:url('../img/printing-bg.jpg');
}
#ss-page-banner-crafts {
	background:url('../img/crafts-bg.jpg');
}
#ss-page-banner-careers {
	background:url('../img/career-bg.jpg');
}
#ss-page-banner-faq {
	background:url('../img/faq-bg.jpg');
}
#ss-page-banner-contact {
	background:url('../img/contactus-bg.jpg');
}
#ss-page-banner-portfolio {
	background:url('../img/portfolio-bg.jpg');
}

.ss_theme_bg {
    background: rgba(50, 50, 50, 0.5);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}



.pagebanner-title {
	font-size:50px;
	font-family: var(--ss-font-family-secondary);
	color:#fff;
    margin: 0%;
}

/*.pagebanner-title:after {
	position: absolute;
    content: '';
    height: 3px;
	bottom: -4px; 
	margin: 0 auto;
	.left: 0;
    right: 0;
	width: 40%;
	background:#033d48;
	transition:.5s;
}

.pagebanner-title:hover:after {
	width: 60%;
	background: #ff5a00;
}
*/
.pagebanner-title-sub {
	/* .font-size:30px !important; */
	margin-top:15%;
	text-align:center;
	color:#001220;
	font-weight:500;
	margin-bottom:-5px;
}











.contact-us-block {
    margin-top:50px;
}

.contact-us-social {
    display: flex;
    justify-content: center;
}

.contact-us-social .contact-us-social-link {
    display: flex;
    width: 60px;
    aspect-ratio: 1 / 1;
    background-color: #FFF;
    border-radius: 0.75rem;
    justify-content: center;
    align-items: center;
    margin: 0.75rem;
}

.contact-us-social .contact-us-social-link .icon {
    font-size: 2rem;
    color: #000;
    line-height: 1;
}
.contact-us-single {
    padding: 30px;
    color: #333;
    /* border: 2px solid #333; */
    margin: 15px 0;
    /* border-top: 2px solid rgb(164 23 252); */
    border-radius: 30px;
    transition: 0.5s;
    box-shadow: 0 -5px rgb(164 23 252);
    position: relative;
    background: #fff;
}
.contact-us-single img {
    margin-bottom:15px;
}
.contact-us-single h4 {
    margin: 0 0 10px 0;
    font-size: 20px;
    color: #fa177e;
    text-transform: uppercase;
    text-align:left;
    font-family: var(--ss-font-family-secondary);
}
.contact-us-single hr {
    background: #fff;
}
.contact-us-single .contact-social ul {
    list-style-type: none;
    color: #333;
    display:inline-block;
}
.contact-us-single .contact-social ul li {
    float: left;
}
.contact-us-single .contact-social ul li a {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
}
.contact-us-single .contact-social ul li a i {
    color: #fa177e;
    font-size: 2.5rem;
    display:inline-block;
}
/* .contact_form_block {
    border: 1px solid rgba(0, 0, 0, 0.09);
    padding: 2rem;
    border-radius: 2rem;
} */

.contact-address-sub {
    display: flex;
    width: 100%;
}
.contact-address-sub .icon {
    width: 30px;
}
.contact-address-sub .icon i {
    width: 30px;
    color: #fa177e;
}
.contact-address .contact-address-sub i {
    color: #fa177e;
    font-size: 30px;
    padding: 10px 0;
}
.contact-us-single ul {
    list-style: none;
}
.contact-us-single ul li {
    line-height: 30px;
    font-size:16px;
}
.contact-us-block iframe {
    border: 10px solid #333 !important;
}
.contact-us-form .column-title {
    text-align:left;
    color:#333;
    margin:20px 0;
}







#accordion .accordion-item {
    border:none;
    border-radius: 30px;
    background-color: transparent;
    margin-bottom: 1.25rem;
    margin-top: 0.5rem;
}
#accordion .accordion-header button {
    background: linear-gradient(223deg, #790845, #a417fa);
    border-radius: 0.5rem;
    color: #fff;
    display: block;
    font-size: 18px;
    font-weight: 500;
    padding: 1rem 1.25rem 1rem 3rem;
    position: relative;
    transition: all 0.3s ease 0s;
}
#accordion .accordion-header button:focus {
    box-shadow: none;
}
#accordion .accordion-header button.collapsed  {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px) saturate(70%);
    color: #FFF;
}
#accordion .accordion-header button.collapsed:focus  {
    box-shadow: none;
}
#accordion .accordion-header button::after {
    background: #a417fa none repeat scroll 0 0;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.58);
    color: #fff;
    content: "\F286";
    font-family: bootstrap-icons; 
    font-size: 25px;
    height: 55px;
    left: -20px;
    line-height: 55px;
    position: absolute;
    text-align: center;
    top: 0px;
    transition: all 0.3s ease 0s;
    width: 55px;
}
#accordion .accordion-header button.collapsed::after {
    background: #d4d4d4 none repeat scroll 0 0;
    box-shadow: none;
    color: #333;
    content: "\F285";
}
#accordion .accordion-body {
    border-left: 2px dashed #FFF;
}




#careers {
    min-height:100vh;
}
.careers-job-single {
    border:2px solid #001220;
    border-radius:10px;
    padding:15px;
}
.job-single-title h3 {
    color:#ff5a00;
    text-align:left;
    margin-bottom:10px;
}
.careers-job-single h4 {
    color:#001220;
    text-align:left;
    margin:20px 0 10px 0;
}
.job-single-skills ul {
    margin-left:15px;
}
.job-single-skills ul li:before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    content: "\f0a4";
    margin-right: 7px;
}




/*========================== BLOG ===============================*/
.latest_blog_area {
    background:#f9f9ff;
}
.blog_item {
    margin-bottom:50px;
}
.blog_details {
    padding:30px 0 20px 10px;
    /* box-shadow:0px 10px 20px 0px rgba(221,221,221,0.3); */
}
@media (min-width: 768px){
    .blog_details {
        padding:60px 30px 35px 35px;
    }
}
.blog_details p {
    margin-bottom:30px;
}
.blog_details h2 {
    font-size:18px;
    font-weight:600;
    margin-bottom:8px;
}
@media (min-width: 768px){
    .blog_details h2 {
        font-size:24px;
        margin-bottom:15px;
    }
}
.blog-info-link li {
    float:left;
    font-size:14px;
}
.blog-info-link li a {
    color:#999999;
}
.blog-info-link li i, .blog-info-link li span {
    font-size:13px;
    margin-right:5px;
}
.blog-info-link li::after { 
    content:"|";
    padding-left:10px;
    padding-right:10px;
}
.blog-info-link li:last-child::after {
    display:none;
}
.blog-info-link::after {
    content:"";
    display:block;
    clear:both;
    display:table;
}
.blog_item_img {
    position:relative;
}
.blog_item_img .blog_item_date {
    position:absolute;
    bottom:-10px;
    left:10px;
    display:block;
    color:#fff;
    padding:8px 15px;
    border-radius:5px;
    background: linear-gradient(to right, #2926ac 0%, #6128be 100%);
}
@media (min-width: 768px){
    .blog_item_img .blog_item_date {
        bottom:-20px;
        left:40px;
        padding:13px 30px;
    }
}
.blog_item_img .blog_item_date h3 {
    font-size:22px;
    font-weight:600;
    color:#fff;
    margin-bottom:0;
    line-height:1.2;
}
@media (min-width: 768px){
    .blog_item_img .blog_item_date h3 {
        font-size:30px;
    }
}
.blog_item_img .blog_item_date p {
    margin-bottom:0;
    color:#fff !important;
}
@media (min-width: 768px) {
    .blog_item_img .blog_item_date p {
        font-size:18px;
    }
}
.blog_right_sidebar .widget_title {
    font-size:20px;
    margin-top: 0%;
    margin-bottom:40px;
    text-align: left;
}
.blog_right_sidebar .widget_title::after {
    content:"";
    display:block;
    padding-top:15px;
    border-bottom:1px solid #f0e9ff;
}
.blog_right_sidebar .single_sidebar_widget {
    /* background:#fbeee7;  */
    padding:30px;
    margin-bottom:30px;
}
.blog_right_sidebar .search_widget .form-control {
    height:50px;
    border-color:#ff5a00;
    font-size:13px;
    color:#999999;
    padding-left:20px;
    border-radius:5px 0 0 5px;
    border-right:0;
}
.blog_right_sidebar .search_widget .form-control::placeholder {
    color:#999999;
}
.blog_right_sidebar .search_widget .form-control:focus {
    border-color:#f0e9ff;
    outline:0;
    box-shadow:none;
}
.blog_right_sidebar .search_widget .input-group button {
    background: #ff5a00;
    border-left: 0;
    border: 1px solid #ff5a00;
    padding: 12px 20px;
}
.blog_right_sidebar .search_widget .input-group button i, .blog_right_sidebar .search_widget .input-group button span {
    font-size:14px;
    color:#fff;
}
.blog_right_sidebar .newsletter_widget .form-control {
    height:50px;
    border-color:#f0e9ff;
    font-size:13px;
    color:#999999;
    padding-left:20px;
    border-radius:0;
}
.blog_right_sidebar .newsletter_widget .form-control::placeholder {
    color:#999999;
}
.blog_right_sidebar .newsletter_widget .form-control:focus {
    border-color:#f0e9ff;
    outline:0;
    box-shadow:none;
}
.blog_right_sidebar .newsletter_widget .input-group button {
    background:#fff;
    border-left:0;
    border:1px solid #f0e9ff;
    padding:4px 15px;
    border-left:0;
}
.blog_right_sidebar .newsletter_widget .input-group button i, .blog_right_sidebar .newsletter_widget .input-group button span {
    font-size:14px;
    color:#999999;
}
.blog_right_sidebar .post_category_widget .cat-list li {
    border-bottom:1px solid #f0e9ff;
    transition:all 0.3s ease 0s;
    padding-bottom:12px;
}
.blog_right_sidebar .post_category_widget .cat-list li:last-child {
    border-bottom:0;
}
.blog_right_sidebar .post_category_widget .cat-list li a {
    font-size:14px;
    line-height:20px;
    color:#888888;
}
.blog_right_sidebar .post_category_widget .cat-list li a p {
    margin-bottom:0px;
}
.blog_right_sidebar .post_category_widget .cat-list li+li {
    padding-top:15px;
}
.blog_right_sidebar .post_category_widget .cat-list li:hover a {
    color:#1e1859;
}
.blog_right_sidebar .popular_post_widget .post_item {
    display: flex;
    justify-content:start;
    align-self:flex-start;
    padding-left:20px;
}
.blog_right_sidebar .popular_post_widget .post_item img {
    width: 105px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.blog_right_sidebar .popular_post_widget .post_item .media-body {
    /* justify-content:center;
    align-self:center; */
    padding-left:20px;
}
.blog_right_sidebar .popular_post_widget .post_item .media-body h3 {
    font-size:16px;
    line-height:20px;
    margin-bottom:6px;
    margin-top: 0%;
    transition:all 0.3s linear;
}
.blog_right_sidebar .popular_post_widget .post_item .media-body h3:hover {
    color:#1e1859;
}
.blog_right_sidebar .popular_post_widget .post_item .media-body p {
    font-size:14px;
    line-height:21px;
    margin-bottom:0px;
}
.blog_right_sidebar .popular_post_widget .post_item+.post_item {
    margin-top:20px;
}
.blog_right_sidebar .tag_cloud_widget ul li {
    display:inline-block;
}
.blog_right_sidebar .tag_cloud_widget ul li a {
    display:inline-block;
    border:1px solid #eeeeee;
    background:#fff;
    padding:4px 20px;
    margin-bottom:8px;
    margin-right:5px;
    transition:all 0.3s ease 0s;
    color:#888888;
    font-size:13px;
}
.blog_right_sidebar .tag_cloud_widget ul li a:hover {
    background:#1e1859;
    color:#fff;
}
.blog_right_sidebar .instagram_feeds .instagram_row {
    display:flex;
    margin-right:-6px;
    margin-left:-6px;
}
.blog_right_sidebar .instagram_feeds .instagram_row li {
    width:33.33%;
    float:left;
    padding-right:6px;
    padding-left:6px;
    margin-bottom:15px;
}
.blog_right_sidebar .br {
    width:100%;
    height:1px;
    background:#eee;
    margin:30px 0px;
}
.blog-pagination {
    margin-top:80px;
}
.blog-pagination .page-link {
    font-size:14px;
    position:relative;
    display:block;
    padding:0;
    text-align:center;
    margin-left:-1px;
    line-height:45px;
    width:45px;
    height:45px;
    border-radius:0 !important;
    color:#8a8a8a;
    border:1px solid #f0e9ff;
    margin-right:10px;
}
.blog-pagination .page-link i, .blog-pagination .page-link span {
    font-size:13px;
}
.blog-pagination .page-link:hover {
    background-color:#fbf9ff;
}
.blog-pagination .page-item.active .page-link {
    background-color:#fbf9ff;
    border-color:#f0e9ff;
    color:#888888;
}
.blog-pagination .page-item:last-child .page-link {
    margin-right:0;
}
.single-post-area .blog_details {
    box-shadow:none;
    padding:0;
}

/*========================== BLOG DETAILS ===============================*/
.single-post-area .social-links {
    padding-top:10px;
}
.single-post-area .social-links li {
    display:inline-block;
    margin-bottom:10px;
}
.single-post-area .social-links li a {
    color:#cccccc;
    padding:7px;
    font-size:14px;
    transition:all 0.2s linear;
}
.single-post-area .social-links li a:hover {
    color:#1e1859;
}
.single-post-area .blog_details {
    padding-top:26px;
    
}
.single-post-area .blog_details p {
    margin-bottom:20px;
}
.single-post-area .quote-wrapper {
    background:rgba(130,139,178,0.1);
    padding:15px;
    line-height:1.733;
    color:#888888;
    font-style:italic;
    margin-top:25px;
    margin-bottom:25px;
}
@media (min-width: 768px) {
    .single-post-area .quote-wrapper {
        padding:30px;
    }
}
.single-post-area .quotes {
    background:#fff;
    padding:15px 15px 15px 20px;
    border-left:2px solid #1e1859;
}
@media (min-width: 768px) {
    .single-post-area .quotes {
        padding:25px 25px 25px 30px;
    }
}
.single-post-area .arrow {
    position:absolute;
}
.single-post-area .arrow i, .single-post-area .arrow span {
    font-size:20px;
    font-weight:600;
}
.single-post-area .thumb .overlay-bg {
    background:rgba(0,0,0,0.8);
}
.single-post-area .navigation-top {
    padding-top:15px;
    border-top:1px solid #f0e9ff;
}
.single-post-area .navigation-top p {
    margin-bottom:0;
}
.single-post-area .navigation-top .like-info {
    font-size:14px;
}
.single-post-area .navigation-top .like-info i, .single-post-area .navigation-top .like-info span {
    font-size:16px;
    margin-right:5px;
}
.single-post-area .navigation-top .comment-count {
    font-size:14px;
}
.single-post-area .navigation-top .comment-count i, .single-post-area .navigation-top .comment-count span {
    font-size:16px;
    margin-right:5px;
}
.single-post-area .navigation-top .social-icons li {
    display:inline-block;
    margin-right:15px;
}
.single-post-area .navigation-top .social-icons li:last-child {
    margin:0;
}
.single-post-area .navigation-top .social-icons li i, .single-post-area .navigation-top .social-icons li span {
    font-size:14px;
    color:#999999;
}
.single-post-area .navigation-top .social-icons li:hover i, .single-post-area .navigation-top .social-icons li:hover span {
    color:#1e1859;
}
.single-post-area .blog-author {
    padding:40px 30px;
    background:#fbf9ff;
    margin-top:50px;
}
@media (max-width: 600px) {
    .single-post-area .blog-author {
        padding:20px 8px;
    }
}
.single-post-area .blog-author img {
    width:90px;
    height:90px;
    border-radius:50%;
    margin-right:30px;
}
@media (max-width: 600px) {
    .single-post-area .blog-author img {
        margin-right:15px;
        width:45px;
        height:45px;
    }
}
.single-post-area .blog-author a {
    display:inline-block;
}
.single-post-area .blog-author p {
    margin-bottom:0;
}
.single-post-area .blog-author h4 {
    font-size:16px;
}
.single-post-area .navigation-area {
    border-bottom:1px solid #eee;
    padding-bottom:30px;
    margin-top:55px;
}
.single-post-area .navigation-area p {
    margin-bottom:0px;
}
.single-post-area .navigation-area h4 {
    font-size:18px;
    line-height:25px;
    color:#1e1859;
}
.single-post-area .navigation-area .nav-left {
    text-align:left;
}
.single-post-area .navigation-area .nav-left .thumb {
    margin-right:20px;
    background:#000;
}
.single-post-area .navigation-area .nav-left .thumb img {
    -webkit-transition:all 0.3s ease 0s;
    -moz-transition:all 0.3s ease 0s;
    -o-transition:all 0.3s ease 0s;
    transition:all 0.3s ease 0s;
}
.single-post-area .navigation-area .nav-left i, .single-post-area .navigation-area .nav-left span {
    margin-left:20px;
    opacity:0;
    -webkit-transition:all 0.3s ease 0s;
    -moz-transition:all 0.3s ease 0s;
    -o-transition:all 0.3s ease 0s;
    transition:all 0.3s ease 0s;
}
.single-post-area .navigation-area .nav-left:hover i, .single-post-area .navigation-area .nav-left:hover span {
    opacity:1;
}
.single-post-area .navigation-area .nav-left:hover .thumb img {
    opacity:0.5;
}
@media (max-width: 767px) {
    .single-post-area .navigation-area .nav-left {
        margin-bottom:30px;
    }
}
.single-post-area .navigation-area .nav-right {
    text-align:right;
}
.single-post-area .navigation-area .nav-right .thumb {
    margin-left:20px;
    background:#000;
}
.single-post-area .navigation-area .nav-right .thumb img {
    -webkit-transition:all 0.3s ease 0s;
    -moz-transition:all 0.3s ease 0s;
    -o-transition:all 0.3s ease 0s;
    transition:all 0.3s ease 0s;
}
.single-post-area .navigation-area .nav-right i, .single-post-area .navigation-area .nav-right span {
    margin-right:20px;
    opacity:0;
    -webkit-transition:all 0.3s ease 0s;
    -moz-transition:all 0.3s ease 0s;
    -o-transition:all 0.3s ease 0s;
    transition:all 0.3s ease 0s;
}
.single-post-area .navigation-area .nav-right:hover i, .single-post-area .navigation-area .nav-right:hover span {
    opacity:1;
}
.single-post-area .navigation-area .nav-right:hover .thumb img {
    opacity:0.5;
}
@media (max-width: 991px) {
    .single-post-area .sidebar-widgets {
        padding-bottom:0px;
    }
}
.comments-area {
    background:transparent;
    border-top:1px solid #eee;
    padding:45px 0;
    margin-top:50px;
}
@media (max-width: 414px) {
    .comments-area {
        padding:50px 8px;
    }
}
.comments-area h4 {
    margin-bottom:35px;
    color:#1e1859;
    font-size:18px;
}
.comments-area h5 {
    font-size:16px;
    margin-bottom:0px;
}
.comments-area a {
    color:#1e1859;
}
.comments-area .comment-list {
    padding-bottom:48px;
}
.comments-area .comment-list:last-child {
    padding-bottom:0px;
}
.comments-area .comment-list.left-padding {
    padding-left:25px;
}
@media (max-width: 413px) {
    .comments-area .comment-list .single-comment h5 {
        font-size:12px;
    }
    .comments-area .comment-list .single-comment .date {
        font-size:11px;
    }
    .comments-area .comment-list .single-comment .comment {
        font-size:10px;
    }
}
.comments-area .thumb {
    margin-right:20px;
}
.comments-area .thumb img {
    width:70px;
    height:70px;
    border-radius:50%;
}
.comments-area .date {
    font-size:14px;
    color:#cccccc;
    margin-bottom:0;
    margin-left:20px;
}
.comments-area .comment {
    margin-bottom:10px;
    color:#777777;
}
.comments-area .btn-reply {
    background-color:transparent;
    color:#888888;
    padding:5px 18px;
    font-size:14px;
    display:block;
    font-weight:400;
    -webkit-transition:all 0.3s ease 0s;
    -moz-transition:all 0.3s ease 0s;
    -o-transition:all 0.3s ease 0s;
    transition:all 0.3s ease 0s;
}
.comments-area .btn-reply:hover {
    color:#1e1859;
}
.comment-form {
    border-top:1px solid #eee;
    padding-top:45px;
    margin-top:50px;
    margin-bottom:20px;
}
.comment-form .form-group {
    margin-bottom:30px;
}
.comment-form h4 {
    margin-bottom:40px;
    font-size:18px;
    line-height:22px;
    color:#1e1859;
}
.comment-form .name {
    padding-left:0px;
}
@media (max-width: 767px) {
    .comment-form .name {
        padding-right:0px;
        margin-bottom:1rem;
    }
}
.comment-form .email {
    padding-right:0px;
}
@media (max-width: 991px) {
    .comment-form .email {
        padding-left:0px;
    }
}
.comment-form .form-control {
    border:1px solid #f0e9ff;
    border-radius:5px;
    height:48px;
    padding-left:18px;
    font-size:13px;
    background:transparent;
}
.comment-form .form-control:focus {
    outline:0;
    box-shadow:none;
}
.comment-form .form-control::placeholder {
    font-weight:300;
    color:#999999;
}
.comment-form .form-control::placeholder {
    color:#777777;
}
.comment-form textarea {
    padding-top:18px;
    border-radius:12px;
    height:100% !important;
}
.comment-form ::-webkit-input-placeholder {
    font-size:13px;
    color:#777;
}
.comment-form ::-moz-placeholder {
    font-size:13px;
    color:#777;
}
.comment-form :-ms-input-placeholder {
    font-size:13px;
    color:#777;
}
.comment-form :-moz-placeholder {
    font-size:13px;
    color:#777;
}

.blog-cat-single {
    display:inline-block;
    background:#ff5a00;
    border-radius:10px;
    padding:50px 15px;
    text-align:center;
    width:100%;
    height:150px;
}
.blog-cat-single .blog-cat-heading {
    color:#fff;  
    margin-top:0px;
}
.blog-cat-single span {
    color:#fff;   
}




.privacy-maintitle, .terms-maintitle, .refund-maintitle {
    text-align:center; 
    font-weight:bold;
}
.privacy-subtitle, .terms-subtitle, .refund-subtitle {
    font-size: 1.5rem;
    color: #ff5a00;
    font-weight: 400;
    margin-top: 3rem;
}










.wed_development_services_grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}
.wed_development_services_grid #wed_development_services_grid_item1 {
    grid-column: 1 / 3;
}
.wed_development_services_grid #wed_development_services_grid_item2 {
    grid-column: 3 / 7;
}
.wed_development_services_grid #wed_development_services_grid_item3 {
    grid-column: 1 / 4;
}
.wed_development_services_grid #wed_development_services_grid_item4 {
    grid-column: 4 / 7;
}
.wed_development_services_grid #wed_development_services_grid_item5 {
    grid-column: 1 / 5;
}
.wed_development_services_grid #wed_development_services_grid_item6 {
    grid-column: 5 / 7;
}

    

.webservices-offer-box {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    width: 100%;
    height: 100%;
    padding: 33px 36px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 1rem 0;
}

.webservices-offer-box h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #717171;
    margin-bottom: 0.5rem;
    margin-top: 0%;
    text-align: start;
}

.webservices-offer-box span {
    font-size: 11rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 0.5rem;
    margin-top: 2rem;
    text-align: start;
    line-height: 0.75;
    position: relative;
    left: -50px;
}

.webservices-offer-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1.25rem;
    text-align: start;
    position: relative;
    z-index: 2;
}

.webservices-offer-box p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
    text-align: start;
    position: relative;
    z-index: 2;
}


.webservices-contact-form {
    /* display: flex; */
    width: 100%;
    height: fit-content;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 1rem 0;
    /* gap: 2rem; */
}
.webservices-contact-form .webservices-contact-form-header {
    /* flex: 0 0 50%; */
    padding-right: 2rem;
}
/* .webservices-contact-form .webservices-contact-form-content {
    flex: 0 0 50%;
} */



.clients_work_block {
    display: block;
    width: 100%;
    height: 70vh;
    overflow-y: auto;
    padding: 30px 20px 20px 66px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 1rem 0;
}

.clients_work_block h3 {
    font-size: 3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1.5rem;
    margin-top: 0;
    padding-bottom: 1rem;
    text-align: start;
    border-bottom: 1px solid #999;
    letter-spacing: -0.065rem;
    position: relative;
    display: block;
    left: -17px;
    top: 9px;
}

.clients_work_block p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    text-align: start;
    line-height: 1.5;
}
.clients_work_block .clients_work_list {
    list-style-type: decimal-leading-zero;
    position: relative;
}
.clients_work_block .clients_work_list li {
    margin-bottom: 10px;
    font-size: 1.2rem;
    line-height: 1.5;
    color: #000;
}
.clients_work_block .clients_work_list li::marker, .clients_work_block .clients_work_list li .clients_work_title {
    font-size: 2rem;
    font-weight: 600;
    color: #000;
    letter-spacing: -0.065rem;
}
.clients_work_block .clients_work_list li .clients_work_description {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
    padding: 1rem 0 4rem 0;
    position: relative;
}
.clients_work_block .clients_work_list li .clients_work_description::before {
    position: absolute;
    top: 0;
    left: -35px;
    content: '';
    display: block;
    width: 3px;
    height: 100%;
    background: transparent;
    border-left: 3px dashed #999;
}

.clients_work_block .clients_work_list li .clients_work_description li {
    flex: 0 0 auto;
    font-size: 0.9rem;
    color: #222222;
    background: rgba(125, 125, 125, 0.2);
    border-radius: 1rem;
    padding: 0.25rem 0.75rem;
    margin: 0;
}
.clients_work_block.technologies_used_block {
    height: max-content;
    background: transparent;
}
.clients_work_block.technologies_used_block h3 {
    color: #FFF;
}
.clients_work_block.technologies_used_block h5 {
    text-align: left;
    color: #eee;
}
.clients_work_block.technologies_used_block .clients_work_list li {
    color: #FFF;
}
.clients_work_block.technologies_used_block .clients_work_list li::marker, .clients_work_block.technologies_used_block .clients_work_list li .clients_work_title {
    color: #FFF;
}




/*==================================================================================
INOVINE STYLES
====================================================================================*/
.connect_whatsapp_btn {
    background: #25D366;
}
.connect_whatsapp_btn:hover {
    background: #167b3b;
}
.explore__link {
    flex: 0 0 auto;
    color: var(--ss-primary-text-color-dark);
    border: 1px solid var(--ss-primary-text-color-dark);
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    line-height: normal;
    align-content: center;
    font-size: 0.825rem;
}
.explore__link:hover {
    color: var(--ss-primary-color);
    border: 1px solid var(--ss-primary-color);
}
.explore__link--1{
    color: var(--ss-primary-text-color-light);
    border: 1px solid var(--ss-primary-color);
    background: var(--ss-primary-color);
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    line-height: normal;
    align-content: center;
    font-weight: 600;
}
.explore__link--1:hover {
    color: var(--ss-primary-color);
    border: 1px solid var(--ss-primary-color);
    background: var(--ss-primary-text-color-light);
}
.reviews__grid .card__design--icon-two {
    /* aspect-ratio: 1 / 1; */
    margin: 1rem 0 2rem 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.reviews__grid .card__description {
    font-size: 20px;
    font-weight: 500;
    color: #666;
    margin-top: 2rem;
}
.reviews-tab .card__content {
    font-size: 1rem;
    padding: 0;
    border: none;
    box-shadow: none;
    border-radius: 0%;
}
.reviews-tab .card__image-box {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    overflow: hidden;
}
.reviews-tab .card__image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.conference_filter select {
    height: 2.5rem;
    border-radius: 30px !important;
    margin: 0.5rem 0;
}
.conference_filter select:focus {
    border-radius: 0px 0px 0 0 !important;
}
.select2-container {
    height: 2.5rem;
    margin: 0.5rem 0;
}
.select2-container--default .select2-selection--single {
    border-radius: 30px;
    height: 2.5rem;
    border: 1px solid #666;
    align-content: center;
}
.select2-container--default .select2-selection--single:focus {
    border-radius: 0px 0px 0 0 !important;
    border-color: var(--ss-primary-color);
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: normal;
    padding-left: 20px;
    padding-right: 20px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 15px;
    width: 12px;
    aspect-ratio: 1 / 1;
    background-image: url('../../assets/img/down-arrow.svg');
    background-repeat: no-repeat;
    transform: translateY(12px);
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #000;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
}
.select2-container--default .select2-dropdown .select2-search--dropdown .select2-search__field {
    height: 2.5rem;
    border: 1px solid #666;
    font-size: 1rem;
}
.select2-container--default .select2-dropdown .select2-results .select2-results__option {
    color: #000;
    margin-bottom: 0;
    padding: 3px 0 3px 10px;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #5897fb;
    color: white !important;
}
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.select2-container--open .select2-dropdown {
    top: -0.5rem;
}
.select2-container .select2-selection--single .select2-selection__clear {
    background-color: #FFF !important;
    position: relative;
    z-index: 1;
}
.select2-container--default .select2-selection--single .select2-selection__clear {
    margin-right: 15px;
}
.select2-container--default .select2-results>.select2-results__options {
    max-height: 475px;
    overflow-y: auto;
}
.form-block.online-registration {
    display: inline-block;
    padding: 2rem;
    border-radius: 1rem;
    background-color: #FFF;
}

#conference-list>div {
    display: flex;
}
.conference_card {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    /* width: 100%;
    height: 100%; */
    padding: 33px 36px;
    background: rgba(245, 245, 245, 0.9);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid #e7e7e7;
    border-radius: 1rem;
    box-shadow: 0 1px 0px rgba(0, 0, 0, 0.5);
    margin: 1rem 0;
    position: relative;
}
.conference_card::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20%;
    height: 100%; /* or set an appropriate height */
    background-image: url('../../assets/img/inovine-conferences-logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
    z-index: 1;
    pointer-events: none; /* optional, so it doesn't block clicks */
}
.conference_card:hover {
    background: rgba(245, 245, 245, 0.1);
    box-shadow: 0 0px 1px rgba(0, 0, 0, 1.0);
}
.conference_card .conference_date {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ss-primary-text-color-light);
    margin-bottom: 0.5rem;
    margin-top: 0%;
    text-align: start;
    background: var(--ss-primary-color);
    padding: 0.25rem 1rem;
    border-radius: 2rem;
}

.conference_card .conference_title {
    margin-top: 1rem;
    margin-bottom: 1.25rem;
    text-align: start;
    line-height: 0.5;
}

.conference_card .conference_title .conference_link {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1;
    color: #000;
    margin-bottom: 1.25rem;
    text-align: start;
    position: relative;
    z-index: 2;
}

.conference_card .conference_title .conference_link:hover {
    color: var(--ss-primary-color);
}

.conference_card .conference_location {
    font-size: 0.825rem;
    color: #333;
    margin-bottom: 0.25rem;
    text-align: start;
    position: relative;
    z-index: 2;
}

.conference_card .conference_mail {
    font-size: 0.825rem;
    line-height: normal;
    color: #333;
    text-align: start;
    position: relative;
    z-index: 2;
    word-break: break-all;
}


.gallery_card {
    width: 100%;
    /* width: 320px; */
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    /* width: 100%;
    height: 100%; */
    /* padding: 33px 36px; */
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 1rem 0;
    position: relative;
}

.gallery_card .gallery_date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ss-primary-text-color-light);
    margin-bottom: 0.5rem;
    margin-top: 0%;
    text-align: start;
    background: var(--ss-primary-color);
    padding: 0.25rem 1rem;
    border-radius: 2rem;
}

.gallery_card .gallery_thumbnail {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 1rem;
}

.gallery_card .gallery_content {
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
}

.gallery_card .gallery_content .gallery_title {
    /* margin-top: 3rem; */
    margin-bottom: 1.25rem;
    text-align: start;
    line-height: 0.5;
}

.gallery_card .gallery_content .gallery_title .gallery_link {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1;
    color: #000;
    margin-bottom: 1.25rem;
    text-align: start;
    position: relative;
    z-index: 2;
}

.gallery_card .gallery_content .gallery_location {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0.25rem;
    text-align: start;
    position: relative;
    z-index: 2;
}

.gallery_card .gallery_content .gallery_mail {
    font-size: 0.9rem;
    line-height: normal;
    color: #333;
    text-align: start;
    position: relative;
    z-index: 2;
    word-break: break-all;
}


.videoReviewsCarousel .carousel-item {
    width: 100%;
    aspect-ratio: 2 / 1;
    background: transparent;
    /* margin-top: 1rem; */
}
.videoReviewsCarousel .carousel-item iframe {
    width: 100%;
    aspect-ratio: 3 / 2;
    /* aspect-ratio: 2 / 1; */
    padding: 1rem;
    border-radius: 2rem;
}


.ic_pagination .page-item .page-link {
    background: transparent;
    border: 1px solid var(--ss-primary-color);
    color: var(--ss-primary-color);
}
.ic_pagination .page-item.active .page-link {
    background: var(--ss-primary-color);
    border: 1px solid var(--ss-primary-color);
    color: white;
}


.reviews-nav-pills .nav-link {
    background: #FFF;
    padding: 1rem 3rem;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin: 0.5rem;
    color: var(--ss-secondary-text-color-dark);
    font-weight: 500;
}
.reviews-nav-pills .nav-link.active {
    background: var(--ss-primary-color);
    border: 1px solid var(--ss-primary-color);
}


.contact_banner_section .contact_banner_content {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 5;
    background-color: #ccc;
    border-radius: 2rem;
    position: relative;
}
.contact_banner_section .contact_banner_content .banner_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2rem;
}
.contact_banner_section .contact_banner_content .contact_banner_title {
    display: table;
    position: absolute;
    bottom: 1rem;
    left: 0%;
    right: 0%;
    margin: 0 auto;
    text-align: center;
    padding: 0.5rem 2rem;
    background: rgb(161 161 161 / 70%);
    border-radius: 1rem;
    color: #FFF;
    line-height: normal;
}
.contact_form {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 1rem;
}
.contact_page {
    padding: 0.65rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 1rem;
}
.contact_page ul li {
    margin: 2.65rem 0;
}
.contact_page .contact__title, .contact_page .contact_phone, .contact_page .contact_mail {
    display: block;
    text-align: start;
    color: #000;
}
.contact_page .contact__title {
    font-size: var(--ss-font-size-lg);
    font-weight: 600;
}
.contact_page .contact__description {
    font-size: var(--ss-font-size-md);
    color: var(--ss-secondary-text-color-dark);
}

.contact_page .card__design--icon {
    aspect-ratio: unset;
    height: fit-content;
}
.contact_page .card__design--icon .contact_phone {
    display: block;
    color: var(--ss-secondary-text-color-dark);
    margin-bottom: 0.5rem;
}

.testimonials-section {
    background-color: #efefef;
}
.carousel-inner {
    width: 100%;
  display: flex;
  flex-wrap: nowrap;
    overflow: hidden;
  scroll-behavior: smooth;
  padding: 1rem 0;
}

.onlineregistration-section {
    background-image: url('../img/registration-form-bg.jpg');
    background-color: rgba(0, 0, 0, 0.5);
    position: relative;
    
}
.onlineregistration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}
.onlineregistration-section .onlineregistration-container{
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 575.99px) {
  .carousel-item {
    display: block;
    margin-right: 0;
    flex: 0 0 100%;
  }
    .onlineregistration-section .online_registration_form .row {
        --bs-gutter-x: 0.5rem;
    }
}
@media screen and (min-width: 576px) {
  .carousel-item {
    display: block;
    margin-right: 0;
    flex: 0 0 calc(100% / 2);
  }
} 
@media screen and (min-width: 768px) {
  .carousel-item {
    display: block;
    margin-right: 0;
    flex: 0 0 calc(100% / 2);
  }
}
@media screen and (min-width: 992px) {
  .carousel-item {
    display: block;
    margin-right: 0;
    flex: 0 0 calc(100% / 3);
  }
}


#testimonialCarousel .carousel-item {
    display: flex;
}
.carousel .card {
    padding: 1rem;
  margin: 0 0.5em;
  border: 0;
  background: #FFF;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid #ddd;
    border-radius: 1rem;
    /* box-shadow: 0 1px 0px rgba(0, 0, 0, 0.5); */
}
.carousel .card .quotes {
    font-size: 4.5rem;
  color: var(--ss-primary-color);
}

.carousel img {
  width: 70px;
  max-height: 70px;
  border-radius: 50%;
  margin-right: 1rem;
  overflow: hidden;
}

.carousel-control-prev,
.carousel-control-next {
  width: 3rem;
  height: 3rem;
  background-color: grey;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}




.team_block .team_card {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    text-align: center;
    padding: 33px 36px;
    background: rgba(245, 245, 245, 0.9);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid #e7e7e7;
    border-radius: 1rem;
    box-shadow: 0 1px 0px rgba(0, 0, 0, 0.5);
    margin: 1rem 0;
    position: relative;
    transition: 0.5s;
}
.team_block .team_card:hover {
  box-shadow: 0px 3px 10px 5px #e9e9e9;
}
.team_block .team_card img {
    width: 100%;
    max-width: 100%;
    border-radius: 1rem;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 1px solid #ddd;
}
.team_block .team_card h4 {
    font-size: 1.25rem;
  margin-top: 2rem;
    margin-bottom: 1.25rem;
    line-height: 1;
    color: #000;
}
.team_block .team_card .role {
  font-size: 80%;
  color: #444;
  margin-bottom: 0px;
}

.registration-summary-table {
    width: 100%;
    border-collapse: collapse;
    /* margin-top: 1rem; */
}
.registration-summary-table th, .registration-summary-table td {
    /* border: 1px solid #ddd; */
    padding: 8px;
    text-align: left;
}
.registration-summary-table th {
    background-color: var(--ss-primary-color);
    color: white;
}
.personal-details {
    border: 1px solid rgba(0, 0, 0, 0.09);
    padding: 2rem;
    border-radius: 2rem;
}
.registration-details {
    background: rgba(0, 0, 0, 0.05);
    padding: 2rem;
    border-radius: 2rem;
}
.registration-details .amount-payable {
    font-size: 2rem;
    font-weight: 600;
    color: var(--ss-primary-color);
    margin-top: 1rem;
    text-align: right;
}
.registration-details .conference-name {
    font-size: 1.25rem;
    font-weight: 300;
    color: #666;
    margin-bottom: 0.5rem;
    text-align: left;
}
.btn.stripe {
    background-color: #635bff;
    border-color: #635bff;
}
.btn.paypal {
    background-color: #003087;
    border-color: #003087;
}




@media (max-width: 575.98px) {
    .hero_section {
        padding: 0.5rem;
    }
    .img__container--square-box .experience_box {
        padding: 1rem;
        border-radius: 0.75rem;
    }
    .img__container--square-box .experience_box .exp_number {
        font-size: 1.5rem;
    }
    .img__container--square-box .experience_box .exp_text {
        font-size: 0.75rem;
    }
    section {
        padding: var(--ss-gap-4xl) 0;
        width: 100%;
        margin: 0 auto;
    }
    .section__title--regular {
        font-size: var(--ss-font-size-lg);
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    
}

@media (min-width: 768px) and (max-width: 991.98px) {
    
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    
}

@media (min-width: 1400px) {
    
}

