:root {
  --color-one: #457BFF;
  --color-one-hover: #457BFF;
  --color-two: #5A28FA;
  --white: #fff;
  --text-color: #1A1A1A;
  --transition: all .3s ease-in-out;
}
:root {
  scroll-behavior: smooth;
}
* {
  scrollbar-width: thin;
  scrollbar-color: #0070d1 transparent;
}
*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
*::-webkit-scrollbar-track {
  background: transparent;
}
*::-webkit-scrollbar-thumb {
  background-color: #0070d1;
}
::selection {
  background: #0070d1;
}
::selection {
  color: #fff;
  text-shadow: none;
}
body {
  font-family: 'Satoshi', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #1d1e20;
  overflow-x: hidden;
}
a{
  text-decoration: unset !important;
  list-style: unset !important;
}
body .theme-gap {
  padding: 48px 0px;
}
h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
}
h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
}
.container {
  max-width: 1208px;
}

img {
  max-width: 100%;
  height: auto;
}
ul {
  margin: 0;
  padding: 0;
}
ul li ,a{
  list-style: none;
  text-decoration: unset;
}
/*=======extraclasses==========*/

/*===============topbar============*/

.header-top{
  background:#000;
  padding: 5px 0px;
}
.right-top-bar span{
  color: var(--white);
  font-size: 15px;
}

.top-bar-support {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-support a {
  color: #000000;
  font-size: 14px;
  font-weight: 500;
}

.top-bar {
  display: flex;
  justify-content: flex-end;
}
@media(max-width: 767px){
.top-bar {
  display: flex;
  justify-content: center;
}
}
.top-bar-dropdown {
  position: relative;
}
.dropdown-btn {
  background-color: unset;
  border: unset;
  padding: 0;
  cursor: pointer;
  font-size: 15px;
  display: flex;
  align-items: center;
  color: #fff;
  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%);
}
.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);
}

.top-bar .dropdown-menu-two li a {
  font-size: 15px;
  color: #000;
  transition: var(--transition);
  font-weight: 500;
}

.top-bar .dropdown-menu-two li:hover {
  background-color: var(--color-one);
  border-radius: 5px;
}
.top-bar .dropdown-menu-two li:hover a {
  color: #fff;
}

.top-bar-dropdown.account ,.top-bar-dropdown.currency{
  margin-inline-end: 15px;
}
@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;
}
}

/*===============topbar============*/

/* ======================
# Header
====================== */
.main-header {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #eee;
  z-index: 999;
}
.main-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: unset;
  background-color: #fff;
  animation: headerSticky .95s ease forwards;
  box-shadow: var(--bs-box-shadow) !important;
  z-index: 99;
  max-width: 100%;
}
@keyframes headerSticky {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.main-header > * {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-header .logo-box a.logo {
  display: block;
  position: relative;
}
.main-header .logo-box a.logo img {
  max-height: 32px;
}
.main-header .menu-bar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-header .menu-bar {
  display: block;
  margin: 0;
}
@media (min-width:1200px) {
  .main-header .menu-bar > ul {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .main-header .menu-bar > ul > li {
    display: block;
  }
  .main-header .menu-bar > ul > li > a {
  font-size: 15px;
  padding: 20px 15px;
  color: #525252;
  display: block;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  font-weight: 600;
}
  .main-header .menu-bar > ul > li:hover > a {
    color: var(--color-one);
  }
  .main-header .menu-bar > ul > li.dropdown {
    position: relative;
  }
  .main-header .menu-bar > ul > li.dropdown > a > svg {
    transition: transform .3s ease;
    -webkit-transition: transform .3s ease;
    -moz-transition: transform .3s ease;
    -ms-transition: transform .3s ease;
    -o-transition: transform .3s ease;
    width: 24px;
    height: 24px;
  }
  .main-header .menu-bar > ul > li.dropdown > a > i {
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  -webkit-text-stroke: 0.6px;
}
  .main-header .menu-bar > ul > li.dropdown:hover > a > i {
    transform: rotate(180deg);
    color: var(--color-one) !important;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
  }
  .main-header .menu-bar > ul > li.dropdown:hover > a > svg {
    transform: rotate(180deg);
    fill: var(--color-one) !important;
    color: var(--color-one) !important;
  }
  .main-header .menu-bar > ul > li.dropdown > ul {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    background: #fff;
    padding: 10px;
  }
  .main-header .menu-bar > ul > li.dropdown:hover > ul {
    opacity: 1;
    visibility: visible;
  }
  /* ==== megamenu  ==== */
  .main-header .menu-bar > ul > li.dropdown.megamenu.small {
    position: static;
  }
  .main-header .menu-bar > ul > li.dropdown.megamenu > ul {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
  justify-content: space-between;
  width: 100vw;
  box-shadow: 0px 10px 20px rgba(50, 50, 50, 0.2);
}
  .main-header .menu-bar > ul > li.dropdown.megamenu > ul > * {
    flex-shrink: 0;
    /*width: 100%;
    max-width: 100%;*/
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
  }
  .main-header .menu-bar > ul > li.dropdown.megamenu.small > ul {
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
  .main-header .menu-bar > ul > li.dropdown > ul > li > a + a {
    margin-top: 10px;
  }
  /*.main-header .menu-bar > ul > li.dropdown.megamenu.small.two > ul > * {
    flex: 0 0 auto;
    width: 33%;
  }*/
  .main-header > *:has(.dropdown.megamenu.big) {
    position: relative;
  }
  .main-header .menu-bar > ul:has(.dropdown.megamenu.big) {
    position: static;
  }
  /*.main-header .menu-bar>ul:has(.dropdown.megamenu.small){
  position: relative;
}
*/
  .main-header .menu-bar > ul > li.dropdown.megamenu.big {
    position: static;
  }
  .main-header .menu-bar > ul > li.dropdown.megamenu.big ul {
    width: 100%;
  }
  .main-header .menu-bar > ul > li.dropdown.megamenu.big ul > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .main-header .menu-bar .logo-bar {
    display: none;
  }
  .main-header .menu-bar > ul > li.dropdown > ul > li.back {
    display: none;
  }
}
.main-header .menu-bar .dropdown-items {
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
.main-header .menu-bar .dropdown-items:hover {
  background: rgb(0 0 0 / 3%);
}
.main-header .menu-bar .dropdown-items .icon-boxs {
  display: block;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(130deg,#E9F3FF -10%,#fff 50%,#F1ECFF 110%);
  border-radius: 6px;
}
.main-header .menu-bar .dropdown-items .icon-boxs i {
  font-size: 24px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  color: var(--color-one);
}

.main-header .menu-bar .dropdown-items .icon-boxs svg {
  height: 24px;
  min-width: 24px;
  vertical-align: middle;
  width: 24px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
.main-header .menu-bar .dropdown-items:hover .icon-boxs svg {
  fill: var(--color-one) !important;
  color: var(--color-one) !important;
}
.main-header .menu-bar .dropdown-items .content-box {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 2px;
}
.main-header .menu-bar .dropdown-items .content-box .headings {
  display: flex;
  gap: 15px;
  /* justify-content: space-between; */
}
.main-header .menu-bar .dropdown-items .content-box .headings .text {
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  color: #000;
  transition: all 0.5s;
}
.main-header .menu-bar .dropdown-items .content-box .headings .off-badge {
  border-radius: 6px;
  padding: 4px 12px;
  color: #000;
  align-items: center;
  display: inline-flex;
  font-size: 12px;
  height: fit-content;
  width: fit-content;
  white-space: nowrap;
  font-weight: 600;
  line-height: 1.3;
  background: linear-gradient(130deg,#E9F3FF -10%,#fff 50%,#F1ECFF 110%);
  border: 1px solid rgb(0 0 0 / 4%);
}
.main-header .menu-bar .dropdown-items .content-box .contents {
  font-weight: 400;
  line-height: 24px;
  display: block;
  color: #252525;
  font-size: 13px;
  opacity: .8;
}

.main-header .header-right-btns {
  display: flex;
  gap: 10px;
  align-items: center;
}
.main-header .header-right-btns .headerbtn {
  display: block;
  border: 1px solid #212529;
  color: #fff;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 16px;
  background: #212529;
  line-height: 1;
  transition: all 0.3s;
  font-weight: 600;
}
.main-header .header-right-btns .headerbtn:hover {
  background: #424649;
  color: #fff;
  border-color: #424649;
}
.main-header .header-right-btns .hamburger {
  width: 40px;
  height: 40px;
  display: none;
  border-radius: 5px;
  padding: 12px 10px;
  align-self: center;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  background: #000;
  border: 0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.main-header .header-right-btns .hamburger span {
  height: 2px;
  width: 83.33333333%;
  background: #fff;
  transition: all 400ms ease-in-out;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}
.main-header .header-right-btns .hamburger span:first-child {
  -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms;
  animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms;
}
.main-header .header-right-btns .hamburger span:nth-child(2) {
  width: 100%;
  transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms;
  animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms;
}
.main-header .header-right-btns .hamburger span:last-child {
  width: 58.33333333%;
  transition: all 100ms ease-in-out;
  -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 600ms;
  animation: burger-hover 1s infinite ease-in-out alternate forwards 600ms;
}
@keyframes burger-hover {
  0% {
    width: 100%;
  }
  50% {
    width: 50%;
  }
  100% {
    width: 100%;
  }
}
.main-header .menu-bar > ul > li.dropdown > ul > li.menu_img a {
  display: block;
}
.main-header .menu-bar > ul > li.dropdown > ul > li.menu_img h5 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #1d1e20;
  margin-top: 30px;
}
.main-header .menu-bar > ul > li.dropdown > ul > li.menu_img h5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-header .menu-bar > ul > li.dropdown > ul > li.menu_img p {
  color: #1d1e20;
}
@media (max-width:1199px) {
  .main-header .menu-bar > ul > li.dropdown > ul > li.menu_img {
    display: none;
  }
  .main-header {
    padding: 10px 0;
  }
  .main-header .header-right-btns .hamburger {
    display: flex;
  }
  .main-header .menu-bar {
    position: fixed;
    left: 0;
    top: 0;
    background: #fff;
    z-index: 9999;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    padding: 25px;
  }
  .main-header .menu-bar.active {
    display: flex;
  }
  .main-header .menu-bar > ul {
    display: flex;
    flex-direction: column;
  }
  .main-header .menu-bar > ul > li > a {
    font-size: 16px;
    color: var(--text-color);
    display: block;
    width: 100%;
  }
  .main-header .menu-bar > ul > li + li {
    border-top: 1px solid #cecece;
  }
  .main-header .menu-bar > ul > li:nth-child(2) {
    border-top: unset;
  }
  .main-header .menu-bar > ul > li > a {
    font-size: 16px;
    padding: 10px 0;
    color: #000;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
  }
  .main-header .menu-bar > ul > li.dropdown > a > i {
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    display: block;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
  }
  .main-header .menu-bar > ul > li.dropdown > ul {
    display: none;
  }
  .main-header .menu-bar > ul > li.dropdown > ul.active {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    display: flex;
    background: #fff;
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    padding: 25px;
    flex-direction: column;
  }
  .main-header .menu-bar > ul > li.dropdown > ul > li.back {
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e2e2;
    margin-bottom: 15px;
  }
  .main-header .menu-bar > ul > li.dropdown > ul > li.back a {
    display: block;
    font: 16px;
    font-weight: 600;
    color: var(--text-color);
  }
  .main-header .menu-bar .logo-bar {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
  }
  .main-header .menu-bar .logo-bar .logo {
    display: block;
  }
  .main-header .menu-bar .logo-bar .logo img {
    max-height: 40px;
  }
  .main-header .menu-bar .logo-bar .close-menu-btn {
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border: 0;
    background: #e7e7e7;
    color: #0d0d0d;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 26px;
  }
  .main-header .menu-bar .logo-bar {
    margin-bottom: 15px;
  }
}
.main-header .menu-bar .menu-right-mob {
  display: none;
}
@media (max-width:440px) {
  .main-header .menu-bar .menu-right-mob {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .main-header .menu-bar .menu-right-mob .headerbtn {
    display: block;
    border: 2px solid #161718;
    color: #161718;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    padding: 10px 16px;
    font-size: 16px;
    background: transparent;
    line-height: 1;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    text-transform: uppercase;
    text-align: center;
  }
  .main-header .menu-bar .menu-right-mob .headerbtn:hover {
    background: var(--color-one);
    color: #fff;
    border-color: var(--color-one);
  }
  .main-header .header-right-btns > .headerbtn {
    display: none;
  }
}
/* ----------------------------------------------------------------
    button
------------------------------------------------------------------- */
.btn-theme {
  line-height: 64px;
  font-size: 17px;
  padding: 0 40px;
  display: block;
  width: fit-content;
  font-weight: 600;
  transition: var(--transition);
}
.btn-theme i{
  font-size: 13px;
  text-shadow: 1px 0px 0px currentColor;
}
.btn1{
  background-color: var(--color-one);
  border-color: var(--color-one);
  color: var(--white);
  border-radius: 16px;
}
.btn1:hover {
  opacity: 0.9;
  color: var(--white);
}
.plan-btn {
  border-color: var(--color-one);
  color: var(--color-one);
  line-height: 64px;
  font-size: 18px;
  padding: 0 40px;
  border-radius: 16px;
  width: 100%;
  border: 1px solid;
  text-align: center;
}
.plan-btn:hover{
  background-color: var(--color-one);
  border-color: var(--color-one);
  color: var(--white);
  line-height: 64px;
  font-size: 18px;
  padding: 0 40px;
  border-radius: 16px;
}

.service_btn{
  border: 1px solid #10101029;
  border-radius: 16px;
  color: var(--text-color);
  text-align: center;
}
.support-btn{
  background: linear-gradient(180deg,#FBD801 0%,#DABC00 100%);
  color: #222;
  border-radius: 16px;
  font-weight: 700;
}
.support-btn:hover {
  opacity: 0.9;
}
/* ----------------------------------------------------------------
    button
------------------------------------------------------------------- */
.main-heading h1{
  font-size: clamp(28px, 3px + 5vw, 48px);
  font-weight: 700;
  line-height: 1.3;
}
.sub-heading h2{
  font-size: clamp(24px, -1px + 5vw, 44px);
  font-weight: 700;
  line-height: 1.3;
}
.sub-heading p {
  font-size: 16px;
  line-height: 2;
  opacity: .8;
  color: var(--text-color);
}
.section-gap{
  padding: 60px 0px;
}

.bg-one{
  background:#FAFAFA;
}
.radius-1{
  border-radius:20px;
}
.position-relative{
  position: relative;
}
/* ----------------------------------------------------------------
    banner
------------------------------------------------------------------- */

.hero-banner{
  padding: 60px 0px;
}

.theme-offer{
  font-size: clamp(14px, 12px + 0.5vw, 16px);
  margin-bottom: 12px;
  color: #5A28FA;
  padding: .5rem 1rem;
  background: linear-gradient(126deg,#e6defe 0%,#f9f7ff 20%,#f9f7ff 80%,#e4daff 100%);
  border-radius: 21px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.theme-offer i {
  font-size: 18px;
  color: var(--color-one);
}
.theme-offer {
  font-size: 15px;
  color: var(--color-one);
  font-weight: 500;
}
.semibold{
  font-weight: 600;
}
.banner_list {
  margin-top: 12px;
  color: #4D4D4D;
  position: relative;
  padding-inline-start: 28px;
  font-size: 15px;
  display: block;
}
.banner_list::before {
  content: '';
  background-image: url('../images/check.svg');
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  display: inline-block;
  position: absolute;
  top: 2px;
  inset-inline-start: 0;
}
.price_sec{
  margin-top: 20px;
}
.price_sec span{
  font-size: 13px;
  color: var(--text-color);
}
.price_sec .price-value {
  font-weight: 700;
  font-size: clamp(22px, 9.5px + 2.5vw, 32px);
  margin-top: 15px;
}
.price_sec .price-value sub {
  font-size: 16px;
  color: var(--text-color);
  font-weight: 500;
}
/* ----------------------------------------------------------------
    bannner
------------------------------------------------------------------- */
/* ----------------------------------------------------------------
    main
------------------------------------------------------------------- */
.theme-offer-2{
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #457BFF;
  padding: 7px 1rem;
  background: linear-gradient(126deg,#E3EBFF 0%,#FAFBFF 20%,#FAFBFF 80%,#E1EAFF 100%);
  border-radius: 21px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1.6;
}
.hosting-service-card{
  padding: 20px;
  border: 1px solid #00000014;
  border-radius: 22px;
}
.service-one{
  border: 1px solid #00000014;
  transition: all 0.2s;
  border-radius: 22px;
  background-color: white;
  padding: 32px;
  position: relative;
  height: 100%;
}
.service-one:hover{
  box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 6%);
  transform: translatey(2px);
}

.service-one .icon{
  width: 60px;
  height: 60px;
  background: linear-gradient(126deg,#E3EBFF 0%,#FAFBFF 20%,#FAFBFF 80%,#E1EAFF 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-one .icon i {
  font-size: 30px;
  color: var(--color-one-hover);
}
.service-one h4 {
  font-size: 22px;
  font-weight: 500;
  margin-top: 15px;
  color: var(--text-color);
}
.service-one p{
  opacity: .8;
}
.price_sec_service .price {
  font-size: 22px;
  font-weight: 700;
}
.price_sec_service sub{
  font-size: 14px;
  font-weight: 500;
}
.domain-search-card {
  padding: 30px;
  margin-top: 20px;
  background: #3876f3;
  border-radius: 22px;
}
.domain-search-form{
  display: flex;
  align-items: center;
  position: relative;
}
.domain-search-form .form-input{
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgb(0 0 0 / 8%);
  font-size: 14px;
  height: 54px;
  color: #434343;
  font-weight: 500;
  padding: 15px 95px 15px 40px;
  pointer-events: auto;
  width: 100%;
}
.domain-search-form .btn-go {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  border-radius: 50%;
  padding: 0;
  width: 46px;
  height: 46px;
  inset-inline-end: 4px;
  pointer-events: auto;
  border: unset;
  background: #A5BFFF;
}
.domain-search-form i{
  position: absolute;
  left: 15px;
  font-size: 16px;
  text-shadow: 0px 0px 0px currentColor;
  opacity: .8;
}
.btn-go i{
  font-size: 26px;
  text-shadow: 1px 0px 0px currentColor;
  color: var(--white);
  position: relative;
  left: 0;
}

.list-one{
  display: flex;
  flex-wrap: wrap;
}
.list-one li {
  font-size: 16px;
  font-weight: 600;
  width: 50%;
  line-height: 35px;
  display: flex;
}
.list-one li i{
  color: var(--color-one);
  font-size: 18px;
}
hr{
  opacity: 0.08;
}
@media(max-width:767px){
  .list-one li {
  width: 100%;
}
}

.service2 {
  border: 1px solid rgb(0 0 0 / 8%);
  box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 2%);
  transition: all 0.2s;
  border-radius: 22px;
  background-color: white;
  padding: 40px 20px 20px 20px;
  height: 100%;
  text-align: center;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.service2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(
    315deg,
    #EBF1FF,
    transparent 20%,
    transparent 85%,
    #EBF1FF
  );
}
.service2 h4{
  font-size: 22px;
  font-weight: 600;
}
.service2 p{
  font-size: 15px;
  color: var(--text-color);
  opacity: .8;
}
.icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #d8c8ff;
  margin: auto;
  margin-top: 0;
}

.icon-box::before{
    content: "";
    position: absolute;
    inset: -10px;
    border: 1px solid #ece4ff;
    border-radius: 50%;
}
.icon-box i{
  font-size: 30px;
  color: var(--color-one);
  line-height: 50px;
}
.support-card{
  padding: 60px 80px;
  background: linear-gradient(
    90deg,
    #8d7cff 0%,
    #5a96f3 15%,
    #4d92f4 35%,
    #3e7df6 55%,
    #2752f4 75%,
    #6a3df6 90%,
    #9a6bff 100%
);
}
.support-card.two{
  background: linear-gradient(
        135deg,
        #5b9cf5 0%,
        #4b8df3 30%,
        #2f6ff8 65%,
        #2347ff 85%,
        #6a4df5 100%
    );
    border-radius: 24px;
}
.support-card.three {
  background: var(--color-one);
  border-radius: 24px;
}

@media(max-width:767px){
  .support-card{
  padding: 20px 30px;
}
}
.bg-img{
  position: relative;
    overflow: hidden;
    background: #fff;
    z-index: 1;
}
.bg-img::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    left: -250px;
    top: -100px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(84, 140, 255, 0.25) 0%,
        rgba(84, 140, 255, 0.15) 35%,
        rgba(84, 140, 255, 0) 70%
    );
    z-index: -1;
}

.bg-img::after {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    right: -250px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(126, 87, 255, 0.35) 0%,
        rgba(126, 87, 255, 0.15) 40%,
        rgba(126, 87, 255, 0) 75%
    );
    z-index: -1;
}
.bg-img::before,
.bg-img::after {
    filter: blur(40px);
}

.service3{
  text-align: center;
  background: rgb(124 51 255 / 2%);
  border-radius: 24px;
  padding: 40px;
  height: 100%;
}
.service3 .icon{
  width: 56px;
  height: 56px;
  margin: auto;
  background: #F2EBFF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service3 .icon i{
  font-size: 30px;
  color: var(--color-two);
}
.service3 h4 {
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
}

.service-4 {
  border-radius: 20px;
  border: 1px solid #ffffff73;
  height: 100%;
}
.service-4 h4 {
  font-size: 22px;
  font-weight: 700;
  padding: 8px 20px;
  color: var(--white);
  border-bottom: 1px solid #ffffff73;
  text-align: center;
}
.service-4 p {
  font-size: 15px;
  color: #fff;
  text-align: center;
  padding: 10px 20px;
}

.features-list{
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 24px;
  color: #fff;
  overflow: hidden;
}
.service-5{
  border-inline-end: 1px solid rgb(255 255 255 / 20%);
  height: 100%;
}
.service-5 h4{
  font-size: clamp(1rem,0.8438rem + 0.5vw,1.125rem);
  font-weight: 700;
  padding: 20px 24px;
  background: rgb(255 255 255 / 2%);
  border-bottom: 1px solid rgb(255 255 255 / 20%);
}
.br-top{
  border-top: 1px solid rgb(255 255 255 / 20%);
}
.service-5 .list-two {
  margin: 0;
  padding: 0px 0px 20px 24px;
}
.service-5 .list-two li {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
  font-weight: 500;
  position: relative;
  padding-inline-start: 30px;
  line-height: 30px;
}
.service-5 .list-two li::before{
    content: "\F26E"; 
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--white);
    font-size: 18px;
    position: absolute;
    left: 0;
}

.Domain-bg.bg-img::after {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  right: -400px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient( circle, rgba(126, 87, 255, 0.35) 0%, rgba(126, 87, 255, 0.15) 40%, rgba(126, 87, 255, 0) 75% );
  z-index: -1;
}
.Domain-bg.bg-img::before {
  content: "";
  position: absolute;
  width: 1000px;
  height: 500px;
  left: -400px;
  top: 100px;
  border-radius: 50%;
  background: radial-gradient( circle, rgba(84, 140, 255, 0.35) 0%, rgba(84, 140, 255, 0.20) 35%, rgba(84, 140, 255, 0.08) 60%, rgba(84, 140, 255, 0) 100% );
  z-index: -1;
}
.Domain-bg{
  position: relative;
  background-image: url('../images/dots.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.domain-search-form {
  position: relative;
}
.domain-search-form input {
  background: var(--white);
  padding: 20px 20px 20px 30px;
  border: 1px solid #fff;
  border-radius: 8px;
  width: 100%;
  outline: none;
}
.domain-search-form button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translatey(-50%);
}

.domain-search-form.transfer .btngrp {
  position: absolute;
  display: flex;
  right: 0;
}
.domain-search-form.transfer .select_domain{
  background: var(--color-one);
  border: 1px solid var(--color-one);
  color: var(--white);
  font-weight: 600;
  border-radius: 10px 0px 0px 10px;
  border-right: 1px solid #ffffff54;
}
.domain-search-form.transfer button{
  position: unset;
  transform: unset;
  border-radius: 0px 10px 10px 0px;
}
.domain-search-form .btn1 {
  background-color: var(--color-one);
  border-color: var(--color-one);
  color: var(--white);
  border-radius: 8px;
  border: unset;
  line-height: 50px;
}
.domain-search-form svg {
  position: absolute;
  left: 10px;
}
input{
  outline: none;
}
.trans-bottom{
  font-size: 18px;
  font-weight: 600;
}
.trans-bottom span{
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.trans-bottom span i{
  font-size: 18px;
  color: var(--color-one);
}
.trans-bottom span a{
  margin-inline-start: 10px;
  color: var(--color-one);
  text-decoration: underline;
}
@media(max-width:767px){
  .domain-search-form input {
  padding: 20px 20px 60px 30px;
}
  .domain-search-form.transfer .btngrp {
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 4px;
  justify-content: center;
}
.domain-search-form.transfer svg {
  position: absolute;
  left: 10px;
  top: 27px;
}
}
.domain-card {
  padding: 32px;
  background-color: var(--white);
  border: 1px solid #E6E6E6;
  border-radius: 16px;
  height: 100%;
}
.domain-card.popular {
  position: relative;
  border: 3px solid var(--color-one);
}
.domain-card.popular::before {
  content: "Most Popular";
  position: absolute;
  top: -15px;
  left: -3px;
  right: -3px;
  height: 44px;
  background: linear-gradient(90deg, #4f7df5, #4673f0);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px 16px 0 0;
  border: 3px solid var(--color-one);
}
.domain-card h4{
  font-size: clamp(1.875rem,1.0938rem + 2.5vw,2.5rem);
  font-weight: 700;
}
.domain-card .price-sec {
  display: flex;
  align-items: end;
  gap: 15px;
}
.ori-price{
  font-weight: 700;
  font-size: 25px;
}
.price-sec .cutted_price{
  text-decoration: line-through;
  color: #00000082;
  font-weight: 500;
}
.color-1{
  color: var(--color-one);
}
.color-2{
  color: #39C032;
}
.color-3{
  color: var(--color-two);
}
.color-4{
  color: #E46560;
}
.color-5{
  color: #E89B4F;
}
.color-6{
  color:#3FC5B6;
}


.terms__content .title {
  font-size: 18px;
  margin-bottom: 8px;
}
.terms__content p {
  margin-bottom: 32px;
}
.list_two{
  padding: 0px 20px 20px 20px;
}
.list_two li{
  margin-top: 12px;
  color: #4D4D4D;
  position: relative;
  padding-inline-start: 28px;
  font-size: 15px;
  display: block;
  color: var(--white);
}
.list_two li::before {
  content: '';
  background-image: url('../images/check2.svg');
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  display: inline-block;
  position: absolute;
  top: 2px;
  inset-inline-start: 0;
}
.domain-lists {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}
.domain-lists li {
  background: #fff;
  border-radius: 5px;
  padding: 18px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  transition: all .5s;
}
.domain-lists li:hover h5 {
  transform: scale(1.4);
}
.domain-lists li h5 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0px;
  color: var(--color-two);
  transition: all .5s;
}
.domain-lists li p {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 0px;
}
.gap-y-25 {
  gap: 25px 0;
}
.list_two.dark li{
  color: #000;
}
/* ----------------------------------------------------------------
    login css
------------------------------------------------------------------- */
.login_page {
  height: 100vh;
  align-items: center;
  display: flex;
}
.register_page {
  background: #F4F5FF;
}
.login_form {
  padding: 48px 40px;
  background-color: white;
  border: 1px solid #D8DAE0;
  border-radius: 16px;
}
.register_page .login_form {
  padding: 48px 40px;
  background-color: white;
  border: 1px solid #D8DAE0;
  border-radius: 16px;
}
.login_form label {
  margin: 20px 0px 7px 0px;
  color: #5e636e;
  font-weight: 400;
  font-size: 16px;
  text-align: start;
}
.login_form .checkbox{
  color: #343434;
  font-weight: 500;
}
.login_form .inputs {
  display: block;
  width: 100% !important;
  padding: .85em 1.15em !important;
  font-weight: 400 !important;
  line-height: 1.25 !important;
  background-color: #fff !important;
  font-size: 18px;
  vertical-align: middle;
  height: 48px !important;
  border: 1px solid #DADCE0;
  box-sizing: border-box;
  border-radius: 15px;
}
.reset_pass {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.login-btn {
  background: linear-gradient(to right,#5a28fa 0,#457bff 100%) !important;
  transition: all 0.2s;
  border-radius: 16px;
  color: var(--white);
  text-align: center;
}
.login-btn:hover {
  opacity: 0.9;
}
@media(max-width:480px) {
  .login_form {
    padding: 30px 20px;
    background-color: white;
    border: 1px solid #D8DAE0;
    border-radius: 16px;
  }
  .register_page .login_form {
    padding: 30px 20px;
  }
}
/* ----------------------------------------------------------------
    login css
------------------------------------------------------------------- */
/* ----------------------------------------------------------------
    plan css
------------------------------------------------------------------- */
.plan-card-one {
  border-radius: 22px;
  background-color: white;
  border: 1px solid rgb(0 0 0 / 8%);
  transition: all 0.2s;
  height: 100%;
}
.plan-card-one:hover{
  background-color:#F6F6F6;
}
.popular-plan{
  padding: 4px;
  background: var(--color-one);
  border-radius: 22px;
}
.popular-plan:hover .plan-card-one{
  background: var(--white);
}
.popular_text {
  text-align: center;
  width: 100%;
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  padding: 6px;
}
.plan_title{
  padding:24px;
}
.plan-card-one h4{
  font-size: clamp(20px, 4.5px + 3.5vw, 25px);
  font-weight: 700;
  line-height: 2;
}
.plan-card-one p {
  margin-bottom: 24px;
  color: var(--text-color);
  opacity: .8;
  display: block;
}
.plan-card-one .price-sec {
  font-size: clamp(22px, 4.5px + 3.5vw, 36px);
  font-weight: 700;
  min-height: 50px;
}
.plan-card-one sub{
  font-size:15px;
}
.plan-card-one label {
  font-size: 13px;
  opacity: 0.6;
}
.plan-border {
  border-bottom: 1px solid #E6E6E6;
  width: 100%;
}
.plan-card-one ul{
  padding:24px;
}
.plan-card-one ul ul{
  padding:0px;
}
.plan-card-one ul li {
  position: relative;
  line-height: 2;
  font-size: 16px;
  font-weight: 400;
}
.plan-card-one ul li::before {
  content: "\F26E";
  font-family: "bootstrap-icons";
  position: absolute;
  color: var(--color-one);
  font-size: 20px;
  position: absolute;
  left: -20px;
  line-height: 32px;
}
.plan-card-one ul li i {
  text-shadow: 0px 0px 0px currentColor;
  font-size: 16px;
  color: #383838;
}

.plan-card-two{
    background:#fff;
    border:1px solid #e6e6e6;
    border-radius:24px;
    padding:28px;
}
.plan-card-two h4{
  font-size: 25px;
  font-weight: 600;
}
.plan-card-two .plan_features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.plan-card-two .plan_features li {
  min-width: 150px;
}
.plan-select {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
.plan-card-two .price-sec {
  font-size: clamp(22px, 4.5px + 3.5vw, 25px);
  font-weight: 700;
}
.plan-card-two .price-sec sub {
  font-size: 14px;
}
.plan-card-two .plan-btn {
  line-height: 64px;
  font-size: 18px;
  padding: 0 20px !important;
  border-radius: 16px;
   width: unset;
}
.popular-dedi-plan{
  border: 3px solid var(--color-one);
  border-radius: 26px;
  position: relative;
}
.popular-dedi-plan::before {
  content: "POPULAR";
  position: absolute;
  left: -52px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  background: var(--color-one);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0px 18px;
  border-radius: 8px 8px 0 0;
  text-transform: uppercase;
}
/* ----------------------------------------------------------------
    plan css
------------------------------------------------------------------- */
/* ----------------------------------------------------------------
     testimonial css
------------------------------------------------------------------- */

.testimonial-card{
  position: relative;
  border: 1px solid rgb(0 0 0 / 8%);
  box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 2%);
  transition: all 0.2s;
  border-radius: 22px;
  padding: 32px !important;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
}

.testimonial-card::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
}

.testimonial-card.one::after{
  background: linear-gradient(135deg, #F0ECFF, #fff 30%);
}

.testimonial-card.two::after{
  background: linear-gradient(315deg, #F0ECFF, #fff 30%);
}
.title h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.stars i {
  color: var(--color-one);
  font-size: 16px;
}

.message {
  margin: 20px 0;
  color: var(--text-color);
  line-height: 1.7;
  font-size: 16px;
  opacity: .9;
  font-weight: 500;
}

.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
------------------------------------------------------------------- */
/* ----------------------------------------------------------------
    accordion
------------------------------------------------------------------- */

.faq-items .accordion{
  border: 1px solid #00000014;
  border-radius: 16px;
}
.faq-items .accordion li {
  border-bottom: 1px solid #00000014;
  margin-bottom: 0;
  overflow: hidden;
}
.faq-items .accordion li:last-child {
  border-bottom: unset;
}
.faq-items .accordion li a {
  color: rgb(54, 54, 54) !important;
  cursor: pointer;
  display: flex;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  gap: 16px;
  -moz-box-pack: justify;
  justify-content: space-between;
  line-height: 24px;
  transition: all 0.3s;
  align-items: center;
  line-height: 1.2;
  padding: 15px 24px 15px 24px;
}
.faq-items .accordion li.active:first-child a {
  background: #E1EAFF;
  border-radius: 16px 16px 0px 0px;
}
.faq-items .accordion li.active a {
  background: #E1EAFF;
}
.faq-items .accordion li a img {
  width: 25px;
  transition: all 0.3s;
}
.faq-items .accordion li.active a img {
  transform: rotate(-180deg);
}
.faq-items .accordion li p {
  display: none;
  margin-bottom: 0;
  color: rgb(54, 54, 54);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  padding: 15px 24px 15px 24px;
}

/* ----------------------------------------------------------------
    accordion
------------------------------------------------------------------- */
/* ----------------------------------------------------------------

    03. Scroll top button

------------------------------------------------------------------- */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  inset-inline-end: 10px;
  bottom: -40px;
  z-index: 99999;
  background: rgb(255, 255, 255);
  width: 50px;
  height: 50px;
  border-radius: 50px;
  transition: all 0.5s;
  cursor: pointer;
  border: 0;
  outline: unset;
  box-shadow: 0 2px 10px rgb(0 0 0 / 10%);
}

.scroll-top i {
  font-size: 30px;
  color: #3a3a3a;
  line-height: 0;
}
.scroll-top:hover {
  box-shadow: 0 2px 20px rgb(0 0 0 / 10%);
  transform: translateY(-5px);
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 67px;
}


/* ----------------------------------------------------------------
   contact us
------------------------------------------------------------------- */
.contact-form {
  box-shadow: 0px 0px 120px 0px rgb(0 0 0 / 12%);
  padding: 32px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
}
.contact-form label{
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 16px;
  display: block;
  text-align: start;
}

.contact-form .input_one{
  display: block;
  width: 100%;
  padding:10px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #3d3d3d;
  border-radius: 16px;
  border: 1px solid rgb(0 0 0 / 8%);
}

.flex-card{
  display: flex;
  align-items: start;
  gap: 20px;
}

/* ----------------------------------------------------------------
    Footer
------------------------------------------------------------------- */
.logo_footer img{
  max-height: 32px;
}

.social-links ul{
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: end;
}
.social-links ul li a{
  width: 35px;
  height: 35px;
  color: #212529;
  border: 1px solid;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all .4s;
}
.social-links ul li a svg {
  width: 22px;
  transition: all .4s;
}
.social-links ul li a:hover {
  background:#212529;
}
.social-links ul li a:hover svg {
  fill: #fff;
}
.logo_footer ,.social-links{
  padding: 35px 0px;
}
.footer_links{
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.footer_link_title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.2;
  color: #000;
}
.footer_link_list li a ,.footer_policies ul li a{
  color: #21250B;
  opacity: 0.75;
  transition: all 0.3s;
  font-size: 15px;
  margin-top: 12px;
  display: block;
}
.footer_link_list li a:hover ,.footer_policies ul li a:hover{
  opacity: 1;
}
.footer_policies ul{
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer_copyright{
  padding: 30px 0px;
  margin-top: 30px;
  border-top: 1px solid #eee;
  color: #21250B;
  opacity: 0.75;
  transition: all 0.3s;
  font-size: 15px;
  display: block;
}
.payment{
  padding: 30px 0px;
  margin-top: 30px;
  border-top: 1px solid #eee;
}
.payment ul{
  display: flex;
  align-items: center;
  gap: 8px;
}
@media(max-width:767px){
  .logo_footer ,.social-links{
  padding: 20px 0px;
}
}
/* ----------------------------------------------------------------
    Footer
------------------------------------------------------------------- */