/* ===================================================
>>> TABLE OF CONTENTS:
======================================================
01. Fonts
02. General
03. Header
04. Banner
06. Buttons
07. Section Gap & Heading
08. Homepage Plan
09. Call Back Section Css
10. Homepage Feature Css
11. Home Page Domain Search Css
12. Testimonial Css
13. FAQ Css
14. Footer Css
15. Features Css
16. Timeline Css
17. Domain Search Form Css
18. Domain Promos Css
19. FREE Add-ons Css
20. Sunrise Domain Form Css
21. Domain Transfer Form Css
22. Domain Pricing Table Css
23. Plan Style Css
24. Just One Click Css
25. Collapse Css
26. Tabings Css
27. Titan Email Video
28. Table Affiliate Page
29. Login & Register Page
30. Contact Page
31. Contents Page

=================================================== */

/*/* ----------------------------------------------------------------
    01. Fonts
------------------------------------------------------------------- */

/* AvertaStd Font */

/* coustom css */
@media (max-width: 768px) {
	.hide-on-mobile {
		display: none;
	}
}

/* Thin */
@font-face {
	font-family: "AvertaStd";
	font-style: normal;
	font-weight: 300;
	src: local("AvertaStd-Thin"), url("../fonts/AvertaStd-Thin.ttf") format("truetype");
}

/* Extra Thin */
@font-face {
	font-family: "AvertaStd";
	font-style: normal;
	font-weight: 200;
	src: local("AvertaStd-Extrathin"), url("../fonts/AvertaStd-Extrathin.ttf") format("truetype");
}

/* Light */
@font-face {
	font-family: "AvertaStd";
	font-style: normal;
	font-weight: 400;
	src: local("AvertaStd-Light"), url("../fonts/AvertaStd-Light.ttf") format("truetype");
}

/* Regular */
@font-face {
	font-family: "AvertaStd";
	font-style: normal;
	font-weight: 500;
	src: local("AvertaStd-Regular"), url("../fonts/AvertaStd-Regular.ttf") format("truetype");
}

/* Semibold */
@font-face {
	font-family: "AvertaStd";
	font-style: normal;
	font-weight: 600;
	src: local("AvertaStd-Semibold"), url("../fonts/AvertaStd-Semibold.ttf") format("truetype");
}

/* Bold */
@font-face {
	font-family: "AvertaStd";
	font-style: normal;
	font-weight: 700;
	src: local("AvertaStd-Bold"), url("../fonts/AvertaStd-Bold.ttf") format("truetype");
}

/* Extra Bold */
@font-face {
	font-family: "AvertaStd";
	font-style: normal;
	font-weight: 800;
	src: local("AvertaStd-ExtraBold"), url("../fonts/AvertaStd-ExtraBold.ttf") format("truetype");
}

/* Black */
@font-face {
	font-family: "AvertaStd";
	font-style: normal;
	font-weight: 900;
	src: local("AvertaStd-Black"), url("../fonts/AvertaStd-Black.ttf") format("truetype");
}

/* Roboto Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');


:root {
	--fallback-fonts: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--font-primary: "AvertaStd", var(--fallback-fonts);
	--font-secondary: "Roboto", var(--fallback-fonts);
}

/* Colors */
:root {
	--color-primary: 1, 76, 204;
	--color-secondary: 255, 148, 77;
	--color-white: #fff;
	--font-remixicon: remixicon;
	--font-bootstrap-icons: bootstrap-icons;
}

/* Smooth scroll behavior */
:root {
	scroll-behavior: smooth;
}

* {
	scrollbar-width: thin;
	scrollbar-color: rgb(242 242 242) transparent;
}

*::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

*::-webkit-scrollbar-track {
	background: transparent;
}

*::-webkit-scrollbar-thumb {
	background-color: rgb(var(--color-primary));
}

::selection {
	background: rgb(var(--color-primary));
}

::selection {
	color: var(--color-white);
	text-shadow: none;
}

*/
/*--------------------------------------------------------------
    02. General
--------------------------------------------------------------*/


body {
	font-family: var(--font-primary);
	font-weight: 500;
	overflow-x: hidden;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
	color: #2b1f51;
}

p {
	color: #2f1c6a;
}

.fw-500 {
	font-weight: 500;
	font-family: var(--font-primary);
}

.fw-600 {
	font-weight: 600;
	font-family: var(--font-primary);
}

@media (min-width: 1270px) {

	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl {
		max-width: 1250px !important;
	}
}

a {
	color: rgb(var(--color-primary));
	text-decoration: none;
}

a:hover {
	color: rgb(var(--color-primary-dark));
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #2b1f51;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}

img {
	max-width: 100%;
	height: auto;
}

ul {
	margin: 0;
	padding: 0;
}

ul li {
	list-style: none;
}

.list-dot li {
	list-style: square;
	list-style-position: inside;
	font-size: 16px;
}

.list-dot-two {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.list-dot-two li {
	font-size: 16px;
	position: relative;
	padding-inline-start: 25px;
	width: 100%;
}


@media (min-width:768px) {
	.list-dot-two.two li {
		width: 48%;
	}
}

.list-dot-two li:before {
	content: '';
	position: absolute;
	left: 2px;
	top: 7px;
	background: #673de6;
	transform: rotate(45deg);
	width: 10.17px;
	height: 10.17px;
}

.bg-trasparent {
	background: transparent !important;
}

.bg-light-warning {
	background: #ffc10712;
}

.w-fit-content {
	width: fit-content;
}

.mix-blend-luminosity {
	mix-blend-mode: luminosity;
}

input[type="checkbox"] {
	accent-color: rgb(var(--color-secondary)) !important;
	height: 15px;
	width: 15px;
}

input[type="radio"] {
	accent-color: rgb(var(--color-secondary)) !important;
	height: 15px;
	width: 15px;
}

/* /* ----------------------------------------------------------------
    03. Header
------------------------------------------------------------------- */


/* ----------------------------------------------------------------
    04. Banner
------------------------------------------------------------------- */
.banner {
	padding: 60px 0px 60px 0px;
	position: relative;
}

.banner.pb-decrease {
	padding-bottom: 40px;
}

.banner.pb-increase {
	padding-bottom: 100px;
}

.banner.one {
	/* background: linear-gradient(90deg, #2e1a6d, #4a338d 45.83%, #7759ce);  */
}

.banner .banner-heading {
	display: block;
}

.banner .banner-heading h1 {
	font-size: 55px;
	font-weight: 700;
	line-height: 1.5;
}

.banner .banner-heading h3 {
	font-size: 25px;
	font-weight: 600;
}

.banner .banner-heading p {
	font-size: 20px;
	line-height: 1.5;
	font-weight: 400;
}


.banner .banner-heading.white h1 {
	color: #2f1c6a;
	font-size: 36px;
	line-height: 40px;
	font-weight: 700;
}


.banner .banner-heading.white h3 {
	font-weight: 600;
	font-size: 20px;
	line-height: 32px;

}

.banner .banner-heading.white p {
	color: #2f1c6a;
	font-family: inherit;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}

.banner .banner-heading ul li {
	color: #2f1c6a;
	font-family: inherit;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}

.banner .banner-heading ul li i {
	font-family: bootstrap-icons !important;
	font-style: normal;
	font-weight: 700 !important;
	line-height: 1.2;
	-moz-osx-font-smoothing: grayscale;
	font-size: 20px;
	color: #00b090;
}


@media (max-width:1200px) {
	.banner .banner-heading h1 {
		font-size: 47px;
	}
}

@media (max-width:767px) {
	.banner {
		padding-top: 50px;
	}

	.banner.pb-increase {
		padding-bottom: 59px;
	}

	.banner .banner-heading h1 {
		font-size: 40px;
	}
}

@media (max-width:575px) {
	.banner .banner-heading h1 {
		font-size: 37px;
		line-height: 1.3;
		font-weight: 800;
	}
}

.scroll-down-block {
	z-index: 2;
	position: absolute;
	bottom: -46px;
	left: 50%;
	transform: translate(-50%);
	background: url('../images/scroll_down_bg.png');
	width: 190px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 0;
	background-repeat: no-repeat;
}

.scroll-down-inner {
	background-color: #ff944d;
	border-radius: 40px;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 50px;
	display: flex;
	overflow: hidden;
	max-width: 100%;
	position: relative;
	cursor: pointer;

	&::before {
		content: "\ea4c";
		font-size: 15px;
		position: absolute;
		top: 0px;
		left: 50%;
		transform: translateX(-50%);
		color: rgb(255 255 255);
		border-radius: 50%;
		opacity: 1;
		animation: wheel 3s infinite;
		-webkit-animation: wheel 3s infinite;
		font-family: remixicon !important;
		font-style: normal;
	}
}

@keyframes wheel {
	to {
		opacity: 0;
		top: 30px;
	}
}

@-webkit-keyframes wheel {
	to {
		opacity: 0;
		top: 30px;
	}
}

.banner-up {
	position: relative;
	z-index: 1;
}

.banner-up>.container {
	margin-top: -70px;
}


/* ----------------------------------------------------------------
    06. Buttons
------------------------------------------------------------------- */
.inline-btn {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 10px;
}

.btns {
	border-radius: 10px;
	font: normal normal 700 14px / 24px var(--font-primary);
	letter-spacing: 1.57px;
	opacity: 1;
	padding: 10px 10px;
	text-align: center;
	text-transform: uppercase;
	height: auto;
	border: 1px solid transparent;
	user-select: none;
	outline: 0;
	background-repeat: no-repeat;
	transition: all .2s linear;
	-webkit-appearance: button;
	cursor: pointer;
	overflow: visible;
}

.btns.one {
	background-color: #673de6;
	color: #fff;
}

.btns.two {
	background-color: #e2dbfc;
	color: rgb(var(--color-primary));
}

/* ----------------------------------------------------------------
    07. Section Gap & Heading
------------------------------------------------------------------- */
.section-gap {
	padding: 60px 0;
}

.section-heading {
	display: block;
}

.section-heading.gap-bottom {
	margin-bottom: 60px;
}

.section-heading h2 {
	color: #2f1c6a;
	font-size: 36px;
	line-height: 40px;
	font-weight: 700;
}

.section-heading p {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;

}

.section-heading.center h2 {
	text-align: center;
	color: #2f1c6a;
	font-size: 36px;
	line-height: 40px;
	font-weight: 700;
}


.section-heading.center p {
	text-align: center;
	color: #2f1c6a;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}

.section-heading.white h2,
.section-heading.white p {
	color: #fff;
}

.section-heading.white p {
	opacity: 0.7;
}

@media (max-width:767px) {
	.section-gap {
		padding: 40px 0;
	}

	.section-heading h2 {
		font-size: 35px;
	}

	.section-heading.gap-bottom {
		margin-bottom: 40px;
	}
}

.sectionbg1 {
	background: #1f1346;
}

.sectionbg2 {
	background: #E4EFFB;
}

.sectionbg3 {
	background: #DEF7EA;
}

.sectionbg4 {
	background: linear-gradient(90deg, #2e1a6d, #4a338d 45.83%, #7759ce);
}

.bggreen {
	background: #1f1346;
}

.bggreen {
	background: #1f1346;
}



/* ----------------------------------------------------------------
    08. Homepage Plan
------------------------------------------------------------------- */
.homepage-plan {
	border-radius: 10px;
	max-width: 100% !important;
	margin: 0 !important;
	cursor: pointer;
	padding: 25px 20px;
	display: block;
	border: 1px solid #d5dfff;
}

/*.homepage-plan:hover {
    transform: translateY(-10px);
}*/

.homepage-plan.bg-green {
	background-color: #fafbff;
}

.homepage-plan.bg-red {
	background-color: #fafbff;
}

.homepage-plan.bg-yellow {
	background-color: #fafbff;
	border: 2px solid #8c85ff;
}

.homepage-plan.bg-orange {
	background-color: #fafbff;
}

.homepage-plan .inner .icon {
	margin-bottom: 15px;
	font-size: 30px;
}

.homepage-plan .inner .icon i {
	background: #f4f5ff;
	padding: 5px 10px;
	border-radius: 10px;
}


.homepage-plan .inner .icon img {
	max-height: 50px;
}

.homepage-plan .inner h4 {
	color: #2b1f51;
	font-size: 25px;
	font-weight: 700;
	margin-bottom: 15px;
}

.homepage-plan .inner p {
	margin-top: 8px;
	color: #2b1f51;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}

.homepage-plan .inner h3 {}

.homepage-plan .inner h3 span.start-at {
	font: 18px var(--font-primary);
	display: block;
	width: 100%;

}

.homepage-plan .inner h3 .currency-symbol {
	position: relative;
	top: -10px;
	font-size: 20px;
	font-weight: 700;
	vertical-align: super;
	margin-inline-end: 5px;
}

.homepage-plan .inner h3 {
	color: #2f1c6a;
	font: 800 50px var(--font-primary);
}

.homepage-plan .inner h3 .durection {
	color: #343434;
	font: 18px/15px var(--font-primary);
	left: 2px;
	letter-spacing: 0;
	position: relative;
	top: 0px;
}

.btnplan {
	font: normal normal 700 14px / 24px var(--font-primary);
	padding-top: 15px;
	background-color: #673de6;
	color: #fff;
	border: none;
	padding-bottom: 13px;
	border-radius: 10px;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	border: 1px solid transparent;
}


/* ----------------------------------------------------------------
    09. Call Back Section Css
------------------------------------------------------------------- */
.call-back {
	background-color: #000;
	background-image: url(../images/black_bg_bar.jpg);
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 8px;
	margin-bottom: 0px;
}

.call-back .inner {
	padding-left: 5%;
	padding-right: 5%;
	max-width: 100%;
	margin: 0 auto;
	width: 100%;
	padding-bottom: 60px;
	padding-top: 60px;
}

@media (max-width:767px) {
	.call-back {
		margin-bottom: 0px;
	}

	.call-back .inner {
		padding-bottom: 40px;
		padding-top: 40px;
	}
}

/* ----------------------------------------------------------------
    10. Homepage Feature Css
------------------------------------------------------------------- */

.homepage-features {
	border-radius: 12px;
	padding: 50px 60px;
	height: 100%;

}

.homepage-features h4 {
	font-size: 24px;
	line-height: 1.5;
	margin-bottom: 0;
	font-weight: 600;
	color: #fff;
}

.homepage-features p {
	color: #fff;
	margin-bottom: 0;
	font-size: 16px !important;
	font-weight: 400 !important;
	line-height: 24px;
}

.homepage-features ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.homepage-features ul li {
	color: #fff;
	font-size: 16px !important;
	font-weight: 400 !important;
	padding-inline-start: 30px;
	position: relative;
}

.homepage-features ul li:before {
	content: '\eb7b';
	font-family: var(--font-remixicon) !important;
	color: #fff;
	font-size: 19px;
	position: absolute;
	inset-inline-start: 0;
	top: 5px;
	font-weight: 800;
	line-height: 1;
}

.homepage-features ul li+li {
	margin-top: 10px;
}

.homepage-features .next-link {
	font-size: 16px;
	color: rgb(var(--color-primary));
	font-weight: 600;
	background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
	transition: all 500ms ease;
	padding-bottom: 2px;
}

.homepage-features .next-link i {
	margin-inline-start: 5px;
}

.homepage-features .next-link:hover {
	background-size: 100% 1px;
}


.homepage-features.bg1 {
	background-color: #673de6;
}

.homepage-features.bg2 {
	background-color: #d5dfff;
}


@media (max-width:767px) {
	.homepage-features {
		padding: 30px 25px;
	}
}


/* ----------------------------------------------------------------
    11. Home Page migration
------------------------------------------------------------------- */
.homepage-migration {
	border-radius: 10px;
	max-width: 100% !important;
	margin: 0 !important;
	cursor: pointer;
	padding: 25px 20px;
	display: block;
	background-color: #2f1c6a;
	height: 250px;

}

.homepage-migration .inner .icon {
	margin-bottom: 15px;
	font-size: 30px;

}

.homepage-migration .inner .icon i {
	background: #673de6;
	color: #fff;
	padding: 5px 10px;
	border-radius: 10px;
}


.homepage-migration .inner .icon img {
	max-height: 50px;
}

.homepage-migration .inner h4 {
	color: #fff;
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 15px;

}

.homepage-migration .inner p {
	margin-top: 8px;
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}


/* ----------------------------------------------------------------
    12. Home Page Domain Search Css
------------------------------------------------------------------- */

.homepage-domain {
	border-radius: 10px;
	max-width: 100% !important;
	margin: 0 0px 20px 0px !important;
	cursor: pointer;
	padding: 25px 20px;
	display: block;
	background-color: #fafbff;
	border: 1px solid #d5dfff;
	height: 300px;
}

.homepage-domain .inner .icon {
	margin-bottom: 15px;
	font-size: 30px;

}

.homepage-domain .inner .icon i {
	background: #673de6;
	color: #fff;
	padding: 5px 10px;
	border-radius: 10px;
}

.homepage-domain .inner .icon img {
	max-height: 50px;
}

.homepage-domain .inner h4 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 15px;
}

.homepage-domain .inner p {
	margin-top: 8px;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}

.homepage-domain-search {
	background: #1f1346;
}


.homepage-domain-search .homepage-domain-form {
	display: flex;
	flex-wrap: wrap;
	padding: 40px 0;
	max-width: 100%;
	justify-content: space-between;
}

.homepage-domain-search .homepage-domain-form input[type="text"] {
	border-radius: 10px;
	background: #fff;
	height: 60px;
	padding: 15px 25px;
	flex: 1;
	width: 100%;
	max-width: 918px;
	margin-right: 10px;
	color: #655e5e !important;
	outline: unset;
}

.homepage-domain-search .homepage-domain-form .submit {
	max-width: 250px;
	width: 100%;
}

@media (max-width:1200px) {
	.homepage-domain-search .homepage-domain-form .submit {
		max-width: 200px;
	}
}

@media (max-width:767px) {
	.homepage-domain-search .homepage-domain-form input[type="text"] {
		width: 100%;
		flex: unset;
		height: 48px;
		margin: 0;
	}

	.homepage-domain-search .homepage-domain-form .submit {
		max-width: 156px;
		margin: auto;
		margin-top: 15px;
	}
}

@media (max-width:575px) {
	.homepage-domain-search .homepage-domain-form {
		padding: 25px 15px;
	}
}

.homepage-domain-search .domain-lists {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	width: 900px;
	margin: auto;
	max-width: 100%;

}

.homepage-domain-search .domain-lists li {
	display: inline-block;
	font-size: 16px;
	border: 1px solid #5025d1;
	border-radius: 8px;
	margin-top: 20px;
	text-align: center;
	background: #261559;
}


/* ----------------------------------------------------------------
    12. Testimonial Css
------------------------------------------------------------------- */
.swiper-testimonial .swiper-wrapper .swiper-slide {
	padding: 10px;
}

.swiper-testimonial>.arrows {
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1;
	background-color: rgba(7, 51, 107, .1);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	padding: 0;
	color: #000;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	font-size: 28px;
	cursor: pointer;
	position: absolute;
	appearance: none;
	border: 0;
	line-height: 1;
	transition: all 0.3s;
}

.swiper-testimonial>.arrows.swiper-testimonial-left {
	top: 50%;
	left: 0;
}

.swiper-testimonial>.arrows.swiper-testimonial-right {
	top: 50%;
	right: 0;
}

.swiper-testimonial>.arrows.swiper-button-disabled {
	cursor: not-allowed;
	opacity: 0;
	visibility: hidden;
}

.swiper-testimonial>.arrows:hover {
	background: rgb(var(--color-primary));
	border-radius: 50%;
	color: #fff;
}

.testimonial-items {
	background: #fbfbfb;
	padding: 25px;
	border: 1px solid rgba(1, 9, 21, 0.1);
	border-radius: 10px;
}

.testimonial-items .testimonial-header {
	gap: 30px;
	margin-bottom: 30px;
}

.testimonial-items .testimonial-header ul {
	gap: 4.5px;
	list-style: none;
}

.testimonial-items .testimonial-header .qoute img {
	max-height: 30px;
	opacity: 0.3;
}

.testimonial-items p {
	font-style: normal;
	font-weight: 500;
	font-size: 15px;
	line-height: 26px;
	color: #010a17;
	opacity: 0.6;
	font-family: var(--font-secondary);
	margin-bottom: 30px;
}

.testimonial-items .testimonial-author {
	gap: 14px;
}

.testimonial-items .testimonial-author .author-thumb {
	width: 56px;
	height: 56px;
	min-width: 56px;
	min-height: 56px;
	overflow: hidden;
	border-radius: 500px;
}

.testimonial-items .testimonial-author .author-thumb img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.testimonial-items .testimonial-author h5 {
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	line-height: 1;
	color: #010a17;
}

.testimonial-items .testimonial-author h6 {
	font-style: normal;
	font-weight: 500;
	font-size: 15px;
	color: rgba(1, 9, 21, 0.6);
	font-family: var(--font-secondary);
	margin-bottom: 0;
}


/* ----------------------------------------------------------------
    13. 247 help
------------------------------------------------------------------- */


/* ----------------------------------------------------------------
    13. FAQ Css
------------------------------------------------------------------- */
.faq {
	background: #FBFBFB;
}

.accordion {
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	align-items: start;
}

@media (min-width:991px) {
	.accordion>li {
		flex: 0 0 auto;
		width: 48%;
		max-width: 100%;
	}
}

.accordion>li {
	width: 100%;
	max-width: 100%;
	border-style: solid;
	border-width: 1px 1px 1px 1px;
	border-color: #ededfd;
	border-radius: 8px 8px 8px 8px;
	box-shadow: -4px 4px 0px 0px #F0F0F0DB;
	cursor: pointer;
	font-weight: 700;
	background: #fff;
	transition: all 0.3s;
}


.accordion li>a {
	position: relative;
	display: flex;
	align-items: center;
	transition: all 0.3s;
	cursor: pointer;
	user-select: none;
	padding: 25px;
}

.accordion li.active>a {
	padding-bottom: 0;
}

.accordion li>a::after {
	content: "+";
	display: flex;
	color: #000;
	justify-content: center;
	align-items: center;
	font-size: 25px;
	margin-inline-start: auto;
	transition: all 0.3s;
	border-radius: 5px;
	line-height: 1;
}

.accordion li.active>a:after {
	content: "-";
}

.accordion li p {
	padding: 25px;
	padding-top: 15px;
	font-size: 16px;
	line-height: 2;
	color: #4b4b4b;
	display: none;
	border-radius: 0px 0px;
	margin: 0;
	font-weight: 500;
}

.accordion li p a {
	color: rgb(var(--color-primary));
	text-decoration: underline;
}

.accordion li p a:hover {
	color: rgb(var(--color-secondary));
}


/* ----------------------------------------------------------------
    14. Footer Css
------------------------------------------------------------------- */
.theme-footer {
	padding: 50px 0 15px;
	background: #f4f5ff;
}

.theme-footer .footer-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.theme-footer .footer-list li {
	list-style: none;
	margin: 10px 0;
}

.theme-footer .footer-list li.heading_list {
	margin-bottom: 15px;
	color: #2b1f51;
	font-weight: 600;
	font-size: 18px;
	line-height: 1.4;
}

.theme-footer .footer-list li a {
	position: relative;
	color: #2b1f51;
	font-size: 16px;
	background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
	transition: all 500ms ease;
	padding-bottom: 2px;
	display: inline-block;
	text-decoration: none;
}


.theme-footer .footer-list li a:hover {
	background-size: 100% 1px;
}

.theme-footer .footer-info {
	display: block;
	padding-top: 20px;
}

.theme-footer .footer-info>a.logo {
	display: block;
}

.theme-footer .footer-info>a.logo img {
	max-height: 60px;
}

.theme-footer .footer-info>p {
	font-size: 14px;
	color: #2f1c6a;
	margin-top: 20px;
	margin-bottom: 0;
}

.theme-footer .footer-social {
	display: block;
}

.theme-footer .footer-social h4 {
	margin-bottom: 15px;
	color: #2b1f51;
	font-weight: 600;
	font-size: 18px;
	line-height: 1.4;
}

.theme-footer .footer-social .social-icon {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: start;
	margin: 10px 0;
	flex-wrap: wrap;
}

.theme-footer .footer-social .social-icon a {
	display: flex;
	position: relative;
	padding: 10px;
	border-radius: 5px;
	background: #673de6;
	font-size: 16px;
	color: #ffffff;
	width: 40px;
	justify-content: center;
	align-items: center;
	height: 40px;
	transition: all 0.5s;
}

.theme-footer .footer-social .social-icon a:hover {
	background: #fff;
	color: rgb(var(--color-primary));
}

.theme-footer .copyright-info {
	font-size: 14px;
	color: #673de6;
	line-height: 1.5;
}


@media (max-width:575px) {
	.theme-footer .footer-list li.heading_list {
		margin-top: 0;
		margin-bottom: 0;
		cursor: pointer;
	}

	.theme-footer .footer-list li.heading_list.downarrow {
		display: flex;
	}

	.theme-footer .footer-list li.heading_list.downarrow:after {
		display: inline-block;
		font-family: var(--font-bootstrap-icons) !important;
		font-size: 16px;
		content: "\F282";
		margin-inline-start: auto;
		-webkit-transition: .3s ease;
		transition: .3s ease;
		position: relative;
		top: 2px;
	}

	.theme-footer .footer-list li.heading_list.uparrow {
		display: flex;
	}

	.theme-footer .footer-list li.heading_list.uparrow:after {
		display: inline-block;
		font-family: var(--font-bootstrap-icons) !important;
		font-size: 16px;
		content: "\F282";
		margin-inline-start: auto;
		-webkit-transition: .3s ease;
		transition: .3s ease;
		position: relative;
		top: -2px;
		transform: rotate(-180deg);
	}

	.theme-footer .footer-list li:last-child {
		margin-bottom: 0;
	}
}

/* ----------------------------------------------------------------
    15. Features Css
------------------------------------------------------------------- */
.feature-box {
	text-align: center;
	padding: 30px 20px;
	border-radius: 10px;
	background: #ffffff;
	-webkit-box-shadow: 0 20px 40px -5px rgba(0, 0, 0, .1);
	-moz-box-shadow: 0 20px 40px -5px rgba(0, 0, 0, .1);
	box-shadow: 0 20px 40px -5px rgba(0, 0, 0, .1);
}

.feature-box img {
	max-height: 60px;
	margin-bottom: 15px;
}

.feature-box h4 {
	font-size: 18px;
	text-align: center;
	font-weight: 600;
	margin-bottom: 0;
}

.feature-box a {
	color: #524972;
	display: block;
	text-align: center;
	font-size: 16px;
}

.feature-box a:hover {
	color: rgb(var(--color-secondary));
}


.features-2 {
	border: 2px dashed #d0d0d0;
	padding: 25px 20px;
	border-radius: 0 15px 0 15px;
	background: #fff;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	transition: all 0.3s;
	height: 100%;
}

.features-2:hover {
	border-color: rgb(var(--color-secondary));
	transform: translatey(-10px);
}

.features-2 .icon {
	display: block;
	text-align: center;
	margin-bottom: 15px;
}

.features-2 .icon img {
	max-height: 50px;
}

.features-2 h4 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 0;
	text-align: center;
}

.features-2 p {
	font-size: 15px;
	margin-top: 15px;
	margin-bottom: 0;
	text-align: center;
}

.features-3 {
	padding: 24px;
	background: #f1f1f1;
	border-radius: 5px;
	height: 100%;
}

.features-3 .icon {
	display: block;
	margin-bottom: 15px;
}

.features-3 .icon img {
	max-height: 50px;
}

.features-3 h4 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 0;
	text-align: start;
}

.features-3 p {
	font-size: 15px;
	margin-top: 15px;
	margin-bottom: 0;
	text-align: start;
}

.features-4 {
	padding: 24px;
	border-radius: 5px;
	border: 1px solid #d2d1c0;
	background: #2f1c6a;
	height: 100%;
	transition: all 0.5s;
}


.features-4 .icon {
	margin-bottom: 15px;
}

.features-4 .icon img {
	max-height: 50px;
}

.features-4 h4 {
	color: #fff;
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 15px;
}

.features-4 p {
	margin-top: 8px;
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}

.features-4.big {
	display: flex;
	padding: 28px 28px;
	align-items: center;
	gap: 20px;
}

.features-4.big .icon {
	margin-bottom: unset;
	width: 50%;
	max-width: 100%;
	text-align: center;
}

.features-4.big .icon img {
	max-height: unset;
}

@media (max-width:991px) {
	.features-4.big {
		flex-wrap: wrap;
		gap: 0;
	}

	.features-4.big .icon {
		margin-bottom: 15px;
		width: 100%;
		text-align: start;
	}

	.features-4.big .icon img {
		max-height: 50px;
	}
}

.features-5 {
	display: block;
}

.features-5 .icon {
	float: left;
	margin: 15px 30px 15px 0;
}

.features-5 .icon img {
	width: 40px;
}

.features-5 .text {
	display: table;
}

.features-5 .text h3 {
	font-size: 20px;
	font-weight: 500;
	text-align: start;
	margin-bottom: 8px;
	font-family: var(--font-secondary);
}

.features-5 .text p {
	font-size: 15px;
	margin-bottom: 0px;
	text-align: start;
	color: #373737;
	font-weight: 500;
	line-height: 1.5;
}

@media (max-width:500px) {
	.features-5 .text {
		display: block;
		float: left;
	}
}

.features-5.white h3 {
	color: #fff;
}

.features-5.white p {
	color: #ffffffa6;
}


/* ----------------------------------------------------------------
    16. Timeline Css
------------------------------------------------------------------- */

.section-timeline .vertical-timeline {
	position: relative;
	z-index: 1
}

.section-timeline .vertical-timeline::before {
	content: '';
	position: absolute;
	left: 50%;
	top: -6px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background-color: rgb(var(--color-secondary));
	margin-left: -4px;
}

.section-timeline .vertical-timeline:after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -19px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background-color: rgb(var(--color-secondary));
	margin-left: -4px
}

.section-timeline .vertical-timeline .timeline-items {
	padding: 20px 0px;
}

.section-timeline .vertical-timeline .timeline-items::before {
	content: '';
	height: 100%;
	width: 1px;
	position: absolute;
	z-index: -1;
	top: 0;
	left: 50%;
	background-image: linear-gradient(0deg, #ff8400, #1c355e 50%, transparent 50%, transparent 100%);
	background-size: 20px 20px;
}

.section-timeline .vertical-timeline .item {
	display: flex;
	position: relative;
	transition: 0.3s
}

.section-timeline .vertical-timeline .item:not(:last-child) {
	margin-bottom: 70px
}

.section-timeline .vertical-timeline .item:nth-child(even) .text {
	margin-left: 45px;
	margin-right: 0px;
	padding-left: 40px;
	padding-right: 50px;
	border-radius: 5px 5px 5px 5px
}

.section-timeline .vertical-timeline .item:nth-child(odd) .serivces-count {
	margin-right: -30px
}

.section-timeline .vertical-timeline .item .icon h4 {
	font-size: 35px;
	font-weight: 800;
}

.section-timeline .vertical-timeline .item:nth-child(odd) .icon {
	justify-content: flex-end
}

.section-timeline .vertical-timeline .item:nth-child(odd) .timeline-circle:before {
	left: 100%
}

.section-timeline .vertical-timeline .item:nth-child(even) {
	flex-direction: row-reverse;
	text-align: right
}

.section-timeline .vertical-timeline .item:nth-child(even) .serivces-count {
	margin-left: -30px
}

.section-timeline .vertical-timeline .item:nth-child(even) .icon {
	justify-content: flex-start
}

.section-timeline .vertical-timeline .item:nth-child(even) .timeline-content {
	flex-direction: row-reverse
}

.section-timeline .vertical-timeline .item:nth-child(even) .timeline-circle:before {
	right: 100%
}

.section-timeline .vertical-timeline .icon,
.section-timeline .vertical-timeline .timeline-content {
	flex-basis: calc(50% - 1px);
	transition: 0.5s;
	display: flex;
	align-items: center
}

.section-timeline .vertical-timeline .timeline-content:hover .serivces-count img {
	transform: scale(1.1);
}

.section-timeline .vertical-timeline .timeline-circle {
	position: relative;
	margin: 0px 100px 0px 100px
}

.section-timeline .vertical-timeline .timeline-circle .circle {
	position: absolute;
	top: 50%;
	border-radius: 50%;
	transition: 0.4s;
	top: calc(50% - 7px);
	left: -7px;
	width: 15px;
	height: 15px;
	background: rgb(var(--color-secondary));
}

.section-timeline .vertical-timeline .timeline-circle::before {
	content: '';
	height: 1px;
	position: absolute;
	top: 50%;
	background-image: linear-gradient(90deg, #ff8400, #1c355e 50%, transparent 50%, transparent 100%);
	background-size: 20px 20px;
	width: calc(100px + 30px);
}

.section-timeline .vertical-timeline .timeline-circle:after {
	content: '';
	position: absolute;
	border-radius: 50%;
	transition: 0.4s;
	top: calc(50% - 4px);
	left: -4px;
	width: 9px;
	height: 9px;
	background: var(--color-white);
}

.section-timeline .vertical-timeline .text {
	box-shadow: 6px 7px 20px rgba(0, 0, 0, 0.1);
	margin: 0px 45px 0px 0px;
	padding: 31px 40px 33px 50px;
	border-radius: 5px 5px 5px 5px;
	background-color: var(--color-white);
}

.section-timeline .vertical-timeline .text h3 {
	font-size: 23px;
	font-weight: 600;
}

.section-timeline .vertical-timeline .text p {
	font-size: 16px;
}

.section-timeline .vertical-timeline .serivces-count {
	position: relative;
	font-size: 36px;
	width: 70px;
	height: 70px;
	text-align: center;
	line-height: 70px;
	border-radius: 50%;
	flex: 1 0 auto;
	color: var(--color-white);
	background: rgb(255, 238, 238);
	display: flex;
	justify-content: center;
	align-items: center;
}

.section-timeline .vertical-timeline .serivces-count img {
	max-width: 40px;
	transition: all .5s;
}

@media screen and (max-width: 991px) {
	.section-timeline .vertical-timeline .timeline-circle:before {
		width: calc(100px + -20px)
	}

	.section-timeline .vertical-timeline .text {
		margin: 0;
		padding: 20px 20px 20px 40px
	}

	.section-timeline .vertical-timeline .serivces-count {
		width: 50px;
		height: 50px;
		font-size: 24px;
		line-height: 50px
	}

	.section-timeline .vertical-timeline .item:nth-child(even) .text {
		margin: 0;
		padding-left: 20px;
		padding-right: 40px
	}

	.section-timeline .vertical-timeline .timeline-circle {
		margin: 0px 30px 0px 30px
	}
}

@media screen and (max-width: 767px) {

	.section-timeline .vertical-timeline:before,
	.section-timeline .vertical-timeline:after,
	.section-timeline .vertical-timeline .timeline-items:before {
		left: 10px
	}

	.section-timeline .vertical-timeline .item:not(:last-child) {
		margin-bottom: 40px
	}

	.section-timeline .vertical-timeline .timeline-content {
		order: 2;
		flex-basis: unset;
	}

	.section-timeline .vertical-timeline .icon {
		order: 3;
		flex-basis: 30%
	}

	.section-timeline .vertical-timeline .text {
		padding: 20px 10px 20px 30px;
	}

	.section-timeline .vertical-timeline .item:nth-child(even) {
		flex-direction: row;
		text-align: left
	}

	.section-timeline .vertical-timeline .item:nth-child(even) .text {
		padding-left: 30px;
		padding-right: 20px
	}

	.section-timeline .vertical-timeline .item:nth-child(odd) {
		flex-direction: row;
		text-align: left
	}

	.section-timeline .vertical-timeline .item:nth-child(even) .serivces-count,
	.section-timeline .vertical-timeline .item:nth-child(odd) .serivces-count {
		margin-right: -20px;
		margin-left: 0
	}

	.section-timeline .vertical-timeline .item:nth-child(even) .timeline-content,
	.section-timeline .vertical-timeline .item:nth-child(odd) .timeline-content {
		flex-direction: row
	}

	.section-timeline .vertical-timeline .item:nth-child(even) .icon,
	.section-timeline .vertical-timeline .item:nth-child(odd) .icon {
		justify-content: center;
		display: none;
	}
}

@media(max-width:991px) {
	.section-timeline .vertical-timeline .serivces-count img {
		max-width: 30px;
		transition: all .5s;
	}
}

/* ----------------------------------------------------------------
    17. Domain Search Form Css
------------------------------------------------------------------- */
.domain-search-form {
	display: block;
	padding: 5px 0px;
	max-width: 100%;
	position: relative;
	background: #fff;
	border-radius: 5px;
	width: 100%;
}

.domain-search-form .inputs {
	border: 0;
	background: rgb(255, 255, 255);
	height: 55px;
	padding: 15px 25px;
	width: 100%;
	color: rgb(101, 94, 94) !important;
	outline: unset;
}

.domain-search-form .submit {
	position: absolute;
	top: 0px;
	right: -30px;
}

@media (max-width:575px) {
	.domain-search-form {
		padding: 10px;
		padding-top: 0;
	}

	.domain-search-form .inputs {
		padding: 10px;
	}

	.domain-search-form .submit {
		/*      position: unset;*/
		width: 30%;
	}
}

/* ----------------------------------------------------------------
    18. Domain Promos Css
------------------------------------------------------------------- */
.domain-names-tld {
	box-shadow: 0 0 0 1px rgba(0, 0, 0, .2);
	border-radius: 12px;
	position: relative;
	height: 100%;
	transition: all 0.3s;
}

.domain-names-tld:hover {
	transform: translateY(-10px);
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.domain-names-tld .inner {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 10px 0;
}

.domain-names-tld .one-year-free {
	font-size: 12px;
	line-height: 1.5;
	padding: 4px 8px;
	z-index: 1;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 2px;
	width: max-content;
	min-width: auto;
	font-weight: 500;
	background-color: #33D495;
	color: #fff;
}

.domain-names-tld .inner .logos {
	display: block;
}

.domain-names-tld .inner .logos img {
	max-height: 30px;
}

.domain-names-tld .inner .contents {
	display: block;
}

.domain-names-tld .inner .contents h5 {
	font-size: 27px;
	font-weight: 600;
	margin-bottom: 0;
}

.domain-names-tld .inner .contents p {
	color: #212121;
	font-size: 13px;
	font-weight: 400;
	margin-bottom: 0;
	margin-top: 9px;
}


/* ----------------------------------------------------------------
    19. FREE Add-ons Css
------------------------------------------------------------------- */
.free-ad-ons {
	padding: 40px 35px 40px 40px;
	border-radius: 20px 20px 20px 20px;
	background: #fafbff;
	height: 100%;
	border: 1px solid #d5dfff !importent;
}

.free-ad-ons.p-dicreace {
	padding: 30px 25px 30px 30px;
}

.free-ad-ons-transparnet .free-ad-ons {
	background: #F0F7FF;
}

.free-ad-ons .icon {
	margin-bottom: 15px;
}

.free-ad-ons .icon img {
	max-height: 50px;
}

.free-ad-ons h4 {
	font-size: 25px;
	font-weight: 600;

}

.free-ad-ons p {
	font-size: 15px;
	margin-top: 15px;
	margin-bottom: 0;
}

/* ----------------------------------------------------------------
    20. Sunrise Domain Form Css
------------------------------------------------------------------- */
.sunrise-form {
	padding: 20px;
	position: relative;
	box-shadow: 0 0 5px #e1e1e1;
	border-radius: 5px;
	border: 1px solid #d5d5d5;
}

.sunrise-form .labels {
	font-size: 17px;
	font-weight: 600;
	position: relative;
	width: 100%;
}

.sunrise-form .smd-info {
	position: absolute;
	right: 20px;
	top: 6px;
}

.sunrise-form .smd-info .tooltip-txt {
	position: relative;
	cursor: help;
	color: rgb(var(--color-primary));
	font-weight: 500;
	font-size: 15px;
}


.sunrise-form .smd-info .tooltip-txt .tooltip-info {
	display: none;
	padding: 15px;
	z-index: 5;
	cursor: default;
	background: #272727;
	color: #ededed;
	font-size: 12px;
	line-height: 1.5;
	position: absolute;
	top: 25px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

.sunrise-form .smd-info .tooltip-txt .tooltip-info.what-is-smd {
	width: 635px;
	right: 2px;
}

.sunrise-form .smd-info .tooltip-txt .tooltip-info.what-is-smd span {
	background: url('../images/up_arrow.png') 0 0 no-repeat;
	right: 29px;
	width: 22px;
	height: 12px;
	position: absolute;
	top: -10px;
	display: block;

}

.sunrise-form .smd-info .tooltip-txt:hover .tooltip-info {
	display: block;
}

.sunrise-form .smd-info .tooltip-txt+.tooltip-txt {
	cursor: pointer;
}

@media (max-width:991px) {
	.sunrise-form .smd-info {
		display: none;
	}
}

.sunrise-form .input {
	width: 100%;
	background: #fff;
	border: 1px solid #e9e9e9;
	padding: 15px;
	font-size: 16px;
	outline: none;
	border-radius: 5px;
}

/* ----------------------------------------------------------------
    21. Domain Transfer Form Css
------------------------------------------------------------------- */
.domain-trasfer-form {
	display: flex;
	width: 100%;
	gap: 20px;
}

.domain-trasfer-form>.search-form {
	width: 650px;
	max-width: 100%;
	position: relative;
}

.domain-trasfer-form>.search-form .input {
	width: 100%;
	display: block;
	padding: 19px;
	border: 0;
	outline: unset;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 500;
	color: #535353;
	line-height: 1;
}

.domain-trasfer-form>.search-form .select {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 150px;
	max-width: 100%;
	padding: 19px;
	border: 0;
	outline: unset;
	border-radius: 0;
	font-size: 16px;
	font-weight: 500;
	color: #535353;
	line-height: 1;
	background: transparent;
	border-inline-start: 1px solid #d5d5d5;
}

.domain-trasfer-form .submit-btn {
	width: 200px;
	max-width: 100%;
}

@media (max-width:767px) {
	.domain-trasfer-form {
		flex-wrap: wrap;
	}

	.domain-trasfer-form>.search-form {
		width: 100%;
	}

	.domain-trasfer-form>.search-form .select {
		position: unset;
		width: 100%;
		margin-top: 20px;
		border-radius: 5px;
		border: 1px solid #d5d5d5;
		background: #fff;
	}

	.domain-trasfer-form .submit-btn {
		width: 100%;
	}
}

/* ----------------------------------------------------------------
    22. Domain Pricing Table Css
------------------------------------------------------------------- */
.input-table-search {
	width: 100%;
	display: block;
	padding: 19px;
	border: 0;
	outline: unset;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 500;
	color: #535353;
	line-height: 1;
	border: 1px solid #e9eaec;
	margin-bottom: 15px;
}

.domain-pricing-table {
	width: 100%;
	background: #FFF;
	padding: 15px;
	box-shadow: 0px 0px 20px 0px rgba(76, 87, 125, 0.08);
	border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0;
	margin-bottom: 15px;
	overflow-x: auto;
}

.domain-pricing-table table {
	border: 1px solid #e9eaec;
	border-collapse: collapse;
}

.domain-pricing-table table thead tr th {
	background: #f5f5f5;
	border: 1px solid #e9eaec;
	padding: 10px;
	font-size: 18px;
}

.domain-pricing-table table tbody tr td {
	border: 1px solid #e9eaec;
	padding: 10px;
	font-size: 16px;
}

.domain-pricing-table table tbody tr td .strikeout {
	text-decoration: line-through;
	color: #9c0b0b9f;
}


/* ----------------------------------------------------------------
    23. Plan Style Css
------------------------------------------------------------------- */
.plan-style-one ul {
	margin: 0;
	margin-top: 15px;
	padding: 0;
}

.plan-style-one ul li {
	position: relative;
	font-size: 16px;
	font-weight: 500;
	padding-inline-start: 30px;
}

.plan-style-one ul li+li {
	margin-top: 10px;
}

.plan-style-one ul li:before {
	position: absolute;
	content: '\F633';
	font-size: 14px;
	font-weight: 500;
	font-family: var(--font-bootstrap-icons);
	top: 2px;
	left: 0;
	color: rgb(var(--color-secondary));
	background: rgba(var(--color-secondary), 0.2);
	border-radius: 100%;
	width: 20px;
	height: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* ----------------------------------------------------------------
    24. Just One Click Css
------------------------------------------------------------------- */
.just-one-click {
	background: #f2eeff;
	padding: 60px 0;
	border-radius: 26px;
}

@media (min-width:992px) {
	.just-one-click .swiper-just-one-click {
		margin: 0 100px;
	}
}

.just-one-click .swiper-just-one-click .inner {
	background: #fff;
	border: 1px solid #d0cfcf;
	border-radius: 10px;
	padding: 15px;
	text-align: center;
}

@media (max-width:991px) {
	.just-one-click {
		padding: 25px;
		border-radius: 5px;
	}
}

/* ----------------------------------------------------------------
    25. Collapse Css
------------------------------------------------------------------- */

.ulcollapse {
	background: transparent;
	padding: 0px;
	margin: 0;
	list-style: none;
	position: relative;
}

@media (min-width:991px) {
	.ulcollapse {
		padding-inline-start: 30px;
	}

	.ulcollapse:before {
		content: "";
		position: absolute;
		inset-inline-start: 0;
		top: 0;
		width: 1px;
		height: 100%;
		background: rgb(219, 216, 184);
	}

	.ulcollapse>li:before {
		content: "";
		position: absolute;
		left: -38px;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		width: 16px;
		height: 16px;
		background: rgb(219, 216, 184);
		border-radius: 50%;
	}

	.ulcollapse.bg2:before {
		background: rgb(209, 220, 232);
	}

	.ulcollapse.bg2>li:before {
		background: rgb(209, 220, 232);
	}
}

.ulcollapse li {
	background: #fff;
	list-style: none;
	border-radius: 5px;
	border: 1px solid rgba(var(--color-primary), 0.2);
	position: relative;
}

.ulcollapse li+li {
	margin-top: 15px;
}

.ulcollapse li>a {
	font-size: 18px;
	font-weight: 600;
	color: #393939;
	padding: 20px;
	display: flex;
	align-items: center;
	transition: all 0.3s;
	cursor: pointer;
	user-select: none;
	border-radius: 5px;
}

@media (max-width:767px) {
	.ulcollapse li>a {
		font-size: 17px;
	}
}

.ulcollapse li.active>a,
.ulcollapse li.active>a:hover,
.ulcollapse li.active>a:focus {
	color: rgb(var(--color-primary));
	background: #fff;
	border-radius: 5px;
	padding-bottom: 0;
	transition: all 0.3s;
}

.ulcollapse li p {
	padding: 15px;
	font-size: 16px;
	line-height: 2;
	color: #4B4B4B;
	display: none;
	border-radius: 0px 0px;
	margin-bottom: 0;
}

@media (max-width:767px) {
	.ulcollapse li p {
		font-size: 15px;
		line-height: 1.5;
	}
}

.ulcollapse li p a {
	display: contents;
	color: rgb(var(--color-primary));
	text-decoration: underline !important;
	cursor: pointer;
}

/* ----------------------------------------------------------------
    26. Tabings Css
------------------------------------------------------------------- */
.tabs-section-one .tabs {
	display: block;
	width: 100%;
}

.tabs-section-one .tabs .items {
	display: flex !important;
	width: 100%;
}

.tabs-section-one .tabs .items .item {
	flex: 1 1 auto;
	-webkit-box-flex: 1;
	font-size: 16px;
	font-weight: 600;
	margin: 0;
	padding: 20px 10px;
	position: relative;
	cursor: pointer;
	display: block;
	background: #d8ebff;
	color: #333;
	text-align: center;
	border-inline-end: 1px solid #c6d4ea;
}

.tabs-section-one .tabs .items .item.active {
	background: rgb(var(--color-primary));
	color: #fff;
	border-color: rgb(var(--color-primary));
}

.tabs-section-one .tabs .items .item:last-child {
	border: unset;
}

.tabs-section-one .contents {
	display: block;
}

.tabs-section-one .contents .item {
	display: none;
}

.tabs-section-one .contents .item.active {
	display: block;
}

@media (max-width:500px) {
	.tabs-section-one .tabs .items .item {
		padding: 15px 10px;
		font-size: 14px;
	}
}

.tabs-section-two .tabs {
	display: block;
	width: 100%;
}

.tabs-section-two .tabs .items {
	display: block;
	margin: 0 auto 60px;
	border-bottom: 1px solid #e0e0e0;
}

.tabs-section-two .tabs .items .item {
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	margin: 0;
	padding: 12px 0;
	position: relative;
	color: rgb(var(--color-secondary));
	cursor: pointer;
}

.tabs-section-two .tabs.many-tabs .items .item {
	font-size: 16px;
}

.tabs-section-two .tabs .items .item+.item {
	margin-inline-start: 40px;
}

.tabs-section-two .tabs .items .item.active {
	color: #1b1b1b;
	font-weight: 600;
}

.tabs-section-two .tabs .items .item:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0;
	height: 4px;
	background: 0 0;
	transition: width .5s linear;
}

.tabs-section-two .tabs .items .item.active:after {
	width: 100%;
	background: rgb(var(--color-secondary));
}

.tabs-section-two .contents {
	display: block;
}

.tabs-section-two .contents .item {
	display: none;
}

.tabs-section-two .contents .item.active {
	display: block;
}

@media (max-width:767px) {
	.tabs-section-two .tabs .items .item {
		font-size: 14px;
	}

	.tabs-section-two .tabs .items .item+.item {
		margin-inline-start: 30px;
	}

	.tabs-section-two .tabs .items {
		margin: 0 auto 30px;
	}

	.tabs-section-two .tabs.many-tabs .items {
		overflow: auto;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}

	.tabs-section-two .tabs.many-tabs .items::-webkit-scrollbar {
		display: none;
	}

	.tabs-section-two .tabs.many-tabs .items {
		display: flex;
	}

	.tabs-section-two .tabs.many-tabs .items .item {
		white-space: nowrap;
	}
}

/* ----------------------------------------------------------------
    27. Titan Email Video
------------------------------------------------------------------- */

.titanmail-video {
	background-color: rgb(250, 251, 254);
	border: 15px solid rgba(196, 192, 192, 0.5);
	border-radius: 5px;
	overflow: hidden;
}

.titanmail-video video {
	height: 100%;
	width: 100%;
	display: flex;
	border: none;
	background-color: #000;
}


/* ----------------------------------------------------------------
    28. Table Affiliate Page
------------------------------------------------------------------- */
.table-affiliate table {
	table-layout: fixed;
	border: 1px solid #c4c6ca;
	box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
	border-radius: 4px;
	margin-bottom: 32px;
}

.table-affiliate table th {
	width: auto;
	font-size: 20px;
	color: #a6a5a5;
	padding: 20px;
	line-height: 1.5;
	font-weight: 400;
	text-align: start;
	vertical-align: baseline;
}

.table-affiliate table tbody tr:nth-child(2n+1) td {
	background-color: #fafafb;
}

.table-affiliate table td {
	text-align: start;
	vertical-align: middle;
	font-size: 23px;
	font-weight: 300;
	padding: 14px;
	padding-inline-start: 20px;
	color: #7a7b7b;
	font-weight: 600;
	line-height: 35px;
	color: #1b1a19;
}

.table-affiliate table td b {
	color: rgb(var(--color-secondary));
}

@media (max-width:767px) {
	.table-affiliate table td {
		font-size: 16px;
		line-height: 1.5;
		font-weight: 500;
	}
}

/* ----------------------------------------------------------------
    29. Login & Register Page
------------------------------------------------------------------- */
.account-page {
	padding: 150px 0 50px 0;
	position: relative;
	background: linear-gradient(90deg, #2e1a6d, #4a338d 45.83%, #7759ce);
}

.account-page .inner {
	padding: 20px;
}

@media (max-width:575px) {
	.account-page .inner {
		padding: 0px;
	}
}

.account-page .inner .user-title {
	margin-bottom: 20px;
	font-size: 30px;
	color: #fff;
	display: block;
	text-align: center;
	line-height: 1.5;
	font-weight: 800;
}

.account-page .inner .user-disc {
	width: 90%;
	color: #d4d4d4;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.5;
	margin-inline-start: 5%;
	text-align: center;
	margin-bottom: 20px;
}

.account-page .inner .labels {
	display: block;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 10px;
	letter-spacing: 0.5px;
	width: 100%;
	color: #f8fafd;
	line-height: 1;
}

.account-page .inner .inputs {
	height: 52px;
	padding: 5px 15px;
	font-size: 16px;
	border: 1px solid #dee0e3;
	box-shadow: unset;
	outline: unset;
	color: #585a5f;
	font-size: 17px;
	font-weight: 500;
	border-radius: 4px;
	width: 100%;
}

.account-page .inner .next-link {
	color: #fff;
	border-top: 2px dashed #aaa9a9;
	padding-top: 10px;
}

.account-page .inner .next-link a {
	color: rgb(var(--color-secondary));
	text-decoration: underline;
}

.account-page .forgot-text {
	color: rgb(var(--color-secondary)) !important;
	font-size: 16px;
	line-height: 1;
	font-weight: 600;
}

.account-page .checkbox {
	display: flex;
	align-items: center;
	color: #f8fafd;
	width: 100%;
	padding-inline-start: 25px;
	position: relative;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	user-select: none;
	max-width: 100%;
}

.account-page .checkbox input[type="checkbox"] {
	position: absolute;
	top: 5px;
	inset-inline-start: 0px;
	opacity: 1;
	width: 15px;
	height: 15px;
	margin: 0;
}

.account-page .user-page-ads {
	width: 100%;
	height: auto;
	background: #33226630;
	display: block;
	border-radius: 5px;
	padding: 30px;
}

@media (max-width:767px) {

	.account-page .user-page-ads {
		padding: 15px;
	}

}

.account-page .user-page-ads-inner p {
	font-size: 20px;
	text-align: center;
	color: #ffffffc9;
	font-weight: 500;
}

@media (max-width:767px) {

	.account-page .user-page-ads-inner p {
		font-size: 16px;
	}

}

.account-page .swiper .swiper-slide img {
	opacity: 0.9;
}


.account-page .swiper .swiper-pagination {
	margin-top: 20px;
	position: relative;
}

.account-page .swiper .swiper-pagination .swiper-pagination-bullet {
	width: 13px;
	height: 13px;
	background-color: #fff;
	opacity: 1;
	border: 1px solid rgb(var(--color-secondary));
}


.account-page .swiper .swiper-pagination .swiper-pagination-bullet-active {
	background-color: rgb(var(--color-secondary));
}

/* ----------------------------------------------------------------
    30. Contact Page
------------------------------------------------------------------- */
.contact .info {
	background-color: #fff;
	padding: 40px;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.contact .info h3 {
	font-weight: 600;
	font-size: 24px;
}

.contact .info p {
	color: #8d969f;
	margin-bottom: 30px;
	font-size: 15px;
}

.contact .info-item+.info-item {
	padding-top: 20px;
	margin-top: 20px;
	border-top: 1px solid #dddedf;
}

.contact .info-item i {
	font-size: 24px;
	color: rgb(var(--color-primary));
	transition: all 0.3s ease-in-out;
	margin-right: 20px;
}

.contact .info-item h4 {
	padding: 0;
	font-size: 18px;
	line-height: 24px;
	font-weight: 600;
	margin-bottom: 5px;
}

.contact .info-item p {
	padding: 0;
	margin-bottom: 0;
	font-size: 14px;
	color: #8d969f;
}

.contact form {
	width: 100%;
}

.contact form .form-group {
	padding-bottom: 8px;
}

.contact form input[type=text],
.contact form input[type=email],
.contact form textarea {
	color: #8d969f;
	background-color: #fff;
	border-radius: 0px;
	box-shadow: none;
	font-size: 14px;
	border-color: #c0c0c0;
}

.contact form input[type=text]:focus,
.contact form input[type=email]:focus,
.contact form textarea:focus {
	border-color: rgb(var(--color-primary));
}

.contact form input[type=text]::placeholder,
.contact form input[type=email]::placeholder,
.contact form textarea::placeholder {
	color: #8d969f;
}

.contact form input[type=text],
.contact form input[type=email] {
	height: 48px;
	padding: 10px 15px;
}

.contact form textarea {
	padding: 10px 12px;
	height: 290px;
}


/* ----------------------------------------------------------------
    31. Contents Page
------------------------------------------------------------------- */

.content-section {
	display: block;
}

.content-section h2 {
	font-size: 30px;
	font-weight: 700;
}

.content-section h3 {
	font-size: 24px;
	font-weight: 600;
}

.content-section p {
	font-size: 16px;
}


/*---------------------------------
/*  Costom CSS HERE*/

#price {
	font-size: 48px;
	font-weight: 900;
}

#terms1 {
	background-color: #d5dfff;
	padding: 3px 6px;
	border-radius: 2px;
	font-size: 12px;
}

#terms2 {
	background-color: #d5dfff;
	padding: 3px 6px;
	border-radius: 2px;
	font-size: 12px;
	margin-left: 10px;
	font-weight: 700;
}

#btnorder {
	padding-top: 5px;
	color: #673de6;
	padding-bottom: 5px;
	border-radius: 5px;
	font-weight: 900;
	text-align: center;
	cursor: pointer;
	border: 2px solid #673de6;
}

#btnorder:hover {
	background: #e2dbfc;
}

#btnorderrecomand {
	padding-top: 5px;
	color: #ffffff;
	padding-bottom: 5px;
	border-radius: 5px;
	font-weight: 900;
	text-align: center;
	cursor: pointer;
	border: 2px solid #673de6;
	background: #673de6;
}

.homepage-plan .inner .feture {
	text-decoration: underline;
	text-decoration-color: var(--neutral--300);
	text-decoration-style: dashed;
	text-underline-position: under;
	margin-left: 10px;
	font-size: 14px;
}

.homepage-plan .inner .feture {
	text-decoration: underline;
	text-decoration-color: #00b090;
	text-decoration-style: dashed;
	text-underline-position: under;
	margin-left: 10px;
}

.homepage-plan .inner h6 i {
	color: #8c85ff;
}

#recomand {
	background-color: #8c85ff;
	border: 2px solid #8c85ff;
	border-radius: 20px 20px 5px 5px;
}

#recomandarea {
	background: #fff;
	padding: 14px;
	margin-top: 0px;
	border-radius: 20px 20px 5px 5px;
	margin-bottom: -25px;
	margin-left: -20px;
	margin-right: -20px;
}


.hosting_feature {
	border-radius: 10px;
	max-width: 100% !important;
	margin: 0 !important;
	cursor: pointer;
	padding: 25px 20px;
	display: block;
	background-color: #2f1c6a;
	height: 280px;
}

.hosting_feature .inner .icon {
	margin-bottom: 15px;
	font-size: 30px;

}

.hosting_feature .inner .icon i {
	background: #673de6;
	color: #fff;
	padding: 5px 10px;
	border-radius: 10px;
}


.hosting_feature .inner .icon img {
	max-height: 50px;
}

.hosting_feature .inner h4 {
	color: #fff;
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 15px;

}

.hosting_feature .inner p {
	margin-top: 8px;
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}


@media (max-width: 768px) {
	.domain-search-form .inputs {
		padding: 10px 0px 0px 10px;
	}
}

