@font-face {
    font-family: 'Source Sans Pro';
    src: url('fonts/SourceSansPro-Regular.tif') format('truetype');
    font-weight: 400;
    font-style: normal;
}


@font-face {
    font-family: 'Source Sans Pro';
    src: url('fonts/SourceSansPro-Italic.tif') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('fonts/SourceSansPro-Light.tif') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('fonts/SourceSansPro-LightItalic.tif') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('fonts/SourceSansPro-Semibold.tif') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('fonts/SourceSansPro-SemiboldItalic.tif') format('truetype');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('fonts/SourceSansPro-Bold.tif') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('fonts/SourceSansPro-BoldItalic.tif') format('truetype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('fonts/SourceSansPro-ExtraLight.tif') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('fonts/SourceSansPro-ExtraLightItalic.tif') format('truetype');
    font-weight: 200;
    font-style: italic;
}

/* Then apply the font family to your elements */
* {
    box-sizing: border-box;
	font-family: 'Source Sans Pro', sans-serif !important;
}

:root {
    --dsl-gradient: linear-gradient(100deg, #148BED 0%, #05C009 100.01%);
    --dropdown-border: 2px solid;
    --dropdown-radius: 8px;
    --dropdown-bg: #1a1a1a;
    --dropdown-text: #ffffff;
    --dropdown-hover: #2a2a2a;
    --dropdown-border-gradient: linear-gradient(to right, #00D6B1, #207CCA, #FF00FF);
    --selection-bg-color: linear-gradient(2deg, #19192b 0%, #19192b 100%);
    --select-option-bg: #252528;
    --sidebar-check: linear-gradient(to right, #080f25 0%, #100828 45%, #170129 100%);
    --dsl-events-bg: transparent;
    --dsl-event-color: #00ffe0;
    --dsl-event-border: #00ffe0;
    --dsl-avatars-color: #af5cff;
    --dsl-articles-color: #ff00ff;
    --dsl-digital-graph-color: #61e1ff;
    --dsl-explainer-color: #2f8ec4;
    --dsl-concept-proto-color: #00ffe0;
}


body {
		background-image: url(https://opscalers.com/wp-content/uploads/2025/04/BG-Gradients.png);
		background-size: 100% 100%;;
		margin: 0;
		
}
h1, h2, h3, p, span, strong,{
	font-family: 'Source Sans Pro', sans-serif !important;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0px;
}
/* .dsl-events-inner-content.bright-aqua-landing h2 {
    color: #00ffe0 !important;
}
.dsl-events-inner-content.tyrian-purple-landing h2{
	 color: #af5cff !important;
}
.dsl-events-inner-content.artyclick-magenta-landing h2{
	 color: #ff00ff !important;
}
.dsl-events-inner-content.blue-diamond-landing h2{
	 color: #61e1ff !important;
}
.dsl-events-inner-content.bright-neon-pink-landing h2{
	 color: #d62eff !important;
}
.dsl-events-inner-content.blue-ivy-landing h2{
	 color: #2f8ec4 !important;
}
.dsl-events-inner-content.artyclick-cyan-landing h2{
	 color: #00ffff !important;
}
.dsl-events-inner-content.tealish-blue-landing h2{
	 color: #537bf0 !important;
}
.dsl-events-inner-content.bright-aqua-landing:hover {
    	background: linear-gradient(133deg, #6affe480 11%, #25252842 56%) !important;
}
.dsl-events-inner-content.tyrian-purple-landing:hover{
	    background: linear-gradient(133deg, #af5cff85 11%, #25252842 56%) !important;
}
.dsl-events-inner-content.artyclick-magenta-landing:hover{
	    background: linear-gradient(133deg, #ff00ff52 6%, #252528 57%) !important;
}
.dsl-events-inner-content.blue-diamond-landing:hover{
	    background: linear-gradient(133deg, #61e1ff70 11%, #25252842 56%) !important;
}
.dsl-events-inner-content.bright-neon-pink-landing:hover{
		background: linear-gradient(133deg, #d62eff45 11%, #25252842 56%) !important;
}
.dsl-events-inner-content.blue-ivy-landing:hover{
    	background: linear-gradient(133deg, #2f8ec487 11%, #25252842 56%) !important;
}
.dsl-events-inner-content.artyclick-cyan-landing:hover{
	  	background: linear-gradient(133deg, #537bf070 11%, #25252842 56%) !important;
}
.dsl-events-inner-content.tealish-blue-landing:hover{
	   	background: linear-gradient(133deg, #537bf070 11%, #25252842 56%) !important;
} */

/* Email Spinner */
.dot-spinner { display: inline-block; vertical-align: middle; }
.dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: linear-gradient(100deg, #148BED 0%, #05C009 100.01%);/* change color */
  animation: pulse 1s cubic-bezier(.4,0,.2,1) infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
/* small/large helpers */
.dot-spinner.small .dot { width: 8px; height: 8px; }
.dot-spinner.large .dot { width: 18px; height: 18px; }
/* Email Spinner end */


/* Header Styling */
header.copm-cus-header {
    position: relative;
    z-index: 9;
}

header.copm-cus-header .dsl-navbar {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 31px 0 20px;
    align-items: center;
}

header.copm-cus-header .dsl-navbar .dsl-custom-logo {
    width: 18%;

    & img {
        width: 98%;
    }
}

header.copm-cus-header .dsl-navbar .dsl-custom-menu {
    width: 82%;
}

header.copm-cus-header .dsl-navbar .dsl-custom-menu ul li {
    list-style: none;
}

header.copm-cus-header .dsl-navbar .dsl-custom-menu ul {
    display: flex;
    gap: 153px !important;
    flex-direction: row;
    justify-content: flex-end !important;

    & li a {
        text-decoration: none;
        color: #ffffff !important;
        font-size: 16px !important;
        position: relative !important;
        padding: 0;
        width: 145px;
        display: block !important;
        text-align: right;

        &:after {
            content: '';
            border: solid #0046ad !important;
            border-width: 2px 0px 0px 2px !important;
            display: inline-block;
            padding: 5px !important;
            transform: rotate(45deg);
            right: -23px !important;
            position: absolute !important;
            top: 11px;
            border-image-slice: 1 !important;
            border-image-source: linear-gradient(to right, #00D6B1 0%, #207CCA 5%, #FF00FF 78%) !important;
        }
    }
}

header.copm-cus-header .dsl-navbar .dsl-custom-menu ul li>a:hover {
    font-weight: bold;
}

header.copm-cus-header .dsl-navbar .dsl-custom-menu ul a:hover:after {
    transform: rotate(226deg) !important;
    top: 6px !important;
}
.container{ max-width: 1100px !important;}
/* Banner Section Styling */
section.dsl-hero_sec {
    background-size: 64vw;
    height: 36vw;
    display: flex;
    align-items: center;
    background-position: 0vw;
    margin-top: 100px !important;
    background-repeat: no-repeat;
}
section.dsl-hero_sec .dsl-her0-banner-content {
    width: 100%;
}
section.dsl-hero_sec .dsl-her0-banner-content  .dsl-hero-content {
    width: 22%;
    margin: 0 0 0 auto;
}
section.dsl-cus-banner {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: center;
    flex-direction: column;
    margin-top: -102px;
}
section.dsl-hero_sec .dsl-her0-banner-content .dsl-hero-content h1 {
    background: var(--dsl-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent !important;
    font-size: 2rem;
    font-weight: 700;
    line-height: 42px;
}
section.dsl-hero_sec .dsl-her0-banner-content .dsl-hero-content p{
    font-size: 20px;
    line-height: 26px;
    width: 295px;
}
section.dsl-cus-banner .dsl-banner-image {
    width: 100%;
}

section.dsl-cus-banner .dsl-banner-image img {
    width: 100%;
}

section.dsl-cus-banner .dsl-banner-content {
    position: absolute;
    width: 100%;

    & h1 {
        font-family: 'Source Sans Pro', sans-serif !important;
        font-size: 36px;
        font-weight: 700;
        text-transform: uppercase;
        line-height: 44px;
        letter-spacing: 0.8px;
        -webkit-text-stroke-width: 0px;
        stroke-width: 0px;
        -webkit-text-stroke-color: #000;
        stroke: #000;
        text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.97);
        color: #FFFFFF;
        margin: 0;
    }

    & p {
        text-align: left;
        font-family: 'Source Sans Pro', sans-serif !important;
        font-size: 24px;
        font-weight: 400;
        line-height: 29px;
        text-shadow: 1px 1px 0px #000000;
        color: #CCCCCC;
        margin: 1px 0 0 0;
        width: 346px;
    }
}

/* Selection Section Styling */
section.dsl-sidebar-sec {
    padding: 60px 0 90px 0;
}


section.dsl-selection .dsl-select-btn {
     display: flex;
    justify-content: end;
    gap: 50px;
    margin: 50px 0 60px;
}
::placeholder{
	color: #212529 !important;
}
.dsl-sel-btn #dsl-email-form input#dsl-email-address{
    padding: 9px 38px 10px 16px;
    font-size: 14px;
    background: transparent;
    color: #212529 !important;
    border-color: #fff;
    border-radius: 6px;
    border: 1px solid #212529;
}
.dsl-sel-btn #dsl-email-form button#dsl-send-email {
    padding: 0;
    background: #21252900 !important;
    position: absolute;
    right: 13px;
    top: 6px;
	& img{
		filter: brightness(0);
	}
}
.dsl-sel-btn input[type="email"]:focus{
	    border-style: solid !important;
}
section.dsl-selection .dsl-select-btn .dsl-sel-btn a {
     color: #212529;
    text-decoration: none;
    border: 1px solid #212529;
    padding: 9px 20px 9px 20px;
    width: 203px;
    font-size: 12px;
    line-height: 22px;
    display: block;
    border-radius: 6px;
	position: relative;
}
section.dsl-selection .dsl-select-btn .dsl-sel-btn:nth-child(1) a:after{
	content: '';
    background: url(https://compelify.com/wp-content/uploads/2025/07/email.png);
    position: absolute;
	right: 12px;
    width: 17px;
    height: 17px;
    background-repeat: no-repeat;
    background-size: contain;
    top: 15px;
	filter: brightness(0);
}
section.dsl-selection .dsl-select-btn .dsl-sel-btn:nth-child(2) a:after{
	content: '';
    background: url(https://compelify.com/wp-content/uploads/2025/07/Icon-Share-Wht-1.png);
    position: absolute;
    right: 10px;
    width: 17px;
    height: 17px;
    background-repeat: no-repeat;
    background-size: contain;
    top: 12px;
	filter: brightness(0);
}
.dsl-selection h2 {
    text-align: center;
    background: var(--dsl-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent !important;
    font-size: 39px !important;
    font-weight: 700 !important;
    line-height: 49px !important;
    width: 63%;
    margin: 32px auto 40px;
}

section.dsl-selection .dsl-select-quick-page {
    position: absolute;
    z-index: 9;
    display: flex;
    gap: 30px;
}

section.dsl-selection .dsl-select-quick {
    padding: 0;
/*     background: var(--selection-bg-color); */
    position: relative;
    border-radius: 24px;
	display: flex;
    flex-direction: column;
    justify-content: center;
/* 
    &:before {
        content: '';
        position: absolute;
        inset: 0;
        padding: 2px;
        z-index: 1;
        background: var(--dsl-gradient);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        mask-composite: exclude;
        border-radius: 24px;
    } */
}

section.dsl-selection .dsl-select-quick .dsl-select-quick-page .dsl-quick-star {
    width: 20%;
    text-align: center;

    & img {
        width: 100px;
        margin: 10px 0 0 0;
		height: auto;
    }
}

section.dsl-selection .dsl-select-quick .dsl-select-quick-page .dsl-quick-star h3 {
    text-align: center;
    background: var(--dsl-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent !important;
    font-size: 20.5px;
    font-weight: 700;
    line-height: 29px;
    text-transform: uppercase;
    margin-top: 10px;
}

section.dsl-selection .dsl-select-quick .dsl-select-quick-page .dsl-quick-selection {
    width: 80%;
}

section.dsl-selection .dsl-select-quick .dsl-select-quick-page .dsl-quick-selection .dsl-quick-inner {
    display: flex;
    align-items: center;
    gap: 30px;
}

section.dsl-selection .dsl-select-quick .dsl-quick-inner-select {
    position: relative;
    width: 250px;
}

section.dsl-selection .dsl-select-quick .dsl-quick-inner-select.dsl-select2 {
    width: 340px;
}

section.dsl-selection .dsl-select-quick .dsl-quick-inner-select select {
    font-size: 13.5px;
    font-weight: 700;
    height: 40px;
    line-height: 20px;
    width: 100%;
    cursor: pointer;
    background-color: transparent;
    color: #212529;
    border: 1px solid #212529 !important;
    border-radius: 7px;
    appearance: none;
    padding: 3px 33px 0px 10px;
}

section.dsl-selection .dsl-select-quick .dsl-select-quick-page .dsl-quick-selection .dsl-quick-inner .dsl-quick-inner-select label {
    color: #212529;
    font-size: 12px;
    line-height: 18px;
}

section.dsl-selection .dsl-select-quick .dsl-select-quick-page .dsl-quick-selection .dsl-select-bord {
    margin-top: 10px;
}

section.dsl-selection .dsl-select-quick .dsl-select-quick-page .dsl-quick-selection p {
    color: #212529;
    font-size: 16px;
    line-height: 28px;
    width: 84%;
    margin-top: 10px;
    font-weight: 600;
}

section.dsl-selection .dsl-select-quick .dsl-quick-inner-content h4 {
	color: #212529;
    font-size: 37px;
    line-height: 48px;
    margin: 0;
    transform: translate(0px, 16px);
    font-weight: 500;
}

section.dsl-selection .dsl-select-quick .dsl-select-bord:after {
    content: '';
    position: absolute;
    top: 62%;
    right: 16px;
    width: 10px;
    height: 10px;
    border: solid #212529;
    border-width: 2px 0 0 2px;
    transform: translateY(0) rotate(224deg);
    pointer-events: none;
    z-index: 2;
}

section.dsl-selection .dsl-select-quick .dsl-select-bord.active:after {
    transform: rotate(45deg) !important;
    top: 19px !important;
}

section.dsl-selection .dsl-select-quick .dsl-select-bord.active {
    position: relative;

    & select {
        border: unset !important;
		padding: 3px 33px 0px 10px !important; 
    }
}

section.dsl-selection .dsl-select-quick .dsl-select-bord.active:before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    z-index: -1;
    background: var(--dsl-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    mask-composite: exclude;
    border-radius: 7px;
}

section.dsl-selection .dsl-select-quick select option {
    background: var(--select-option-bg);

}

section.dsl-selection .dsl-select-quick select:focus {
    outline: none;
}

section.dsl-selection .dsl-select-quick select option {
	padding: 8px;
    border-radius: 4px;
    margin: 2px;
    border: unset !important;
    background: #ffffff;
    color: #212529;
}

section.dsl-selection .dsl-select-quick select:focus option {
    border-radius: 4px;
}

/* Sidebar-Styling */
section.dsl-sidebar-sec .dsl-sidebar-row {
    display: flex;
    gap: 40px;
}
section.dsl-sidebar-sec .dsl-sidebar-row section.OpScalers-services-sec {
    padding-top: 20px !important;
    padding-bottom: 40px;
}
section.dsl-sidebar-sec .dsl-sidebar-row .opscle-service-bottom {
    display: none;
}
section.dsl-sidebar-sec .dsl-sidebar-row .dsl-sidebar-element {
    width: 24%;
}

.dsl-sidebar-content {
    width: 100%;
}

section.dsl-sidebar-sec .dsl-sidebar-element .sdl-service-dropdown {
    width: 280px;
    margin-bottom: 14px;
}

section.dsl-sidebar-sec .dsl-sidebar-element .dropdown-header {
/*     background: var(--sidebar-check); */
    color: #000000;
    padding: 12px 12px 12px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
	font-size: 14px;
	line-height: 20px;
    justify-content: start;
    align-items: center;
    transition: border 0.3s ease;
    position: relative;
}
section.dsl-sidebar-sec .dsl-sidebar-element .dropdown-header span.selected-text {
    padding: 0 0 0 28px;
}
section.dsl-sidebar-sec .dsl-sidebar-element .sdl-service-dropdown.open .dropdown-header {
    background: transparent;
}

/* section.dsl-sidebar-sec .dsl-sidebar-element .sdl-service-dropdown.open .dropdown-header::after {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    z-index: 1;
    background: var(--dsl-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    mask-composite: exclude;
    border-radius: 6px;
} */

section.dsl-sidebar-sec .dsl-sidebar-element .dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
/*     background: #2e2e2e; */
    border-radius: 10px;
    padding: 0 12px;
}

section.dsl-sidebar-sec .dsl-sidebar-element .sdl-service-dropdown.open .dropdown-content {
    max-height: 200px;
    padding: 10px 12px;
}

section.dsl-sidebar-sec .dsl-sidebar-element .dropdown-content label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0 5px;
    color: #212529;
    font-size: 14px !important;
	font-weight: 700;
}

section.dsl-sidebar-sec .dsl-sidebar-element span.arrow {
    position: relative;

    &:before {
        content: '';
        position: absolute;
        top: -3px;
        background: url(https://opscalers.com/wp-content/uploads/2025/07/ops-angle.png);
        left: -6px;
        width: 20px;
        height: 11px;
        pointer-events: none;
        z-index: 2;
        background-repeat: no-repeat;
        background-size: contain;
        transition: auto;
    }
}

.dsl-sidebar-sec .sdl-service-dropdown.open span.arrow:after {
    transform: rotate(177deg) !important;
    top: -15px !important;
}

.dsl-sidebar-sec .dropdown-content input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    cursor: pointer;
}

.dsl-sidebar-sec .dropdown-content .checkmark {
    width: 16px;
    height: 16px;
    border: 2px solid #212529;
    border-radius: 1px;
    background: transparent;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

/* Create custom checkmark arrow with pseudo-element */
.dsl-sidebar-sec .dropdown-content input[type="checkbox"]:checked+.checkmark::after {
    content: "";
    position: absolute;
    left: -7px;
    top: -10px;
    width: 27px;
    height: 27px;
    border: solid;
    background: url(https://opscalers.com/wp-content/uploads/2025/07/checkmark.png) !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    color: transparent !important;
}

/* .dropdown-content input[type="checkbox"]:checked+.checkmark::before {
    content: "";
    position: absolute;
    left: -5px;
    top: -3px;
    width: 3px;
    height: 9px;
    border: solid;
    /* border-width: 2px 2px 2px 2px; 
    transform: rotate(127deg);
    background: transparent;
    background: var(--dsl-gradient);
    -webkit-mask: linear-gradient(45deg, #000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    mask-image: linear-gradient(45deg, #000 0 0);
    mask-composite: add;
} */

section.dsl-sidebar-sec .dsl-sidebar-content .dsl-events-inner-content .dsl-event-content {
    width: 50%;
    text-align: right;
    padding: 0 50px 0 15px;
}

section.dsl-sidebar-sec .dsl-sidebar-content .dsl-events-inner-content .dsl-event-image {
   	width: 50%;
    text-align: right;
    margin: 0 auto;
	& img{
		width: 100%;
	}
}

section.dsl-sidebar-sec .dsl-sidebar-content .dsl-events-inner-content {
 	padding: 0;
    background: var(--dsl-events-bg);
    position: relative;
    border-radius: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 30px;
    /* border: 2px solid;
    border-color: var(--dsl-event-border); */
}

section.dsl-sidebar-sec .dsl-sidebar-content .dsl-events-inner-content h2 {
	margin-top: 0px;
    font-size: 30px;
    line-height: 41px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #05C009 !important;
}
section.dsl-sidebar-sec .dsl-sidebar-content .dsl-events-inner-content p {
    color: #212529;
    font-size: 18px;
    line-height: 25px;
		font-weight: 400;
    margin: 11px 0;
}

section.dsl-sidebar-sec .dsl-sidebar-content .dsl-events-inner-content a {
    color: #212529;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    position: relative;
    padding: 11px 22px;
    width: 235px;
    display: block;
    border-radius: 8px;
    margin-top: 24px;

/*     &:hover {
        background: var(--dsl-gradient) !important;

    } */
}

section.dsl-sidebar-sec .dsl-sidebar-content .dsl-events-inner-content a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1px;
    background: var(--dsl-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
    border-radius: 8px;
}

section.dsl-sidebar-sec .dsl-sidebar-content .dsl-events-inner-content a::after {
    content: "";
    display: inline-block;
    width: 25px;
    height: 25px;
    background-image: url(https://compelify.com/wp-content/uploads/2024/07/chevronsmallleft.png);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-left: 5px;
	filter: brightness(0);
}

.dsl-avatars-inner .dsl-event-content h2 {
    color: var(--dsl-avatars-color) !important;
}

.dsl-articles-inner .dsl-event-content h2 {
    color: var(--dsl-articles-color) !important;
}

.dsl-digital-graph-inner .dsl-event-content h2 {
    color: var(--dsl-digital-graph-color) !important;
}

.dsl-explainer-inner .dsl-event-content h2 {
    color: var(--dsl-explainer-color) !important;
}

.dsl-concept-proto-inner .dsl-event-content h2 {
    color: var(--dsl-concept-proto-color) !important;
}

.dsl-landing-page-inner .dsl-event-content h2 {
    color: var(--dsl-concept-proto-color) !important;
}

/* Responsive Start */
@media only screen and (min-width: 1600px) {
	section.dsl-hero_sec {
    	background-size: 60vw;
	}
}
@media only screen and (max-width: 1300px) {
    header.copm-cus-header .dsl-navbar .dsl-custom-menu ul {
        gap: 133px !important;
        padding: 0 30px 0 0;
    }
}

@media only screen and (max-width: 1199px) {
	section.dsl-hero_sec .dsl-her0-banner-content .dsl-hero-content p {
    	width: 100%;
}
	section.dsl-hero_sec .dsl-her0-banner-content .dsl-hero-content {
    	width: 25%;
}
	section.dsl-hero_sec {
    	background-size: 68vw;
	}
    section.dsl-sidebar-sec .dsl-sidebar-element .sdl-service-dropdown {
        width: 240px;
    }

    section.dsl-sidebar-sec .dsl-sidebar-content .dsl-events-inner-content {
        gap: 21px;
    }

    section.dsl-selection .dsl-select-quick {
        padding: 10px 20px 22px;
    }
	section.dsl-selection .dsl-select-quick-page {
		position: absolute;
		z-index: 9;
		display: flex;
		gap: 20px;
		width: 88%;
		margin: 0 0 0 40px;
}
	section.dsl-selection .dsl-select-quick .dsl-select-quick-page .dsl-quick-selection p{
    width: 100%;
}
	.dsl-selection h2{
		font-size: 34px !important;
		line-height: 44px !important;
		width: 67%;
		margin-top: 36px;
}
	
	.dsl-sidebar-row .OpScalers-services-sec .OpScalers-inner-row .OpScalers-inner-col-content{
		width: 50% !important;
        padding: 0 0 0 30px !important;
	}
	.dsl-events-sidebar .OpScalers-inner-col-content.opscale-hr-content {
    	width: 50% !important;
}
}

@media only screen and (max-width: 1023px) {
    header.copm-cus-header .dsl-navbar .dsl-custom-menu ul {
        gap: 93px !important;
    }
}

@media only screen and (max-width: 991px) {
	section.dsl-selection .dsl-select-quick .dsl-select-quick-page .dsl-quick-star {
		width: 28%;
		text-align: center;
}
	.dsl-sel-btn #dsl-email-form input#dsl-email-address {
    padding: 9px 38px 9px 20px;
}
	.dsl-sel-btn #dsl-email-form button#dsl-send-email {
    	top: 5px;
}
	section.dsl-selection .dsl-select-quick .dsl-select-quick-page .dsl-quick-selection {
    	width: 72%;
}
	section.dsl-hero_sec .dsl-her0-banner-content .dsl-hero-content p{
		    color: #fff;
	}
	.dsl-selection h2 {
		width: 100%;
		margin: 40px auto 40px;
}
	.dsl-quick-bg-image img {
    	height: 260px;
}
	section.dsl-selection .dsl-select-quick .dsl-select-quick-page .dsl-quick-selection p {
		font-size: 14px;
		line-height: 26px;
		width: 100%;
}
	section.dsl-hero_sec .dsl-her0-banner-content .dsl-hero-content p{
    width: 100% !important;
}
	section.dsl-hero_sec .dsl-her0-banner-content .dsl-hero-content {
		width: 100%;
		margin: 0 0 0 auto;
		position: relative;
z-index: 9;
}
	section.dsl-hero_sec .dsl-her0-banner-content .dsl-hero-content h1 {
    	color: #ffffff !important;
	}
	    section.dsl-hero_sec {
			background-size: 100% 100% !important;
			position: relative;
			height: 41vw !important;
			background-position: 0 !important;
			background-repeat: no-repeat !important;
			margin-top: 122px !important;
    }
	    section.dsl-hero_sec:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: #0000006e;
        padding: 20px 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        z-index: 1;
    }
	section.dsl-sidebar-sec .dsl-sidebar-content .dsl-events-inner-content .dsl-event-image {
		width: 35%;
		margin: 0;
}
    header.copm-cus-header .dsl-navbar .dsl-custom-menu ul {
        gap: 40px !important;
    }
    section.dsl-selection .dsl-select-quick-page {
        gap: 10px;
        align-items: center;
        width: 87%;
        margin: 0 0 0 20px !important;
        justify-content: center !important;
    }

    section.dsl-selection .dsl-select-quick .dsl-select-quick-page .dsl-quick-star h3 {
        font-size: 17px;
        line-height: 22px;
    }

    section.dsl-sidebar-sec .dsl-sidebar-element .sdl-service-dropdown {
        width: 190px;
    }

    section.dsl-sidebar-sec .dsl-sidebar-element .dropdown-header {
        font-size: 13px;
    }

    section.dsl-sidebar-sec .dsl-sidebar-element .dropdown-content label {
        font-size: 14px;
    }

    section.dsl-sidebar-sec .dsl-sidebar-content .dsl-events-inner-content {
        padding: 20px 18px 30px;
    }

    section.dsl-sidebar-sec .dsl-sidebar-content .dsl-events-inner-content .dsl-event-content {
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
	section.dsl-hero_sec .dsl-her0-banner-content .dsl-hero-content {
        width: 100%;
	}
    .dsl-selection h2 {
        font-size: 29px !important;
        line-height: 38px !important;
        width: 87%;
    }
	.dsl-select-quick .dsl-quick-bg-image {
    	display: none;
}
	section.dsl-selection .dsl-select-quick-page{
		position: relative !important;
		width: 100%;
        margin: 0 0 0 0px !important;
	}
	    section.dsl-selection .dsl-select-quick {
        padding: 0;
    }
	section.dsl-selection .dsl-select-quick .dsl-select-quick-page .dsl-quick-selection .dsl-quick-inner {
		gap: 10px;
}
	section.dsl-sidebar-sec .dsl-sidebar-element .sdl-service-dropdown.open .dropdown-content {
    max-height: 250px;
    padding: 10px 12px;
}
	section.dsl-selection  .container, section.dsl-sidebar-sec  .container {
        max-width: 640px !important;
    }
    header.copm-cus-header .dsl-navbar .dsl-custom-menu ul {
        & li a {
            font-size: 14px !important;
            width: 135px;
        }
    }

    header.copm-cus-header .dsl-navbar .dsl-custom-menu ul {
        gap: 15px !important;
    }

    section.dsl-cus-banner .dsl-banner-content {
        & h1 {
            font-size: 28px;
            line-height: 38px;
        }
    }

    section.dsl-cus-banner .dsl-banner-content {
        & p {
            font-size: 22px;
            line-height: 33px;
            margin: 4px 0 0 0;
        }
    }

    section.dsl-sidebar-sec .dsl-sidebar-element .sdl-service-dropdown {
        width: 203px;
    }

    section.dsl-sidebar-sec .dsl-sidebar-element .dropdown-header {
        padding: 11px 10px;
    }
	section.dsl-sidebar-sec .dsl-sidebar-row {
    	gap: 11px;
}
	section.dsl-sidebar-sec .dsl-sidebar-row .dsl-sidebar-element {
    	width: 39%;
}
}

@media only screen and (max-width: 639px) {
    section.dsl-cus-banner .dsl-banner-image img {
        width: 100%;
        height: 480px;
        object-fit: cover;
        object-position: center;
    }
		section.dsl-selection .dsl-select-btn {
			justify-content: center;
			gap: 20px;
			margin: 50px 10px 60px;
}
    .dsl-close-btn {
        right: 0px !important;
        top: -18px !important;
    }
    .dsl-selection h2 {
        width: 100%;
        font-size: 18px !important;
    }

    header.copm-cus-header .dsl-navbar .dsl-custom-logo {
        width: 53%;
    }

    header.copm-cus-header .dsl-navbar .dsl-custom-menu {
        width: 100%;
    }

    header.copm-cus-header .dsl-navbar {
        justify-content: center;
        flex-wrap: wrap;
    }

    section.dsl-cus-banner {
        margin-top: -140px;
    }

    section.dsl-selection .dsl-select-quick-page {
        flex-wrap: wrap;
        justify-content: center;
    }

    section.dsl-selection .dsl-select-quick .dsl-select-quick-page .dsl-quick-star {
        width: 50%;
        text-align: center;
    }

    section.dsl-selection .dsl-select-quick .dsl-select-quick-page .dsl-quick-selection {
        width: 100%;
    }

    section.dsl-selection .dsl-select-quick .dsl-select-quick-page .dsl-quick-star h3 {
        font-size: 23px;
        line-height: 28px;
    }

    section.dsl-selection .dsl-select-quick .dsl-select-quick-page .dsl-quick-selection p {
        font-size: 14px;
        line-height: 24px;
        width: 100%;
        margin-top: 10px;
        margin-bottom: 21px;
    }

    section.dsl-selection .dsl-select-quick .dsl-select-quick-page .dsl-quick-selection .dsl-quick-inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .dsl-selection h2 {
        margin-top: 30px;
        font-size: 24px !important;
        line-height: 34px !important;
    }
    section.dsl-selection .dsl-select-quick .dsl-quick-inner-select {
        position: relative;
        width: 100% !important;
    }

    section.dsl-selection .dsl-select-quick .dsl-quick-inner-content h4 {
        transform: translate(0px, 10px);
    }

    section.dsl-selection .dsl-select-quick {
        padding: 0;
    }

    section.dsl-sidebar-sec .dsl-sidebar-row {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    section.dsl-sidebar-sec {
        padding: 40px 0 0 0;
    }

    .dsl-sidebar-content {
        width: 100%;
    }

    section.dsl-sidebar-sec .dsl-sidebar-row .dsl-sidebar-element {
        width: 100%;
    }

    section.dsl-sidebar-sec .dsl-sidebar-element .sdl-service-dropdown {
        width: 100%;
    }

    section.dsl-sidebar-sec .dsl-sidebar-element .dropdown-header {
        padding: 15px 15px;
    }

    section.dsl-sidebar-sec .dsl-sidebar-element .dropdown-header {
        font-size: 16px;
    }
}

@media only screen and (max-width: 479px) {
	    section.dsl-hero_sec {
        background-size: 100% 100% !important;
        position: relative;
        height: 47vw !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        margin-top: 100px !important;

    }
	section.dsl-selection {
    margin-top: 50px;
}
	section.dsl-sidebar-sec .dsl-sidebar-content .dsl-events-inner-content .dsl-event-image {
		width: 60%;
		text-align: right;
		margin: 0;
}
    header.copm-cus-header .dsl-navbar .dsl-custom-menu ul {
        & li a {
            font-size: 12px !important;
            width: 103px;
        }
    }
    .dsl-sel-btn #dsl-email-form input#dsl-email-address {
        padding: 14px 20px 15px 10px;
        width: 260px;
    }
		 .dsl-sel-btn #dsl-email-form button#dsl-send-email {
        top: 14px;
        width: 24px;
		 & img{
			 width: 100%;
		 }
    }
    header.copm-cus-header .dsl-navbar .dsl-custom-menu ul {
        & li a {
            &:after {
                top: 6px;
                right: -11px !important;
            }
        }
    }
	section.dsl-selection .dsl-select-btn .dsl-sel-btn:nth-child(1) a:after{
		top: 19px !important;
        width: 23px;
        height: 23px;
	}
	section.dsl-selection .dsl-select-btn .dsl-sel-btn:nth-child(2) a:after{
		top: 13px !important;
        width: 23px;
        height: 23px;
	}
    section.dsl-selection .dsl-select-btn {
        justify-content: center;
        gap: 20px;
		margin: 30px 0 40px;
        flex-wrap: wrap;
    }
    header.copm-cus-header .dsl-navbar .dsl-custom-menu ul {
        margin: 0 0 0 0 !important;
    }
    section.dsl-selection .dsl-select-btn .dsl-sel-btn a {
        padding: 14px 20px 15px 10px;
        width: 260px;
		font-size: 14px;
    }
    .dsl-selection h2 {
		margin-top: 30px;
        font-size: 20px !important;
        line-height: 28px !important;
		margin-bottom: 20px;
    }
.dsl-quick-bg-image {
    display: none;
}
    section.dsl-selection .dsl-select-quick .dsl-select-quick-page .dsl-quick-star {
        width: 100%;
    }

    section.dsl-sidebar-sec .dsl-sidebar-content .dsl-events-inner-content p {
        font-size: 14px;
        line-height: 20px;
    }

    section.dsl-sidebar-sec .dsl-sidebar-content .dsl-events-inner-content h2 {
        font-size: 22px;
        line-height: 30px;
    }

    header.copm-cus-header .dsl-navbar .dsl-custom-menu ul {
        gap: 30px !important;
        justify-content: center !important;
    }

    header.copm-cus-header .dsl-navbar .dsl-custom-menu ul {
        & li a {
            text-align: center;
        }
    }
	    section.dsl-cus-banner .dsl-banner-content {
        & p {
            font-size: 22px;
            line-height: 28px !important;
        }
    }
}

@media only screen and (max-width: 400px) {
    header.copm-cus-header .dsl-navbar .dsl-custom-menu ul {
        gap: 14px !important;
        justify-content: center !important;
    }

    section.dsl-cus-banner .dsl-banner-content {
        & p {
            width: 100%;
        }
    }

    header.copm-cus-header .dsl-navbar .dsl-custom-logo {
        width: 100%;
    }
}

@media only screen and (max-width: 350px) {
    header.copm-cus-header .dsl-navbar .dsl-custom-menu ul {
        & li a {
            font-size: 11px !important;
            width: 92px;
            border-width: 1px 0px 0px 1px !important;
        }
    }

    section.dsl-selection .dsl-select-quick .dsl-quick-inner-content h4 {
        transform: translate(0px, 7px);
    }
	.dsl-selection h2 {
        font-size: 12px !important;
        line-height: 25px !important;
    }
}


#dsl-email-form {
    display: flex;
    align-items: center;
    position: relative;
}

.dsl-input {
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
    width: 200px;
}

.dsl-btn {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.dsl-share-btn {
    background-color: #c13b7b;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    margin-left: -1px;
}

/* Close button (×) style */
.dsl-close-btn {
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #212529;
    cursor: pointer;
    padding: 0 5px;
}