:root {
	--transparent-color: #ffffff00;
    --white-color: #ffffff;
	--white-color-15: #ffffff26;
	--white-color-25: #ffffff40;
	--white-color-50: #ffffff80;
	--white-color-75: #ffffffbf;
	
    --black-color: #000000;
	--black-color-15: #00000026;
	--black-color-25: #00000040;
	--black-color-50: #00000080;
	--black-color-75: #000000bf;

    --theme-color-01: #1e232e;
	--theme-color-01-15: #1e232e26;
	--theme-color-01-25: #1e232e40;
	--theme-color-01-50: #1e232e80;
	--theme-color-01-75: #1e232ebf;
	
	--theme-color-02: #dadfea;
	--theme-color-02-15: #dadfea26;
	--theme-color-02-25: #dadfea40;
	--theme-color-02-50: #dadfea80;
	--theme-color-02-75: #dadfeabf;
	
	--theme-color-03: #1e71b8;
	--theme-color-03-15: #1e71b826;
	--theme-color-03-25: #1e71b840;
	--theme-color-03-50: #1e71b880;
	--theme-color-03-75: #1e71b8bf;
	
	--theme-color-04: #181b21;
	--theme-color-04-15: #181b2126;
	--theme-color-04-25: #181b2140;
	--theme-color-04-50: #181b2180;
	--theme-color-04-75: #181b21bf;
	
	--theme-color-05: #a42620;
	--theme-color-05-15: #a4262026;
	--theme-color-05-25: #a4262040;
	--theme-color-05-50: #a4262080;
	--theme-color-05-75: #a42620bf;
	
	--theme-color-06: #15afa5;
	--theme-color-06-15: #15afa526;
	--theme-color-06-25: #15afa540;
	--theme-color-06-50: #15afa580;
	--theme-color-06-75: #15afa5bf;
	
	--red-color: #c2004e;
	--green-color: #379689;
	--yellow-color: #a38c21;
	--yellow-color-75: #a38c21bf;
	
	--border-radius-01: 0;
	--border-radius-02: .5rem;
	--border-radius-03: .25rem;
	--border-radius-04: 0 0 .5rem .5rem;
	--border-radius-05: .5rem 0 0 .5rem;
	--border-radius-06: 0 .5rem .5rem 0;
	--border-radius-07: .5rem .5rem 0 0;
	
	--mask-color-01: linear-gradient(-135deg, var(--theme-color-04) 25%, var(--theme-color-01) 60%);
	--mask-color-02: linear-gradient(225deg, var(--theme-color-01) 25%, var(--transparent-color) 85%);
	--mask-color-03: linear-gradient(0deg, var(--theme-color-01) 15%, var(--transparent-color) 60%);
	--mask-color-04: linear-gradient(270deg, var(--transparent-color) 25%, var(--theme-color-03) 100%);
    --mask-color-05: linear-gradient(90deg, var(--transparent-color) 25%, var(--theme-color-03) 100%);

	--font-awesome: "Font Awesome 5 Pro", sans-serif;
	--font-poppins: "Poppins", sans-serif;
	--font-kufi: "Noto Kufi Arabic", sans-serif;
}

* {
    outline: 0 !important;
    box-shadow: none !important;
}

html {
    position: relative;
    height: 100%;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
}

body {
	font-family: var(--font-kufi);
    color: var(--white-color);
    background-color: var(--theme-color-01);
	font-size: 100%;
	font-weight: 400;
    margin: 0;
    padding: 0;
	width: 100%;
    overflow-x: hidden;
    position: relative;
    min-height: 100%;
	direction: rtl;
}

a,
a:focus,
a:hover {
    text-decoration: none !important;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

ul {
    padding: 0;
    margin-bottom: 0;
}

li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
	margin-bottom: 0;
}

p {
    margin-bottom: 0;
}

.container-fluid {
    padding-left: 4vw !important;
    padding-right: 4vw !important;
}

::selection {
    background: var(--theme-color-01);
    color: var(--white-color);
}

.dir-num {
    direction: ltr;
    text-align: right;
}

.en-text-lang {
	font-family: var(--font-poppins);
}

.ar-text-lang {
	font-family: var(--font-kufi);
}


/****** Header ******/

header {
    position: fixed;
    top: 0;
    left: 0;
	right: 0;
    width: 100vw;
    z-index: 20;
	border: none;
	background-color: var(--transparent-color);
	border-bottom: 1px solid var(--transparent-color);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

header .navbar-brand {
	color: var(--white-color);
	font-size: 1.125rem;
	font-weight: 500;
}

header .navbar-brand img {
	width: auto;
	height: 2.5rem;
}

header .navbar-brand span span {
	font-weight: 300;
}

header .nav-item .nav-link,
header .nav-item .nav-link:focus {
    color: var(--white-color);
	margin-right: .25rem;
	margin-left: .25rem;
	padding: .5rem 1rem !important;
	border-radius: var(--border-radius-02);
	font-weight: 400;
}

header .nav-item .nav-link:hover,
header .nav-item .nav-link.active {
	background-color: var(--white-color-25);
}

header .nav-item .nav-link.show {
	background-color: var(--white-color);
	color: var(--theme-color-01);
	display: inline-block;
}

header .dropdown-toggle::after {
    display: none;
}

header.headroom--not-top {
    position: fixed;
	background-color: var(--theme-color-01);
	border-bottom: 1px solid var(--theme-color-02-15);
}

header.headroom {
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    will-change: transform, opacity;
}

header.headroom.headroom--pinned {
    -webkit-animation-name: headroom--pinned;
    animation-name: headroom--pinned;
}

header.headroom.headroom--unpinned {
    -webkit-animation-name: headroom--unpinned;
    animation-name: headroom--unpinned;
}

@-webkit-keyframes headroom--pinned {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes headroom--pinned {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes headroom--unpinned {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@keyframes headroom--unpinned {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
}

.lang-en header .ar-lang,
.lang-ar header .en-lang {
    display: none;
}

header .lang-mob {
	display: none;		
}

header .contact-mob {
	display: none;
}

header .navbar .has-megamenu {
	position: static !important;
}

header .navbar-nav .dropdown-menu.megamenu {
	margin-top: 0;
	padding: 1.5rem 0;
	font-weight: 500;
	color: var(--theme-color-01);
	border: none;
	border-radius: var(--border-radius-04);
	width: 100%;
	height: 0 !important;
	display: block;
	left: 0;
	top: 66px;
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0);
	transform-origin:  top;
	background-color: var(--white-color);
	overflow: hidden;
	-webkit-transition: all .15s ease-in-out;
	-o-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
}

header .navbar-nav .dropdown-menu.megamenu.show {
	height: auto !important;
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
	-webkit-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

header .megamenu .dropdown-item,
header .megamenu .dropdown-item:focus {
    padding: .5rem .75rem;
	margin: .5rem 0;
	font-weight: 500;
    color: var(--theme-color-01);
	background-color: var(--transparent-color);
	border-radius: var(--border-radius-02);
}

header .megamenu .dropdown-item:hover,
header .megamenu .dropdown-item.active {
    background-color: var(--theme-color-03);
    color: var(--white-color);
}

header .languages .dropdown-menu[data-bs-popper] {
    margin-top: .75rem
}

header .languages .dropdown-menu {
    min-width: 8rem;
    padding: 0;
    margin: 0;
    text-align: right;
    background-color: var(--white-color);
    border: 1px solid var(--transparent-color);
    border-radius: var(--border-radius-04);
	left: 0;
	right: auto;
	overflow: hidden;
}

header .languages .dropdown-menu .dropdown-item,
header .languages .dropdown-menu .dropdown-item:focus {
    padding: 0.5rem .75rem;
    color: var(--theme-color-01);
    background-color: transparent;
	font-weight: 500;
}

header .languages .dropdown-menu .dropdown-item:hover {
    color: var(--white-color);
    background-color: var(--theme-color-03);
}

header .contact-btn-cus,
header .contact-btn-cus:focus {
	position: relative;
	display: inline-block;
    padding: .5rem 1.5rem;
    text-align: center;
    background-color: var(--theme-color-03);
    color: var(--white-color);
    border: 1px solid var(--theme-color-02-15);
    border-bottom: 3px solid var(--theme-color-02-15);
    border-radius: var(--border-radius-03);
    font-size: 1rem;
    font-weight: 600;
	white-space: nowrap;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

header .contact-btn-cus:hover {
	color: var(--white-color);
	background-color: var(--theme-color-01);
	border: 1px solid var(--theme-color-02-25);
    border-bottom: 3px solid var(--theme-color-02-25);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

header .contact-btn-cus i {
	font-size: 1.5rem;
	position: relative;
    top: 2px;
}

.lang-en header .dropdown-menu .dropdown-item.en-text-lang,
.lang-ar header .dropdown-menu .dropdown-item.ar-text-lang {
    color: var(--theme-color-04);
	background-color: var(--white-color);
    padding: .5rem .75rem;
    pointer-events: none;
    cursor: default;
}

header .headers-cus-img {
	position: relative;
    overflow: hidden;
	border-radius: var(--border-radius-02);
}

header .headers-cus-img .header-img {
	position: relative;
    margin: 0;
    overflow: hidden;
	background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: 50% 50%;
	padding: 0;
	height: 10rem;
	border: 1px solid var(--theme-color-01-25);
	border-radius: var(--border-radius-02);
	transform: scale(1);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

header .headers-cus-img:hover .header-img {
	transform: scale(1.02);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

header .headers-cus-img .header-img::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: var(--theme-color-01-25);
}

header .headers-cus-img .header-img.header-img-01 {
	background-image: url(../img/pages/web-hosting-emails-bg.webp);
}

header .headers-cus-img .header-img.header-img-02 {
	background-image: url(../img/pages/business-hosting-emails-bg.webp);
}

header .headers-cus-img .header-img.header-img-03 {
	background-image: url(../img/pages/search-domain-names-bg.webp);
}

header .headers-cus-img .header-img.header-img-04 {
	background-image: url(../img/pages/transfer-domain-names-bg.webp);
}

header .headers-cus-img .header-img.header-img-05 {
	background-image: url(../img/pages/static-websites-marketing-bg.webp);
}

header .headers-cus-img .header-img.header-img-06 {
	background-image: url(../img/pages/digital-websites-marketing-bg.webp);
}

header .headers-cus-img .header-text {
	position: absolute;
    bottom: -3rem;
    right: 1.5rem;
	text-align: right;
	padding-bottom: 1.5rem;
    width: calc(100% - 3rem);
    color: var(--white-color);
	z-index: 1;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

header .headers-cus-img:hover .header-text {
    bottom: 0;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

@media (min-width: 1400px){
	header .offset-lg-2 {
		padding-right: 16.6666666667%;
	}
}

@media (max-width: 992px){
	header .lang-mob {
		display: inline-block;
		position: absolute;
		left: 5rem;
		top: -0.875rem;
		text-align: left;
	}
	header .navbar-collapse .languages {
		display: none;	
	}
	header .contact-mob {
		display: inline-block;
		position: absolute;
		left: 10rem;
		top: -0.875rem;
		text-align: right;
	}
	header .navbar-collapse .contacts {
		display: none;	
	}
	header .contact-mob .nav-item .nav-link,
	header .contact-mob .nav-item .nav-link:focus {
		display: inline-block;
	}
	header .languages .dropdown-menu[data-bs-popper] {
		margin-top: .5rem
	}
	header .nav-item .nav-link,
	header .nav-item .nav-link:focus {
		margin-right: 0;
		margin-left: 0;
		margin-top: 0.25rem;
    	margin-bottom: 0.25rem;
	}
	header .navbar-collapse .nav-item.dropdown .nav-link::before {
		display: inline-block;
		content: "\f107";
		font-family: var(--font-awesome);
		position: absolute;
		left: 4%;
		border: none;
		font-weight: 300;
		margin-left: 1rem;
	}
	header .navbar-nav .dropdown-menu.megamenu {
		background-color: var(--white-color);
		margin-top: -.25rem;
		padding: 0;
	}
	.navbar-nav {
		padding: 1.5rem 0;
	}
	header .nav-item.has-megamenu .nav-link.show {
		background-color: var(--transparent-color);
		color: var(--white-color);
	}
	header .navbar-toggler {
		padding: .5rem 0 0 0;
		font-size: 1.25rem;
		line-height: 1;
		background-color: var(--transparent-color);
		border: none;
		border-radius: var(--border-radius-02);
		transition: none;
	}
	header .navbar-toggler i.open-menu {
        color: var(--white-color);
        transform: rotateY(0deg);
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
        display: inline-block;
    }
    header .navbar-toggler i.close-menu {
        color: var(--theme-color-02);
        height: 30px;
        width: auto;
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
        display: none;
    }
    header .navbar-toggler[aria-expanded="true"] i.open-menu {
        display: none;
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }
    header .navbar-toggler[aria-expanded="true"] i.close-menu {
        display: inline-block;
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }
	header .navbar-nav.contact-mob .dropdown-menu.megamenu {
		position: fixed;
		margin-top: 0;
		padding: 1rem 0;
		color: var(--theme-color-01);
		border: none;
		border-radius: var(--border-radius-04);
		width: 94%;
		height: auto!important;
		display: block;
		right: 3%;
		top: 66px;
		transform: scaleY(1);
		transform-origin: top;
		background-color: var(--white-color);
		overflow: auto;
		-webkit-transition: all .15s ease-in-out;
		-o-transition: all .15s ease-in-out;
		transition: all .15s ease-in-out;
	}
	header .contact-mob .nav-item.has-megamenu .nav-link.show {
		background-color: var(--white-color);
		color: var(--theme-color-01);
	}
	header.menu-header {
		background-color: var(--theme-color-01);
		border-bottom: 1px solid var(--theme-color-02-15);
		-webkit-transition: all .3s ease-in-out;
		-moz-transition: all .3s ease-in-out;
		transition: all .3s ease-in-out;
	}
}

@media (max-width: 576px) {
	header .lang-mob {
		left: 3.5rem;
	}
	header .contact-mob {
		left: 6.5rem;
	}
}


/****** Footer ******/

footer {
    position: relative;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
	padding: 4rem 0 2rem 0;
	background-color: var(--theme-color-04);
	z-index: 15;
}

footer .footer-title {
    font-weight: 500;
    color: var(--white-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    position: relative;
}

footer .footer-links a,
footer .footer-links a:focus {
    color: var(--theme-color-02-75);
    line-height: 2.25rem;
	position: relative;
	padding: 0 .5rem 0 0;
	display: inline-block;
}

footer .footer-links a:hover,
footer .footer-links a.active {
    color: var(--white-color);
}

footer .copyright {
	padding-top: 2rem;
	border-top: 1px solid var(--theme-color-02-15);
	margin-top: 2rem;
}

footer .copyright p {
	color: var(--theme-color-02-75);
	font-size: .875rem;
	font-weight: 300;
	text-align: start;
}

footer .copyright .social {
	position: relative;
	text-align: end;
}

@media (max-width: 992px) {
	footer .copyright p {
		text-align: center;
	}
	footer .copyright .social {
		text-align: center;
	}	
}

footer .copyright .social a,
footer .copyright .social a:focus {
	display: inline-block;
    width: 2rem;
    height: 2rem;
    border: 1px solid var(--theme-color-02-75);
    border-radius: 100%;
    text-align: center;
    margin-left: 0.5rem;
    line-height: 2rem;
    color: var(--theme-color-02-75);
    background-color: var(--transparent-color);
    font-size: .875rem;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

footer .copyright .social a:hover {
    color: var(--white-color);
	border: 1px solid var(--white-color);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

footer .copyright .social a:last-child {
    margin-left: 0;
}

footer .footer-contact {
	color: var(--white-color);
	font-size: .875rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--theme-color-02-15);
	margin-bottom: 2rem;
}

footer .footer-contact-det {
	display: flex;
	position: relative;
}

footer .footer-contact-det img {
	position: relative;
	width: 4rem;
	height: 4rem;
	margin-left: 1rem;
}

footer .footer-contact-det p {
	color: var(--theme-color-02);
}

footer .footer-contact-det h2 {
	line-height: inherit;
}

footer .footer-contact-det h2 span {
	font-weight: 300;
}

footer .footer-contact-call {
	font-size: 1.5rem;
}

footer .footer-contact-call .cus-link:hover {
    color: var(--white-color-75);
}

footer .footer-contact-chat a,
footer .footer-contact-chat a:focus {
	position: relative;
	display: inline-block;
    padding: .75rem 2rem;
    text-align: center;
    background-color: var(--theme-color-02);
    color: var(--theme-color-01);
    border: 1px solid var(--theme-color-01-15);
    border-bottom: 3px solid var(--theme-color-01-15);
    border-radius: var(--border-radius-02);
    font-size: 1.125rem;
    font-weight: 600;
	white-space: nowrap;
}

footer .footer-contact-chat a:hover {
	color: var(--white-color);
	background-color: var(--theme-color-03);
	border: 1px solid var(--theme-color-02-15);
    border-bottom: 3px solid var(--theme-color-02-15);
}

footer .footer-contact-chat a i {
    font-size: 1.75rem;
    position: relative;
    top: 2px;
}

footer .back-to-top,
footer .back-to-top:focus {
    position: fixed;
    bottom: .75rem;
    left: .75rem;
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    background-color: var(--theme-color-02-25);
    color: var(--theme-color-01);
    border: 1px solid var(--theme-color-01-25);
    border-radius: 2rem;
    text-align: center;
    font-size: 1.5rem;
    z-index: 18;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

footer .back-to-top::after,
footer .back-to-top::before {
    display: none;
}

footer .back-to-top i {
    font-size: 1.125rem;
    margin: 0;
    position: relative;
    top: -3px;
}

footer .back-to-top:hover {
    background-color: var(--white-color-50);
    color: var(--theme-color-01);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

footer .back-to-top.back-block {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

footer .back-to-top i {
    font-size: 1.125rem;
    margin: 0;
    position: relative;
    top: -3px;
}

footer .back-to-top.back-block {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

footer .cookies-link,
footer .cookies-link:focus {
    position: fixed;
    bottom: 3.5rem;
    left: .75rem;
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    background-color: var(--theme-color-02-25);
    color: var(--theme-color-01);
    border: 1px solid var(--theme-color-01-25);
    border-radius: 2rem;
    text-align: right;
    font-size: 1.5rem;
    z-index: 18;
    opacity: 1;
    visibility: visible;
	display: none;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

footer .cookies-link::after,
footer .cookies-link::before {
    display: none;
}

footer .cookies-link i {
    font-size: 1rem;
    margin: 0;
    position: absolute;
    top: 7px;
	left: 7px;
}

footer .cookies-link span {
	font-size: .875rem;
	font-weight: 500;
	text-align: right;
	margin-right: .5rem;
	position: absolute;
    right: 0;
    color: var(--theme-color-01);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

footer .cookies-link:hover {
	width: 6rem;
    background-color: var(--theme-color-02-50);
    color: var(--theme-color-01);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

footer .cookies-link:hover span {
	opacity: 1;
	visibility: visible;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.framelessmodal .modal-content {
	background-color: var(--white-color);
	border-radius: var(--border-radius-02);
	padding: 0 1rem;
    border: 1px solid var(--theme-color-01-25);
}

.framelessmodal .modal-header {
    padding: .75rem 1rem;
    border-bottom: 1px solid var(--theme-color-01-25);
	color: var(--theme-color-01);
}

.framelessmodal .modal-header .btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em .25em;
    color: #000;
    background: none;
    border: 0;
    border-radius: var(--border-radius-03);
    opacity: 1;
}

.framelessmodal .modal-header .btn-close::after {
    content: "\f00d";
    font-family: var(--font-awesome);
    font-size: 1.125rem;
    position: absolute;
    left: 1rem;
    top: .75rem;
    color: var(--theme-color-01-50);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.framelessmodal .modal-header .btn-close:hover::after {
    color: var(--theme-color-01);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.framelessmodal .modal-footer {
    padding: .75rem 1rem;
	border-top: 1px solid var(--theme-color-01-25);
	color: var(--theme-color-01);
}

.framelessmodal .modal-body p {
	color: var(--black-color);
	font-size: .875rem;
}

.modal-backdrop.show {
    opacity: 1;
}

.modal-backdrop {
    background: var(--black-color-50);
    backdrop-filter: blur(0.125rem);
}


/****** Pages ******/

main {
    position: relative;
    display: inline-block;
	width: 100vw;
}

.bg-theme-color-01 {
	background-color: var(--theme-color-01);
}

.bg-theme-color-01-50 {
	background-color: var(--theme-color-01-50);
}

.bg-theme-color-02 {
	background-color: var(--theme-color-02);
}

.bg-theme-color-02-50 {
	background-color: var(--theme-color-02-50);
}

.bg-theme-color-03 {
	background-color: var(--theme-color-03);
}

.bg-theme-color-03-50 {
	background-color: var(--theme-color-03-50);
}

.bg-theme-color-04 {
	background-color: var(--theme-color-04);
}

.text-theme-color-01 {
	color: var(--theme-color-01) !important;
}

.text-theme-color-03 {
	color: var(--theme-color-03) !important;
}

.text-theme-color-05 {
	color: var(--theme-color-05) !important;
}

.text-theme-color-06 {
	color: var(--theme-color-06) !important;
}

.overflow-hidden {
	overflow: hidden;
}

.overflow-body {
	position: fixed;
	left: 0;
	right: 0;
    bottom: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 18;
    opacity: 0;
    visibility: hidden;
    background: var(--black-color-25);
	backdrop-filter: blur(0.125rem);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.overflow-body.show {
    opacity: 1;
    visibility: visible;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.menu-bg {
	position: fixed;
	left: 0;
	right: 0;
    bottom: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 18;
    opacity: 0;
    visibility: hidden;
    background: var(--black-color-25);
	backdrop-filter: blur(0.125rem);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.menu-bg.show {
    opacity: 1;
    visibility: visible;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-cus-01,
.btn-cus-01:focus {
	position: relative;
	display: inline-block;
    padding: 1rem 1.5rem;
    text-align: center;
    background-color: var(--theme-color-03);
    color: var(--white-color);
    border: 1px solid var(--theme-color-02-15);
    border-bottom: 3px solid var(--theme-color-02-15);
    border-radius: var(--border-radius-05);
    font-size: 1rem;
    font-weight: 500;
	white-space: nowrap;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-cus-01:hover {
	color: var(--white-color);
    background-color: var(--theme-color-06);
    border: 1px solid var(--theme-color-01-15);
    border-bottom: 3px solid var(--theme-color-01-15);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-cus-01:disabled {
	pointer-events: none;
    cursor: default;
	background-color: var(--theme-color-03-50);
}

.btn-cus-02,
.btn-cus-02:focus {
	position: relative;
	display: block;
	width: 100%;
    padding: 1.125rem 1.5rem;
    text-align: center;
    background-color: var(--theme-color-03);
    color: var(--white-color);
    border: 1px solid var(--theme-color-02-15);
    border-bottom: 3px solid var(--theme-color-02-15);
    border-radius: var(--border-radius-02);
    font-size: 1.25rem;
    font-weight: 600;
	white-space: nowrap;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-cus-02:hover {
	color: var(--theme-color-01);
	background-color: var(--white-color);
	border: 1px solid var(--theme-color-01-15);
    border-bottom: 3px solid var(--theme-color-01-15);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-cus-03,
.btn-cus-03:focus {
	position: relative;
	display: inline-block;
    padding: .5rem 1.5rem;
    text-align: center;
    background-color: var(--theme-color-03);
    color: var(--white-color);
    border: none;
    border-radius: var(--border-radius-03);
    font-size: 1rem;
    font-weight: 600;
	white-space: nowrap;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-cus-03:hover {
	color: var(--white-color);
	background-color: var(--theme-color-01);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-cus-04,
.btn-cus-04:focus {
	position: relative;
	display: inline-block;
    padding: .5rem 2rem;
    text-align: center;
    background-color: var(--theme-color-03);
    color: var(--white-color);
    border: 1px solid var(--theme-color-02-15);
    border-bottom: 3px solid var(--theme-color-02-15);
    border-radius: var(--border-radius-03);
	font-size: 1.125rem;
    font-weight: 500;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-cus-04:hover {
	color: var(--theme-color-01);
	background-color: var(--theme-color-02);
	border: 1px solid var(--theme-color-01-15);
    border-bottom: 3px solid var(--theme-color-01-15);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-cus-05,
.btn-cus-05:focus {
	position: relative;
	display: inline-block;
    padding: .5rem 2rem;
    text-align: center;
    background-color: var(--theme-color-03);
    color: var(--white-color);
    border: 1px solid var(--theme-color-02-15);
    border-bottom: 3px solid var(--theme-color-02-15);
    border-radius: var(--border-radius-03);
	font-size: 1.125rem;
    font-weight: 500;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-cus-05:hover {
	color: var(--white-color);
	background-color: var(--theme-color-01);
	border: 1px solid var(--theme-color-02-15);
    border-bottom: 3px solid var(--theme-color-02-15);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-cus-06,
.btn-cus-06:focus {
	position: relative;
	display: block;
	width: 100%;
    padding: .25rem;
    text-align: center;
    background-color: var(--theme-color-06);
    color: var(--white-color);
    border: 1px solid var(--theme-color-02-15);
    border-bottom: 3px solid var(--theme-color-02-15);
    border-radius: var(--border-radius-02);
	font-size: .875rem;
    font-weight: 300;
    margin-top: 0;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-cus-06:hover {
	color: var(--white-color);
	background-color: var(--theme-color-03);
	border: 1px solid var(--theme-color-02-15);
    border-bottom: 3px solid var(--theme-color-02-15);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-cus-06:disabled {
    pointer-events: none;
    cursor: default;
    background-color: var(--theme-color-03-50);
}

.cus-link,
.cus-link:focus {
    position: relative;
    display: inline-block;
    color: currentColor;
	border: none;
	background: none;
}

.cus-link:hover {
    color: var(--theme-color-03);
}

.cus-link::after,
.cus-link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    height: 1px;
    width: 100%;
    background-color: currentColor;
}

.cus-link::before {
    -webkit-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
}

.cus-link::after {
    -webkit-transform-origin: 0 50%;
    -moz-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    transform: scaleX(0);
}

.cus-link:hover::before {
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: -webkit-transform .3s cubic-bezier(.86, 0, .07, 1);
    -moz-transition: -moz-transform .3s cubic-bezier(.86, 0, .07, 1);
    transition: transform .3s cubic-bezier(.86, 0, .07, 1);
}

.cus-link:hover::after {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition: -webkit-transform .3s cubic-bezier(.86, 0, .07, 1) .25s;
    -moz-transition: -moz-transform .3s cubic-bezier(.86, 0, .07, 1) .25s;
    transition: transform .3s cubic-bezier(.86, 0, .07, 1) .25s;
}

.page-title {
	background-color: var(--theme-color-01);
	position: relative;
	background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    z-index: 0;
    width: 100vw;
    height: 50vh;
	overflow: hidden;
}

.page-title::before {
    content: "";
    background-color: var(--theme-color-01-25);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
	backdrop-filter: blur(0.075rem);
    z-index: 1;
}

.page-title::after {
    content: "";
    background-image: url(../img/logos/logo-bg.webp);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    display: inline-block;
    overflow: hidden;
    width: 240px;
    height: 240px;
    position: absolute;
    left: 50%;
    top: 50%;
    opacity: .025;
    margin-top: -120px;
    margin-left: -120px;
}

.page-title.page-title-cus-01 {
    height: 35vh;
}

.page-title.page-title-cus-01::after {
    content: "";
    background-image: url(../img/logos/logo-bg.webp);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    display: inline-block;
    overflow: hidden;
    width: 180px;
    height: 180px;
    position: absolute;
    left: 50%;
    top: 50%;
    opacity: .025;
    margin-top: -90px;
	margin-left: -90px;
}

.page-title .page-title-text {
	position: absolute;
	bottom: 15%;
	color: var(--theme-color-02-75);
	font-size: 1rem;
	font-weight: 400;
	z-index: 2;
}

.page-title .page-title-bg {
    position: relative;
    width: 100%;
    height: 100%;
}

/*
.page-title .page-title-bg::before {
    content: "";
    background: var(--mask-color-02);
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
*/

.page-title .page-title-bg::after {
    content: "";
    background: var(--mask-color-03);
    position: absolute;
    right: 0;
    bottom: -1px;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.page-title .page-title-text a,
.page-title .page-title-text a:focus {
	color: var(--theme-color-02-75);
	display: inline-block;
	font-size: 1rem;
	font-weight: 400;
	margin-left: .25rem;
}

.page-title .page-title-text a:hover {
	color: var(--theme-color-02-75);
}

.page-title .page-title-text a::after {
    content: "/";
	margin-right: .5rem;
	color: var(--theme-color-02-75);
	font-size: .75rem;
	font-weight: 400;
}

.page-title .page-title-text a img {
	width: auto;
	height: 1.75rem;
	position: relative;
	opacity: .5;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.page-title .page-title-text a:hover img {
	opacity: 1;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.page-title .page-title-text span {
	margin-left: .25rem;
	font-size: 1rem;
	font-weight: 400;
	color: var(--theme-color-02-75);
}

.page-title .page-title-text span::after {
    content: "/";
	margin-right: .5rem;
	color: var(--theme-color-02-75);
	font-size: .75rem;
}

.page-title.web-hosting-emails-bg {
	background-image: url(../img/pages/web-hosting-emails-bg.webp);
}

.page-title.wordpress-hosting-emails-bg {
	background-image: url(../img/pages/wordpress-hosting-emails-bg.webp);
}

.page-title.ecommerce-hosting-emails-bg {
	background-image: url(../img/pages/ecommerce-hosting-emails-bg.webp);
}

.page-title.business-hosting-emails-bg {
	background-image: url(../img/pages/business-hosting-emails-bg.webp);
}

.page-title.search-domain-names-bg {
	background-image: url(../img/pages/search-domain-names-bg.webp);
}

.page-title.transfer-domain-names-bg {
	background-image: url(../img/pages/transfer-domain-names-bg.webp);
}

.page-title.register-domain-names-bg {
	background-image: url(../img/pages/register-domain-names-bg.webp);
}

.page-title.static-websites-marketing-bg {
	background-image: url(../img/pages/static-websites-marketing-bg.webp);
}

.page-title.wordpress-websites-marketing-bg {
	background-image: url(../img/pages/wordpress-websites-marketing-bg.webp);
}

.page-title.ecommerce-websites-marketing-bg {
	background-image: url(../img/pages/ecommerce-websites-marketing-bg.webp);
}

.page-title.digital-websites-marketing-bg {
	background-image: url(../img/pages/digital-websites-marketing-bg.webp);
}

.page-title.about-bg {
	background-image: url(../img/pages/about-bg.webp);
}

.page-title.all-in-one-bg {
	background-image: url(../img/pages/all-in-one-bg.webp);
}

.page-title.terms-conditions-bg {
	background-image: url(../img/pages/terms-conditions-bg.webp);
}

.page-title.help-bg {
	background-image: url(../img/pages/help-bg.webp);
}

.page-title.thanks-bg {
	background-image: url(../img/pages/thanks-bg.webp);
}

.page-title.error-404-bg {
	background-image: url(../img/pages/error-404-bg.webp);
}

@media (max-width: 576px) {
	.page-title::after {
		width: 180px;
		height: 180px;
		margin-top: -90px;
		margin-left: -90px;
	}
	.page-title.web-hosting-emails-bg {
		background-image: url(../img/pages/web-hosting-emails-bg-mob.webp);
	}
	.page-title.wordpress-hosting-emails-bg {
		background-image: url(../img/pages/wordpress-hosting-emails-bg-mob.webp);
	}
	.page-title.ecommerce-hosting-emails-bg {
		background-image: url(../img/pages/ecommerce-hosting-emails-bg-mob.webp);
	}
	.page-title.business-hosting-emails-bg {
		background-image: url(../img/pages/business-hosting-emails-bg-mob.webp);
	}
	.page-title.search-domain-names-bg {
		background-image: url(../img/pages/search-domain-names-bg-mob.webp);
	}
	.page-title.transfer-domain-names-bg {
		background-image: url(../img/pages/transfer-domain-names-bg-mob.webp);
	}
	.page-title.register-domain-names-bg {
		background-image: url(../img/pages/register-domain-names-bg-mob.webp);
	}
	.page-title.static-websites-marketing-bg {
		background-image: url(../img/pages/static-websites-marketing-bg-mob.webp);
	}
	.page-title.wordpress-websites-marketing-bg {
		background-image: url(../img/pages/wordpress-websites-marketing-bg-mob.webp);
	}
	.page-title.ecommerce-websites-marketing-bg {
		background-image: url(../img/pages/ecommerce-websites-marketing-bg-mob.webp);
	}
	.page-title.digital-websites-marketing-bg {
		background-image: url(../img/pages/digital-websites-marketing-bg-mob.webp);
	}
	.page-title.about-bg {
		background-image: url(../img/pages/about-bg-mob.webp);
	}
	.page-title.all-in-one-bg {
		background-image: url(../img/pages/all-in-one-bg-mob.webp);
	}
	.page-title.terms-conditions-bg {
		background-image: url(../img/pages/terms-conditions-bg-mob.webp);
	}
	.page-title.help-bg {
		background-image: url(../img/pages/help-bg-mob.webp);
	}
	.page-title.thanks-bg {
		background-image: url(../img/pages/thanks-bg-mob.webp);
	}
	.page-title.error-404-bg {
		background-image: url(../img/pages/error-404-bg-mob.webp);
	}
}

#isavailable,
#notavailable {
	display: none;
}

.available {
	position: relative;
	padding: 2rem;
	background-color: var(--theme-color-06-25);
	border: 1px solid var(--theme-color-06-50);
	border-radius: var(--border-radius-02);
}

.available .ava-title {
	background-color: var(--theme-color-06);
	color: var(--white-color);
	padding: .25rem .5rem;
	margin-bottom: 1.5rem;
	border-radius: var(--border-radius-03);
	font-weight: 500;
	display: inline-block;
}

.available p {
	margin-top: 1rem;
	margin-bottom: 1rem;
	color: var(--theme-color-02-75);
}

.available .box-02-det p {
	margin-top: 0;
	margin-bottom: 0;
	color: var(--theme-color-02-75);
	position: relative;
}

.available .box-02-det .p-point {
    margin-bottom: .25rem;
    margin-right: .75rem;
	font-size: .875rem;
	font-weight: 400;
	margin-top: 0.25rem;
}

.available .box-02-det .p-point::before {
    content: "\f111";
    font-family: var(--font-awesome);
    font-size: .25rem;
    font-weight: 900;
    margin-right: 0;
    position: absolute;
    top: .55rem;
    right: -.75rem;
}

.available a,
.available a:focus {
	position: relative;
	display: inline-block;
    padding: .75rem 2rem;
    text-align: center;
    background-color: var(--white-color);
    color: var(--theme-color-01);
    border: 1px solid var(--theme-color-01-15);
    border-bottom: 3px solid var(--theme-color-01-15);
    border-radius: var(--border-radius-02);
    font-size: 1.125rem;
    font-weight: 600;
	white-space: nowrap;
}

.available a:hover {
	color: var(--white-color);
	background-color: var(--theme-color-06);
	border: 1px solid var(--theme-color-01-15);
    border-bottom: 3px solid var(--theme-color-01-15);
}

.not-available {
	position: relative;
	padding: 2rem;
	background-color: var(--theme-color-05-25);
	border: 1px solid var(--theme-color-05-50);
	border-radius: var(--border-radius-02);
}

.not-available .ava-title {
	background-color: var(--theme-color-05);
	color: var(--white-color);
	padding: .25rem .5rem;
	margin-bottom: 1.5rem;
	border-radius: var(--border-radius-03);
	font-weight: 500;
	display: inline-block;
}

.not-available p {
	margin-top: 1rem;
	color: var(--theme-color-02-75);
}

.pricecus {
	position: relative;
	font-weight: 600;
	color: var(--theme-color-01-75);
	font-size: 1.25rem;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.show .pricecus {
	color: var(--theme-color-03);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.opy .regular-price {
	text-decoration: line-through;
	font-size: 1rem;
	font-weight: 300;
	opacity: .75;
}

.opy .regular-price.regular-price-cus {
	display: block;
}

.opy .regular-price.regular-price-cus2 {
	display: none;
}

.opy .offer-price {
	display: inline-block;
}

.opn .regular-price {
	opacity: 1;
	text-decoration: none;
	font-size: 1.25rem;
}

.opn .offer-price {
	display: none;
}

.opn .regular-price.regular-price-cus {
	display: none;
}

.opn .regular-price.regular-price-cus2 {
	display: inline-block;
}

.page-over {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100vw;
	height: 100vh;
	background: var(--black-color-25);
    backdrop-filter: blur(0.125rem);
	z-index: 1030;
	display: none;
}

.page-over::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 3.5rem;
	height: 3.5rem;
	border: 1px solid var(--white-color);
	border-top: .25rem solid transparent;
	border-radius: 50%;
	animation: spin .5s linear 0s infinite;
	margin-left: -1.75rem;
	margin-top: -1.75rem;
}

.page-over::before {
    content: "";
    background-image: url(../img/logos/logo-link.webp);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    display: inline-block;
    overflow: hidden;
    position: absolute;
	top: 50%;
	left: 50%;
	width: 2rem;
	height: 2rem;
    margin-left: -1rem;
	margin-top: -1rem;
}

.page-over.show {
	display: block;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }
  to{
    transform: rotate(359deg);
  }
}

.form-outline {
    position: relative;
}

.form-outline .form-label {
	margin-bottom: .25rem;
	font-size: .875rem;
}

.form-outline.form-check {
	display: flex;
}

.form-outline .form-control,
.form-outline .form-control:focus {
    padding: 1rem 1.25rem;
    font-size: 1.25rem;
    color: var(--white-color);
    background-color: var(--theme-color-04);
    border: 1px solid var(--theme-color-02-15);
	border-bottom: 3px solid var(--theme-color-02-15);
    border-radius: var(--border-radius-02);
    position: relative;
}

.form-outline .form-control.form-control-white,
.form-outline .form-control.form-control-white:focus {
	color: var(--theme-color-01);
    background-color: var(--white-color);
    border: 1px solid var(--theme-color-01-15);
	border-bottom: 3px solid var(--theme-color-01-15);
}

.form-outline .d-flex .form-control,
.form-outline .d-flex .form-control:focus {
    border-radius: var(--border-radius-06);
}

.form-outline .form-control::-ms-input-placeholder {
	color: var(--theme-color-02-50) !important;
	font-size: 1.25rem !important;
	opacity: 1 !important;
}

.form-outline .form-control::placeholder {
	color: var(--theme-color-02-50) !important;
	font-size: 1.25rem !important;
	opacity: 1 !important;
}

.form-outline .form-control.form-control-white::-ms-placeholder {
	color: var(--theme-color-01-50) !important;
	font-size: 1.25rem !important;
	opacity: 1 !important;
}

.form-outline .form-control.form-control-white::placeholder {
	color: var(--theme-color-01-50) !important;
	font-size: 1.25rem !important;
	opacity: 1 !important;
}

.form-outline .form-control.textarea-01 {
	resize: none;
	height: 9rem;
}

@media (max-width: 576px){
	.form-outline .form-control,
	.form-outline .form-control:focus {
		padding: 1rem 1rem;
		font-size: 1rem;
	}
	.form-outline .form-control::-ms-input-placeholder {
		font-size: 1rem !important;
	}

	.form-outline .form-control::placeholder {
		font-size: 1rem !important;
	}
}

.form-outline .form-control[type=search] {
    padding: .5rem;
    height: 2.25rem;
    background-color: var(--white-color);
    border: 1px solid var(--theme-color-01-50);
    border-radius: var(--border-radius-03);
    color: var(--theme-color-01);
    font-size: 1rem;
}

.form-outline .invalid-feedback, .error {
    width: 100%;
    position: relative;
    z-index: 2;
	margin-top: .25rem;
    color: var(--theme-color-02);
    background-color: var(--theme-color-05-75);
	border-radius: var(--border-radius-02);
    padding: .75rem;
    text-align: center;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.form-outline #g-recaptcha-response-error.invalid-feedback {
	 background-color: var(--yellow-color-75);
}

.form-outline.is-invalid .form-control {
    border: 1px solid var(--theme-color-05-50) !important;
	border-bottom: 3px solid var(--theme-color-05-50) !important;
	border-right: none; 
}

.hostingswiper .form-outline .form-check-input[type=checkbox],
.homehostingswiper .form-outline .form-check-input[type=checkbox] {
    border: 1px solid var(--theme-color-02-15);
    background-color: var(--transparent-color);
    position: relative;
    top: -3px;
    width: 20px;
    height: 20px;
    margin-left: .5rem;
}

.hostingswiper .form-outline .form-check-input[type=checkbox],
.homehostingswiper .form-outline .form-check-input[type=checkbox]{
    border-radius: .25rem;
}

.hostingswiper .form-outline .form-check-input:checked[type=checkbox],
.homehostingswiper .form-outline .form-check-input:checked[type=checkbox] {
    background-color: var(--transparent-color);
    border-color: var(--theme-color-02-15);
}

.hostingswiper .form-outline .form-check-input[type=checkbox]::after,
.homehostingswiper .form-outline .form-check-input[type=checkbox]::after {
    content: "\f00d";
    font-family: var(--font-awesome);
    font-size: 1rem;
    font-weight: 400;
    color: var(--theme-color-05);
    position: relative;
    top: -3px;
    right: 4px;
}

.hostingswiper .form-outline .form-check-input:checked[type=checkbox],
.homehostingswiper .form-outline .form-check-input:checked[type=checkbox] {
    background-image: none;
}

.hostingswiper .form-outline .form-check-input:checked[type=checkbox]::after,
.homehostingswiper .form-outline .form-check-input:checked[type=checkbox]::after {
    content: "\f00c";
    font-family: var(--font-awesome);
    font-size: .875rem;
    font-weight: 400;
    color: var(--white-color);
    position: relative;
    top: -2px;
    right: 2px;
}

.form-outline .form-check-label {
	cursor: pointer;
	width: calc(100% - 24px);
}

.form-outline .form-check-input[type=checkbox] {
    border: 1px solid var(--theme-color-01-75);
    background-color: var(--transparent-color);
    position: relative;
    top: -3px;
    width: 20px;
    height: 20px;
    margin-left: .5rem;
}

.form-outline .form-check-input[type=checkbox] {
    border-radius: .25rem;
}

.form-outline .form-check-input:checked[type=checkbox] {
    background-color: var(--transparent-color);
    border-color: var(--theme-color-01-75);
}

.form-outline .form-check-input:checked[type=checkbox] {
    background-image: none;
}

.form-outline .form-check-input:checked[type=checkbox]::after {
    content: "\f00c";
    font-family: var(--font-awesome);
    font-size: .875rem;
    font-weight: 400;
    color: var(--theme-color-03);
    position: relative;
    top: -3px;
    right: 2px;
}

.form-outline .form-check-input[type=radio] {
    border: 1px solid var(--theme-color-01-75);
    background-color: var(--transparent-color);
    position: relative;
    top: -2px;
    width: 20px;
    height: 20px;
    margin-left: .5rem;
}

.form-outline .form-check-input:checked[type=radio] {
    background-image: none;
	border: 1px solid var(--theme-color-03);
}

.form-outline .form-check-input:checked[type=radio]::after {
    content: "\f111";
    font-family: var(--font-awesome);
    font-size: .625rem;
    font-weight: 800;
    color: var(--theme-color-03);
    position: absolute;
    top: 2px;
    right: 4px;
    width: 10px;
    height: 10px;
}

.form-outline .form-control.input-select-cus {
    width: calc(100% - 16rem);
	border-left: 1px solid var(--theme-color-02-15)
}

.form-outline .btn-light,
.form-outline .btn-light:focus {
    color: var(--white-color);
    background-color: var(--transparent-color);
    border: none;
    outline: 0 !important;
    box-shadow: none !important;
}

.form-outline .btn.btn-light,
.form-outline .btn.btn-light:focus,
.form-outline .btn.btn-light:hover {
    display: inline-block;
    line-height: 1.25;
	font-size: 1rem;
    color: var(--white-color);
    background-color: var(--transparent-color);
    border: none;
    padding: 0;
    border-radius: 0;
    outline: 0 !important;
    box-shadow: none !important;
}

.form-outline .btn.btn-light.bs-placeholder {
    color: var(--white-color) !important;
}

.form-outline .dropdown-menu {
    padding: 0;
	width: 100%;
	right: -1.25rem !important;
    font-size: 1rem;
    color: var(--white-color);
    text-align: right;
    list-style: none;
    background-color: var(--white-color);
    background-clip: padding-box;
    border: 1px solid var(--theme-color-01-25);
    border-radius: 0 !important;
}

@media (max-width: 576px) {
    .form-outline .dropdown-menu {
        right: -1rem !important;
    }
}

.form-outline .bootstrap-select .dropdown-toggle .filter-option {
    left: auto;
    right: 0;
    float: right;
    text-align: right;
}

.bootstrap-select>.dropdown-toggle:after {
    margin-right: -0.5rem;
    color: var(--theme-color-02-75);
}

.form-outline .dropdown-item,
.form-outline .dropdown-item:focus {
    padding: 0.5rem 1rem;
    color: var(--theme-color-01);
	font-weight: 400;
}

.form-outline .dropdown-item:hover {
    color: var(--theme-color-01);
    background-color: var(--theme-color-02);
    padding: .5rem 1rem;
}

.form-outline .dropdown-item.active {
    color: var(--white-color);
    text-decoration: none;
    background-color: var(--theme-color-01);
}

.form-outline .dropdown-item.selected {
    color: var(--white-color);
    text-decoration: none;
    background-color: var(--theme-color-03-75);
}

.bootstrap-select .no-results {
    padding: .25rem;
    background-color: var(--theme-color-01);
    margin: 0 .25rem;
	font-size: .875rem;
}

.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark {
    left: 12px;
    top: 12px;
}

.form-outline .dropdown-item img {
	width: 1.5rem;
	height: auto;
	margin-left: .5rem;
    border: 1px solid var(--theme-color-02-15);
}

.form-outline .filter-option-inner-inner img {
	width: 1.5rem;
	height: auto;
	margin-left: .5rem;
	border: 1px solid var(--theme-color-02-15);
}

.box-01 {
	background-color: var(--white-color);
	border: 1px solid var(--theme-color-01-15);
    border-bottom: 3px solid var(--theme-color-01-15);
	border-radius: var(--border-radius-02);
	padding: 2rem;
	color: var(--theme-color-01);
}

.box-01 .box-01-det {
	padding-right: 1.75rem;
}

.box-01 .box-01-det p {
	position: relative;
	font-weight: 500;
}

.box-01 .box-01-det .p-point {
    margin-bottom: .25rem;
    margin-right: .75rem;
	font-size: .875rem;
	font-weight: 400;
	margin-top: 0.25rem;
}

.box-01 .box-01-det .p-point::before {
    content: "\f111";
    font-family: var(--font-awesome);
    font-size: .25rem;
    font-weight: 900;
    margin-right: 0;
    position: absolute;
    top: .55rem;
    right: -.75rem;
}

.section-cus-01 {
    position: relative;
	padding: 8rem 0;
}

.section-cus-02 {
    position: relative;
	padding: 4rem 0;
}

.section-cus-03 {
    position: relative;
	padding: 4rem 0 2rem 0;
}

.section-cus-04 {
    position: relative;
	padding: 0 0 4rem 0;
}

.section-cus-05 {
    position: relative;
	padding: 4rem 0 0 0;
}

.section-cus-06 {
    position: relative;
	padding: 2rem 0 0 0;
}

.section-cus-07 {
    position: relative;
	padding: 2rem 0 2rem 0;
}

.section-cus-08 {
    position: relative;
	padding: 8rem 0 4rem 0;
}

@media (max-width: 576px) {
	.section-cus-01 {
		padding: 4rem 0;	
	}
	.section-cus-02 {
		padding: 2rem 0;	
	}
	.section-cus-03 {
		padding: 2rem 0 1rem 0;	
	}
	.section-cus-04 {
		padding: 0 0 2rem 0;	
	}
	.section-cus-05 {
		padding: 2rem 0 0 0;	
	}
	.section-cus-06 {
		padding: 1rem 0 0 0;
	}
	.section-cus-07 {
		padding: 1rem 0 1rem 0;
	}
	.section-cus-08 {
		padding: 4rem 0 2rem 0;
	}
}

hr.hr-cus-01 {
	margin: .75rem 0;
    color: inherit;
    background-color: var(--theme-color-01-25);
    border: 0;
    opacity: 1;
}

.or-text {
	position: relative;
	width: 100%;
}

.or-text::after {
	content: "OR";
    color: var(--theme-color-01);
    background-color: var(--white-color);
    position: absolute;
    text-align: center;
	font-weight: 600;
    width: 3rem;
    height: 1.5rem;
    left: 50%;
    top: -1.5rem;
	margin-left: -1.5rem;
}

.back1cus,
.back2cus,
.back3cus,
.back4cus,
.back5cus {
	background-color: var(--transparent-color);
	border-radius: var(--border-radius-02);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.back1cus.show,
.back2cus.show,
.back3cus.show,
.back4cus.show,
.back5cus.show {
	background-color: var(--theme-color-02-75);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.total-price {
	background-color: var(--theme-color-02-15);
	padding: 1rem;
	text-align: center;
	border-radius: var(--border-radius-02);
	color: var(--theme-color-02-75);
}

.total-price .total-price-num {
	font-size: 1.5rem;
	font-weight: 600;
	background-color: var(--white-color);
    border: 1px solid var(--white-color);
    color: var(--theme-color-01);
    border-radius: var(--border-radius-02);
    padding: .75rem 0;
}

.total-price p {
	font-size: 1.125rem;
	font-weight: 500;
	color: var(--white-color);
}

.total-price .total-price-des {
	border-top: 1px solid var(--theme-color-02-25);
	margin-top: .75rem;
	padding-top: .75rem;
}

.total-price .total-price-des p {
	font-size: 1rem;
	font-weight: 400;
	color: var(--theme-color-02-75);
}

.total-price .total-price-des span {
	margin-top: .75rem;
	font-size: .875rem;
	font-weight: 300;
}

.add-package {
	position: relative;
	display: inline-block;
	text-align: center;
	margin: 1.5rem 0;
}

.add-package h4 {
	padding: .5rem 1rem;
	color: var(--white-color);
	background-color: var(--theme-color-03);
	display: inline-block;
	border-radius: var(--border-radius-03);
	font-size: 1rem;
	font-weight: 400;
}

.overflow-shopping {
	position: fixed;
	left: 0;
	right: 0;
    bottom: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 22;
    opacity: 0;
    visibility: hidden;
    background: var(--black-color-25);
	backdrop-filter: blur(0.125rem);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.overflow-shopping.show {
    opacity: 1;
    visibility: visible;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.shopping-widget {
	position: fixed;
	height: 100vh;
	width: 40vw;
	max-width: 600px;
	top: 0;
	left: -100%;
	padding: 2rem 2rem 4rem 2rem;
	color: var(--theme-color-02-75);
	background-color: var(--theme-color-01);
	border-right: 3px solid var(--theme-color-02-15);
	border-radius: var(--border-radius-06);
	z-index: 25;
	overflow-y: auto;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.shopping-widget h4 {
	color: var(--white-color);
}

.shopping-widget.show {
	left: 0;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.shopping-widget-close {
	display: inline-block;
}

.shopping-widget-close i,
.shopping-widget-close i:focus {
	font-size: 1.5rem;
	color: var(--theme-color-02-75);
	cursor: pointer;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.shopping-widget-close i:hover {
	color: var(--white-color);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

@media (max-width: 992px) {
	.shopping-widget {
		width: 75vw;
	}
}

@media (max-width: 576px) {
	.shopping-widget {
		width: 95vw;
		padding: 1rem 1rem 3rem 1rem;
	}
}

.thanks-cus {
	text-align: center;
	position: relative;
}

.thanks-cus::after {
    content: "";
    background-image: url(../img/logos/logo-bg.webp);
    background-size: contain;
    background-position: right bottom;
    background-repeat: no-repeat;
    display: inline-block;
    overflow: hidden;
    width: 180px;
    height: 180px;
    position: absolute;
    right: -2rem;
    bottom: -4rem;
    opacity: .015;
}

.thanks-cus h1 {
	background-color: var(--theme-color-06-50);
	padding: 1rem 2rem;
	border-radius: var(--border-radius-02);
	text-transform: uppercase;
}

.thanks-cus p {
	margin-top: 3rem;
	font-size: 1.25rem;
}

.thanks-cus p.thanks-p-cus {
	font-weight: 300;
}

.plan-cus-01 {
	position: relative;
	padding: 1.5rem;
	color: var(--theme-color-02-75);
	border: 1px solid var(--theme-color-02-15);
    border-bottom: 3px solid var(--theme-color-02-15);
	border-radius: var(--border-radius-02);
	overflow: hidden;
}

.plan-cus-01::before {
    content: "";
    background: var(--mask-color-01);
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
	z-index: -1;
}

.plan-cus-01::after {
    content: "";
    background-image: url(../img/logos/logo-bg.webp);
    background-size: contain;
    background-position: left bottom;
    background-repeat: no-repeat;
    display: inline-block;
    overflow: hidden;
    width: 150px;
    height: 150px;
    position: absolute;
    left: -1.5rem;
    bottom: -1.5rem;
    opacity: .015;
}

.plan-cus-01 .plan-head {
    margin: -1.5rem;
    text-align: center;
    padding: 1.5rem 1.5rem .5rem 1.5rem;
    margin-bottom: 0;
	border-radius: var(--border-radius-07);
}

.plan-cus-01 .plan-head h3 {
	font-weight: 400;
    color: var(--white-color);
    text-transform: uppercase;
}

.plan-cus-01 p {
	position: relative;
}

.plan-cus-01 p.plan-des {
	margin-top: 1rem;
	font-size: .875rem;
}

.plan-cus-01 p.plan-des-02 {
	margin-bottom: .5rem;
	font-size: .875rem;
	font-weight: 300;
}

.plan-cus-01 .plan-price {
	margin-top: 1rem;
	margin-bottom: 1rem;
	padding: .5rem 1rem;
	background-color: var(--transparent-color);
	border-radius: var(--border-radius-02);
	border: 1px solid var(--theme-color-02-15);
}

.plan-cus-01 .pricecus2 {
    position: relative;
    font-weight: 500;
    color: var(--white-color);
    font-size: 2rem;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.plan-cus-01 .opy .regular-price {
    opacity: .5;
    text-decoration: line-through;
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--theme-color-02-75);
}

.plan-cus-01 .opn .regular-price {
    font-size: 2rem;
}

.plan-cus-01 .plan-des-ex {
	display: inline-block;
}

.plan-cus-01 p.p-point-01 {
    margin-bottom: .25rem;
    margin-right: 1.25rem;
	font-size: .875rem;
	font-weight: 400;
	margin-top: .5rem;
}

.plan-cus-01 p.p-point-01::before {
    content: "\f00c";
    font-family: var(--font-awesome);
	color: var(--theme-color-06);
    font-size: .875rem;
    font-weight: 300;
    margin-right: 0;
    position: absolute;
    top: 1px;
    right: -1.25rem;
}

.plan-cus-01 p.p-point-01.point-x {
    margin-bottom: .25rem;
    margin-right: 1.25rem;
	font-size: .875rem;
	font-weight: 400;
	margin-top: .5rem;
}

.plan-cus-01 p.p-point-01.point-x::before {
    content: "\f00d";
    font-family: var(--font-awesome);
	color: var(--theme-color-05);
    font-size: .875rem;
    font-weight: 300;
    margin-right: 0;
    position: absolute;
    top: 1px;
    right: -1.25rem;
}

.plan-cus-01 .total-price-des {
	border-top: 1px solid var(--theme-color-02-15);
	color: var(--theme-color-02-75);
	margin-top: .75rem;
	padding-top: .75rem;
	text-align: center;
    font-size: 1rem;
}

.plan-cus-01 .total-price-des span {
	margin-top: .75rem;
	font-size: .875rem;
	font-weight: 400;
}

@media (max-width: 992px) {
	.plan-cus-01 .pricecus2 {
		font-size: 1.5rem;
	}
}

.plan-cus-02 {
	position: relative;
	padding: 1rem 1rem 1.5rem 1rem;
	color: var(--theme-color-02-75);
	border: 1px solid var(--theme-color-03-15);
    border-bottom: 3px solid var(--theme-color-03-15);
	border-radius: var(--border-radius-02);
	overflow: hidden;
}

.plan-cus-02::before {
    content: "";
    background: var(--mask-color-01);
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.plan-cus-02::after {
    content: "";
    background-image: url(../img/logos/logo-bg.webp);
    background-size: contain;
    background-position: left bottom;
    background-repeat: no-repeat;
    display: inline-block;
    overflow: hidden;
    width: 150px;
    height: 150px;
    position: absolute;
    left: -1.5rem;
    bottom: -1.5rem;
    opacity: .015;
}

.plan-cus-02 h4 {
	position: relative;
	color: var(--theme-color-02);
	margin-bottom: 1rem;
	margin-top: .5rem;
	text-transform: uppercase;
	display: inline-block;
}

.plan-cus-02 p {
	position: relative;
	margin-bottom: 1rem;
}

.hostingswiper {
	padding-bottom: 0;
}

.hostingswiper .swiper-pagination-bullet {
    width: .75rem;
    height: .75rem;
    display: inline-block;
    border-radius: 50%;
    background-color: var(--transparent-color);
	border: 1px solid var(--theme-color-03);
    opacity: 1;
}

.hostingswiper .swiper-pagination-bullet-active {
    width: .75rem;
    height: .75rem;
    display: inline-block;
    border-radius: 50%;
    background-color: var(--theme-color-03);
	border: 1px solid var(--theme-color-03);
    opacity: 1;
}

@media (min-width: 992px) {
	.hostingswiper .swiper-wrapper {
		transition-duration: 0ms !important;
		transform: translate3d(0px, 0px, 0px) !important;
	}
	.hostingswiper .swiper-pagination {
		display: none;
	}
	.hostingswiper .swiper-container {
		display: flex;
		flex-wrap: inherit;
		align-items: center;
		justify-content: space-between;
	}
	.hostingswiper .swiper-wrapper {
		--bs-gutter-x: 1.5rem;
		--bs-gutter-y: 0;
		display: flex;
		flex-wrap: wrap;
		margin-top: calc(var(--bs-gutter-y) * -1);
		margin-right: calc(var(--bs-gutter-x)/ -2);
		margin-left: calc(var(--bs-gutter-x)/ -2);
		max-width: 100%;
		padding-right: calc(var(--bs-gutter-x)/ 2);
		padding-left: calc(var(--bs-gutter-x)/ 2);
		margin-top: var(--bs-gutter-y);
	}
	.hostingswiper .swiper-slide {
		flex: 0 0 auto;
    	width: 33.3333333333% !important;
    	margin-right: 0 !important;
		margin-left: 0 !important;
		padding: .75rem !important;
	}
}

@media (max-width: 992px) {
	.hostingswiper {
		padding-bottom: 3.5rem;
	}
}

.homehostingswiper {
	padding-bottom: 0;
	width: 101%;
}

.homehostingswiper .swiper-pagination-bullet {
    width: .75rem;
    height: .75rem;
    display: inline-block;
    border-radius: 50%;
    background-color: var(--transparent-color);
	border: 1px solid var(--theme-color-03);
    opacity: 1;
}

.homehostingswiper .swiper-pagination-bullet-active {
    width: .75rem;
    height: .75rem;
    display: inline-block;
    border-radius: 50%;
    background-color: var(--theme-color-03);
	border: 1px solid var(--theme-color-03);
    opacity: 1;
}

.homehostingswiper {
	padding-bottom: 4rem;
}

.package-upgrade {
	color: var(--theme-color-02-75);
	position: relative;
}

.package-upgrade::after {
    content: "";
    background-image: url(../img/logos/logo-bg.webp);
    background-size: contain;
    background-position: left top;
    background-repeat: no-repeat;
    display: inline-block;
    overflow: hidden;
    width: 240px;
    height: 240px;
    position: absolute;
    left: -1rem;
    top: -3rem;
    opacity: .015;
}

.package-upgrade p {
	font-weight: 500;
	color: var(--theme-color-06);
}

.package-upgrade h4 {
	font-size: 1.5rem;
	position: relative;
	margin-right: 1.25rem;
}

.package-upgrade h4::before {
    content: "\f111";
    font-family: var(--font-awesome);
	color: var(--theme-color-06);
    font-size: .5rem;
    font-weight: 900;
    margin-right: 0;
    position: absolute;
    top: 10px;
    right: -1.25rem;
}

.package-upgrade h5 {
	font-size: 1.125rem;
	position: relative;
	margin-right: 1rem;
}

.package-upgrade h5::before {
    content: "\f111";
    font-family: var(--font-awesome);
	color: var(--theme-color-06);
    font-size: .35rem;
    font-weight: 900;
    margin-right: 0;
    position: absolute;
    top: 9px;
    right: -1rem;
}

.package-upgrade .opy .regular-price {
	text-decoration: line-through;
	font-size: 1rem;
	font-weight: 400;
	color: var(--theme-color-02-50);
}

.package-upgrade .opn .regular-price {
	opacity: 1;
	text-decoration: none;
	font-size: 1.5rem;
}

@media (max-width: 576px) {
	.package-upgrade h4 {
		font-size: 1.125rem;
	}
	.package-upgrade h5 {
		font-size: 1rem;
	}
}

.package-include {
	color: var(--theme-color-01);
	position: relative;
}

.package-include::after {
    content: "";
    background-image: url(../img/logos/logo-bg.webp);
    background-size: contain;
    background-position: right top;
    background-repeat: no-repeat;
    display: inline-block;
    overflow: hidden;
    width: 240px;
    height: 240px;
    position: absolute;
    right: 50%;
    top: 50%;
    opacity: .15;
	margin-right: -120px;
	margin-top: -120px
}

.package-include p.p-point-02 {
    margin-bottom: .5rem;
    margin-right: 1.5rem;
	font-size: 1rem;
	font-weight: 500;
	margin-top: .5rem;
	position: relative;
}

.package-include p.p-point-02::before {
    content: "\f00c";
    font-family: var(--font-awesome);
	color: var(--theme-color-03);
    font-size: 1rem;
    font-weight: 400;
    margin-right: 0;
    position: absolute;
    top: 0;
    right: -1.5rem;
}

.package-include h5 {
	font-size: 1.75rem;
	color: var(--theme-color-03);
	font-weight: 700;
	text-align: center;
}

.addons-upgrades {
	position: relative;
	color: var(--white-color);
}

.addons-upgrades::after {
    content: "";
    background-image: url(../img/logos/logo-bg.webp);
    background-size: contain;
    background-position: right top;
    background-repeat: no-repeat;
    display: inline-block;
    overflow: hidden;
    width: 240px;
    height: 240px;
    position: absolute;
    right: -1rem;
    top: -3rem;
    opacity: .05;
}

.addons-upgrades h6 {
	font-size: 1rem;
	font-weight: 400;
	position: relative;
	margin-right: 1rem;
}

.addons-upgrades h6::before {
    content: "\f111";
    font-family: var(--font-awesome);
	color: var(--white-color);
    font-size: .25rem;
    font-weight: 900;
    margin-right: 0;
    position: absolute;
    top: 10px;
    right: -1rem;
}

.addons-upgrades .opy .regular-price {
	text-decoration: line-through;
	font-size: 1rem;
	font-weight: 400;
	color: var(--white-color-75);
}

.addons-upgrades .opn .regular-price {
	opacity: 1;
	text-decoration: none;
	font-size: 1.5rem;
}

span.p-point-03 {
	position: relative;
	margin-right: 1rem;
	display: block;
}

span.p-point-03::before {
    content: "\f111";
    font-family: var(--font-awesome);
	color: var(--white-color);
    font-size: .25rem;
    font-weight: 900;
    margin-right: 0;
    position: absolute;
    top: 10px;
    right: -1rem;
}

.page-head-title {
	text-align: center;
	position: relative;
}

.page-head-title h1 span {
    font-weight: 300;
}

.page-head-title p {
	color: var(--theme-color-02-75);
}

.homeswiper {
	position: relative;
}

.homeswiper::after {
    content: "";
    background-image: url(../img/logos/logo-bg.webp);
    background-size: contain;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    display: inline-block;
    overflow: hidden;
    width: 300px;
    height: 300px;
    position: absolute;
    left: 50%;
    top: 50%;
    opacity: .025;
    margin-left: -150px;
    margin-top: -150px;
	z-index: 1;
}

.homeswiper .swiper-slide {
	background-color: var(--theme-color-01);
}

.homeswiper .home-page-title {
	background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    position: relative;
    z-index: -2;
    width: 100%;
    height: 80vh;
	text-align: start;
	font-size: 1.125rem;
	color: var(--white-color);
	filter: grayscale(25%);
}

@media (min-width: 1400px) {
	.homeswiper .home-page-title {
		height: 90vh;
	}	
}

.homeswiper .home-page-title::before {
	content: "";
    background-color: var(--theme-color-01-25);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.homeswiper .home-page-title::after {
    content: "";
    background: var(--mask-color-03);
    position: absolute;
    right: 0;
    bottom: -1px;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.homeswiper .home-page-text {
	position: absolute;
    height: auto;
    bottom: 5%;
	width: 100%;
	z-index: 2;
}

.homeswiper .home-page-text span {
	font-size: 3rem;
    font-weight: 700;
	text-transform: uppercase;
	display: inline-block;
	color: var(--theme-color-02);
}

.homeswiper .swiper-slide {
    overflow: hidden;
}

/*
.homeswiper .swiper-slide::before {
    content: "";
    background: var(--mask-color-02);
    position: absolute;
    right: 0;
    bottom: -1px;
    width: 100%;
    height: 100%;
    z-index: 1;
}
*/

.homeswiper .home-page-title.home-page-title-01 {
	background-image:url(../img/home/slide-show-01.webp);
}

.homeswiper .home-page-title.home-page-title-02 {
	background-image:url(../img/home/slide-show-02.webp);
}

.homeswiper .home-page-title.home-page-title-03 {
	background-image:url(../img/home/slide-show-03.webp);
}

@media (max-width: 576px) {
	.homeswiper .home-page-text span {
		font-size: 1.5rem;
	}
	.homeswiper .home-page-title.home-page-title-01 {
		background-image:url(../img/home/slide-show-01-mob.webp);
	}
	.homeswiper .home-page-title.home-page-title-02 {
		background-image:url(../img/home/slide-show-02-mob.webp);
	}
	.homeswiper .home-page-title.home-page-title-03 {
		background-image:url(../img/home/slide-show-03-mob.webp);
	}
}

.homeswiper .swiper-slide .swiper-slide-inner {
    width: 100%;
    height: 100%;
    background-color: var(--theme-color-01);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.homeswiper .swiper-slide .swiper-slide-inner-bg {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    -webkit-transition: opacity .6s ease-in-out, transform 2s ease .7s;
    -moz-transition: opacity .6s ease-in-out, transform 2s ease .7s;
    -ms-transition: opacity .6s ease-in-out, transform 2s ease .7s;
    transition: opacity .6s ease-in-out, transform 2s ease .7s;
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    transform: scale(1.15);
    opacity: 0.2;
    -moz-opacity: 0.2;
    -webkit-opacity: 0.2;
    filter: alpha(opacity=20);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
}

.homeswiper .swiper-slide.swiper-slide-active .swiper-slide-inner-bg {
	-webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    -moz-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.homeswiper .di-01 {
    animation-delay: 1.2s;
}

.footer-words {
	padding-bottom: 1rem;
	padding-top: 1rem;
	position: relative;
	background-color: var(--theme-color-03);
}

.footer-words .section-gradient-01 {
    background: var(--mask-color-04);
    width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

.footer-words .section-gradient-02 {
    background: var(--mask-color-05);
    width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
}

.footer-words .text-word-01 {
    width: 100%;
    color: var(--white-color);
    font-size: 3rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 3rem;
    position: relative;
    top: 0;
    white-space: nowrap;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.footer-words .scroll-lef-01 {
    display: inline-block;
    -webkit-animation: scrolling-left-01 45s infinite linear;
    animation: scrolling-left-01 45s infinite linear;
}

.footer-words .scroll-lef-02 {
    display: inline-block;
    -webkit-animation: scrolling-left-02 45s linear infinite;
    animation: scrolling-left-02 45s linear infinite;
}

.footer-words .scroll-lef-01 span,
.footer-words .scroll-lef-02 span {
    position: relative;
	padding-right: 96px;
	display: inline-block;
}

.footer-words .scroll-lef-01 span::after,
.footer-words .scroll-lef-02 span::after {
    content: "";
	background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: right center;
	background-image:url(../img/logos/logo-footer.webp);
	position: absolute;
	width: 48px;
	height: 48px;
	top: 3px;
	right: 24px;
}

@media (max-width: 992px) {
    .footer-words .text-word-01 {
        font-size: 3rem;
        line-height: 3.5rem;
    }
    .footer-words .scroll-lef-01 {
        -webkit-animation: scrolling-left-01 45s infinite linear;
        animation: scrolling-left-01 45s infinite linear;
    }
    .footer-words .scroll-lef-02 {
        -webkit-animation: scrolling-left-02 45s linear infinite;
        animation: scrolling-left-02 45s linear infinite;
    }
	.footer-words .scroll-lef-01 span,
	.footer-words .scroll-lef-02 span {
		padding-right: 112px;
	}

	.footer-words .scroll-lef-01 span::after,
	.footer-words .scroll-lef-02 span::after {
		width: 56px;
		height: 56px;
		top: 2px;
		right: 28px;
	}
}

@media (max-width: 576px) {
    .footer-words .text-word-01 {
        font-size: 2.25rem;
        line-height: 2rem;
    }
    .footer-words .scroll-lef-01 {
        -webkit-animation: scrolling-left-01 30s infinite linear;
        animation: scrolling-left-01 30s infinite linear;
    }
    .footer-words .scroll-lef-02 {
        -webkit-animation: scrolling-left-02 30s linear infinite;
        animation: scrolling-left-02 30s linear infinite;
    }
	.footer-words .scroll-lef-01 span,
	.footer-words .scroll-lef-02 span {
		padding-right: 64px;
	}
	.footer-words .scroll-lef-01 span::after,
	.footer-words .scroll-lef-02 span::after {
		width: 32px;
		height: 32px;
		top: 1px;
		right: 16px;
	}
}

@keyframes scrolling-left-01 {
    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@keyframes scrolling-left-02 {
    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

.sec-line-bot-01 {
	width: 100%;
}

.sec-line-bot-01::before {
	content: "";
	position: absolute;
	height: 2.5rem;
	width: 1px;
	left: 50%;
	bottom: 0;
}

.sec-line-bot-01::after {
	content: "";
	position: absolute;
	height: 7px;
	width: 7px;
	left: 50%;
	bottom: 2.5rem;
	border-radius: 100%;
	margin-left: -3px;
}

.sec-line-top-01 {
	width: 100%;
}

.sec-line-top-01::before {
	content: "";
	position: absolute;
	height: 2.5rem;
	width: 1px;
	left: 50%;
	top: 0;
}

.sec-line-top-01::after {
	content: "";
	position: absolute;
	height: 7px;
	width: 7px;
	left: 50%;
	top: 2.5rem;
	border-radius: 100%;
	margin-left: -3px;
}

@media (max-width: 576px) {
	.sec-line-bot-01::before {
		height: 1.75rem;
	}
	.sec-line-bot-01::after {
		bottom: 1.75rem;
	}
	.sec-line-top-01::before {
		height: 1.75rem;
	}
	.sec-line-top-01::after {
		top: 1.75rem;
	}
}

.sec-line-bg-00::before {
	background-color: var(--white-color-75);
}

.sec-line-bg-00::after {
	background-color: var(--white-color-75);
}

.sec-line-bg-01::before {
	background-color: var(--theme-color-01-75);
}

.sec-line-bg-01::after {
	background-color: var(--theme-color-01-75);
}

.sec-line-bg-02::before {
	background-color: var(--theme-color-02-75);
}

.sec-line-bg-02::after {
	background-color: var(--theme-color-02-75);
}

.sec-line-bg-03::before {
	background-color: var(--theme-color-03-75);
}

.sec-line-bg-03::after {
	background-color: var(--theme-color-03-75);
}

.sec-line-bg-04::before {
	background-color: var(--theme-color-04-75);
}

.sec-line-bg-04::after {
	background-color: var(--theme-color-04-75);
}

.sec-line-bg-05::before {
	background-color: var(--theme-color-05-75);
}

.sec-line-bg-05::after {
	background-color: var(--theme-color-05-75);
}

.sec-line-bg-06::before {
	background-color: var(--theme-color-06-75);
}

.sec-line-bg-06::after {
	background-color: var(--theme-color-06-75);
}

.widget-img {
	position: relative;
    margin: 0 0 .75rem 0;
    padding: 0;
    padding-top: 45%;
    overflow: hidden;
    border-radius: var(--border-radius-02);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
	border: 1px solid var(--theme-color-02-15);
    border-bottom: 3px solid var(--theme-color-02-15);
}

.widget-img::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: var(--theme-color-01-25);
}

.img-cus-bor {
	border-radius: var(--border-radius-02);
	border: 1px solid var(--theme-color-02-15);
	border-bottom: 3px solid var(--theme-color-02-15);
	overflow: hidden;
}

.counter-number {
    display: inline-block;
    font-size: 6rem;
    font-weight: 700;
	color: var(--transparent-color);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--white-color);
	line-height: normal;
}

@media (max-width: 992px) {
	.counter-number {
		font-size: 5rem;
	}	
}

.ifram-map {
	border: none;
    width: 100%;
    height: 30rem;
    margin: 0;
	margin-bottom: -.5rem;
    padding: 0;
}

.valcode {
	width: 100%;
    position: relative;
    z-index: 2;
    margin-top: 0.25rem;
    color: var(--white-color);
    background-color: var(--theme-color-06-75);
    border-radius: var(--border-radius-02);
    padding: .75rem;
    text-align: center;
	font-size: .875em;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.valcode .valcodepre {
	font-size: 1.25em;
	font-weight: 600;
}

.valcode .newpricex {
	font-size: 1.5em;
	font-weight: 600;
}

.invalcode {
	width: 100%;
    position: relative;
    z-index: 2;
    margin-top: 0.25rem;
    color: var(--theme-color-02);
    background-color: var(--theme-color-05-75);
    border-radius: var(--border-radius-02);
    padding: .75rem;
    text-align: center;
	font-size: .875em;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.priceaftercode {
	position: relative;
}

.priceaftercode.show {
	text-decoration: line-through;
	opacity: .75;
}

.cus-input-01 {
    position: relative;
	text-align: center;
}

.cus-input-01 button {
    background-color: var(--transparent-color);
    border: none;
    padding: 1rem;
    margin: 0;
    display: inline-block;
    color: var(--theme-color-02);
}

.cus-input-01 button:disabled {
    pointer-events: none;
    cursor: default;
    color: var(--theme-color-02-25);
}

.cus-input-01 .form-control,
.cus-input-01 .form-control:focus {
	padding: 0.5rem 1.25rem;
    text-align: center;
	border-radius: var(--border-radius-02) !important;
}

p.min-max {
	font-size: .875rem;
	font-weight: 300;
	color: var(--theme-color-02-50);
}
