*{
	padding: 0;
	margin: 0;
    font-family: "Inter", sans-serif;
}
h1,h2,h3,h4,h5,h6 {
    font-family: 'Circular Std';
    font-weight: bold;
}
	
a {
	text-decoration: none;
	-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;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}	
a:hover,
a:focus {
	text-decoration: none;
	outline: none;
}
	
button:focus {
	outline: none;
	box-shadow: none;
}
	
.slick-slide:focus {
	outline: none;
	box-shadow: none;
}
	
.slick-slide img {
	display: inline-block !important;
}
	
button {
	border: none;
}
	
img {
	max-width: 100%;
	height: auto;
}
	
.form-group input:focus,
.form-group textarea:focus, .form-group select:focus {
	outline: none;
	box-shadow: none;
	border: 1px solid #004DBA!important;
}

.form-group {
    margin-bottom: 20px;
}
  
.form-group input {
    color: rgb(255 255 255 / 70%);
    border: none !important;
    width: 100% !important;
    background: transparent;
    font-size: 18px;
    font-weight: 500;
    border: 1px solid rgb(255 255 255 / 30%) !important;
    padding: 0 22px !important;
    line-height: 63px;
    border-radius: 8px !important;
}
  
.form-group textarea {
    color: rgb(255 255 255 / 70%);
    border: none !important;
    width: 100% !important;
    background: transparent;
    font-size: 18px;
    font-weight: 500;
    border: 1px solid rgb(255 255 255 / 30%) !important;
    padding: 22px !important;
    line-height: initial;
    border-radius: 8px !important;
	height: 180px;
}

.form-group select {
    color: rgb(255 255 255 / 70%);
    border: none !important;
    width: 100% !important;
    background: transparent;
    font-size: 18px;
    font-weight: 500;
    border: 1px solid rgb(255 255 255 / 30%) !important;
    padding: 0 22px !important;
    line-height: initial;
    border-radius: 8px !important;
    height: 65px;
}
  
.form-group input::placeholder, textarea::placeholder {
	font-size: 18px;
}

.form-group input[type="submit"] {
    line-height: initial;
    font-size: 18px;
    font-weight: 500;
    background: #fff;
    border: none;
    color: #1A1A1A;
    transition: .3s;
    padding: 18px 35px !important;
    border-radius: 1000px !important;
    width: auto !important;
}


.form-group span {
	display: block;
}

.form-group br {
	display: none;
}
.form-group  p {
	position: relative;
	margin-bottom: 0;
}
.form-group p label {
	position: absolute;
	top: 15px;
	pointer-events: none;
	font-weight: normal;
	transition: top 0.2s;
	font-size: 17px;
	color: #333B46;
}
.form-group label.has-value {
	top: -10px;
	font-size: 12px;
	letter-spacing: 3px;
}

.quote-form .form-group {
	margin-bottom: 40px;
}

.quote-form .form-group.submit {
	margin-bottom: 0;
}

.wpcf7-not-valid-tip {
	display: none!important;
}

.form-group .wpcf7-not-valid {
	border-bottom: 1px solid red!important;
}

.wpcf7-spinner {
	display: none!important;
}
	
.wpcf7-response-output {
	display: none;
}

.quote-form .form-group.submit.w-auto input {
    width: auto!important;
    padding: 17px 73px!important;
}

.quote-form .form-group.submit.w-auto p {
    text-align: center;
}

.primary-btn a .elementor-button-icon svg {
    width: 14px;
}

.primary-btn a:hover .elementor-button-icon svg {
    filter: invert(1);
}


/* gradient-bg css
============================================================================================ */
.gradient-bg {
	background: -webkit-linear-gradient(90deg, #fe690b 0%, #ff8f1e 100%);
	background: -moz-linear-gradient(90deg, #fe690b 0%, #ff8f1e 100%);
	background: -o-linear-gradient(90deg, #fe690b 0%, #ff8f1e 100%);
	background: linear-gradient(90deg, #fe690b 0%, #ff8f1e 100%);
}
	
.text-gradient {
	background: linear-gradient(90deg, #F861D7 0%, #8E3EFF 55.84%, #4AB5FE 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}

.primary-color {
    color: #B400E8;
}

/* play btn css
============================================================================================ */
.play-btn {
    position: relative;
    height: 115px;
    width: 115px;
    min-width: 115px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: #000;
    font-size: 32px;
    z-index: 2;
}
.play-btn:hover {
    color: #000;
}
.play-btn:after {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 100%;
    width: 100%;
    content: "";
    border-radius: 50%;
    background: #fff;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation: glowing 1.5s linear infinite;
    -moz-animation: glowing 1.5s linear infinite;
    -o-animation: glowing 1.5s linear infinite;
    animation: glowing 1.5s linear infinite;
    z-index: -1;
}

@-webkit-keyframes glowing {
    0% {
    height: 100%;
    width: 100%;
    }
    100% {
    height: 150%;
    width: 150%;
    opacity: 0;
    }
}

@-moz-keyframes glowing {
    0% {
    height: 100%;
    width: 100%;
    }
    100% {
    height: 150%;
    width: 150%;
    opacity: 0;
    }
}

@-o-keyframes glowing {
    0% {
    height: 100%;
    width: 100%;
    }
    100% {
    height: 150%;
    width: 150%;
    opacity: 0;
    }
}

@keyframes glowing {
    0% {
    height: 100%;
    width: 100%;
    }
    100% {
    height: 150%;
    width: 150%;
    opacity: 0;
    }
}

.slick-dots {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.slick-dots li {
    display: flex;
    align-items: center;
}

.slick-dots li button {
    height: 16px;
    width: 16px;
    text-indent: -9999px;
    padding: 0;
    border: none;
    background: #fff;
    border-radius: 50%;
}
.slick-dots li button:hover {
    background: #fff;
}

.slick-dots li.slick-active button {
    background: #B400E8;
}
    
	
/* Start Header area style
============================================================================================ */
.offcanvas-wraper {
	position: fixed;
	width: 300px;
	background: #fff;
	height: 100%;
	top: 0;
	padding: 20px 10px 0;
	z-index: 99;
	left: -300px;
	-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;
	display: none;
    box-shadow: 0 20px 40px hsl(0deg 0% 0% / 8%);
}
  
.offcanvas-wraper.active {
	left: 0;
}

.offcanvas-wraper li a {
	color: #192E44;
	font-size: 16px;
}

.offcanvas-wraper li a:hover {
	color: #6834F8;
}
  
.offcanvas-wraper li {
	margin-bottom: 10px;
	position: relative;
}

.header-btns {
	margin-top: 5px;
}
.header-btns .header-btn {
	color: #fff;
	border: 1px solid #fff;
	padding: 10px 30px;
}
.header-area {
	display: none;
}
.mobile-header {
	display: block;
}

.mobile-header-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.navbar-toggler {
    border: none;
    cursor: pointer !important;
    padding: 10px 11px !important;
    border-radius: 7px !important;
    margin-left: 15px;
    border-color: #B400E8 !important;
    background-color: #B400E8 !important;
    height: 50px;
    width: 50px;
}
.navbar-toggler:hover {
	background-color: #B400E8!important;
}
.navbar-toggler:focus {
	outline: none;
	box-shadow: none;
}
.navbar-toggler span:first-child {
    width: 15px;
    margin-left: auto;
}
.navbar-toggler span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    margin-bottom: 5px;
    transition: all 400ms linear;
    cursor: pointer;
    border-radius: 10px;
}
.navbar-toggler span:last-child {
	margin-bottom: 0;
    width: 15px;
}
.navbar-toggler span:nth-child(2) {
	opacity: 1;
}
.navbar-toggler.active span:nth-child(2) {
	opacity: 0;
}
.navbar-toggler.active span:first-child {
	transform: rotate(-45deg);
	position: relative;
	top: 7.5px;
    width: 100%;
}
.navbar-toggler.active span:last-child {
	transform: rotate(45deg);
	bottom: 8px;
	position: relative;
    width: 100%;
}
.offcanvas-wraper {
	display: block;
}

.elementor-editor-active .fixed-position {
	position: relative;
}

.fixed-position {
	position: fixed;
	width: 100vw;
    top: 0;
}

.fixed-position.header-sticky {
    background: #080716!important;
    z-index: 999;
    box-shadow: 0 5px 20px hsl(282.42deg 90.83% 21.37% / 40%);
}


.offcanvas-wraper .navbar-nav li.menu-item-has-children {
    position: relative;
	padding-right: 22px;
}

.offcanvas-wraper .navbar-nav li.menu-item-has-children:before {
    position: absolute;
    right: 0;
    top: 6px;
    content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iOSIgdmlld0JveD0iMCAwIDE0IDkiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xIDFMNi42Nzg0NiA2LjYzNTE2TDEyLjM1NjkgMSIgc3Ryb2tlPSIjNENGRDg4IiBzdHJva2Utd2lkdGg9IjIiLz4KPC9zdmc+Cg==");
    z-index: 1;
    color: #fff;
	line-height: 1;
    filter: brightness(0) invert(0);
    transition: .3s;
}

.offcanvas-wraper .sub-menu {
	background: #fff;
    padding: 20px 15px;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 999;
    display: none;
    width: 100%;
    box-shadow: 0 5px 15px rgb(0 0 0 / 10%);
    border-radius: 0 0 10px 10px;
    margin: 0;
    list-style: none;
}
  
.header-btns {
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-btns .header-btn {
    background: #DEB841;
    border-radius: 5px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
	transition: .3s;
}

.header-btns .header-btn:hover {
	background: #004DBA;
}

.offcanvas-wraper .site-logo {
    margin-bottom: 20px;
}



.bg-blur a {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.bg-blur a:before {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 150%;
    width: 150%;
    content: "";
    background: #fff;
    border-radius: 8px;
    filter: blur(15px);
    opacity: 0.4;
    transform: translate(-50%, -50%);
    transition: .3s;
    z-index: -1;
}

.bg-blur a:hover:before {
    opacity: 1;
}

.primary-btn.login a .elementor-button-icon svg {
    width: 25px;
}

.primary-btn.login .elementor-button-content-wrapper {
    align-items: center;
    gap: 5px;
}


/* Start Brands style
============================================================================================ */
.brand-item {
    border: 1px solid hsl(0deg 0% 100% / 20%);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    border-radius: 10px;
    width: 235px;
    margin: 0 15px;
}

.text-before-bg, .counter-before-bg {
    position: relative;
    z-index: 1;
}

.text-before-bg:before, .counter-before-bg:before {
    position: absolute;
    top: 0;
    height: 100%;
    content: "";
    width: 200%;
}

.text-before-bg:before {
    background: #1A1A29;
    left: -100%;
}

.counter-before-bg:before {
    right: -100%;
    background: #14141F;
}

.custom-service-box {
    transition: .3s;
    position: relative;
    z-index: 1;
}

.custom-service-box:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border-bottom: 4px solid #B400E8;
    content: "";
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.custom-service-box:hover:before {
    opacity: 1;
    visibility: visible;
}

.custom-service-box .elementor-button-wrapper {
    transition: .3s;
    opacity: 0;
    visibility: hidden;
}

.custom-service-box:hover .elementor-button-wrapper {
    opacity: 1;
    visibility: visible;
    transform: translateY(-20px);
}

.mission-box .elementor-icon-box-title {
    margin: 0;
}

/* testimonials  */
.message-wrap {
    background: #171724;
    padding: 25px;
    border: 1px solid #383843;
    border-radius: 14px;
    position: relative;
    z-index: 1;
    margin-bottom: 35px;
}

.message-wrap .message {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 45px;
}

.message-wrap .rating-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.message-wrap .rating-wrap .rating {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 5px;
}

.message-wrap .rating-wrap .rating li {
    color: #F9C304;
}

.message-wrap:before {
    position: absolute;
    left: 25px;
    bottom: -10px;
    height: 20px;
    width: 20px;
    background: #171724;
    content: "";
    transform: rotate(45deg);
    border-bottom: 1px solid #383843;
    border-right: 1px solid #383843;
}

.testimonials-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonials-author .author-meta h5 {
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
}

.testimonials-author .author-meta p {
    margin-bottom: 0;
}

.testimonials-slider-wrap .slick-arrow {
    position: absolute;
    right: 0;
    top: -120px;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: 1px solid hsl(0deg 0% 100% / 30%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    cursor: pointer;
}

.testimonials-slider-wrap .slick-arrow:hover {
    background: #B400E8;
    border-color: #B400E8;
}

.testimonials-slider-wrap .slick-arrow.prev {
    right: 80px;
}

.testimonials-slider-wrap .slick-slide {
    margin-left: 15px;
    margin-right: 15px;
}

.testimonials-slider-wrap {
    margin: 0 -15px;
}

/* contact area  */
.contact-form input, .contact-form textarea {
    background: #101019;
    border: 1px solid hsl(0deg 0% 100% / 20%)!important;
    font-size: 18px;
    font-weight: 500;
    border-radius: 8px!important;
    padding: 17px 20px!important;
    width: 100%;
    color: #fff;
}

.contact-form span {
    display: block;
    margin-bottom: 20px;
}

.contact-form br {
    display: none;
}

.contact-form textarea {
    height: 165px;
}

.contact-form input[type="submit"] {
    width: 100%;
    border: 1px solid #B400E8!important;
    background: #B400E8;
    color: #fff;
    border-radius: 1000px !important;
}

.contact-form input[type="submit"]:hover {
    background: transparent;
}

.newsletter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.newsletter input[type="email"] {
    background: #30303E;
    border: none;
    font-size: 14px;
    color: #fff;
    padding: 16px 20px;
    border-radius: 1000px;
}

.newsletter input[type="email"]::placeholder {
    color: #fff;
}

.newsletter input[type="submit"] {
    background: #B400E8;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 1000px;
    padding: 12px 18px;
    border: 1px solid #B400E8;
    transition: .3s;
}

.newsletter input[type="submit"]:hover {
    background: transparent;
}