@import url('https://fonts.googleapis.com/css2?family=Saira+Semi+Condensed:wght@100;200;300;400;500;600;700;800;900&family=Saira:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");

/* --------------------------------------------------------------------------
comopany name : RedCheap Theme
Server name : rctheme.com
contact Now : info@rctheme.com

---------------------------------------------------------------------------*/
/*


1. impot Files
2. body css
3. custom button
4. preloader
5. back to top button
6. top bar
7. header
/*

/* --------------------------------------------------------------------------
                           1. import Files
---------------------------------------------------------------------------*/
@import url('bootstrap.min.css');
@import url('framework.css');
@import url('slick.css');


/* --------------------------------------------------------------------------
                           2. body css
---------------------------------------------------------------------------*/





/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--color-white);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}


/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 995;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--color-white);
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(var(--color-primary-rgb), 0.85);
  color: var(--color-white);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}




* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
 font-family: 'Saira', sans-serif;
  text-transform: capitalize;
  text-decoration: none;
}

/*img{
    max-width: 100%;
    height: auto;
}*/

body {
  background-color: #000000;
}

body ul {
  margin: 0px;
  padding: 0px;
}

body ul li,
a {
  text-decoration: none;
  list-style: none;
}

body p {
  color: #E4E4E4;
}


/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #1c1b1b;
  height: 40px;
  font-size: 15px;
  transition: all 0.5s;
  color: var(--color-white);
  padding: 0;
}

#topbar .contact-info i {
  font-style: normal;
  color: var(--color-white);
}

#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: var(--color-white);
}

#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  transition: 0.3s;
}

#topbar .contact-info i a:hover {
  color: var(--color-primary);
}

#topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

#topbar .social-links a:hover {
  color: white;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  position: absolute;
  width: 100%;
  background: var(--color-black);
}

.header.sticked {
  box-shadow: 0px 2px 20px rgba(var(--color-secondary-rgb), 0.1);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}

.header .logo img {
  max-height: 50px;
  margin-right: 6px;
}



.header .logo h1 {
  font-size: 50px;
  font-weight: 500;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  margin: 0px;
  align-items: center;
  display: flex;
}



.btn-getstarted,
.btn-getstarted:focus {
  background-color: var(--color-primary);
  border-radius: 6px;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  height: 50px;
  line-height: 50px;
  overflow: hidden;
  padding: 0px 40px;
  position: relative;
  text-align: center;
  text-transform: capitalize;
  transition: 1s;
  z-index: 1;
  color: var(--color-black);
}

.btn-getstarted:hover,
.btn-getstarted:focus:hover {
  color: var(--color-white);
  background: var(--color-primary);
}



@media (max-width: 1279px) {

  .btn-getstarted,
  .btn-getstarted:focus {
    margin-right: 50px;
  }
}


@media (max-width: 402px) {

  .btn-getstarted,
  .btn-getstarted:focus {
    display: none;
  }
}

/*--------------------------------------------------------------
# Desktop Navigation 
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
    position: relative;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 21px 20px;
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 500;
/*    color: var(--color-secondary);*/
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    color: #fff;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    transition: all 0.3s ease-in-out 0s;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
    color: var(--color-secondary);
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    transform: scaleX(0.7);
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown a:hover:before,
  .navbar .dropdown:hover>a:before,
  .navbar .dropdown .active:before {
    visibility: hidden;
  }

  .navbar .dropdown a:hover,
  .navbar .dropdown .active,
  .navbar .dropdown .active:focus,
  .navbar .dropdown:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown>a>i {
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar .dropdown>a:hover>i,
  .navbar .dropdown:hover>a>i {
    transform: rotate(180deg);
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    margin: 0;
    padding: 16px 0 16px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--color-secondary);
    transition: 0.3s;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 8px 21px;
    font-size: 14px;
    text-transform: none;
    font-weight: 500;
    color: var(--color-black);
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    visibility: visible;
  }

  .navbar .megamenu {
    position: static;
  }

  .navbar .megamenu ul {
    display: flex;
    align-items: flex-start;
    padding: 16px 0 16px 0;
  }

  .navbar .megamenu ul li {
    flex: 1;
  }

  .navbar .megamenu ul li a,
  .navbar .megamenu ul li:hover>a {
    color: var(--color-black);
    background: none;
  }

  .navbar .megamenu ul li a:hover,
  .navbar .megamenu ul li .active,
  .navbar .megamenu ul li .active:hover {
    color: var(--color-primary);

  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }

  .navbar .dropdown li:hover .multi-dropdown{
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}



@media (min-width: 1280px) and (max-width: 1366px) {
  /*.navbar .dropdown .dropdown ul {
    left: -90%;
  }*/

  /*.navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }*/
  .navbar .dropdown .dropdown:hover .multi-dropdown {
    left: 100%;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: calc(100% - 70px);
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
  position: absolute;
  inset: 0;
  padding: 10px 0;
  margin: 0;
  background: #066843;
  overflow-y: auto;
  transition: 0.3s;
  z-index: 9998;
}

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(var(--color-white-rgb), 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-white);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid rgba(var(--color-secondary-light-rgb), 0.3);
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

 .mobile-nav-toggle {
  display: block !important;
  color: var(--color-secondary);
  font-size: 28px;
  cursor: pointer;
  line-height: 0;
  transition: 0.5s;
  position: fixed;
  top: 65px;
  z-index: 9999;
  right: 20px;
}

  .header.sticked .mobile-nav-toggle {
  top: 24px;
}

  .mobile-nav-toggle.bi-x {
    color: var(--color-white);
  }

  .mobile-nav-active {
    overflow: hidden;
    z-index: 9995;
    position: relative;
  }

  .mobile-nav-active .navbar {
    left: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(var(--color-secondary-rgb), 0.8);
    z-index: 9996;
  }
}


/*--------------------------------------------------------------
# Banner
--------------------------------------------------------------*/
.hero-banner {
  padding-bottom: 100px;
  padding-top: 150px;
}

.hero-banner {
  background: #0f0f0f;
}


.hero-banner .inner h5 {
  font-size: 15px;
  color: var(--color-secondary);
  font-weight: 500;
  line-height: 1.1;
}

.hero-banner .inner h5.baddges {
  background-color: rgba(255, 220, 96, .21);
  border-radius: 30px;
  padding: 10px 30px;
}

.hero-banner .inner h1 {
  color: var(--color-secondary);
  font-weight: 700;
  line-height: 1.3;
}


@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-banner .inner h1 {
    font-size: 48px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .hero-banner .inner h1 {
    font-size: 38px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-banner .inner h1 {
    font-size: 35px;
  }
}


@media only screen and (max-width: 575px) {
  .hero-banner .inner h1 {
    font-size: 28px;
  }
}

.hero-banner .inner p {
  line-height: 1.6;
}



/*--------------------------------------------------------------
# section
--------------------------------------------------------------*/

.cardstyle-one {
  background-image: url(../images/pricingbg32.png), linear-gradient(#1E1E1E, #1E1E1E);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 30px;
  border-radius: 5px;
  transition: 0.5s;
}

.cardstyle-one {
  background-color: #171717;
  border: 1px solid rgba(66, 59, 59, 0.7);
}

.cardstyle-one:hover {
  background-image: url(../images/pricingbg32.png), linear-gradient(rgba(117, 218, 180, 0.1), rgba(117, 218, 180, 0.1));
}

.cardstyle-one svg {
  fill: var(--color-primary);
  width: 60px;
  height: 50px;
  margin-bottom: 20px;
}

section li {
  color: #ffffff;
}

.cardstyle-one li {
  display: flex;
  align-items: center;
}

.list-dot li svg {
  fill: var(--color-primary);
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 0;
}

/*--------------------------------------------------------------
# plans
--------------------------------------------------------------*/
.plan-content {
  padding: 30px;
  background-image: url(../images/pricingbg31.png), linear-gradient(#121212, #121212);
  border: 1px solid #1E1E1E;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  border-radius: 10px;
}

.plan-bg {
  background: url(../images/pricingbg32.png)hsl(154.6, 95.9%, 38.6%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}


.plan-head h2 {
  font-size: 50px;
  font-weight: 600;
}

.plan-head span {
  color: var(--color-primary);
  font-size: 25px;
  margin-bottom: 20px;
  display: block;
  font-weight: 500;
}

.plan-head .mly {
  color: var(--color-primary);
  font-size: 18px;
}

.plan-listing li {
  line-height: 38px;
  display: flex;
  align-items: center;
}

.plan-listing li svg {
  fill: var(--color-primary);
  margin-right: 10px;
  width: 20px;
  height: 20px;
}

.plan-bg-text h2,
.plan-bg-text svg,
.plan-bg-text span {
  fill: var(--color-black) !important;
  color: var(--color-black);
}

.plan-bg-text .mly {
  color: var(--color-white);
}

.plan-listing li svg {
  fill: var(--color-primary);
  margin-right: 10px;
  width: 20px;
  height: 20px;
}

.plan-bg-text li {
  color: #202020;
}





.feature-one.inner-content h2,
.feature-one.inner-content p {
  margin-bottom: 20px;
  line-height: 30px;
}

.about-btn a {
  display: inline-flex;
}

.about-btn a svg {
  width: 20px;
  height: 20px;
  fill: var(--color-primary);
  margin-left: 10px;
  transition: all .5s;
}

.about-btn:hover a svg {
  rotate: 45deg;
}

.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style) #4f4f4f !important;
}

.list-arrow {
  display: flex;
  flex-wrap: wrap;
}

.list-arrow li {
  line-height: 40px;
  width: 50%;
}

.list-arrow li svg {
  fill: var(--color-primary);
  margin-right: 10px;
}

.counter-down {
  background-color: #1b1f23;
  padding-bottom: 185px;
}

.counter-container svg {
  width: 40px;
  height: 40px;
  fill: var(--color-primary);
}

.counter-container span {
  font-size: 15px;
  color: #B5B5B5;
}

.counter-container .purecounter {
  font-size: 40px;
  margin-top: 10px;
  color: var(--color-white);
}



.onclick {


  position: relative;
  z-index: 2;
  overflow: unset;
}

.onclick>.top-up-section {
  margin-top: -200px;
  background-color: #161A1E;
  border-radius: 10px;
  padding-top: 50px;
  padding-bottom: 50px;

}


.inner-onclick img {
  width: 200px;
  height: 100px;
  border-radius: 10px;
  margin-right: 50px;
}




.homebanner-bg {
  background-image: url(../images/homebannerbg.jpg), linear-gradient(#1d1d1d, #1d1d1d);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.bg-dark-secondary {
  background-color: #1E1C22;
}

.card-style-two {
  position: relative;
  overflow: hidden;
}

.card-style-two {
  background-color: #19191c;
  padding: 30px 30px 162px 30px;
  border-radius: 10px;
}

.background-img {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  z-index: -2;
  transition: 0.5s;
  opacity: 0;
}

.background-img img {
  width: 100%;
  height: 100%;
}

.background-img:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(23, 24, 28, 0.75);
  transition: 0.5s;
}

.card-style-two {
  position: relative;
  border-radius: 10px;
  z-index: 1;
  padding: 30px 30px 50px 30px;
  overflow: hidden;
  transition: 0.5s;
}

.card-style-two:hover {
  box-shadow: inset -0px 0px 30px -0px var(--color-primary), inset 10px 11px 0px -100px var(--color-primary);
}

.card-style-two .icon-top {
  margin-right: 50px;
}

.card-style-two .icon-top svg {
  fill: var(--color-primary);
  width: 50px;
  height: 50px;
}


.plan-listing-two li {
  line-height: 30px;
  font-size: 18px;
  font-weight: 300;
  border-bottom: 1px solid #464646;
  text-align: center;
}

@media(max-width:767px){

.plan-listing-two li {
   text-align:start; 
}

}

.plan-listing-two li:last-child {
  border-bottom: unset;
  margin-top: 10px;
}

.plan-listing-two li select {
  padding: 5px 3px;
  border: unset;
  font-size: 15px;
  width: 90%;
}
.plan-listing-two li a {
  color: var(--color-primary);
}

.btncenter {
  display: flex;
  margin: auto;
  margin-top: 20px;
}

@media(max-width:767px){
  
.btncenter {
  margin: 20px 0;
}


}

.plan-content {
  height: 100%;
}

.plan-content .plan-amount {
  font-size: 29px;
}



.contact-us {
  background-image: url(../images/callcenter.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  position: relative;
}

.contact-us::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.77) 0%, #0F0F0F 100%);
  z-index: -1;
}

.border-seprate {
  display: inline-block;
  border-bottom: 2px solid;
  position: relative;
  bottom: 0;
  width: 58px;
  border-bottom-color: var(--color-primary);
  margin-bottom: 10px;
}

.card-style-three svg {
  fill: var(--color-primary);
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.new-domains {
  background-image: url(../images/domains.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  position: relative;
}

.new-domains::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.54) 0%, #0F0F0F 100%);
  z-index: -1;
}

/*--------------------------------------------------------------
# testimonial-two
--------------------------------------------------------------*/

.single-testimonial.slick-slide {
  transition: all .5s;
}

.testimonail-wrap .testimonial-list .slick-slide:not(.slick-current) {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0.5;

}

.single-testimonial.slick-slide.slick-current.slick-active.slick-center {
  opacity: 1;
}

.single-testimonial {
  position: relative;
}

.single-testimonial .client-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -133%);
}

.single-testimonial .client-details {
  padding-top: 70px;
}

@media(max-width:480px) {

.single-testimonial .client-details {
  padding-top: 107px;
}

}

.single-testimonial .client-details .inner {

  padding: 20px;
  padding-top: 70px;
  text-align: center;
  background: #3e3d3d;
  border-radius: 8px;
}



.client-img img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
}


.testimonial-icon svg {
  width: 50px;
  height: 50px;
  fill: var(--color-primary)
}

.bi-star-fill {
  width: 36px !important;
  height: 36px !important;
  fill: var(--color-primary)
}

.color-primary {
  color: var(--color-primary);
}

.auther-img img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.card-style-four {
  background-color: #0b0b0b;
  padding: 30px 30px 70px 30px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  z-index: 4;
}

.card-style-four-img {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: .5s;
  opacity: 0;
  z-index: -1;
  left: 0;
  top: 0;
}

 .card-style-four .card-style-four-img::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(23, 24, 28, 0.75);
  transition: 0.5s;
}

.card-style-four:hover .card-style-four-img{ 
  opacity: 1;
  z-index: -1;
}
.card-style-four-img img{
  width: 100%;
  height: 100%;
}



.card-style-four h2 {
  font-weight: 700;
  font-size: 50px;
  color: #938e8e !important;
}

.card-style-four-icon {
  right: 30px;
  bottom: 20px;
  transition: 0.5s;
  transform: scale(1);
  transform-origin: bottom right;
  margin-top: 70px;
  position: absolute;
}

.card-style-four-icon::after {
  content: "";
  background-color: #152a25;
  position: absolute;
  height: 160px;
  width: 160px;
  border-radius: 50%;
  bottom: -97px;
  right: -86px;
}

.card-style-four-icon svg {
  fill: var(--color-primary);
  width: 41px;
  height: 41px;
  right: -7px;
  z-index: 2;
  bottom: -8px;
  position: absolute;
}

.card-style-four:hover .card-style-four-icon {
  opacity: 0;
  transform: scale(0);
}

.team-img{
  position: relative;
}

.team-social-post ul {
  justify-content: space-between;
  position: relative;
  bottom: -231px;
}
.team-social-post ul li i {
  color: var(--color-white);
  font-size: 20px;
  transition: all .5s;
}

.team-social-post ul li i:hover {
  color: var(--color-primary);
}


.team-post{
  margin-top: 20px;
}
.team-post span {
  font-weight: 400;
  font-size: 16px;
  color: #b5b5b5;
}

.team-content .team-img .team-social-post{
 padding: 0px 20px;
}



.team-content .team-img .team-social-post {
  padding: 0px 48px;
  width: 100%;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  background: linear-gradient(176.24deg, rgba(29, 29, 29, 0) 10.39%, #1D1D1D 86.62%);
  opacity: 0;
  transform-origin: bottom;
  transition: .5s;
  transform: scaleY(0);
}

.team-content:hover .team-social-post {
  transform: scaleY(1);
  opacity: 1;
}


.feature-style-five-card {
  padding: 41px 30px;
  background: #252D2A;
  border-radius: 10px;
  transition: all .5s;
  height: 100%;
}

.feature-style-five-card:hover {
  background: #2fb080;
}


.feature-style-five-card .icon{
  height: 80px;
  width: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 28px;
  transition: var(--transition);
}

.feature-style-five-card .icon{
  background-color: var(--color-primary);
  z-index: 2;
  transition: all .5s;
}
.feature-style-five-card svg {
  fill: var(--color-black);
  width: 43px;
  height: 43px;
  transition: all .5s;
}

.feature-style-five-card:hover .icon {
background-color: #252d2a;
} 
.feature-style-five-card:hover  svg{
  fill: var(--color-white);
} 

.feature-style-five-card h5{
  margin-bottom: 20px;
}
.feature-style-five-card p{
  margin: 0;
  padding: 0;
  line-height: 30px;
}


.pricing-billing-duration {
  text-align: right; }
  @media only screen and (max-width: 767px) {
    .pricing-billing-duration {
      text-align: left; } }
  .pricing-billing-duration ul {
  background: rgba(224, 227, 255, 0.27);
  border-radius: 5px;
  padding: 10px;
  display: inline-block;
}

    .pricing-billing-duration ul .nav-item {
      float: left;
      margin: 0; }
      .pricing-billing-duration ul .nav-item .nav-link {
        height: 40px;
        line-height: 40px;
        font-weight: 700;
        font-size: 18px;
        line-height: 28px;
        color: var(--color-heading);
        border: 0 none;
        background: transparent;
        padding: 0 25px;
        border-radius: 3px; }
        .pricing-billing-duration ul .nav-item .nav-link.active {
          background: var(--color-primary);
          color: var(--color-white); }


.contact-us-bg {
  position: relative;
  background-image: url(../images/contact-bg.png);
  background-size: unset;
  background-repeat: no-repeat;
  z-index: 1;
  background-position: center;
  padding: 140px 0px 140px;
}

@media(max-width:480px){
  .contact-us-bg {
  background-size:cover;
  background-position: unset;
  padding: 100px 0px 100px;
}
}


.contact-us-bg .inner-content h1 {
  font-size: 65px;
  font-weight: 600;
  margin-bottom: 20px;
}


.contact-us-bg-list{
  font-size: 20px;
  color: var(--color-white);
}

.contact-us-bg-list a{
  font-size: 20px;
  color: var(--color-primary);
}

.contact-us-bg-img{
  width: 250px;
  height: auto;
  position: absolute;
  bottom: 0;
  right: 150px;
}


.contact-us-bg-img::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 130px 130px 0px 0px;
  background: rgba(29, 29, 29, 0.6);
}

@media (max-width: 991px) {
  .contact-us-bg-img{
    display: none;
  }
}


.contact-us-bg-img img{
  border-radius: 130px 130px 0px 0px;
}

.contact-support-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  justify-content: center;
  display: flex;
  border: 2px solid var(--color-primary);
  margin-right: 20px;
}

.contact-support-icon svg {
  fill: var(--color-primary);
  width: 21px;
  height: 21px;
  text-align: center;
  align-items: center;
}

.contact-support-info {
  font-size: 16px;
  font-weight: 500;
  color: #B5B5B5;
}

 .social-icon-bdr li{
  align-items: center;
  display: flex;
}

 .social-icon-bdr li a{
  border: 1px solid aliceblue;
  display: inline-grid;
  margin-right: 20px;
  border-radius: 5px;
  transition: all .5s;
}

 .social-icon-bdr li a:hover{
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
}



 .social-icon-bdr li a:hover svg{
  fill: var(--color-white) !important;
}



.form-content{
  background-color: #161A1E;
  border-radius: 10px;
  padding: 0px 20px 20px 30px;
}

.form-content .form-title{
  padding: 25px;
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form form label{
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: var(--color-white);
  margin-bottom: 8px;
}
.contact-form form input{
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  height: 41px;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #dedada;
  padding: 10px 15px;
}

.contact-form form select{
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  height: 41px;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #dedada;
  padding: 10px 15px;
}


.contact-form .form-control:focus {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.05);
}

 .contact-form  form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  height: 200px;
  font-family: var(--font-saira);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #dedada;
  padding: 10px 15px;
}

.cutome-btn{
  border: unset;
}


.blog-content{
  position: relative;
  height: 100%;
}
.h-100{
  height: 100%;
}
.blog-img{
  overflow: hidden;
}
.blog-img img{
position: relative;
border-radius: 5px 5px 0px 0px;
overflow: hidden;
transition: 0.5s;
}

.blog-content:hover .blog-img img{
  transform: scale(1.05);
}

.blog-tag{
  width: fit-content;
  overflow: hidden;
}

.blog-content .blog-tag a {
  font-weight: 600;
  font-size: 13px;
  color: var(--color-black);
  background: var(--color-primary);
  border-radius: 0px 5px 0px 0px;
  padding: 0px 20px;
  transition: 0.5s;
  position: absolute;
  overflow: hidden;
  z-index: 1;
  top: 0;
  right: 0;
}
.blog-content .blog-tag a:hover{
  color: var(--color-white);
}



.blog-info{
  background-color: #151515;
  transition: all .5s;
}

.blog-info h4:hover{
  color: var(--color-primary);
  transition: all .5s;
}
.blog-content:hover .blog-info{
  background: #292929;
}

.blog .social-area ul {
  padding: 0px 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  transform: scaleX(0);
  transition: 0.5s;
  transform-origin: right;
  position: absolute;
  right: 23px;
}

.blog .social-area:hover ul{
  transform: scaleX(1);
  position: absolute;
  z-index: 9;
  right: 23px;
}
.blog .social-area ul li{
  padding-left: 15px;
}
.blog .social-area ul li:first-child{
  padding-left: 0px;
}

.blog .social-area ul li a svg{
  fill: var(--color-white);
  transition: all .5s;
}

.blog .social-area ul li a svg:hover{
  fill: var(--color-primary);
}

.blog .social-area span {
  height: 28px;
  width: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  position: relative;
}

.blog .social-area:hover span{
  opacity: 0;
}


.blog-contact{
  display: flex;
}

.pricing{
  padding: 150px 0px 100px 0px;
  background-image: url(../images/contact-bg.png);
  background-repeat: no-repeat;
  background-size: unset;
  background-position: center;
  z-index: 1;
}

.pricing ul li{
  display: flex;
  align-items: center;
}

.pricing ul li:before{
  content: "\F4B6";
  font-size: 25px;
  color: var(--color-primary);
  font-family: bootstrap-icons;
  margin-right: 10px;
}


.pricing-card {
  /* position: absolute; */
  padding: 40px 40px;
  bottom: 0;
  /* border-radius: 50%; */
  border-radius: 50% 50% 0 0;
}

.pricing-card{
  background-image: url(../images/homebannerbg.jpg), linear-gradient(#1d1d1d, #1d1d1d);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.domain-search-bg{
  position: relative !important;
  z-index: 2;
  display: block;
}
.domain-search-content{
  background: var(--color-primary);
  border-radius: 18px;
  padding: 40px 55px;
  margin-top: -160px;
}

@media(max-width:480px){
  .domain-search-content { 
  padding: 40px 10px;
}
}
.domain-search-content h4{
  color: #000;
}

.domain-search-bg form{
  justify-content: space-between;
  display: flex;
  margin-top: 30px;
}


.domain-search-bg form input {
  width: 64%;
  padding: 7px 10px;
  border: unset;
  border-bottom: 2px solid teal;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  background-color: var(--color-primary);
  color: #000;
  font-size: 18px;
  font-weight: 500;
}


.domain-search-bg form button {
  border: unset;
  border-radius: 6px;
  width: 34%;
  background-color: #000;
  font-size: 20px;
  font-weight: 500;
  padding: 7px 0px;
  transition: all .5s;
  color: #fff;
}


.domain-search-bg form button svg{
  margin-right: 6px;
}
.domain-search-bg form button:hover {
  background-color: #171717;
}

.domain-search-list{
  display: flex;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.domain-search-list-domain{
  background-color: #000;
  border-radius: 6px;
  padding: 10px;
  margin-right: 10px;
}

.domain-search-list-domain:last-child{
  margin-right: 0px !important;
}

@media(max-width:480px){
  .domain-search-list{
  flex-wrap: wrap;
  gap: 20px;
}
.domain-search-list-domain{
 width: 45%;
  margin-right:0px;
}
}
.domain-search-list-domain .tld-name{
  font-size: 20px;
  font-weight: 500;
}
.domain-search-list-domain .tld-discount-price{
color: #fff;
}


.card-style-two{
  height: 100%;
}

.hero-style-one{
  padding: 120px 0px 0px 0px;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  position: relative;
}

.hero-style-one .inner-content{
  z-index: 4;
  position: relative;
}
.hero-style-one.video-banner::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  z-index: 0;
  height: 100%;
  width: 100%;
}

.hero-banner.video-banner::before {
  opacity: .9 !important;
  background: linear-gradient(-90deg, #020202 0%, #000 100%);
}

.hero-banner.video-banner {
  background-image: none;
  z-index: 1;
}

.thumbnail img{
  z-index: 4;
  position: relative;
}


.video-banner .video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  z-index: -1;
}

.banner-slider-bg{
  width: 100%;
  height: 100%;
  position: relative;
  background-image: url(../images/sliderbg2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.banner-slider-bg::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgb(1, 62, 39),rgba(0, 11, 7, 0.87));
}

.banner-slider-bg .list-tick li{
  display: flex;
  align-items: center;
}
  .banner-slider-bg .list-tick li::before {
  content: "\F4B6";
  font-size: 25px;
  color: var(--color-primary);
  font-family: bootstrap-icons;
  margin-right: 10px;
}

.banner-slider-bg{
  padding-top: 110px;
}
.banner-slider-bg h1{
  font-size: 60px !important;
  line-height: 65px !important;
}

@media(max-width:480px){
  .banner-slider-bg h1{
  font-size: 45px !important;
  line-height: 45px !important;
}
}

.banner-slider-bg form input {
  width: 75%;
  padding: 10px 10px;
  border: unset;
  border-radius: 6px 0px 0px 6px;
  background-color: var(--color-white);
  color: #000;
  font-size: 18px;
  font-weight: 500;
}

.banner-slider-bg form button {
  border: unset;
  border-radius: 0px 6px 6px 0px;
  background-color: var(--color-primary);
  font-size: 18px;
  font-weight: 500;
  padding: 10px 13px;
  transition: all .5s;
  color: #fff;
}

@media(max-width:480px){
 
.banner-slider-bg form button {
  font-size: 18px;
  padding: 10px 6px;
}
}

.domain-list-tick li {
  border-right: 2px solid var(--color-primary);
  padding: 0px 20px;
}


.domain-list-tick li:last-child{
  border-right: unset;
  padding: 0px 10px;
}

.domain-list-tick li .domain-name{
  font-weight: 600;
}
@media(max-width:480px){
  .domain-list-tick li {
  width: 50%;
  float: left;
  margin-bottom: 10px;
}
.domain-list-tick{
  display: block !important;
}
.domain-list-tick li:nth-child(2n){
  border-right: unset;
  padding: 0px 10px;
}
.domain-list-tick li:nth-child(4n){
  border-right: unset;
  padding: 0px 10px;
}
}


.feature-style-three{
  padding-top: 100px;
  position: relative;
  background-image: url(../images/contact-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: unset;
}

 .domainserch-form  input {
  width: 75%;
  padding: 13px 10px;
  border: unset;
  border-radius: 6px 0px 0px 6px;
  background-color: var(--color-white);
  color: #000;
  font-size: 18px;
  font-weight: 500;
}

@media(max-width:480px){
  .domainserch-form  input {
  width: 70%;
}

}
 .domainserch-form  button {
  border: unset;
  border-radius: 0px 6px 6px 0px;
  background-color: var(--color-primary);
  font-size: 18px;
  font-weight: 500;
  padding: 10px 13px;
  transition: all .5s;
  color: #fff;
  line-height: 34px;
}

@media(max-width:480px){
 
.feature-style-three form button {
  font-size: 18px;
  padding: 10px 6px;
  width: 30%;
}
}

.feature-style-six-card {
  background-color: #252D2A;
  border-radius: 8px;
  padding: 30px 20px;
  box-shadow: 0px 0px 6px rgb(6, 216, 137);
  position: relative;
  top: 0;
  transition: all 0.5s;
  border: 1px solid;
}

.feature-style-six-card:hover{
  top: -10px;
  position: relative;
}


.domain-notes{
  background-color: #353434;
}

.domain-notes ul li{
  line-height: 30px !important;
  margin-bottom: 20px !important;
}

.feature-style-three-bg{
  padding-top: 140px;
  padding-bottom: 40px;
  background-image: url(../images/bgdark.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.card-style-seven {
  background-color: #252d2a;
  border: 1px solid #717070;
  padding: 30px;
  height: 100%;
  border-radius: 8px;
   transition: all .5s;
}

.card-style-seven .icon {
  background-color: #000;
  width: 100px;
  border-radius: 50%;
  height: 100px;
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  transition: all .5s;
}

 .card-style-seven svg{
  fill: var(--color-primary);
  width: 40px;
  height: 40px;
  transition: all .5s;
} 
.card-style-seven:hover{
  border: 1px solid var(--color-primary);
}

.card-style-seven:hover .icon{
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.card-style-seven:hover .icon svg{
    fill: var(--color-black);
}

.feature-style-four-bg{
  padding-top: 120px;
  background-image: url(../images/bgdark2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 4;
  position: relative;
  padding-bottom: 50px;
}
.feature-style-four-bg::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgb(25, 85, 63),rgba(21, 21, 21, 0.87));
  z-index: -1;
}
.sunrise-reg{
  position: relative;
}
.sunricedomains {
  padding: 24px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  border-radius: 5px;
  background: #252d2a;
}

.sunricedomains label {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.5;
  display: block;
  margin-bottom: 15px;
}
.sunricedomains .sunriceinput {
  padding: 10px 15px;
  width: 100%;
  display: block;
  font-size: 17px;
  font-weight: 500;
  color: var(--color-black);
  line-height: 1.5;
  border: 1px solid var(--color-secondary-light);
  border-radius: 5px;
}

.tootips-plans span {
  position: absolute;
  background: var(--color-primary);
  color: var(--color-white);
  display: block;
  font-size: 15px;
  line-height: 1.5;
  padding: 9px 14px;
  border-radius: 5px;
  text-align: center;
  min-width: 200px;
  max-width: 200px;
  top: 44%;
  left: 39%;
  opacity: 0;
  visibility: hidden;
  transform: translate(-46%, -102%);
  transition: 0.5s;
  text-transform: lowercase;
}
.tootips-plans:hover span{
  opacity: 1;
  visibility: visible;
  display: block;
  transition: 0.5s;
}

.btn-primary {
  font-size: 16px;
  color: var(--color-white) !important;
  background: var(--color-primary) !important;
  padding: 8px 23px;
  border-radius: 5px;
  transition: 0.3s;
  border: unset;
}


.premium-domain-range-bar {
  display: flex;
  margin: 20px 0;
}
.premium-domain-range-bar .rangebar {
  width: 80%;
}
.premium-domain-range-bar input[type="range"] {
  width: 100%;
  height: 25px;
  background: var(--color-white);
  border: 0;
  border-radius: 4px;
}
.premium-domain-range-bar .numberbar {
  width: 20%;
  position: relative;
}
.premium-domain-range-bar .numberbar .currency-icon {
  display: flex;
}
@media(max-width:480px){
.premium-domain-range-bar {
  display: block;
}
.premium-domain-range-bar .rangebar {
  width: 100%;
}
}
.premium-domain-range-bar .numberbar .currency-icon span.icon {
  font-size: 16px;
  color: var(--color-white);
  margin: 0 5px 0px 30px;
  border-left: 1px solid;
  border-color: var(--color-white);
  padding-left: 20px;
}
.premium-domain-range-bar input[type="number"] {
  border: none;
  color: var(--color-white) ;
  background: transparent;
  font-size: 16px;
  width: fit-content !important;
  padding: 0;
}


.feature-style-seven{
  padding-top: 100px;
  padding-bottom: 60px;
  position: relative;
  background-image: url(../images/contact-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.form-radius{
  border-radius: 8px !important;
}
 select.form-select {
  width: 100%;
/*  background: var(--color-white);*/
  padding: 13px 15px;
  border-radius: 10px;
  font-size: 18px;
  margin-top: 10px;
  border: 0;
}

.submitnow-radius{
  border-radius: 6px !important;
  margin-top: 10px;
}

.feature-style-eight{
  padding-top: 100px;
  position: relative;
  background-image: url(../images/bgdark3.jpg);
  background-size: unset;
  background-repeat: no-repeat;
  background-position: center;
}



.weebly #weebly-flters {
  padding: 0;
  margin: 0 auto 25px auto !important;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
  width: fit-content;
}

.weebly #weebly-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 25px 8px 25px !important;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-extra10);
  margin: 0 4px 0px 4px;
  transition: 0.3s;
  border-radius: 50px;
  border: 1px solid #fff;
  background: var(--color-white);
}

.weebly #weebly-flters li:hover,
.weebly #weebly-flters li.filter-active {
  color: var(--color-primary);
  border-color: var(--color-primary);
}


@media (max-width:991px){
  .weebly-container{
    height: unset !important; 
  }

  .weebly-item{
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important; 
  }

  .weebly-item img{
    margin: auto;
  }
}


.table-plans table {
  background: #44414A !important;
  border-radius: 4px;
}

.table-plans>.table-responsive>table thead{
  border: 1px solid var(--color-white);
}
.table-plans>.table-responsive>table thead th{
  background: #000 !important;
}

.table-plans>.table-responsive>table thead th{
border: none;
text-align: center;
border-right: 1px solid;
border-color: var(--color-white);
vertical-align: middle;
}

.table-plans > .table-responsive > table thead th:nth-child(2) {
border-radius: 0px 0 0 0;
}

.table-plans>.table-responsive>table thead th:first-child{
  border-radius: 4px 0 0 0;
}

[dir="rtl"] .table-plans>.table-responsive>table thead th:first-child{
  border-radius: 0px 4px 0 0;
}


.table-plans > .table-responsive > table thead th:nth-child(4) {
  
}

[dir="rtl"] .table-plans>.table-responsive>table thead th{
  border-right: unset;
  border-left: 1px solid;
}


.table-plans>.table-responsive>table thead th:last-child{
  border-right: 0;
  border-radius: 0 4px 0 0;
}

[dir="rtl"] .table-plans>.table-responsive>table thead th:last-child{
  border-right: unset;
  border-left: 0;
  border-radius: 4px 0px 0 0;
}

.btn-white {
  font-size: 16px;
  color: var(--color-black) !important;
  background: var(--color-primary) !important;
  padding: 8px 23px;
  border-radius: 5px;
  transition: 0.3s;
  border-color: var(--color-primary) !important;
}

.table-plans>.table-responsive>table thead th:first-child{
  text-align: left;
  font-size: 16px;
  color: var(--color-white);
  width: 17.2%;
  min-width: 200px;
  vertical-align: bottom;
}

[dir="rtl"] .table-plans>.table-responsive>table thead th:first-child{
  text-align: right;
}

.table-plans > .table-responsive > table thead th .name {
  font-size: 22px;
  color: var(--color-primary);
  margin-bottom: 0;
  font-weight: 600;
}

.table-plans > .table-responsive > table thead th .price {
  font-size: 24px;
  color: var(--color-white);
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1.5;
}

.table-plans>.table-responsive>table thead th .cuttedprice{
  font-size: 16px;
  color: var(--color-white);
  margin-bottom: 0;
  font-weight: normal;
  text-decoration: line-through;
}

.table-plans>.table-responsive>table thead th .cuttedprice.unset{
  text-decoration: unset;
}

.table-plans>.table-responsive>table thead th a{
margin-top: 5px;
}


.table-plans tbody.tbody-collapsed tr:not(:first-child) {
  display: none;
}

.table-plans tbody th{
  border: 0;
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-color: var(--color-white);
}

.table-plans tbody th.tbale-titles {
  background: #44414A !important;
  padding: 0;
}

.table-plans tbody tr th span.table-toogler {
  display: block;
  position: relative;
  padding: 7px 48px 7px 24px;
  color: var(--color-white);
  font-size: 18px;
  cursor: pointer;
  user-select: none;
  font-weight: 500;
}

.table-plans tbody tr th span.table-toogler::before {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 0;
  height: 0;
  margin-top: -4px;
  border-top: none;
  border-right: 7px solid rgba(0, 0, 0, 0);
  border-bottom: 8px solid #fff;
  border-left: 7px solid rgba(0,0,0,0);
  content: "";
  transition: all 0.5s;
}

.table-plans tbody.tbody-collapsed tr th span.table-toogler::before{
  transform: rotate(180deg);
}

.table-plans tbody tr th.first-coloumn {
  background: #000B07;
}

.table-plans tbody tr th.first-coloumn .main-headings {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
}

.table-plans tbody tr th.first-coloumn .main-headings span.name {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.5;
}
.table-plans tbody tr th.first-coloumn .main-headings span.icons-views{
  position: relative;
}
.table-plans tbody tr th.first-coloumn .main-headings span.icons-views .icon {
  width: 21px;
  height: 21px;
  line-height: 21px;
  font-weight: 500;
  font-size: 14px;
  background: var(--color-primary);
  border-radius: 50%;
  display: block;
  text-align: center;
  color: var(--color-white);
}

.table-plans tbody tr th.first-coloumn .main-headings span.icons-views .content {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 6px;
  text-align: left;
  cursor: auto;
  z-index: 999;
  display: block;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
  transform: translate(4%, -50%);
}

[dir="rtl"] .table-plans tbody tr th.first-coloumn .main-headings span.icons-views .content {
  left: auto;
  right: 50%;
  text-align: right;
  transform: translate(-4%, -50%);
}

.table-plans tbody tr th.first-coloumn .main-headings span.icons-views:hover .content{
display: block;
visibility: visible;
opacity: 1;
}

.table-plans tbody tr th.first-coloumn .main-headings span.icons-views .content .icon-toogler{
position: absolute;
width: 30px;
height: 30px;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
background: #6d6e70;
top: 42%;
}


.table-plans tbody tr th.first-coloumn .main-headings span.icons-views .content .tootips-contens {
  display: inline-block;
  width: 260px;
  padding: 15px 20px;
  border-radius: 5px;
  background: #6d6e70;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  text-transform: none;
  -webkit-box-shadow: 0 0 15px rgba(0,0,0,.3);
  box-shadow: 0 0 15px rgba(0,0,0,.3);
  z-index: 1;
  position: relative;
}

.table-plans .table > :not(:last-child) > :last-child > * {
  border-bottom-color: var(--color-border);
}


.table-plans tbody tr td {
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-color: var(--color-border);
  font-size: 16px;
  color: var(--color-white);
  text-align: center;
  vertical-align: middle;
}

.table-plans tbody tr td .bi-check-circle{
  color: var(--bs-green);
}

.feature-style-seven .list-tick li {
  display: flex;
  align-items: center;
  line-height: 40px;
}
.feature-style-seven .list-tick li:before{
  content: "\F4B6";
  font-size: 25px;
  color: var(--color-primary);
  font-family: bootstrap-icons;
  margin-right: 10px;
  line-height: 28px !important;
}

.card-style-seven .list-tick  li{
  align-items: start !important;
  line-height: 35px;
}
.card-style-seven .list-tick  li::before{
  line-height: 35px !important;
}

.plan-content-bg{
  padding: 0px 0px 30px 0px !important;
}
.plan-content-bg .pricing-content{ 
  padding:  0px 30px 0px 30px!important;
}

.plan-content-bg .plan-head {
  padding: 30px 30px 0px 30px;
  background: var(--color-primary);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.plan-content-bg .plan-head span {
  color: var(--color-black);
  font-size: 25px;
  margin-bottom: 20px;
  display: block;
}

.plan-content-bg .plan-head .mly {
   color: var(--color-white); 
  font-size: 18px;
}

.plan-content-bg  .themebtn{
padding-left: 30px !important;
}

.plan-content-bg .pricing-content select .form-control{
  width: 100%;
   background: var(--color-white); 
  padding: 13px 15px;
  border-radius: 10px;
  font-size: 18px;
  margin-top: 10px;
  border: 0;
}


.custom-tabings.style-two {
  justify-content: flex-start;
}
.custom-tabings .customtab {
  width: fit-content;
  display: flex;
}

.custom-tabings.style-two .customtab .tablinks {
  padding: 10px 20px;
  background: none;
  color: var(--color-white);
  border: 1px solid;
  border-color: var(--color-white);
  font-size: 18px;
  padding-bottom: 6px;
  border-radius: 0;
}
@media(max-width:480px){
  .custom-tabings.style-two .customtab .tablinks{
    padding: 10px 10px;
  }
}
.custom-tabings.style-two .customtab .tablinks:first-child {
  border-radius: 5px 0 0 5px;
}
.custom-tabings.style-two .customtab .tablinks:last-child {
  border-radius: 0px 5px 5px 0px;
}
.custom-tabings.style-two .customtab .tablinks.active {
  background: var(--color-white);
  color: var(--color-primary);
}

.twocoluumn{
  display: flex;
  flex-wrap: wrap; 
}
.feature-style-nine .list-tick li{
  display: flex;
  align-items: center;
  width: 50%;
  color: var(--color-white) !important;
  line-height: 35px;
}

@media(max-width:767px){
  .feature-style-nine .list-tick li{
  width: 100%;
}
}

.feature-style-nine .list-tick li:before{
  content: "\F4B6";
  font-size: 25px;
  color: var(--color-primary);
  font-family: bootstrap-icons;
  margin-right: 10px;
  line-height: 28px !important;
}

.feature-style-nine{
  padding-top: 100px;
  position: relative;
  background-image: url(../images/bgdark3.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}


.plan-listing-two-bg li{
  font-size: 18px;
  font-weight: 400;
}


.card-style-four ul li{
  display: flex;
  align-items: center;
}
.card-style-four ul li:before{
  content: "\F4B6";
  font-size: 20px;
  color: var(--color-primary);
  font-family: bootstrap-icons;
  margin-right: 10px;
}



.pricing-box-four {
  padding: 22px;
  transition: all ease 0.3s;
  box-shadow: none;
  border: 1px solid;
  border-top: 5px solid;
  border-color: rgba(var(--color-primary), 0.3);
  border-radius: 5px;
  background: #252D2A;
}


.pricing-box-four.plan-featured{
          border-color: var(--color-primary);
}

.pricing-box-four h3{
font-size: 33px;
color: var(--color-white);
font-weight: 700;
}

.pricing-box-four p {
  font-size: 16px;
  color: var(--color-white);
  margin-bottom: 18px;
}

.pricing-box-four h4 {
  font-weight: 600;
  font-size: 35px;
  color: var(--color-primary);
}

.pricing-box-four h4 span{
font-size: 17px;
color: var(--color-white);
font-weight: 400;
}

.pricing-box-four ul{
padding-top: 20px;
}

.pricing-box-four ul li{
          padding-left: 25px;
          position: relative;
          padding-bottom: 10px;
          font-size: 17px;
         color: var(--color-white);
}

[dir="rtl"] .pricing-box-four ul li{
          padding-left: unset;
      padding-right: 25px;
}


.pricing-box-four ul li:before{
          content: "\F26B";
          font-family: "bootstrap-icons";
          font-size: 15px;
          color: var(--color-primary);
          position: absolute;
          left: 2px;
          top: 2px;
          font-size: 15px;
}

[dir="rtl"] .pricing-box-four ul li:before{
          left: auto;
  right: 2px;
          
}


.pricing-box-four a{
display: block;
margin-top: 10px;
opacity: 0.7;
transition: all 0.5s;
}
.pricing-box-four:hover{
border-color: var(--color-primary);
}
.pricing-box-four:hover a{
opacity: 1;
}
.pricing-box-four.plan-featured a{
          opacity: 1;
}

.pricing-box-four ul li a{
display: unset;
color: var(--color-primary);
}


.form-price {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}


.bg-dark-light{
  background-image: url(../images/bgdarklight.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 4;
  position: relative;
}


.bg-dark-light::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgb(25, 85, 63),rgba(21, 21, 21, 0.87));
  z-index: -1;
  opacity: .8;
}


.tabings {
  width: 100%;
  display: flex;
  justify-content: center;
}

.tabings .tabs{
  width: fit-content;
display: flex;
flex-direction: row;
}

@media (max-width:767px){
 .tabings .tabs{
   flex-direction: row;
   flex-wrap: wrap;
 } 
}

.tabings .tabs .tabbutton{
  padding: 13px 20px;
  color: var(--color-primary-two);
  border: 1px solid;
  border-color: var(--color-primary-two);
  margin-bottom: 10px;
  border-radius: 0px;
  text-align: left;
  font-size: 17px;
  display: flex;
  align-items: center;
  background-color: var(--color-white);
}

.tabings .tabs .tabbutton.active{
  background-color: var(--color-primary-two);
  color: var(--color-white);
}

@media(min-width:767px){

.tabings .tabs.roundness .tabbutton:first-child{
border-radius: 4px 0px 0px 4px;
}

.tabings .tabs.roundness .tabbutton:last-child{
border-radius: 0px 4px 4px 0px;
}
}

@media (max-width:767px){
 .tabings .tabs.roundness .tabbutton{
  width: 50%;
 }
}

@media (max-width:430px){
 .tabings .tabs.roundness .tabbutton{
  width: 100%;
 }
}

.tabings .tabs .tabbutton i{
margin-right: 10px;
}

[dir="rtl"] .tabings .tabs .tabbutton i{
margin-right: unset;
margin-left: 10px;

}


.tabings .tabs.column-type{
flex-direction: column;  
}
.tabings .tabs.column-type .tabbutton {
  padding: 13px 20px;
  color: var(--color-primary);
  border: 1px solid;
  border-color: var(--color-primary-two);
  margin-bottom: 10px;
  border-radius: 4px;
  text-align: left;
  font-size: 17px;
  display: flex;
  align-items: center;
  background-color: #252d2a;
}

.tabings .tabs.column-type .tabbutton i{
margin-right: 10px;
}

[dir="rtl"] .tabings .tabs.column-type .tabbutton i{
margin-right: unset;
margin-left: 10px;

}


.tabings .tabs.column-type .tabbutton.active{
background-color: var(--color-primary-two);
  color: var(--color-white);
}

.tabscontents{
  display: none;
}

.tabscontents.active{
  display: block;
}

.bg-pattern-2 .tabscontents ul li{
  display: flex;
  align-items:center;
}
.bg-pattern-2 .tabscontents ul li::before {
  content: "\F4B6";
  font-size: 25px;
  color: var(--color-primary);
  font-family: bootstrap-icons;
  margin-right: 10px;
}

.bg-dark-light-3{
  background-image: url(../images/bgdarklight3.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 4;
  position: relative;
}


.bg-dark-light-3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgb(25, 85, 63),rgba(21, 21, 21, 0.87));
  z-index: -1;
  opacity: .3;
}

.card-style-eight {
  border: 1px solid;
  padding: 25px;
  box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}


.card-style-eight.error{
border-color: var(--bs-red);
}

.card-style-eight.success{
border-color: var(--bs-green);
}

.card-style-eight img {
  max-height: 85px;
}

.card-style-eight h4{
  font-size: 20px;
  color: var(--color-secondary);
  margin-bottom: 10px;
}



.card-style-eight ul.list-tick li{
  display: flex;
  align-items: center;
  line-height: 35px;
}

.card-style-eight ul.list-tick li:before{
  content: "\F26B";
  font-family: "bootstrap-icons";
  font-size: 15px;
  color: var(--bs-red);
  font-size: 15px;
  padding-right: 10px;
}
.card-style-eight ul.list-tick li:before{
color: var(--bs-red) !important;
}
.card-style-eight h4{
  color: var(--bs-red);
}

.card-style-eight.error ul.list-tick li:before{
  content: "\F26B";
  font-family: "bootstrap-icons";
  font-size: 15px;
  color: var(--color-primary) !important;
  font-size: 15px;
  padding-right: 10px;
}

.card-style-eight.error h4{
  color: var(--bs-green);
}

.card-style-eight.error ul.list-tick li:before{
color: var(--bs-green);
}


  .listick-before li{
    display: flex;
    align-items: center;
  }
  .listick-before li:before{
  content: "\F4B6";
  font-size: 20px;
  color: var(--color-primary);
  font-family: bootstrap-icons;
  margin-right: 10px;
  }

  .bg-dark-light-4{
  background-image: url(../images/bgdark4.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 4;
  position: relative;
  padding: 150px 0px 0px 0px;
}


.bg-dark-light-4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgb(25, 85, 63),rgba(21, 21, 21, 0.87));
  z-index: -1;
  opacity: .6;
}

.horizontal-plans {
  background: #1e1c22;
  border: 0;
  border-radius: 4px;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.08);
  padding: 42px 42px;
}

.horizontal-plans .form-label{
 color: var(--color-white);
}

.form-controls {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  background-color: var(--color-white);
  border: 1px solid #dee2e6;
}

.bg-dark-light-6{
  background-image: url(../images/bgdark6.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 4;
  position: relative;
}


.bg-dark-light-6::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgb(25, 85, 63),rgba(21, 21, 21, 0.87));
  z-index: -1;
  opacity: .9;
}

.feature-style-ten .tabings .tabs .tabbutton{
  padding: 13px 20px;
  color: var(--color-white);
  border: 1px solid;
  border-color: var(--color-white);
  margin-bottom: 10px;
  border-radius: 0px;
  text-align: left;
  font-size: 17px;
  display: flex;
  align-items: center;
  background-color: var(--color-primary);
}

.feature-style-ten .tabings .tabs .tabbutton.active{
  background-color: var(--color-black);
  color: var(--color-white);
}




.blog-card{
  box-shadow: 0px 10px 10px rgba(151,151,151,.15);
border-radius: 5px;
background: var(--color-white);
}

.blog-card .feature-img{
border-radius: 5px 5px 0 0;
}

.blog-card .feature-img a{
  display: block;
  overflow: hidden;
  border-radius: 5px 5px 0 0;

}

.blog-card .feature-img a img{
border-radius: 5px 5px 0 0;
transition: all .3s ease-in;
}
.blog-card:hover .feature-img a img{
transform: scale(1.05);
}

.blog-card .blog-content{
  position: relative;
  padding: 40px 25px 40px 25px;
}


.blog-card .blog-content .tag-btn{
  position: absolute;
  background: var(--color-primary-two);
padding: 8px 20px;
color: #fff;
font-weight: 900;
font-size: 16px;
display: inline-block;
top: -20px;
overflow: hidden;
z-index: 1;
color: var(--color-white);
border-radius: 4px;
}

.blog-card .blog-content h3{
  font-size: 20px;
  color: var(--color-primary-dark-two);
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.5;
}


.blog-card .blog-content h4{
 font-size: 17px;
  color: var(--color-secondary);
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1.5;
}


.blog-card  .blog-autor{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-card  .blog-autor img{
  max-height: 50px;
  border-radius: 50%;
}

.blog-card  .blog-autor h6{
  margin-left: 10px;
  font-size: 18px;
  margin-bottom: 0px;
  color: var(--color-primary-dark-two);
  font-weight: 800;
}


[dir="rtl"] .blog-card  .blog-autor h6{
  margin-left: unset;
  margin-right: 10px;

}

.blog-side-bar .secrch-wighet form{
  position: relative;
}

.blog-side-bar .secrch-wighet form input{
width: 100%;
  padding: 18px 60px 18px 25px;
  border: 0;
  border-radius: 5px;
  font-weight: 600;
  background: #ececec;
  border-radius: 4px;
   font-size: 16px;
  line-height: 1;
}

.blog-side-bar .secrch-wighet form button {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-primary);
  padding: 21px 25px;
  border: 0;
  border-radius: 4px;
  font-size: 18px;
  line-height: 19px;
}


[dir="rtl"] .blog-side-bar .secrch-wighet form button{
  left: 0;
  right: auto;
}


.blog-side-bar .widget-title {
  position: relative;
  padding-bottom: 15px;
  border-bottom: 2px solid #fff;
  font-size: 25px;
  color: var(--color-white);
  font-weight: 700;
}


 .blog-side-bar .widget-title::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 2px;
  background: linear-gradient(95.45deg, var(--color-primary) 0.64%, var(--color-primary) 98.23%);
  left: 0;
  bottom: -2px;
}


 .blog-side-bar .news-content{
  display: flex;
  align-items: center;
  margin-top: 30px;
}

 .blog-side-bar .news-content .img img{
  width: 80px;
height: 60px;
border-radius: 50%;
}


 .blog-side-bar .news-content .contents{
  margin-left: 20px;
}

[dir="rtl"]  .blog-side-bar .news-content .contents{
  margin-left: unset;
  margin-right: 20px;

}

 .blog-side-bar .news-content .contents h5 {
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: 0px;
  font-weight: 700;
  line-height: 1.5;
}


 .blog-side-bar .news-content .contents p{
  font-size: 17px;
  color: var(--color-secondary);
  margin-bottom: 0px;
  font-weight: 500;
  line-height: 1.5;
}


 .blog-side-bar .banners-content {
  padding: 50px 20px;
  background: #151515;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}


 .blog-side-bar .banners-content img {
  position: absolute;
  left: 0;
  mix-blend-mode: soft-light;
  opacity: 0.3;
  top: 0;
  right: 0;
  width: -moz-available;
}
 .blog-side-bar .banners-content .contents{
  position: relative;
}
 .blog-side-bar .banners-content .contents h6{
color: #fff;
text-align: center;
font-size: 22px;
margin-bottom: 20px;

}

.blog-side-bar .banners-content .contents h3 {
  color: #fff;
  text-align: center;
  font-size: 35px;
  margin-bottom: 20px;
  font-weight: 800;
}

 .blog-side-bar .banners-content .contents a{
display: block;
margin: auto;
width: fit-content;
margin-bottom: 20px;
}
 

  .blog-side-bar .banners-content .contents p{
  color: #fff;
  text-align: center;
font-size: 22px;.
margin-bottom: 0px;

}


.blog-deatils {
  background: #151515;
  margin-block-end: 30px;
  box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
.blog-deatils .blog-preview{
border-radius: 5px 5px 0 0;
}

.blog-deatils .blog-preview-details{
  padding: 25px;
}

.blog-deatils .blog-preview-details .items{
  margin-right: 30px;
  margin-bottom: 20px;
}
@media (min-width:767px){
  .blog-deatils .blog-preview-details .items{
  margin-bottom: 0px;
}
}

.blog-deatils .blog-preview-details .items .author-img {
position: relative;
height: 50px;
width: 50px;
display: inline-flex;
align-items: center;
justify-content: center;
flex: 0 0 auto;
line-height: 0;
font-size: 20px;
color: var(--color-dark);
}

.blog-deatils .blog-preview-details .items .author-img {
  margin-right: 15px;
}

[dir="rtl"] .blog-deatils .blog-preview-details .items .author-img {
  margin-right: unset;
  margin-left: 15px;

}
[dir="rtl"] .blog-deatils .blog-preview-details .items{
  margin-right: unset;
  margin-left: 30px;
}

.blog-deatils .blog-preview-details .items .contents h6{
color: var(--color-white);
font-size: 20px;
line-height: 1.5;
margin-bottom: 0px;
font-weight: 800;
}

.blog-deatils .blog-preview-details .items .contents p{
color: var(--color-white);
font-size: 16px;
line-height: 1.5;
margin-bottom: 0px;
}

.blog-deatils .viewcontent{
  padding: 30px;
  padding-top: 15px;
}

.blog-deatils .viewcontent h4{
color: var(--color-white);
font-size: 30px;
line-height: 1.5;
margin-bottom: 0px;
font-weight: 800;
}

.blog-deatils .viewcontent p{
  color: var(--color-white);
font-size: 17px;
line-height: 1.5;
margin-bottom: 20px;
font-weight: 500;
}

.blog-deatils .viewcontent h5 {
  color: var(--color-white);
  font-size: 19px;
  line-height: 1.5;
  margin-bottom: 15px;
  font-weight: 800;
}


.blog-deatils .top-rated{
  background: rgba(var(--color-primary-rgb-two), 0.1);
  padding: 20px;
  border-radius: 4px;
}

.blog-deatils .top-rated h3{
  color: var(--color-white);
font-size: 25px;
line-height: 1.5;
margin-bottom: 15px;
font-weight: 800;
}

.blog-deatils .top-rated h5{
   color: var(--color-white);
font-size: 17px;
line-height: 1.5;
margin-bottom: 0px;
font-weight: 500;
}


.blog-deatils .social-icons {
  padding: 8px;
  border-radius: 50%;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--color-white);
  margin: 0 5px;
  transition: all 0.5s;
}

.blog-deatils .related-tages{
  display: flex;
  flex-wrap: wrap;
}

.blog-deatils .related-tages a{
background: rgba(var(--color-secondary-light-rgb), 0.2);
border: 1px solid rgba(var(--color-secondary-light-rgb), 0.2);
font-size: 16px;
border-radius: 4px;
padding: 5px 10px;
transition: all 0.5s;
color: var(--color-primary);
margin: 5px;
}

.blog-deatils .related-tages a:hover, .blog-deatils .related-tages a.active{
  background: var(--color-primary);
border: 1px solid var(--color-primary);
color: var(--color-white);
transition: all 0.5s;
}

.blog-deatils .comants .img{
margin-right: 15px;
}

.blog-deatils .comants .img img{
  max-height: 150px;
}

[dir="rtl"] .blog-deatils .comants .img{
margin-right: unset;
margin-left: 15px;
}

.blog-deatils .comants .contents h5 {
  color: var(--color-white);
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 5px;
  font-weight: 800;
}

.blog-deatils .comants .contents p{
 color: var(--color-white);
font-size: 17px;
line-height: 1.5;
margin-bottom: 0px;
font-weight: 500;
}


.horizontal-plan.active {
  margin-bottom: 50px;
  overflow: unset !important;
}

.horizontal-plan .pricing-column {
  padding: 50px 30px;
  padding-bottom: 50px;
}

.horizontal-plan .pricing-column .plan-name {
  margin-top: 0;
  margin-bottom: .5rem;
  font-weight: 800;
  line-height: 1.2;
  font-size: 20px;
  color: var(--color-primary);
}

.horizontal-plan .pricing-column .pricing-label {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 800;
}

.horizontal-plan .pricing-column .monthly-price {
  font-size: 40px;
  font-weight: 800;
}

.horizontal-plan .pricing-column .monthly-price span.durections {
  font-size: 16px;
  font-weight: 600;
  margin-left: 6px;
}

.horizontal-plan .pricing-column p.contens {
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--color-white);
  text-align: start;
  margin-bottom: 10px;
}

.horizontal-plan .pricing-column.pricing-column-horizontal ul.custum-lists {
  display: flex;
  flex-wrap: wrap;
}

.horizontal-plan .pricing-column.pricing-column-horizontal ul.custum-lists li {
  width: 50%;
  font-size: 17px;
  display: flex;
  align-items: baseline;
  color: var(--color-secondary);
}

.horizontal-plan .pricing-column .custum-lists li::before {
  content: '\F26E';
  font-family: bootstrap-icons;
  margin-right: 5px;
  color: var(--color-primary);
  font-size: 24px;
  position: relative;
  top: 5px;
}

.horizontal-plan .pricing-column .form-select{
  border: 1px solid;
  border-color: var(--color-primary);
  height: unset !important;
  padding: 12px 12px;
}


.bg-dark-light-four{
  background-image: url(../images/bgdarklight4.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 4;
  position: relative;
}


.bg-dark-light-four::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgb(25, 85, 63),rgba(21, 21, 21, 0.87));
  z-index: -1;
  opacity: .8;
}

.pricing.bg-dark-light-five{
  position: relative;
  height: 100vh;
}

.bg-dark-light-five{
  background-image: url(../images/bgdarklight5.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 4;
  position: relative;
}


.bg-dark-light-five::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgb(25, 85, 63),rgba(21, 21, 21, 0.87));
  z-index: -1;
  opacity: .9;
}

.counter-item {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  background-color: var(--color-primary);
  border-radius: 10px;
  padding: 10px;
  -webkit-margin-end: 10px;
  margin-inline-end: 10px;
  position: relative;
  z-index: 1;
}

.counter-item::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  height: 100%;
  width: 100%;
  background-position: center;
  background-color: rgba(255, 255, 255, 0.4);
  background-size: cover;
  opacity: 0.4;
  z-index: -1;
  border-radius: 10px;
}
.counter-item {
  width: 12%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  background-color: var(--color-primary);
  border-radius: 10px;
  padding: 10px;
  -webkit-margin-end: 10px;
  margin-inline-end: 10px;
  position: relative;
  z-index: 1;
}
.counter-item:last-child{
   margin-inline-end: 10px;
}

.counter-item .count_down {
  font-size: 40px;
  -webkit-margin-after: 0;
  margin-block-end: 0;
}

@media(max-width:480px){
  .counter-item {
  width: 25%;
  padding: 5px;
}
}
.counter-item h5{
  font-size: 16px;
}

.counter-item h4, .counter-item h5 {
  color: #fff;
}

.error-default{
  font-size: 300px;
}
@media(max-width:480px){
  .error-default{
  font-size: 100px;
}
}


.promos-view {
  background: #1c1b1b;
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.07);
  position: relative;
  top: 0;
  transition: all 0.5s;
  border: 1px solid;
  border-color: rgba(var(--color-secondary), 0.5);
}

.promos-view:hover {
  top: -10px;
  border-color: var(--color-primary);
}

.promos-view .img {
  padding: 10px 0 20px 0px;
}


.promos-view .img h2 {
  font-size: 45px;
  font-weight: 600;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 0;
  line-height: 1;
  text-transform: uppercase;
}

.promos-view .content{
  font-size: 18px;
  color: var(--color-white);
  text-align: center;
  line-height: 1.5;
}

.promos-view .starting{
  font-size: 16px;
  color: var(--color-secondary);
  text-align: center;
  width: 100%;
  display: block;
}

.promos-view .price {
  font-size: 35px;
  color: var(--color-white);
  text-align: center;
  line-height: 1.5;
  margin-top: 8px;
  margin-bottom: 20px;
  font-weight: 700;
  transition: all 0.5s;
}

.promos-view:hover .price {
  color: var(--color-primary);
}

.promos-view .price span.durection{
  font-size: 15px;
  color: var(--color-secondary);
  text-align: center;
  line-height: 1;
}

.promos-view a{
  display: block;
  width: 100%;
}

.ribbone {
  width: 160px;
  height: 160px;
  overflow: hidden;
  position: absolute;
  z-index: 6;
  inset-block-start: 0;
  inset-inline-start: 0;
}

.ribbone span {
  inset-inline-end: 0px;
  inset-block-start: 17px;
  transform: rotate(-45deg);
  position: absolute;
  display: block;
  width: 260px;
  padding: 2px 0;
  color: #fff;
  text-transform: capitalize;
  text-align: center;
  font-size: 13px;
}



.border-none{
  border: unset;
}

.bg-secondary-light-two{
  background: #2f2e2e;
}

.register-box p{
  font-size: 20px !important;
}

.bg-security{
  padding-top: 100px;
  position: relative;
  background-image: url(../images/bgsecurity.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: unset;
}

.bg-security::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgb(25, 85, 63),rgba(21, 21, 21, 0.87));
  z-index: 1;
  opacity: .9;
}
.bg-security .inner-content, .inner-content-img{
  z-index: 4;
  position: relative;
}


.btn.btn-login {
  font-size: 16px;
  color: var(--color-black) !important;
  background: var(--color-primary) !important;
  padding: 8px 23px;
  border-radius: 5px;
  transition: 0.3s;
  border-color: var(--color-primary) !important;
}
.btn.btn-login:hover {
  background: #0AAE71 !important;
  border-color: #0AAE71 !important;
}
/*--------------------------------------------------------------
# faq
--------------------------------------------------------------*/



.faq-accordion .accordion-item {
  border: none;
  border-radius: 10px;
}

.faq-accordion .accordion-item .accordion-header {
  padding: 0;
  position: relative;
}

.faq-accordion .accordion-item .accordion-header {
  padding: 0;
  position: relative;
}

.accordion-body {
  background: #575757;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.faq-accordion .accordion-item .accordion-button {
  background-color: #000;
  padding: 20px 45px 20px 30px;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
  -webkit-transition: .3s;
  transition: .3s;
  z-index: 2;
  line-height: 27px;
  border-bottom: 1px solid #737272;
}

.faq-accordion .accordion-item .accordion-button:after {
  content: "\F286";
  font-family: bootstrap-icons !important;
  background: none;
  line-height: 1;
  transform: unset;
  transition: .3s;
  background-size: unset;
  width: unset;
  height: unset;
}



 .accordion-body .list-tick li{
  margin-bottom: 10px !important;
  display: flex;
  align-items: center;
}

 .accordion-body .list-tick li::before {
  content: "\F26D";
  font-family: "bootstrap-icons";
  font-size: 15px;
  color: var(--color-primary);
  margin-right: 10px;
}

.domain-notes .list-tick li{
  display: flex;
  align-items: top;
}

 .domain-notes .list-tick li::before {
  content: "\F26D";
  font-family: "bootstrap-icons";
  font-size: 15px;
  color: var(--color-primary);
  margin-right: 10px;
}

.FAQs .faq-accordion a{
  color: var(--color-primary);
}


[dir="rtl"] .faq-accordion .accordion-item .accordion-button::after {
  position: absolute;
  left: 20px;
}

.faq-accordion .accordion-item .accordion-button.collapsed::after {
  content: "\F282";
  font-family: bootstrap-icons !important;
}


/*--------------------------------------------------------------
# footer
--------------------------------------------------------------*/
footer {
  background: var(--color-primary-dark);
  padding-top: 12px;
  padding-bottom: 0px;
}

.footer-top {
  border-bottom: 1px solid #303232;
}

footer .topfooter {
  display: flex;
  justify-content: space-between;
}

@media(max-width:480px){

 footer .topfooter {
  display: block;
} 

}



.footerlogo img{
  max-height: 50px;
  margin-right: 6px;
}

.footercontent svg {
  fill: var(--color-primary);
  width: 40px;
  height: 40px;
  margin-right: 8px;
}

.topfooter .footercontent h6 a {
  font-size: 25px;
  color: var(--color-white);
  transition: all .5s;
}

.topfooter .footercontent h6 a:hover {
  color: var(--color-primary);
}

.topfooter .footercontent span {
  font-size: 20px;
  color: var(--color-white);
}

.footer-bottom {
  padding: 50px 0px;
}

.footer-address h3 {
  display: flex;
  align-items: center;
}

.footer-address svg {
  fill: var(--color-primary);
  width: 24px;
  height: 24px;
  margin-right: 5px;
  position: relative;
}

.footer-address a {
  color: #636363;
  display: block;
  transition: all .5s;
}

.footer-address a:hover {
  color: var(--color-primary);
}

.footer-address h5 {
  margin-top: 15px;
}

.footer-bottom li a {
  color: var(--color-primary-light);
  font-size: 18px;
  font-weight: 500;
}

.footer-bottom li {
  line-height: 40px;
}

.footer-bottom li a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  border-bottom: 1px solid #303232;
}

.footer-form input {
  font-size: 14px;
  color: #656668;
  padding: 10px 14px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
  border: 1px solid #313438;
  background: var(--color-dark-light);
}

.footer-form button {
  background-color: var(--color-primary);
  border: unset;
  padding: 9px 12px;
}

.footer-form svg {
  fill: var(--color-black);
  width: 25px;
  height: 25px;
}

.copyright p {
  color: #cecece;
  padding: 0;
  margin: 0;
}

.copyright p a {
  color: var(--color-white);
  transition: all .5s;
}

.copyright p a:hover {
  color: var(--color-primary);
}

 .social-icon li a {
  margin-left: 10px;
  padding: 10px;
}
.social-icon li a:last-child {
  margin-right: 0px;
}
.social-icon li a:first-child {
  margin-left: 0px;
}
 .social-icon li a svg {
  fill: var(--color-white);
  width: 20px;
  height: 20px;
  transition: all .5s;
}

 .social-icon li a:hover svg {
  fill: var(--color-primary);
}





/*--------------------------------------------------------------
# logo-banner
--------------------------------------------------------------*/
.just-one-imeges {
  display: flex;
  transform: translate3d(0, 0, 0);
  animation: moveSlideshow 12s cubic-bezier(.55,.09,.68,.53) infinite;
}




.just-one-imeges img {
  aspect-ratio: 2/2;
  object-fit: contain;
  padding: 0px 18px;
  max-height: 83px;
  background: var(--color-white);
  border-radius: 8px;
  min-width: 186px;

}

.just-one-imeges img + img{
  margin-inline-start: 20px;
}


  @keyframes moveSlideshow {
  100% { 
    transform: translateX(-50%);  
  }
}

.accordion-button:not(.collapsed){
  box-shadow: none !important;
}

.border-style{
  border: 2px dashed var(--color-primary);
  box-shadow: inset 0 0 15px 0 var(--color-primary);
}

.testimonail-wrap .section-header p{
  color: var(--color-white);
}


.table-style-three thead {
  background: #424242;
  color: var(--color-white);
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

.table-style-three {
  border-collapse: unset;
  border-spacing: 0 10px;
}

.table-style-three > tbody > tr > td {
  padding: 20px 15px;
  border-right: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  vertical-align: middle;
  border: none;
  transition: all .3s ease;
  color: var(--color-primary);
}

.table-style-three tbody tr {
  text-align: left;
  transition: all .1s linear;
  background: #424242;
  border-collapse: unset;
  border-spacing: 0 10px;
}

.table-style-three tbody tr td:first-child {
  border-left: 3px solid #000;
  border-radius: 2px 0 0 2px;
}

.table-style-three tbody tr:hover td {
  border-color: var(--color-primary);
  transition: all .4s;
}

[dir="rtl"] ul.list-style-one li:before{
  left: unset;
  right: 2px;
}


ul.list-style-one li:last-child{
padding-bottom: 0px;
}
