@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
:root {
  --fallback-fonts: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Roboto", var(--fallback-fonts);
}
.poppins-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.poppins-medium {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.poppins-semibold {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.poppins-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}
:root {
  --color-one: #05668d;
  --color-one-dark: #045373;
  --color-two: #81a51f;
  --color-two-dark: #6f931e;
  --color-white: #fff;
  --color-body: #666666;
  --transition: all .4s;
}
:root {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-weight: 400;
  font-family: var(--font-primary);
  overflow-x: hidden
}
.container, .container-lg, .container-md, .container-sm, .container-xl {
  max-width: 1280px;
}
ul {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
a {
  list-style: none;
  text-decoration: none;
}
img {
  max-width: 100%;
}
/* ============   Top Bar css start==========*/
.topbar {
  padding: 15px 0px 0px 0px;
  position: absolute;
  width: 100%;
  top: 0;
}
.top-bar-support a {
  color: #000000;
  font-size: 14px;
  font-weight: 500;
}
.top-bar {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
.top-bar-dropdown {
  position: relative;
}
.dropdown-btn {
  background-color: unset;
  border: unset;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #444;
  font-size: 14px;
  font-weight: 500;
}
.top-bar .dropdown-btn i {
  margin-left: 5px;
  font-size: 12px;
}
.dropdown-menu-two {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: 0px solid #ccc;
  border-radius: 5px;
  width: 200px;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
  padding: 10px;
  z-index: 999999999;
  transform: translateX(-50%);
  text-align: start;
}
.top-bar-dropdown.language .dropdown-menu-two {
  max-height: 300px;
  overflow-x: hidden;
  overflow-y: scroll;
}
.top-bar-dropdown.notification .dropdown-menu-two {
  width: 320px;
}
.top-bar-dropdown.account .dropdown-menu-two {
  width: 200px;
}
.top-bar-dropdown .dropdown-menu-two.open {
  display: block;
}
.top-bar .dropdown-menu-two li {
  padding: 8px 15px;
  cursor: pointer;
  transition: var(--transition);
}
.topbar .dropdown-menu-two li a {
  font-size: 15px;
  color: #000;
  transition: var(--transition);
}
.topbar .dropdown-menu-two li:hover {
  background-color: var(--color-one);
  border-radius: 5px;
}
.topbar .dropdown-menu-two li:hover a {
  color: #fff;
}
@media (max-width: 767px) {
  .top-bar-dropdown .dropdown-btn {
    display: inline-block;
    width: fit-content;
    text-align: left;
  }
  .top-bar .dropdown-btn i {
    margin-left: 0px;
  }
  .top-bar-dropdown.open .dropdown-menu-two {
    display: block;
  }
  .top-bar-dropdown.notification .dropdown-menu-two {
    transform: unset;
  }
}
/* ============   Top Bar css end==========*/
/*---------------------------------------------------------

  Main Header Css

---------------------------------------------------------*/
.header {
  background-color: transparent !important;
  position: absolute;
  top: 34px;
  /* left: 0 width: 100%; */
  z-index: 999;
  width: 100%;
  /* height: 76px; */
}
.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}
.header .clientarea, .header .clientarea:focus {
  border: 1px solid var(--body-bg);
  padding: 11px 38px;
  border-radius: 50px;
  color: var(--body-bg);
  transition: var(--transition);
}
.header .clientarea:hover, .header .clientarea:focus:hover {
  background: var(--color-third);
  color: var(--color-secondary);
  border: 1px solid var(--color-third);
}
@media (max-width: 1199px) {
  .header .main-header {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .header .logo {
    order: 1;
  }
  .header .clientarea {
    order: 2;
    margin: 0;
    margin-inline-end: 15px;
  }
  .header .navmenu {
    order: 3;
  }
}
@media (max-width: 575px) {
  .header .clientarea {
    padding: 10px 30px;
  }
  .col-lg-3.text-start {
    display: none;
  }
  .topheader-right {
    justify-content: space-between;
  }
}
@media (max-width: 450px) {
  .header .clientarea {
    display: none;
  }
}
.col-lg-3.text-end {
  justify-content: space-between;
}
@media (max-width: 867px) {
  .topheader .col-lg-6.text-center {
    display: none;
  }
}
/*--------------------------------------------------------------

# Navigation Menu

--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
    z-index: 2;
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navmenu li {
    position: relative;
  }
  .navmenu > ul > li {
    padding: 0px 0px 0px 40px;
    cursor: pointer;
  }
  .navmenu > ul > li > a, .navmenu > ul > li > a:hover, .navmenu > ul > li > a:focus {
    padding: 28px 0;
    position: relative;
    display: block;
    color: #222;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 0;
  }
  .navmenu > ul > li > a > svg {
    rotate: 90deg;
    transition: var(--transition);
  }
  .navmenu > ul > li > a:hover > svg {
    rotate: -90deg;
  }
  .navmenu > ul > li > a::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    bottom: 28px;
    background: var(--color-one);
    transition: all 0.3s ease-in-out;
    opacity: 0;
  }
  .navmenu > ul > li:hover > a:after {
    opacity: 1;
  }
  .navmenu .dropdown ul {
    margin: 0;
    padding: 20px;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: var(--transition);
    border-radius: 10px;
    z-index: 99;
    background: var(--color-white);
    -webkit-box-shadow: 9px 9px 22px -1px rgba(0, 0, 0, 0.12);
    box-shadow: 9px 9px 22px -1px rgba(0, 0, 0, 0.12);
  }
    .navmenu .dropdown ul.single_sub_menu.right {
	right: 0;
	left: auto;
}
  .navmenu .dropdown ul li {
    min-width: 250px;
  }
  .navmenu .dropdown ul a {
    display: flex !important;
    align-items: center;
    padding: 12px 10px !important;
    gap: 20px;
    color: #222;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 0;
    display: block;
  }
  .navmenu .dropdown ul a i {
    font-size: 28px;
    color: #a5be00;
    opacity: .549;
    font-size: 28px;
    transition: var(--transition);
  }
  .navmenu .dropdown ul a:hover, .navmenu .dropdown ul .active:hover, .navmenu .dropdown ul li a:hover > i {
    padding-inline-start: 8px;
    color: var(--color-one);
    opacity: 1;
  }
  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }
  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
  /*.navmenu .megamenu {
        position: static;
    }*/
  .navmenu .megamenu .mega-menu {
    width: max-content;
    height: auto;
    transform: translateX(-50%);
    left: 50%;
    box-shadow: 0 36px 35px rgba(61, 60, 60, 0.08);
    transform-origin: 0 0 0;
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s;
  }
  .navmenu .megamenu.mini-megamenu {
    transform: translateY(0px) translateX(0%);
  }
  .navmenu .megamenu.mini-megamenu {
    transform: translateY(0px) translateX(0%);
  }
  .navmenu .megamenu .mega-menu-item {
    padding: 0;
    margin: 0;
    flex-direction: column;
    display: flex;
    align-items: flex-start !important;
  }
  .navmenu .megamenu .mega-menu-item li:not(:last-child) {
    margin-inline-end: 35px;
  }
  .navmenu .megamenu .mega-menu-item li {
    margin-bottom: 20px;
  }
  .navmenu .megamenu .mega-menu-item a {
    display: flex !important;
    align-items: center;
    padding: 10px !important;
    width: 100%;
    font-size: 16px;
    border-radius: 4px;
  }
  .navmenu .megamenu .mega-menu-item a:hover {
    /*border: 1px solid #E6E5FF;*/
  }
  .navmenu .megamenu .mega-menu-item a i {
    font-size: 28px;
    color: #a5be00;
    opacity: .549;
    transition: var(--transition);
  }
  .navmenu .megamenu .mega-menu-item a:hover i {
    padding-inline-start: 8px;
    color: var(--color-one);
    opacity: 1;
  }
  .navmenu .megamenu .mega-menu-item a .info .heading {
    color: #222;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 0;
    display: block;
  }
  .navmenu .megamenu .mega-menu-item a:hover .info .heading {
    color: var(--color-one);
  }
  .navmenu .megamenu .mega-menu-item a .info .content {
    display: block;
    font-size: .875rem;
    line-height: 1.313rem;
    font-weight: 400;
    color: #222222b3;
    margin-bottom: 0;
    white-space: normal;
  }
}
/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--color-one);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
  .navmenu {
    padding: 0;
    z-index: 9997;
  }
  .navmenu ul {
    display: none;
    position: absolute;
    inset: 43px 10px 10px 10px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }
  .navmenu a, .navmenu a:focus {
    color: var(--btc);
    padding: 10px 20px;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i, .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
  }
  .navmenu a i:hover, .navmenu a:focus i:hover {
    color: var(--color-primary);
  }
  .navmenu a:hover, .navmenu .active, .navmenu .active:focus {
    color: var(--color-primary);
  }
  .navmenu .active i, .navmenu .active:focus i {
    color: color: var(--color-primary);
    transform: rotate(180deg);
  }
  .navmenu > ul > li > a {
    border-bottom: 1px solid #f3f3f3;
  }
  .navmenu > ul > .dropdown > ul li {
    border-bottom: 1px solid #f3f3f3;
  }
  .navmenu > ul > .dropdown > ul li a {
    font-size: 15px;
    padding: 10px 0;
    display: block;
  }
  .navmenu .dropdown ul, .navmenu .megamenu ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 0px 0;
    margin: 0px 20px;
    background-color: #fff;
    transition: all 0.5s ease-in-out;
  }
  .navmenu .dropdown > .dropdown-active, .navmenu .megamenu > .dropdown-active {
    display: block;
  }
  body::before {
    content: '';
    display: block;
    background: #0e1013;
    position: fixed;
    top: 0;
    z-index: 99;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  body.mobile-nav-active::before {
    opacity: 1;
    visibility: visible;
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .mobile-nav-toggle {
    color: var(--color-one);
    position: absolute;
    font-size: 32px;
    top: 0px;
    left: 0px;
    margin-right: 0;
    z-index: 9999;
    background: var(--color-primary);
    padding: 4px;
  }
  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    background: var(--color-white);
    transition: 0.3s;
    width: 40%;
    right: 0;
    top: 0;
    height: 100vh;
    overflow: auto;
    z-index: 9999;
  }
  .mobile-nav-active .navmenu > ul {
    display: block;
  }
  .navmenu .megamenu .mega-menu-item a i {
    display: none;
  }
  .navmenu .megamenu .mega-menu-item a .info .content {
    display: none;
  }
}
@media (max-width:767px) {
  .mobile-nav-active .navmenu {
    width: 80%;
  }
}
/*=================btn css===================*/
.btn-grp {
  display: flex;
  align-items: center;
  gap: 15px;
}
.theme i {
  transform: translate(5px);
  transition: var(--transition);
  font-size: 15px;
  opacity: 0.7;
}
.theme:hover i {
  transform: translate(10px);
  opacity: 1;
}
.btn-one {
  padding: 10px 36px;
  font-size: 20px;
  border-radius: 14px;
  background: var(--color-two);
  border: 3px solid var(--color-two);
  color: var(--color-white);
  font-weight: 500;
  display: block;
  width: fit-content;
  transition: var(--transition);
  min-height: 64px;
  display: flex;
  align-items: center;
}
.btn-one:hover {
  background: var(--color-two-dark);
  border: 3px solid var(--color-two-dark);
  color: var(--color-white);
}
.btn-two {
  padding: 10px 36px;
  font-size: 20px;
  border-radius: 14px;
  background: var(--color-white);
  color: var(--color-one);
  border: 2px solid var(--color-one);
  font-weight: 500;
  display: block;
  width: fit-content;
  transition: var(--transition);
  min-height: 64px;
  display: flex;
  align-items: center;
}
@media(max-width:480px) {
  .btn-two, .btn-one {
    padding: 10px 15px;
    font-size: 20px;
  }
}
/*=================btn css===================*/
/*=================Extra Classes===================*/
.bg-theme {
  background-color: #ebf4fa;
}
.color-theme {
  color: var(--color-two-dark);
}
.bg-theme-two {
  background-color: #fffaee;
}
.bg-theme-three {
  background-color: #f4f2f2;
}
.gap-y-60 {
  padding: 60px 0px;
}
.gap-y-120 {
  padding: 140px 0px 60px 0px;
}
.banner-subheading h3 {
  font-size: 2.25rem;
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 1.2;
}
.banner-subheading h2 {
  font-size: clamp(35px, 4vw, 45px);
  font-weight: 600;
  line-height: 1.2;
}
.fs-18 {
  font-size: 18px;
}
body p {
  color: #666 !important;
}
.gap-bottom {
  margin-bottom: 30px;
}
body h4 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 15px;
  display: block;
}
/*=================Extra Classes===================*/
/*=================hero-banner===================*/
.banner-heading .feature {
  text-transform: uppercase;
  color: var(--color-one);
  font-size: 18px;
  font-weight: 500;
}
.banner-heading h1 {
  color: #222;
  font-size: clamp(35px, 4vw, 45px);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.2;
}
.breadcrumb__content.banner-heading.text-center h1 {
	font-size: clamp(24px, 3vw, 32px);
}
.landing-page.ssl .hero {
	padding: 60px 0px;
}
.banner-heading .text {
  color: #666;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.875;
}
.banner-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--color-body);
  line-height: 35px;
}
.banner-list li img {
  margin-bottom: 4px;
}
.price-sec p {
  font-size: 18px;
  font-weight: 600;
  margin: 16px 0px;
  color: var(--color-one);
  letter-spacing: .5px;
}
.contact-link a {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-one);
}
.contact-link a i {
  font-size: 16px;
}
.contact-link a:hover {
  color: var(--color-one-dark);
}
.search-bar {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background: white;
  margin-top: auto;
  background: #FFFFFF;
  z-index: 12;
  position: relative;
  padding: 10px 10px;
  border-radius: 12px;
}
.search-bar .inputs {
  flex: 1;
  border: 0;
  padding: 10px 30px;
  outline: 0;
  border-radius: 12px;
  font-size: 18px;
}
.search-bar button.search {
  padding: 20px 60px;
  border-radius: 6px;
  background: var(--color-one-dark);
  border: 0;
  color: #fff;
  text-transform: capitalize;
  font-size: 18px;
}
.domain-transfer input {
  width: 100%;
  outline: unset;
}
.domain-transfer .inputss {
  padding: 20px 30px;
  background: var(--color-white);
  border-radius: 12px;
  border: 1px solid var(--color-white);
  font-size: 18px;
  min-height: 70px;
}
.domain-transfer .search {
  padding: 20px 30px;
  color: var(--color-white);
  background: var(--color-one);
  border-radius: 12px;
  border: 1px solid var(--color-one);
  font-size: 18px;
  min-height: 70px;
}
@media(max-width:767px) {
  .search-bar {
    padding: unset;
    height: 70px;
    margin-bottom: 100px;
  }
  .search-bar button.search {
    padding: 20px 60px;
    border-radius: 6px;
    background: var(--color-one-dark);
    border: 0;
    color: #fff;
    text-transform: capitalize;
    font-size: 18px;
    position: absolute;
    bottom: -80px;
  }
}
.domain-list {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.domain-list li {
  min-width: 100px;
  font-size: 18px;
  color: var(--color-two);
  font-weight: 500;
}
.service-one {
  background: #E8F3FF url(../images/mail.jpg) no-repeat center bottom -70px;
  background-size: contain;
  height: 100%;
  padding: 40px;
  border-radius: 12px;
  height: 100%;
}
.service-one .title {
  background: #C8E2FF;
  color: var(--color-one-dark);
  margin-bottom: 12px;
  font-size: 12px;
  border-radius: 100px;
  padding: 8px 16px;
  display: flex;
  width: fit-content;
  font-weight: 400;
}
.service-one.two {
  background: #D1F0FF;
}
.service-two .title {
  background: #C8E2FF;
  color: var(--color-one-dark);
  margin-bottom: 12px;
  font-size: 12px;
  border-radius: 100px;
  padding: 8px 16px;
  display: flex;
  width: fit-content;
  font-weight: 400;
}
.service-three .title {
  background: #C8E2FF;
  color: var(--color-one-dark);
  margin-bottom: 12px;
  font-size: 12px;
  border-radius: 100px;
  padding: 8px 16px;
  display: flex;
  width: fit-content;
  font-weight: 400;
}
.service-three {
  background: #E8F3FF;
  padding: 40px;
  height: 100%;
  border-radius: 0px 0px 12px 12px;
}
.service-four {
  background: #d0f0fe;
  padding: 40px;
  height: 100%;
  border-radius: 12px;
}
.service-four .title {
  background: #C8E2FF;
  color: var(--color-one-dark);
  margin-bottom: 12px;
  font-size: 12px;
  border-radius: 100px;
  padding: 8px 16px;
  display: flex;
  width: fit-content;
  font-weight: 400;
}
.service-five {
  background: #ddffe8;
  padding: 40px;
  height: 100%;
  border-radius: 12px;
}
.service-five .title {
  background: #C8E2FF;
  color: var(--color-one-dark);
  margin-bottom: 12px;
  font-size: 12px;
  border-radius: 100px;
  padding: 8px 16px;
  display: flex;
  width: fit-content;
  font-weight: 400;
}
.feature-one {
  display: flex;
  align-items: start;
  gap: 20px;
  height: 100%;
}
.feature-one .icon img {
  min-width: 50px;
}
.feature-one h4 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 15px;
  display: block;
}
.feature-one.block {
  display: block;
  text-align: center;
}
.feature-one.block .icon {
  margin-bottom: 20px;
}
.feature-one.block .icon i {
  font-size: 35px;
  color: var(--color-two);
}
.feature-one.block-two {
  margin-top: 20px;
}
.feature-one.block-two i {
  font-size: 35px;
  color: var(--color-two);
}
@media(max-width:480px) {
  .feature-one {
    display: block;
  }
  .feature-one .icon img {
    margin-bottom: 20px;
  }
}
.feature-two {
  border: 1px solid #00000036;
  padding: 30px;
  height: 100%;
  background: #fff;
  border-radius: 12px;
}
.hosting-link img {
  min-height: 250px;
}
.hosting-link .service-three {
  min-height: 270px;
}
.domain_card {
  text-align: center;
  box-shadow: 0 6px 15px #04233b1a;
}
.domain_card .domain-name {
  background: #e3f7ff;
  padding: 38px;
  margin-bottom: 20px;
}
.domain_card .domain-name h4 {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-one);
}
.domain-content {
  padding: 0px 10px 20px 10px;
}
.domain-content .price-value {
  font-size: 40px;
  font-weight: 600;
  display: block;
}
.policy h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-two-dark);
}
/*=================hero-banner===================*/
/*=================logincss====================*/
.login_page {
  padding: 40px;
  border-radius: 8px;
  background: #f9f9f9;
  border: 1px solid #e1e1e1;
  box-shadow: 0 0 3px 3px rgba(0, 0, 0, .1);
}
.input_one {
  display: flex;
  padding: 10px 15px;
  border-radius: 6px;
  background: var(--color-white);
  border: 1px solid var(--color-two-dark);
  outline: none;
  width: 100%;
  align-content: center;
}
.labels {
  display: block;
  font-size: 15px;
  color: var(--color-two-dark);
  font-weight: 500;
  text-align: start;
}
.forgot-password-link {
  color: var(--color-two);
  transition: var(--transition);
}
.forgot-password-link:hover {
  color: var(--color-two-dark);
  transition: var(--transition);
}
.login-content {
  padding: 20px 0px 10px 0px;
  border-bottom: 1px solid var(--color-two-dark);
}
/*=================logincss====================*/
/*=================plan-css===================*/
.plan_feature {
  border-bottom: 1px dashed #05668d;
  font-weight: 700;
  color: #222;
  font-size: 16px;
}
.plan-style {
  padding: 40px 40px 40px 20px;
  border: 1px solid #00000036;
  background: #fff;
  border-radius: 12px;
  text-align: center;
}
.plan-style h4 {
  color: #222;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.25rem;
}
.plan-style p {
  color: #666;
  font-size: 14px;
}
.price_plan {
  color: #222;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 48px;
  display: block;
  margin-top: .5rem;
    margin-bottom: 20px;
}
.price_plan sub {
  color: #666;
  font-size: 14px;
  font-weight: 400;
}
.offer_price {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-one);
  margin: 10px 0px;
  display: block;
}
.plan-style .btn-two {
  margin: auto;
  width: 100%;
  justify-content: center;
}
.plan-list {
  padding-top: 25px;
}
.plan-list li {
  display: flex;
  align-items: start;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-inline-start: 0px;
  text-align: start;
  color: #222;
}
.plan-list.two li {
  font-size: 18px;
}
.plan-list li::before {
  content: "\F26E";
  font-family: "bootstrap-icons";
  font-weight: 100 !important;
  font-size: 20px;
  margin-inline-end: 6px;
  color: var(--color-one);
  line-height: 30px;
  position: relative;
  top: -7px;
}
.plan-style.active {
  position: relative;
  border: 2px solid var(--color-one);
}
.recommended-label {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-one);
  color: #fff;
  padding: 5px 15px;
  font-size: 13px;
  font-weight: bold;
  border-radius: 20px;
}
.home-plan {
  border: 1px solid #00000036;
  padding: 30px;
  height: 100%;
  background: #fff;
  border-radius: 12px;
  text-align: center;
}
.home-plan img {
  margin-bottom: 20px;
  max-height: 200px;
  min-height: 200px;
}
/*=================Plan-css===================*/
/*  =============tabbing css start=============*/
.tab-section {
  padding: 40px 0;
}
.tab-buttons {
  display: flex;
  gap: 1rem;
  margin: 46px 0px;
  overflow: auto;
  scrollbar-width: none;
  justify-content: center;
}
.tab-btn {
  background: #f5f7ff;
  border: none;
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.3s, color 0.3s;
  font-size: 16px;
  padding: 10px 20px;
  min-width: fit-content;
}
.tab-btn.active {
  background: var(--color-two-dark);
  color: white;
}
.tab-content .tab-pane {
  display: none;
}
.tab-content .tab-pane.active {
  display: block;
  background: var(--color-white);
  border-radius: 12px;
  padding: 20px;
  height: 100%;
}
.feature-style-three.tabs-img img {
  max-width: 100% !important;
}
.feature-style-three.tabs-img h5 {
  font-size: 17px;
}
.tab-section .section-title h4 {
  font-size: 19px;
}
.tab-section .feature-style-two h5 {
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}
.tab-section .feature-style-one {
  background: #fff;
  padding: 5px;
}
.tab-section .feature-style-one h4 {
  font-size: 15px;
}
.tab-section .feature-style-one p {
  font-size: 13px;
}
@media(max-width:767px) {
  .tab-buttons {
    justify-content: start;
  }
}
/* ----------------------------------------------------------------
    27. Titan Email Video
------------------------------------------------------------------- */
.titanmail-video {
  background-color: rgb(250, 251, 254);
  border: 15px solid rgba(196, 192, 192, 0.5);
  border-radius: 5px;
  overflow: hidden;
}
.titanmail-video video {
  height: 100%;
  width: 100%;
  display: flex;
  border: none;
  background-color: #000;
}
/* ----------------------------------------------------------------
     testimonial css
------------------------------------------------------------------- */
.testimonial-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 25px;
  box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--color-one-dark);
  margin-bottom: 1px;
}
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.title h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}
.stars i {
  color: #ffc107;
  font-size: 16px;
}
.message {
  margin: 20px 0;
  color: #9aa8ad;
  line-height: 1.7;
  font-size: 15px;
}
.author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.avatar {
  width: 48px;
  height: 48px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.avatar i {
  color: #fff;
  font-size: 18px;
}
.info h5 {
  margin: 0;
  font-size: 15px;
}
.info span {
  font-size: 13px;
  color: #888;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
@media(max-width:480px) {
  .card-top {
    display: block;
  }
  .card-top {
    display: block;
    justify-content: space-between;
    align-items: center;
  }
  .stars {
    margin-top: 10px;
  }
  .testimonial-card {
    margin: 0px 10px;
  }
}
/* ----------------------------------------------------------------
     testimonial css
------------------------------------------------------------------- */
/* ----------------------------------------------------------------
    20. Sunrise Domain Form Css
------------------------------------------------------------------- */
.sunrise-form {
  padding: 20px;
  position: relative;
  box-shadow: 0 0 5px #e1e1e1;
  border-radius: 5px;
  border: 1px solid #d5d5d5;
}
.sunrise-form .labels {
  font-size: 17px;
  font-weight: 600;
  position: relative;
  width: 100%;
}
.sunrise-form .smd-info {
  position: absolute;
  right: 20px;
  top: 6px;
}
.sunrise-form .smd-info .tooltip-txt {
  position: relative;
  cursor: help;
  color: var(--color-one);
  font-weight: 500;
  font-size: 15px;
}
.sunrise-form .smd-info .tooltip-txt .tooltip-info {
  display: none;
  padding: 15px;
  z-index: 5;
  cursor: default;
  background: #272727;
  color: #ededed;
  font-size: 12px;
  line-height: 1.5;
  position: absolute;
  top: 25px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
.sunrise-form .smd-info .tooltip-txt .tooltip-info.what-is-smd {
  width: 635px;
  right: 2px;
}
.sunrise-form .smd-info .tooltip-txt .tooltip-info.what-is-smd span {
  background: url('../images/up_arrow.png') 0 0 no-repeat;
  right: 29px;
  width: 22px;
  height: 12px;
  position: absolute;
  top: -10px;
  display: block;
}
.sunrise-form .smd-info .tooltip-txt:hover .tooltip-info {
  display: block;
}
.sunrise-form .smd-info .tooltip-txt + .tooltip-txt {
  cursor: pointer;
}
@media (max-width:991px) {
  .sunrise-form .smd-info {
    display: none;
  }
}
.sunrise-form .input {
  width: 100%;
  background: #fff;
  border: 1px solid #e9e9e9;
  padding: 15px;
  font-size: 16px;
  outline: none;
  border-radius: 5px;
}
/* ----------------------------------------------------------------
    Contact Page
------------------------------------------------------------------- */
.contact .info {
  background-color: #fff;
  padding: 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.contact .info h3 {
  font-weight: 600;
  font-size: 24px;
}
.contact .info p {
  color: #8d969f;
  margin-bottom: 30px;
  font-size: 15px;
}
.contact .info-item + .info-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #dddedf;
}
.contact .info-item i {
  font-size: 24px;
  color: rgb(var(--color-primary));
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}
.contact .info-item h4 {
  padding: 0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}
.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: #8d969f;
}
.contact form {
  width: 100%;
}
.contact form .form-group {
  padding-bottom: 8px;
}
.contact form input[type=text], .contact form input[type=email], .contact form textarea {
  color: #8d969f;
  background-color: #fff;
  border-radius: 0px;
  box-shadow: none;
  font-size: 14px;
  border-color: #c0c0c0;
}
.contact form input[type=text]:focus, .contact form input[type=email]:focus, .contact form textarea:focus {
  border-color: rgb(var(--color-primary));
}
.contact form input[type=text]::placeholder, .contact form input[type=email]::placeholder, .contact form textarea::placeholder {
  color: #8d969f;
}
.contact form input[type=text], .contact form input[type=email] {
  height: 48px;
  padding: 10px 15px;
}
.contact form textarea {
  padding: 10px 12px;
  height: 290px;
}
/* ----------------------------------------------------------------
    05. Scroll top button
------------------------------------------------------------------- */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  inset-inline-end: 15px;
  bottom: -40px;
  z-index: 99999;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.5s;
  cursor: pointer;
  border: 0;
  outline: unset;
  box-shadow: unset;
}
.scroll-top:after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  inset-inline-start: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}
.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.scroll-top:hover {
  background: var(--color-one-dark);
  color: #fff;
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
  background: var(--color-one);
}
/* ----------------------------------------------------------------
     accordion css
------------------------------------------------------------------- */
.accordion {
  background: transparent;
  padding: 20px;
  margin: 0;
  list-style: none;
}
.accordion li {
  list-style: none;
  border-top: 1px solid #d5d5d5;
  background: var(--color-white);
}
.accordion li {
  transition: transform 0.3s ease;
}
/*.accordion li + li {
  margin-top: 15px;
}*/
.accordion li > a {
  font-size: 16px;
  font-weight: 500;
  color: #555 !important;
  padding: 15px;
  display: flex;
  align-items: center;
  transition: all 0.3s;
  cursor: pointer;
  user-select: none;
  border-radius: 5px;
}
.accordion li.active > a {
  color: #000 !important;
}
.accordion li.active > a, .accordion li.active > a:hover, .accordion li.active > a:focus {
  color: #353535;
}
.accordion li > a::after {
  content: '+';
  width: 30px;
  height: 30px;
  display: flex;
  color: var(--color-two);
  justify-content: center;
  align-items: center;
  font-size: 17px;
  margin-inline-start: auto;
  border-radius: 5px;
}
.accordion li.active > a:after {
  content: '-';
  font-size: 22px;
}
.accordion li p {
  padding: 0px 15px 15px 15px;
  font-size: 15px;
  line-height: 1.7;
  color: #4B4B4B;
  display: none;
  border-radius: 0px 0px 5px 5px;
  margin: 0;
}
.accordion li.active p {
  display: block;
}
/*=================footer css===================*/
.main-footer {
  background: #182c3a;
}
.main-footer h5, .main-footer a, .main-footer p, .main-footer span {
  color: var(--color-white);
}
.social-link ul {
  display: flex;
  align-items: center;
  gap: 16px;
}
.main-footer p {
  color: #b8bdc0;
  font-size: 14px;
  font-weight: 400;
}
.social-link ul a {
  padding: .75rem;
  border-color: #fff3;
  border-width: 1px;
  border-style: solid;
  height: 40px;
  width: 40px;
  border-radius: 9999px;
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-size: calculateRem(18px);
  justify-content: center;
  transition: all .5s;
}
.social-link ul a:hover {
  text-decoration: none;
  color: #fff;
  border-color: #fff;
}
.main-footer h5 {
  font-size: 14px;
  font-size: calculateRem(14px);
  color: #748089;
  font-weight: 400;
}
.footer-title li a {
  color: #fff;
  line-height: 1.313rem;
  font-weight: 400;
  font-size: .875rem;
  border: 0;
  text-align: left;
  padding: 3px 0;
}
.footer-title li a:hover {
  color: #a5be00;
  text-decoration: none;
  border: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 1rem;
  margin-top: 20px;
}
.terms-link {
  display: flex;
  align-items: center;
  gap: 20px;
}
.terms-link a {
  color: #b8bdc0;
  font-size: 14px;
  font-weight: 400;
  transition: var(--transition);
}
.terms-link a:hover {
  color: #fff;
}
.email-box {
  display: flex;
  align-items: center;
  background: #2f4453;
  border-radius: 8px;
  padding: 6px;
  width: 100%;
  max-width: 420px;
}
.email-box input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 14px;
  color: #fff;
  font-size: 15px;
}
.email-box input::placeholder {
  color: #cfd8dc;
}
.email-box button {
  background: #8cb31f;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.email-box button i {
  color: #fff;
  font-size: 16px;
}
.email-box button:hover {
  background: #7aa31b;
}
/*=================footer css===================*/