*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: var(--font-body);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5;
	color: #121212;
}
html{
	overflow-x: hidden;
}
:root {
	--primary:#FF6500;
	--secondary:#0B192C;
	--secondary-light:#1E3E62;	
    --font-heading:"Plus Jakarta Sans", system-ui;
    --font-body:"DM Sans", system-ui;
    --icon: "Font Awesome 6 Free", sans-serif;
}
::selection {
    background: var(--primary);
    color: #fff;    
}
body::-webkit-scrollbar, .card-pricing-package::-webkit-scrollbar, .portfolio-types-box .box-menu::-webkit-scrollbar{
    width: 5px;
    border-radius: 5px;
    -webkit-appearance: none;
    background: var(--secondary-light);
}
body::-webkit-scrollbar-thumb, .card-pricing-package::-webkit-scrollbar-thumb, .portfolio-types-box .box-menu::-webkit-scrollbar-thumb{
    border-radius: 5px;
    background-color: var(--primary);
}
body {
    position: relative;
}
body:before {
    content: "";
    position: absolute;
    width: 593px;
    height: 752px;
    background: url(/assets/images/banner-tradeMark.webp);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    top: 200px;
    left: -100px;
    z-index: -9999;
}
a{
    color: #121212;
}
a, input[type="submit"], button, button[type="submit"], :before, :after, img, header, .testimonails-slider-thumb .slick-slide .testimonails-box, .discount-banner {
    -webkit-transition: all .4s ease-in-out !important;
    -moz-transition: all .4s ease-in-out !important;
    -o-transition: all .4s ease-in-out !important;
    -ms-transition: all .4s ease-in-out !important;
    transition: all .4s ease-in-out !important;
    text-decoration: none;
}
a:hover, input[type="submit"]:focus,  button, button[type="submit"]:focus, .dontae-row button:focus{
	text-decoration:none !important;
	outline:none !important;
}
h1, h2, h3, h4, h5, h6{
	font-weight: 500;
	margin-bottom: 0px;
    font-family: var(--font-heading);
}
h1, h2, h3, h4, h5, h6, p{
	margin-bottom: 0 !important;
}
h1{
	font-size: 90px;
    font-weight: 700    ;
}
h2{
    font-size: 40px;
}
h3 {
    font-size: 31px;
}
h4 {
    font-size: 25px;
}
.mt-100{
    margin-top: 100px;
}
.mt-72{
    margin-top: 72px;
}
.mt-54{
	margin-top: 54px;
}
.mt-42{
    margin-top: 42px;
}
.mb-42{
    margin-bottom: 42px !important;
}
.mt-32{
	margin-top: 32px;
}
.mt-20{
    margin-top: 20px;
}
.pt-30{
    padding-top: 30px;
}
.pt-50{
	padding-top: 50px;
}
.pt-100{
    padding-top: 100px;
}
.pb-30{
    padding-bottom: 30px;
}
.pb-50{
	padding-bottom: 50px;
}
.pb-100{
	padding-bottom: 100px;
}
.pt-150{
	padding-top: 150px;
}
.pb-150{
	padding-bottom: 150px;
}
.bg-primary{
	background-color: var(--primary) !important;
}
.text-primary{
	color: var(--primary) !important;
}
.border-primary{
	border-color: var(--primary) !important;
}
.bg-secondary{
	background-color: var(--secondary) !important;
}
.text-secondary{
	color: var(--secondary) !important;
}
.bg-secondary-light{
	background-color: var(--secondary-light);
}
.font-heading{
	font-family: var(--font-heading);
	font-optical-sizing: auto;
	font-style: normal;
	font-optical-sizing: auto;
	font-style: normal;
}
.font-body{
	font-family: var(--font-body);
}
.radius-28{
	border-radius: 28px;
}
header#header.scrolled {
    padding: 15px 0px !important;
    background: var(--secondary-light);
    z-index:111;
}
header#header.scrolled .navbar-light .navbar-nav .nav-link {
    color: #fff;
}
.navbar-nav li.nav-item:last-child a.nav-link {
    height: 48px;
    border-radius: 50px;    
}
.navbar-nav li.nav-item:last-child a.nav-link span, .btn-grp a span, .navbar-nav li.nav-item:last-child a.nav-link span:after, .btn-grp a span:after{
	height: 100%;
}
.navbar-nav li.nav-item a.nav-link span:first-child, .btn-grp a span:first-child{
    padding: 0 1.5rem;
    transition: transform .5s cubic-bezier(.65,0,.35,1);
    white-space: nowrap;
}
.navbar-nav li.nav-item a.nav-link span:last-child {
    padding: 0 1rem;    
    border-color: #eae4dd66 !important;
}
.navbar-nav li.nav-item a.nav-link span:first-child:after, .btn-grp a span:first-child:after{
	content: attr(data-text);
    position: absolute;
    top: -110%;
    left: 0;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
}
.navbar-nav li.nav-item:last-child a.nav-link:hover span:first-child, .btn-grp a:hover span:first-child{
	transform: translateY(110%);
}
.dropdown-menu-box {
    padding: 0;
    list-style: none;
    position: absolute;
    top: 55px;
    right: 0;
    width: 86%;
    display: flex;
    align-items: self-start;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 0 35px rgb(0 0 0 / 12%);
    padding: 16px 5px;
    border-radius: 15px;
    -webkit-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: all 650ms cubic-bezier(.76, 0, .11, 1);
    -o-transition: all 650ms cubic-bezier(.76, 0, .11, 1);
    transition: all 650ms cubic-bezier(.76, 0, .11, 1);
    -webkit-transition-timing-function: cubic-bezier(.76, 0, .31, 1);
    -o-transition-timing-function: cubic-bezier(.76, 0, .31, 1);
    transition-timing-function: cubic-bezier(.76, 0, .31, 1);
    z-index:1;
}
.navbar-nav li:hover .dropdown-menu-box {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.dropdown-menu-box .card {
    background: #F0F0F0;
    padding: 16px 10px;
    border-radius: 10px;    
    border:2px solid #E2E2E2;
}
.dropdown-menu-box .row .col-xxl-3.col-xl-3.col-lg-3.col-md-3.col-sm-12:nth-child(2) .card{
    padding: 10px 9px;
}
.dropdown-menu-box .row .col-xxl-3.col-xl-3.col-lg-3.col-md-3.col-sm-12:nth-child(2) .card .card-body picture{
    margin-top: -30px;
}
.dropdown-menu-box .card h3, .dropdown-menu-box h3{
    font-size: 22px;
    font-weight: 600;
}
.dropdown-menu-box .card p {
    font-size: 14px;
    margin: 5px 0 5px !important;
    line-height: 14px;
}
.dropdown-menu-box ul {
    margin-top: 10px;
}
.dropdown-menu-box ul li {
    font-size: 12px;
    margin-bottom: 5px;
}
.dropdown-menu-box ul li:last-child{
    margin-bottom: 0;
}
.dropdown-menu-box .first-col {
    width: 240px;
    height: 100%;
    padding: 0 8px;
}
.dropdown-menu-box .second-col {
    width: 213px;
    padding: 0 0px;
}
.dropdown-menu-box .second-col .card {
    height: 100%;
    width: 100%;
    padding: 9px;
}
.dropdown-menu-box .second-col .card .card-body h3 {
    font-size: 16px;
}
.dropdown-menu-box .second-col .card .card-body p {
    font-size: 12px;
}
.dropdown-menu-box .last-col {
    width: 173px;
    float: right;
    padding: 0 8px;
}
.dropdown-menu-box .last-col h3 {
    font-size: 16px;
}
.dropdown-menu-box .second-col picture {
    position: absolute;
    right: 5px;
    bottom: 3px;
}
.dropdown-menu-box .first-col.third-col .card {
    padding: 13px 10px;
}
.dropdown-menu-box .second-col .card:last-child {
    margin-top: 14px;
}
.banner-section video {
    border-radius: 1.8rem;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}
.banner-section p {
    font-size: 24px;
}
ul.check-list li:before{
    content: "\f00c";
    width: 26px;
    height: 26px;
    display: inline-flex;
    background: #FF6500;
    border-radius: 50%;
    margin-right: 12px;
    font-family: var(--icon);
    font-weight: 700;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
}
.btn-grp {
    gap: 18px;
}
.btn-grp a.call-btn, .btn-grp a{
    overflow: hidden;
}
.btn-grp a.call-btn {
    height: 64px;
    border-radius: 50px;
}
.btn-grp a.call-btn span:first-child {
    width: 162px;    
}
.small-btn-grp a.call-btn span:first-child {
    width: 127px;
}
.btn-grp a.call-btn span:last-child {
    width: 78px;
}
.content-card-author-pic {
    display: flex;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    border-radius: 50%;
}
.client-slider, .marquee-slider, .marquee-slider-reverse {
    -webkit-mask-image: linear-gradient(var(--mask-direction, to right), hsl(0 0% 0% / 0), hsl(0 0% 0% / 1) 20%, hsl(0 0% 0% / 1) 80%, hsl(0 0% 0% / 0));
}
.slider-box {
    outline: none;
    display: flex !important;
    height: 100%;
}
.client-slider .slider-box {
    width: 140px;
    height: 140px;
    margin: 0 30px;
}
.bg-image {
    width: 100%;
    height: 100%;
    top: 1rem;
    z-index: -1;
}
.package-section:before {
    content: "";
    position: absolute;
    top: 6rem;
    left: 0;
    right: 0;
    width: 110%;
    height: 85%;
    background: url(../images/mountains.webp);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
}
.package-section .card {
    padding: 20px;
    background: var(--secondary-light);
}
.package-section .card picture{
    display: flex !important;
    width: 80px;
    height: 80px;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    border-radius: 50%;
}

.package-section ul li:before{
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	background:url(../images/list-Icon.webp);
	background-repeat: no-repeat;
	background-position: left center;
	padding-right: 40px;
}
.service-slider {
    padding: 0;    
}
.service-slider .slick-list.draggable .slick-track {
    display: flex;
    gap: 20px;
}
.service-slider .slick-list.draggable .slick-track .slider-box .card .card-body h3 {
    font-size: 22px;
}
.slider-nav-container .slick-arrow {
    position: relative;
    top: auto;
    left: auto;
    right: 0;
    width: 50px;
    height: 50px;
    transform: translate(0, 0%);    
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--primary);
}
.slider-nav-container .slick-arrow:before {    
    font-family: var(--icon);
    font-weight: 700;
    color: var(--primary);
    font-size: 16px;
}
.slider-nav-container .slick-arrow.slick-prev{
	margin-right: 15px;
}
.slider-nav-container .slick-arrow.slick-prev:before{
	content: "\f053";
}
.slider-nav-container .slick-arrow.slick-next:before{
	content: "\f054";
}
.slider-nav-container .slick-arrow.slick-disabled {
    opacity: .25;
}
.testimonial-section .testimonial-slider .slider-box{
	padding: 0 30px;
	cursor: grab;
}
.testimonial-section .testimonial-slider .slider-box .testimonial-image{
	display: flex;
    flex: 1 1 40%;
    border-top-left-radius: 28px;
    border-bottom-left-radius: 28px;
    position: relative;
    overflow: hidden;
}
.testimonial-section .testimonial-slider .slider-box .testimonial-image picture, .testimonial-section .testimonial-slider .slider-box .testimonial-image picture img{
	height: 100%;
}
.testimonial-section .testimonial-slider .slider-box .testimonial-content {
    padding:32px;
    background: var(--secondary);
   	flex: 1 1 74%;
   	display:flex;
   	height: auto;
   	border-top-right-radius: 28px;
    border-bottom-right-radius: 28px;
}
.testimonial-section .testimonial-slider .slider-box .testimonial-content .card{
	gap: 1.5rem;
	height: 100%;
}
.testimonial-section .testimonial-slider .slider-box .testimonial-content .card .card-header {
    gap: 2rem;
    display: flex;
    flex-direction: column;
}
.testimonial-section .testimonial-slider .slider-box .testimonial-content .card .card-header .testimonial-rating {
    display: flex;
    gap: 1rem;
}
.testimonial-section .testimonial-slider .slider-box .testimonial-content .card .card-header .testimonial-rating span i {
    color: #fff;
    font-size: 26px;
}
.testimonial-section .testimonial-slider .slider-box .testimonial-content .card-body .testimonial-desc {    
    color: #fff;
    color: #fff;
    font-size: 31px;
    line-height: 39px;
    letter-spacing: -.022em;
    font-weight: 600;
}
.testimonial-section .testimonial-slider .slider-box .testimonial-content .card-body .testimonial-rating {
    display: flex;
    gap: 15px;
}
.testimonial-section .testimonial-slider .slider-box .testimonial-content .card-body .testimonial-rating span i {
    color: #fff;
    font-size: 22px;
}
.testimonial-section .testimonial-slider .slider-box .testimonial-content .card .card-footer{
	flex: 1 1 100%;
    color: #fff;
    font-weight: 200;
    display: flex;
    flex-direction: column;
    justify-items: flex-start;
    align-items: flex-start;
    justify-content: flex-end;
}
.testimonial-section .testimonial-slider .slider-box .testimonial-content .card .card-footer .testimonial-author {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
}
.testimonial-slider .slick-list.draggable {
    overflow: visible !important;
    padding: 0px 10% 0 10% !important;
}
.services-section .card .card-header .card-icon {
    width: 60px;
    height: 60px;
}
.services-section .card {
    padding: 12px 16px 30px;
    box-shadow: 0 0 35px rgb(0 0 0 / 12%);
    gap: 2rem;
}
.services-section .card .card-body {
    gap: 10px;
}
.services-section .card .card-body h3 {
    font-size: 20px; 
    min-height: 48px;
}
.service-sector-section .card:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #00000070;
    z-index: 0;
}
.service-sector-section .card h3{
    text-shadow: 1px 1px 3px rgba(0, 0, 0, .5);
}
.marquee-section .marquee-slider .slider-box, .marquee-section .marquee-slider-reverse .slider-box{
	min-height: 180px;
}
.marquee-section .marquee-slider .slick-track,  .marquee-section .marquee-slider-reverse .slick-track{
    display: flex;
    gap: 34px;
}
.marquee-section .marquee-slider-reverse{
    transform:rotate(180deg);
}
.marquee-section .marquee-slider-reverse .slider-box{
    transform:rotate(180deg);
}
.process-slider .process-box-one {
    background: linear-gradient(180deg, #f54900 16.15%, #030303);
}
.process-box-two{
    background: linear-gradient(180deg, #713dff 16.15%, #030303);
}
.process-box-three{
    background: linear-gradient(180deg, #008500 16.15%, #030303);
}
.process-box-four{
    
}
.process-slider .slider-box {
    padding: 3.5rem;
    margin-right: 40px;
}
.process-slider .slider-box .card, .process-slider .slider-box .process-image {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px !important;
    display:flex;
}
.process-slider .slider-box .card .card-header .process-number {
    width: 70px;
    height: 70px;
    border: 3px solid #fff;
    font-size: 1.75rem;
}
.step-form-section .step-form .card {
    padding: 50px;
}
.step-form-section .step-form .card .card-header h2 {
    font-size: 48px;
    line-height: 58px;
}
.step-form-section .step-form .card .card-body .form-progress-bar ol li span {
    color: #fff;
    width: 50px;
    display: flex;
    flex-direction: column;
    position: relative;
    text-align: center;
}

.step-form-section .step-form .card .card-body .form-progress-bar ol li span span.form-step-icon-title {
    font-size: 12px;
    position: relative;
    width: 80px;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    margin-top: .5em;
}
.step-form-section .step-form .card .card-body .form-progress-bar ol li:first-child span span.form-step-icon-title{
	left: 0;
    transform: translateX(0);
}
.step-form-section .step-form .card .card-body .form-progress-bar ol li:last-child span span.form-step-icon-title{
	left: 100%;
    text-align: right;
    transform: translateX(-100%);
}
.step-form-section .step-form .card .card-body .form-progress-bar ol li span span.form-step-icon-circle {
    background: #d4d4d4;
    color: #a9a9a9;
    font-weight: 700;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0;
}
.step-form-section .step-form .card .card-body .form-progress-bar ol li span.form-step-icon.is-active span.form-step-icon-circle {
    background: var(--primary);
    color: #fff;
    border: 4px solid #f9a66f;
}
.step-form-section .step-form .card .card-body .form-progress-bar ol li span.form-step-icon:after{
	content: "";
    background: #d4d4d4;
    position: absolute;
    right: -2000%;
    top: 20px;
    left: 10px;
    height: 4px;
    z-index: 1;
}
.step-form-section .step-form .card .card-body .form-progress-bar ol li:last-child span.form-step-icon:after{
	background-color: var(--secondary) !important;
}
.step-form-section .step-form .card .card-body .form-progress-bar ol li span.form-step-icon.is-passed span.form-step-icon-circle {
    background: var(--primary);
    color: #fff;
}
.step-form-section .step-form .card .card-body .form-progress-bar ol li span.form-step-icon.is-passed:after {
    background: var(--primary);
}
.step-form .form-section fieldset label h3 {
    font-size: 24px;
    margin-bottom: 6px;
}
.step-form .form-section fieldset label {
    margin-bottom: 30px;
}
.form-section .accept-terms .check-round {
    position: relative;
    max-width: 28px;
    width: 28px !important;
    height: 28px;
    flex: 1 1 auto;
    margin-right: 10px;
}
.form-section .accept-terms .check-round input {
    width: 100%;
    height: 100%;
    visibility: hidden;
}
.form-section .accept-terms .check-round label {
    border: 1px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
    height: 28px;
    left: 0;
    position: absolute;
    top: 0;
    width: 28px;
}
.form-section .accept-terms .check-round label:after{
	border: 2px solid #fff;
    border-top: none;
    border-right: none;
    content: "";
    height: 6px;
    left: 7px;
    opacity: 0;
    position: absolute;
    top: 8px;
    transform: rotate(-45deg);
    width: 12px;
}
.form-section input {
    height: 46px;
}
.form-section .accept-terms .check-round input[type=checkbox]:checked+label {
    background: var(--primary);
    border-color: var(--primary);
}
.form-section .accept-terms .check-round input[type=checkbox]:checked+label:after{
	opacity: 1;
}
.step-form-section .step-form .card .card-body .form-section.current {
    display: inherit;
}
.step-form-section .step-form .card .card-body .form-section {
    display: none;
}
.step-form-section .step-form .card .card-footer button {
    width: 189px;
    height: 52px;
}
.radio-container label {
    margin-bottom: 0 !important;
    display: flex;
}
.radio-container label span {
    width: 28px;
    height: 28px;
    display: inline-flex;
    border: 3px solid var(--primary);
    border-radius: 50%;
    margin-right: 20px;
}
.radio-container label:after {
    content: "";
    display: flex;
    width: 12px;
    height: 12px;
    position: absolute;
    left: 8px;
    border-radius: 50%;
    top: 50%;
    transform: translate(0px, -50%);
}
.radio-container input[type=radio]:checked+label:after {
    background: var(--primary);
}
.media-budget__slider-input-field {
    margin-bottom: 20px;
}
.media-budget__money-slider-wrap {
    margin-top: 10px;
    min-height: 100px;
}
.noUi-connect {
    background: linear-gradient(to right, #ff6500, #db5700) !important; 
    transition: background 0.3s ease !important;
}
input#media_budget_amount_value {
    height: auto;
    border: 0;
    background: transparent;
    text-align: center;
    font-size: 50px;
    color: #ff6500;
    letter-spacing: 3px;
    font-weight: 700;
}
.media-budget__slider-input-field {
    text-align: center;
}
.noUi-value-horizontal {
    color: #fff;
}
.form-section.type-checkboxes .type-checkboxes-row {
    padding: 15px 0px;
    border-bottom: 1px #e3e6e9 solid;
}
.form-section.type-checkboxes .type-checkboxes-column input[type="checkbox"]+label:after {
    content: "";
    display: inline-flex;
    width: 20px;
    height: 20px;
    border: 1px solid #ff6500;
    position: absolute;
    left: 0;
    opacity: .6;
    transition: all .12s, border-color 80ms;
}
.form-section.type-checkboxes .type-checkboxes-column input[type="checkbox"]+label {
    padding-left: 30px;
    display: flex;
    align-items: center;
}
.form-section.type-checkboxes .type-checkboxes-column input[type=checkbox]:checked+label:after {
    width: 10px;
    left: 5px;
    border-radius: 0;
    opacity: 1;
    border-top-color: transparent;
    border-left-color: transparent;
    transform: rotate(45deg);
}
.form-section.type-checkboxes .type-checkboxes-row h4 {
    font-size: 20px;
}
.form-section input.invalid {
    color: #b94a48;
    background-color: #f2dede;
    border: 1px solid #eed3d7;
}
.form-section input.valid {
    color: #000;
    background-color: #dff2de;
    border: 1px solid #00c142;
}
span.error {
    color: #b94a48;
    margin: 15px 0;
    display: block;
}
span.success{
    color: #00c142;
    margin: 15px 0;
    display: block;
}
span.checkbox-term-error-message.error {
    width: 1200%;
    position: absolute;
    top: 20px;
}
.z-index-1{
    z-index: 1;
}
.article-section .card .card-header .tag-panel {
    padding: 15px;
    gap: 10px;
}
.article-section .card .card-header .tag-panel a {
    padding: 0 12px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
    background: #000000;
    color: var(--primary);
    border-radius: 28px;
    display: flex;
    align-items: center;
    cursor: none;
}
.article-section .card .card-header .tag-panel a.article-card-tag.article-card-tag-more {
    border-radius: 50px;
    width: 25px;
    height: 25px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1E3E62;
    color: var(--primary);
}
.article-section .card .card-body  h3 {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 0.5rem !important;
}
.article-section {
    display: flex;
    height: 100%;
}
.article-section .card {
    height: 100%;
}
.bg-transparent.p-0.border-0 .card-footer .content-card-author-bar .content-card-article-details-container .content-card-author-name {
    font-size: 16px;
    font-weight: 700;
}
.bg-transparent.p-0.border-0 .card-footer .content-card-author-bar .content-card-article-details-container .content-card__author-date-time-container * {
    font-size: 16px;
}
.bg-transparent.p-0.border-0 .card-footer .content-card-author-bar .content-card-article-details-container .content-card__author-date-time-container {
    display: flex;
    gap: 8px;
}
.article-section .card .card-header .card-image {
    margin-bottom: 1.5rem;
}
.article-section .card .card-body {
    margin-bottom: 1.16667rem;
}
.article-section .slick-list{
    overflow: visible !important;
}
.article-section .slick-list.draggable, .article-section .slick-track {
    display: flex;
}
.article-section .slider-nav-container .slick-arrow {
    border-color: #000;
}
.article-section .slider-nav-container .slick-arrow:before {
    color: #000;
}
.article-section .custom-cursor {
    padding: 0;
    position: fixed;
    pointer-events: none;
    z-index: 99;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: height .2s,width .2s,opacity .2s;
    transition-timing-function: ease-out;
    animation-name: mouse-moves-in;
    animation-duration: .2s;
    animation-timing-function: ease-out;
    animation-direction: normal;
    animation-fill-mode: forwards;
    animation-play-state: paused
}
.article-section .custom-cursor::before {
    display: block;
    border-radius: 100%;
    background-image: url(../images/viewcursor.webp);
    background-color: var(--primary);
    background-size: cover;
    content: "";
    width: 100%;
    height: 100%
}
.article-section .custom-cursor__is-hovering {
    animation-play-state: running
}
.article-section .custom-cursor__mouse-moves-out {
    animation-name: mouse-moves-out;
    animation-fill-mode: forwards;
    animation-play-state: running
}
.article-section .custom-cursor__downsize {
    animation-name: downsize;
    animation-fill-mode: forwards;
    animation-play-state: running
}
.article-section .custom-cursor__downsize::before {
    background-image: none;
    border: 2px solid #fff
}
.article-section .slick-list .slick-track .slider-box {
    margin-right: 30px;
}
.packages-section .card {
    padding: 74px 44px;
}
.packages-section .card .card-body h3 {
    font-size: 24px;
    line-height: 36px;
    font-weight: 400;
    font-family: var(--font-body);
}
.packages-section .card .card-body ul.check-list {
    min-height: 162px;
}
.packages-section .card .card-body ul.check-list li:before{
    color: #000;
}
footer p, footer li, footer li span, footer li a, footer li a i, footer a i, address{
    font-size: 16px;
}
footer .footer-widget .social-list li a {
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
footer .footer-widget .social-list li a:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--secondary-light);
    transform: rotate(45deg) scale(0);
}
footer .footer-widget .social-list li a:hover:after {
    transform: rotate(-315deg) scale(0.8);
}
footer .footer-widget h3 {
    font-size: 19px;
    font-weight: 500;
}
footer .footer-widget .widget-nav_menu ul{
    gap: .5rem;
}
.footer-bottom a{
    -webkit-mask-image: linear-gradient(-75deg, rgba(0, 0, 0, .6) 30%, #000 50%, rgba(0, 0, 0, .6) 70%);
    -webkit-mask-size: 200%;
}
.footer-bottom a:hover {
    -webkit-animation: shine 2s infinite;
    animation: shine 2s infinite;
}
.faqs-section .accordion .accordion-item {
    border: 0;
    background: var(--secondary-light);
    border-radius: 10px;
    margin-bottom: 15px;
}
.faqs-section .accordion .accordion-item:last-child{
    margin-bottom:0;
}
.faqs-section .accordion .accordion-item h2.accordion-header {
    border: 0;
    font-size: 25px !important;
    color: #fff !important;
}
.faqs-section .accordion .accordion-item h2.accordion-header button.accordion-button {
    box-shadow: unset;
    background: transparent;
    font-size: 22px;
    color: #fff;
    font-weight: 700;
    padding-left: 2.5rem;
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
    padding-right: 3.75rem !important;
}
.faqs-section .accordion .accordion-item .accordion-collapse .accordion-body {
    padding-top: 0;
    padding-bottom: 1.25rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    color: #fff;
}
.faqs-section .accordion .accordion-item h2.accordion-header button.accordion-button:after {
    filter: brightness(0) saturate(100%) invert(100%) sepia(30%) saturate(2075%) hue-rotate(194deg) brightness(120%) contrast(93%);
    margin: 0;
    position: absolute;
    right: 20px;
}
.faqs-section .accordion .accordion-item .accordion-collapse .accordion-body p {
    color: #fff;
}
.faqs-section .accordion .accordion-item:hover h2.accordion-header button.accordion-button {
    color: var(--primary) !important;
}
.faqs-section .accordion .accordion-item h2.accordion-header button.accordion-button {
    color: var(--primary);
}
.faqs-section .accordion .accordion-item h2.accordion-header button.accordion-button.collapsed {
    color: var(--white);
}
.footer-top video{
    object-fit:cover;
}
/* Service Page Css */
.search-box input {
    height: 46px;
    padding-left: 50px;
    padding-right: 20px;
}
.search-box i {
    left: 20px;
    top: 50%;
    transform: translate(0px, -50%);
}
.service-categories ul {
    padding: 8px;
    gap: 10px;
}
.service-categories ul li{
    flex: 1 1 auto;
}
.service-categories ul li a {    
    padding: .25rem 1rem;
    background: #F4F8FB;
    font-size: 15px;
}
.service-categories ul a {
    flex: 1 1 auto;
    padding: .25rem 1rem;
    background: #F4F8FB;
    font-size: 15px;
}
.service-boxes .card{
    padding: 24px;
}
.service-boxes .card .card-header .card-image {
    width: 80px;
    height: 80px;
}
.service-boxes .card .card-header h3{
    font-size: 30px;
    letter-spacing: -0.69px;
}
.service-boxes .card .card-body {
    min-height: 116px;
}
.service-boxes .card .card-footer a i {
    margin-top: 3px;
    opacity: 0.75;
}
div#resultsContainer .col-md-4 {
    margin-bottom: 20px;
}
#searchResults #resultsContainer .card{
    border:0 !important;
}
#searchResults #resultsContainer .card .card-header .card-image{
    width: 80px;
    height: 80px;
}
#searchResults #resultsContainer .card .card-header h3 {
    font-size: 23px;
}
#searchResults #resultsContainer .card .card-header h3 br {
    display: none;
}
#searchResults #resultsContainer .card .card-body, #searchResults #resultsContainer .card .card-footer {
    display: none;
}
.service-categories ul a.active {
    background: var(--secondary-light);
    color: #fff;
}
/* Service Page Css */
/* Services inner page */
.tiktok .banner-section h1 {
    font-size: 60px;
}
.service-details-section .card {
    padding: 22px 24px;
    gap: 1rem;
    background:#fff !important;
}
.service-details-section .card .card-body h3 {
    font-size: 18px;
    min-height: auto;
}
.service-details-section .card .card-body p, .service-details-section .card .card-body p span {
    font-size: 15px;
}
.service-inner-btn{
    height: 48px;
}
.service-inner-btn span:first-child {
    width: 260px;
}
.service-inner-btn span:last-child {
    width: 54px;
}
/* Services inner page */
/* Blog Page */
.blogs #searchResults #resultsContainer {
    display: flex;
    flex-wrap: wrap;
}
.blogs #searchResults #resultsContainer .card .card-header .card-image {
    width: 100%;
    height: auto;
}
.blogs #searchResults #resultsContainer .card .card-body, .blogs #searchResults #resultsContainer .card .card-footer {
    display: block;
}
.blogs #searchResults #resultsContainer .col-md-4 {
    padding: 0 15px;
    margin-top: 42px;
}
/* Blog Page */
/* Inner Service Page */
.about-section .col-xxl-6.col-xl-6.col-lg-6.col-md-6.col-sm-12:first-child picture.d-flex.position-relative.overflow-hidden.radius-28 {
    justify-content: center;
    background: #f5f5f5;
}
/* Inner Service Page */
@keyframes downsize {
    0% {
        width: 150px;
        height: 150px
    }

    100% {
        width: 20px;
        height: 20px
    }
}
@keyframes mouse-moves-in {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1;
        width: 150px;
        height: 150px
    }
}
@keyframes mouse-moves-out {
    0% {
        opacity: 0;
        width: 150px;
        height: 150px
    }

    100% {
        opacity: 0
    }
}
@keyframes shine {
    from {
        -webkit-mask-position: 150%;
    }
  
    to {
        -webkit-mask-position: -50%;
    }
}