@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,200;9..40,400;9..40,600;9..40,700&family=Playfair+Display:wght@900&family=Poppins:wght@300&display=swap');
:root{
  --black:#1d1d1d;
  --black-lighter:#424040;
  --darkblue:#150050;
  --accentcolor:#fb2576;
  --bodywhite:#e3e9f7;
  --darkerwhite:#ececf0;
  --doc-height: 100%;
  --dark-gradient: linear-gradient(to bottom, #000814, #000b26, #000c37, #000a45, #150050);
  --offgrey: #a7a7a7;
  --orange: #e08e06;

  /* 275efe15
  275efe30 */
  /* <link rel="stylesheet" media="screen and (min-width: 900px)" href="widescreen.css">
<link rel="stylesheet" media="screen and (max-width: 600px)" href="smallscreen.css"> */
}

body,html {
    padding: 0;
    margin: 0;
    background:var(--bodywhite);
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    line-height: 1.75;
    scroll-behavior: smooth;
}
@media only screen and (min-width:1024px) {
  body,html {
    font-size: 14px;
  }
  p {
    font-size: 16px;
  }
}
@media only screen and (max-width:1023px) {
  body,html {
    font-size: 12px;
  }
  p{
    font-size: 14px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
}
p {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

p:not(.sub-nav-box p) {
  margin-bottom: 1rem;
}
h3, h4, h5, big {
  font-family: 'DM Sans', sans-serif;
  line-height: 1.3;
}
h1, h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  line-height: 1.3;
}

@media only screen and (min-width:1333px){
  h1 {
    margin-top: 0;
    font-size: 3.4rem;
    font-weight: 700;
  }
}
@media only screen and (max-width:1332px) {
  h1 {
    margin-top: 0;
    font-size: 3.052rem;
    font-weight: 700;
  }
}

h2 {font-size: 2.9rem;  font-weight: 700;}

h3 {font-size: 1.953rem;  font-weight: 400;}

h4 {font-size: 1.563rem;  font-weight: 700;}

h5 {font-size: 1.25rem;  font-weight: 600;}

small, .text_small {font-size: 0.9rem;}
big {font-size: 1.5rem;}

header {
  width: 90%;
  height: 70px;
  background:rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(5px);
  --webkit-backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  border-left: 1px solid rgba(255, 255, 255, 0.7);
  border-right: 1px solid rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  margin: 0 auto;
  z-index: 999;
  transition: 0.3s ease-in-out;
}
@media only screen and (min-width:1025px) {
  header {
    position: sticky;
    top: 25px;
    border-radius: 10px 10px 10px 10px;
  }
}
@media only screen and (max-width:1024px) {
  header {
    position: sticky;
    top: 0;
    border-radius: 0 0 10px 10px;
  }
}
.logo img {
  object-fit: contain;
  height: calc(20px + 3vw);
  z-index: 20;
}
@media only screen and (max-width:1024px) {
  .logo img {
    object-fit: contain;
    height: calc(20px + 5vw);
  }
  nav ul li label {
    font-size: 16px;
  }
}
nav .logo {
  display: none;
}

nav ul {
  display: flex;
  list-style: none;
  padding-top: 12px;
  align-items: center;
}
nav ul li label {
  color: var(--black);
  display: block;
  margin: 0 2px;
  font-weight: 600;
  padding: 8px calc(16px + 0.5vw);
  transition: 0.2s;
}
 .downarrow::after {
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font: var(--fa-font-solid);
    content: " \f107";
    margin-left: 5px;
    transition: 0.2s;
    opacity: 50%;
    rotate:0deg;
}
nav ul li > label:hover.downarrow::after {
  opacity: 100%;
  rotate: 90deg;
}

nav ul li > label:hover,
nav ul li > label:focus {
  color: var(--accentcolor);
  cursor: pointer;
}
.hamburger {
  z-index: 8;
  display: none;
  height: fit-content;
  cursor: pointer;
  padding: 3px 8px;
  border-radius: 50px;
  transition: 0.2s;
  padding:10px;
}
.close-menu {
  position: inherit;
  transition: 0.2s;
  z-index: 9;
  transition: 0.2s;
  z-index: 9;
  margin-right: 20px;
  width: 50px;
  font-size: 35px;
  color: var(--darkblue);
  cursor: pointer;
}
.hamburger:hover {
  background: #e3e9f7;
}
.hamburger div {
  width: 30px;
  height: 2px;
  margin: 6px 0;
  background: var(--darkblue);
}

.copyrights {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.btn {
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
  background: #275efe15;
  border: 1px solid var(--black);
  border-radius: 7px;
  text-decoration: none;
  padding: calc(10px + 0.1vw) calc(20px + 0.2vw);
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover, .btn:focus {
  background:var(--black);
  color: var(--darkerwhite);
}
.login-btn,.btn,.login-btn2 {
  display: none;
}
@media only screen and (min-width:1025px) {
.login-btn,.btn {
    display: inline-block;
  }
  nav ul li label {
    font-size: calc(12px + 0.1vw);
  }
}
/* start nav mega */
.sub-nav {
  background:#f7f7f7;
  border-radius: 20px;
  border: 1px solid var(--bodywhite);
  display: none;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 48px;
  padding: 16px;
  position: absolute;
  width: 400px;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
}
@media only screen and (min-width:1025px) {
  #web-hosting:hover .sub-nav,#agency-hosting:hover .sub-nav,#wordpress:hover .sub-nav,#domains:hover .sub-nav,#emails:hover .sub-nav,#security:hover .sub-nav{
    display: flex;
  }
  .subnav-container {
    display: flex;
    justify-content: center;
  }
  .sub-nav::after {
    bottom: 97%;
    content:'';
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border: solid transparent;
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #f7f7f7;
    border-width: 20px;
    border-radius: 20px;
    /* margin-left: -20px; */
  }
}
@media only screen and (max-width:1024px) {
  .sub-nav{
    position: absolute;
    display: flex;
    left: -100vh;
    top: 0;
    z-index: 10;
    width: 50vw;
    height: 100vh;
    background-color: #fefefe;
    transition: 0.5s;
    box-shadow: 2px 0 20px 0 rgba(0, 0, 0, 0.05);
  }
  .sub-nav-col {
    display: flex;
    flex-direction: column;
    min-width: 100%;
    justify-content: center;
    align-self: baseline;
    margin-top: 150px;
  }
  /* sub menu single element */
  .downarrow::after {
    font: var(--fa-font-solid);
    content: " \f107";
    margin-left: 20px;
    opacity: 50%;
    rotate: -90deg;
}
}
@media only screen and (max-width:600px) {
  .sub-nav{
    width: 90vw;
  }
}

.sub-nav-box {
  border-radius: 10px;
  display: flex;
  flex: 0 1 auto;
  flex-direction: column;
  font-size: 14px;
  justify-content: center;
  margin: 4px 0;
  padding: 24px 14px 24px 96px;
  position: relative;
  transition: 0.2 all ease-in-out;
  text-decoration: none;

}
@media only screen and (min-width:1025px) { 
  .sub-nav-box {
    min-height: 100px;
    width: 360px;
  }
  /* .nextmenu {
    display: inline-flex;
    rotate: 90deg;
    margin-left: 5px;
    transition: 0.5s;
  } */
  nav ul li > label:hover .nextmenu,
  .sub-nav-box:hover .nextmenu {
    display: inline-flex;
    rotate: 0deg;
  }
}
.sub-nav-box h4 {
  font-size: calc(12px + 0.1vw);
  letter-spacing: 0.7px;
  line-height: 16px;
  margin: 0 0 0.5em;
  text-transform: uppercase;
  color: #424141;
}
.sub-nav-box:hover h4 {
  color: var(--accentcolor);
}
.sub-nav-box h4::after {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-solid);
  content: " \f053";
  margin-left: 15px;
  transition: 0.2s;
  opacity: 0;
}
.sub-nav-box:hover h4::after {
  display: inline-block;
  margin-left: 20px;
  opacity: 100%;
}

.sub-nav-box p {
  font-size: calc(12px + 0.1vw);
  color: #8e8e8e;
  line-height: 16px;
  font-weight: 400;
}
.sub-nav-box:hover p {
  color: #5f5e5e;
}
.sub-nav-box:hover .icon {
  fill: var(--accentcolor);
  color: var(--accentcolor);
}
.sub-nav-box:hover {
  background:#e8e7e7;
}
.icon-background {
  height: 64px;
  width: 64px;
  background: #15005013;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 14px;
}
.icon {
  
  fill:var(--darkblue);
  color:var(--darkblue);
  font-size: 20px;
  width: 25px;
  height: 25px;
}
div .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.backlabel {
  display: none;
}
/* End nav mega */
@media only screen and (max-width:1024px) {

  .login-btn2,.btn {
    display: block;
    padding: 12px;
    width: 100%;
    border: none;
    border-radius: 7px;
  }
  .login-btn2 .btn, .login-btn {
    border: 1px solid var(--darkblue);
  }
  header {  
    width: 100%;
    padding: 0 20px;
  }
  ul {
    flex: auto;
  }
  nav {
    position: absolute;
    left: 9px;
    top: -100vh;
    z-index: 9;
    width: 95vw;
    height: calc(90vh - 3px);
    /*height: var(--doc-height);*/
    background-color: #fefefe;
    transition: 0.2s;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    overflow:hidden;
  }
  #nav_check:checked ~ nav {
    top: 0;
  }
  #webhosting_check:checked ~ .sub-nav,#agencyhosting_check:checked ~ .sub-nav,#wordpress_check:checked ~ .sub-nav,#emails_check:checked ~ .sub-nav,#domains_check:checked ~ .sub-nav,#security_check:checked ~ .sub-nav {
    left:0;
  }
  /* #agencyhosting_check:checked ~ .sub-nav {
    display: flex;
  } */
  .nextmenu {
    cursor: pointer;
    position: absolute;
    right: 15%;
    padding: 5px;
  }
  .backmenu {
    cursor: pointer;
    rotate: 180deg;
    display: inline-block;
  }
  .backlabel {
    display: flex;
    flex-direction: row;
    cursor: pointer;
    color: var(--black);
    justify-content: start;
    align-items: center;
    position: absolute;
    top: 10%;
    padding: 17px 15px;
    gap: 5px;
  }
  .backlabel:hover, .backlabel:focus {
    color: var(--accentcolor);
  }
  nav .logo {
    display: block;
    height: 70px;
    display: flex;
    align-items: center;
    margin-left: 30px;
    justify-content: space-between;
  }
  nav ul {
    display: block;
    padding: 0 20px;
    margin-top: 30px;
  }
  nav ul li label{
    margin-bottom: 5px;
    padding: 20px 15px;
    border-radius: 5px;
  }
  .hamburger {
    display: block;
  }
}
@media only screen and (max-width:600px) {
  .logo img {
    object-fit: contain;
    height: calc(20px + 7vw);
  }
}
ul {
  list-style: none;
}
/* Body */

.container {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items:center;
  overflow: hidden;
  max-width:100%;
}
.row {
  display: flex;
  justify-content: center;
  align-items:center;
  flex-wrap: wrap;
  margin-top: auto;
  margin-bottom: auto;
  width: 85%;
}
.full {
  min-height: 100vh;
}
.content {
  padding-top: 50px;
  padding-bottom: 50px ;
}

@media only screen and (min-width:1024px) {
  .hero1.full {
    min-height: 100vh;
    padding-top: 100px;
}
.cs {
  text-align: left;
}
}
.col-full {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  gap: 10px;
  margin-bottom: 70px;
}
.center {
  align-items: center;
  text-align: center;
}
.col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media only screen and (min-width:1024px) {
  .col {
    padding-right:70px;
  }
}
.half {
  width: 50%;
}
.fullwidth {
  width: 100%;
}
.darkbackground {
  /* background-image: var(--dark-gradient); */
  background: var(--black);
}
.lightbackground {
  background: var(--darkerwhite);
}
.darkbackground .col {
  padding-top: 30px;
  padding-bottom: 30px;
}
.darkbackground .btn2 {
  background: var(--accentcolor);
}
.darkbackground .btn2:hover {
  background: var(--bodywhite);
  color: var(--black);
}
.darkbackground h2, .darkbackground p {
  color: var(--bodywhite);
}
.darkbackground .tooltip-list li {
  color: var(--bodywhite);
}
.btn2 {
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  background: var(--black);
  color: var(--darkerwhite);
  border-radius: 7px;
  text-decoration: none;
  padding: calc(10px + 0.1vw) calc(20px + 0.2vw);
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  letter-spacing: 1px;
  display: block;
  width: 50%;
}
.btn2:hover, .btn2:focus {
  background:var(--accentcolor);
  color: #ddd;
}
div.col .btn2{
  margin-top: 30px;
}
.wordpresshero {
    -webkit-mask-image: url(../../assets/svg/wordpress-hosting.svg);
    -webkit-mask-size: 45vh;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
    vertical-align: middle;
    display: inline-block;
    height: auto;
  }
@media only screen and (max-width:1023px) {
  .wordpresshero {
    -webkit-mask-size: 65vw;
  }
  .content {
    padding-top: 20px;
    padding-bottom: 20px ;
  }
  div.col .btn2{
    margin-top: 15px;
  }
  .full {
    padding-top: 0;
  }
  .reverse {
    flex-direction: column-reverse;
  }
  .column {
    flex-direction: column;
  }
  .col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .btn2 {
    display: block;
    width: 100%;
  }
  .heroimg {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
  .heroimgmasked {
    width: 125%;
  }
}
@media only screen and (min-width:1024px) {
  .heroimg {
    /* width: 100%; */
    width: calc(350px + 10vw);
    margin-right: auto;
    margin-left: auto;
  }
  .heroimgmasked {
    margin-right: auto;
    margin-left: auto;
  }
  .hero .heroimg {
    width: calc(350px + 25vh);
  }
  .hero .heroimgmasked {
    width: calc(550px + 25vh);
  }
  .hero {
  min-height: calc(100vh - 3px);
  height: var(--doc-height);
  background:url(../svg/hostavio_web_solutions_1st_bg-01_2-01.svg);
  background-repeat: no-repeat, repeat;
  background-size: cover;
  background-position-x:right;
  background-position-y: top;
}
.hero1{
  margin-top: -70px;
} 
}
.row div p {
  margin-top: 10px;
}
/* logo slider */
/* start logo slider*/

div.logocontainer-h {
  margin-top: auto;
}
.logocontainer-h {
  width: 95vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logoslider-h {
  width: 90vw;
  height: 100px;
  position: relative;
  box-shadow: 0 10px 20px -10px rgba (0,0,0,0.8);
  display: flex;
  overflow: hidden;
  margin-bottom: 10px;
}
@media only screen and (max-width:1023px){
  .logoslider-h {
    width: 80vw;
  }
  .logoslider-h::before, .logoslider-h::after {
    height: 100px;
    width: 30px;
    position: absolute;
    content: "";
    background: linear-gradient(to right, #DDE6F8 0%, rgba(255, 255, 255,0) 100%);
    z-index: 2;
    mix-blend-mode: lighten;
    }
  .logoslider-h::before {
    left: 0;
    top: 0;
  }
  .logoslider-h::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
  }
}
.logoslide-h {
  height: 100px;
  display: flex;
  align-items: center;
  animation: slideshow-h 30s linear infinite;
}

.sliderimg {
  margin-right: 40px;
  max-height: 100%;
  padding: 0 10px 0 10px;
}
@media (max-width:880px) { .sliderimg {
  max-height: 65%;
  }
}@media (max-width:670px) { .sliderimg {
  max-height: 40%;
  }
}
@keyframes slideshow-h {
  0% {transform: translateX(0);}
  100% {transform:translateX(-100%)}
}
@media only screen and (min-width:1024px){
  .logoslider-h::before, .logoslider-h::after {
    height: 100px;
    width: 200px;
    position: absolute;
    content: "";
    background: linear-gradient(to right, #DDE6F8 0%, rgba(255, 255, 255,0) 100%);
    z-index: 2;
    mix-blend-mode: lighten;
    }
  .logoslider-h::before {
    left: 0;
    top: 0;
  }
  .logoslider-h::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
  }
}
/*end logo slider*/

.col-full h2{
background: var(--black);
padding: 10px 60px 10px 60px;
border-radius: 30px 0 30px 0;
color: white;
}
.accent {
  color: var(--accentcolor);
  font-weight: 200;
}
/* cards */
.cards {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.sidecard {
  color: var(--bodywhite);
  background: #fff;
}
.card {
  height: auto;
  position: relative;
  transition: color 0.25s;
  min-width: 300px;
  max-width: 300px;
}
.card{
  display: flex;
  flex-direction: column;
  justify-content:space-between;
  align-items: center;
  gap: 20px;
  text-align: center;
  border-radius: 20px;
  padding: 40px;
  text-transform: capitalize;
  transition: 0.5 ease-in-out;
}
.card-hero {
  color : var(--bodywhite);
  background: var(--black);
  border: 1px solid var(--black);
}
.card-hero:hover {
  border-color: var(--accentcolor) ;
}
.card:hover button {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.card-plan {
  color : var(--black);
  background: #fff;
  border: 1px solid var(--black);
}
.card-plan:hover {
  background: var(--darkerwhite);
  border: 1px solid var(--accentcolor);
}
.sidecard {
  border-radius: 0 30px 30px 0;
  border-top: 5px;
  border-bottom: 2px;
  border-right: 0;
  border-left: 0;
  border-style: solid;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  padding:50px 15px 50px 15px;
  color: var(--black-lighter);
  min-width: calc(260px + 1vw);
  text-align: left;
}
@media only screen and (max-width:600px) {
  .sidecard {
    border-radius:0 0 30px 30px;
    border-top:0;
  }
}
.tooltip-list li::before {
  display: inline-block;
  text-rendering: auto;
  font: var(--fa-font-solid);
  content: " \f00c";
  margin-right: 5px;
  color: var(--accentcolor);
}

.card h4::before {
  content: attr(data-card);
  font-weight: 500;
  font-size: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.card-hero h4::before {
  color: #fff;
}
.card-plan h4::before {
  color: var(--black);
}
.card h5 {
  font-weight: 500;
}
.price h1, .price sup {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
}
.card h1 {
  font-size: 6.5rem ;
  font-weight: 700;
  line-height: 0.7em;
  padding-top: 25px;
}
.card-plan h1{
  color: var(--black);
}
.card-hero h1{
  color: #fff;
}
.card h4 {
  font-weight: 500;
  color: var(--accentcolor);
}
.price sup {
  font-size: 1rem;
  display: contents;
}
.card .btn2 {
margin-bottom: 5px;
border: none;
width: 100%;
font-weight: 500;
}
.card-hero .btn2 {
  background: var(--accentcolor);
  border: 1px solid var(--accentcolor);
}
.card-plan .btn2 {
  background: var(--black);
  border: 1px solid var(--black);
}
.card-hero .btn2:hover, .card-hero .btn2:focus {
  background: var(--bodywhite);
  color: var(--black);
  border: 1px solid var(--bodywhite);
}
.card-plan .btn2:hover, .card-plan .btn2:focus {
  background: #fff;
  color: var(--black);
  border: 1px solid var(--accentcolor);
}
.card-plan small {
  color: #757575;
}
.card-hero small {
  color: var(--offgrey);
}
@media only screen and (max-width:600px) {
  .cards {
    flex-wrap: wrap;
  }
}

/* Ribbon Start */
.ribbon-wrap {
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: absolute;
  top: -4px;
  right: -4px;
}
.ribbon-wrap::before, .ribbon-wrap::after{
  content: '';
  width: 10px;
  height: 10px;
  background: var(--black);
  position: absolute;
}
.ribbon-wrap::before {
  top: 0;
  right: 88px;
}
.ribbon-wrap::after {
  top: 88px;
  right: 0;
}
.ribbon {
  width: 225px;
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
  /* padding: 8px 0; */
  background-color: var(--accentcolor);
  color: var(--black);
  position: absolute;
  transform: rotate(45deg);
  left: -5px;
  top: 20%;
  z-index: 2;
  -webkit-font-smoothing: antialiased;
}
/* Ribbon End */

/* Tooltip Start */
[data-tooltip] {
  --arrow-size: 5px;
  position: relative;
  z-index: 10;
}
.toolicon:hover, .toolicon:active {
  color: var(--accentcolor);
}
/* Positioning and visibility settings of the tooltip */
[data-tooltip]:before,
[data-tooltip]:after {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  /* right: 250px; */
  bottom: calc(100% + var(--arrow-size));
  pointer-events: none;
  left: 0;
  border: 0.5px dotted grey;
}

/* The actual tooltip with a dynamic width */
[data-tooltip]:before {
  content: attr(data-tooltip);
  padding: 10px 18px;
  width: 350px;
  border-radius: 6px;
  font-size: 14px;
  background:var(--black);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  color: #fff;
  text-align: left;
  white-space: pre-wrap;
  transform: translate(-50%,  calc(0px - var(--arrow-size))) scale(0.5);
}
@media only screen and (max-width:600px) {
  [data-tooltip]:before {
    width: 350px;
    left: 0;
  }
}
.darkbackground [data-tooltip]:before,.herocard [data-tooltip]:before {
  background: var(--bodywhite);
  color: var(--black);
}
.darkbackground .tooltip-list {
  text-align: left;
}
/* Tooltip arrow */
[data-tooltip]:after {
  content: '';
  border-style: solid;
  border-width: var(--arrow-size) var(--arrow-size) 0px var(--arrow-size); /* CSS triangle */
  border-color: rgb(22, 22, 22) transparent transparent transparent;
  transition-duration: 0s; /* If the mouse leaves the element, 
                              the transition effects for the 
                              tooltip arrow are "turned off" */
  transform-origin: top;   /* Orientation setting for the
                              slide-down effect */
  transform: translateX(-50%) scaleY(0);
}

.darkbackground [data-tooltip]:after, .herocard [data-tooltip]:after {
  border-color: rgb(227, 233, 247) transparent transparent transparent;
}
/* Tooltip becomes visible at hover */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:active:before,
[data-tooltip]:active:after {
  visibility: visible;
  opacity: 1;
}
/* Scales from 0.5 to 1 -> grow effect */
[data-tooltip]:hover:before,[data-tooltip]:active:before {
  transform: translate(-50%, calc(0px - var(--arrow-size))) scale(1);
}
/* 
  Arrow slide down effect only on mouseenter (NOT on mouseleave)
*/
[data-tooltip]:hover:after,[data-tooltip]:active:after {
  transition-delay: 0.2s; /* Starting after the grow effect */
  transition-duration: 0.2s;
  transform: translateX(-50%) scaleY(1);
}
/* Tooltip End*/
/* info box */
.box-container {
  display: flex;
  justify-content: center;
  width: 100%;
  height: max-content;
}
@media only screen and (max-width:1024px) {
  .box-container {
    flex-wrap: wrap;
    align-items: center;
  }
}
.info-box, .info-box-light {
  padding: 20px;
  width: 350px;
  border-radius: 10px;
  text-align: left;
  display: flex;
  margin: 20px;
}
.info-box-light {
  background-color:var(--bodywhite);
}
.info-box{
  background-color: var(--black);
}
.info-box i, .info-box-light i {
  color: var(--accentcolor);
  padding-right: 15px;
  font-size: 25px;
  padding-top:6px;
}
.info-box h3, .info-box p {
  color: var(--bodywhite);
}
.info-box-light h3, .info-box-light p{
  color: var(--black);
}
/* end info */
.imgoverlay {
  mix-blend-mode: multiply;
}
.imgshadow {
  filter: drop-shadow(0 0 20px #00000040);
}
.wordpress-mask {
  -webkit-mask-image: url(../../assets/svg/wordpress-hosting.svg);
  -webkit-mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
  vertical-align: middle;
  display: inline-block;
  height: auto;
  mask-size: 100% 100%;
  -webkit-mask-size: contain;
}
/* SLIDER START */

/* testing carous */
@media only screen and (min-width:1300px) {
 .direction {
  display: none;
  visibility: hidden;
  opacity: 0;
 }
}
@media only screen and (max-width:1299px) {
  .direction {
    display: inline-flex;
    visibility: visible;
    opacity: 1;
   }
}
.direction{
  text-align: center;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.direction button{
  font-family: 'poppins', sans-serif;
  font-weight: bold;
  background-color: #ffffff44;
  border:1px solid var(--black);
  width:50px;
  height:50px;
  border-radius: 50%;
  transition: 0.5s;
  margin:0 10px;
  font-size: 20px;
  cursor: pointer;
}
.direction button:hover, .direction button:active{
  background-color: #ffffff;
}
.item{
  width:300px;
  overflow: visible;
  transition: 0.5s;
  margin:10px;
  scroll-snap-align: center;
}
#list{
  display: flex;
  width:max-content;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
#formList{
  width:100%;
  overflow: auto;
  margin:0;
  scroll-behavior: smooth;
  scroll-snap-type: both;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
  -webkit-scrollbar-width: none;
}

#formList::-webkit-scrollbar {
  display: none;
}

/* faq */
details {
  min-height: 5px;
  padding: 15px 70px 15px 15px;
  /* margin: 0 auto; */
  position: relative;
  font-size: 16px;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 15px;
  transition: all .3s;
  text-align: left;
  display: block;
}
p a {
    color: var(--accentcolor);
}
p a:hover {
    color: var(--black);
}
@media only screen and (max-width:1024px) {
  details {
    width: calc(200px + 55vw);
  }
}
@media only screen and (min-width:1025px) {
  details {
    width: calc(500px + 45vw);
  }
}
@media only screen and (max-width:600px) {
  details {
    width: calc(100px + 55vw);
    text-align: left;
    padding: 5px;
    border-radius: 7px;
  }
  summary {
    font-size: 16px;
  }
  details[open]{
    width: 100%;
  }
}
details[open] {
  min-height: 50px;
  background-color: #f6f7f8;
  display: flex;
}
@media only screen and (max-width:600px){
  details[open] {
    width: calc(100px + 55vw);
  }
}
@media only screen and (min-width:1024px) {
  details[open] {
    width: calc(200px + 55vw);
  }
}
@media only screen and (min-width:1025px) {
  details[open] {
    width: calc(500px + 45vw);
  }
}
details p {
  color: var(--black-lighter);
  font-weight: 300;
  text-align: left;
  inline-size: 90%;
}
summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  cursor: pointer;
}
summary:focus {
  outline: none;
}
.control-icon {
  fill: var(--accentcolor);
  transition: .3s ease;
  pointer-events: none;
  height: 19px;
  width: 19px;
}
.control-icon-close {
  display: none;
  height: 19px;
  width: 19px;
}
details[open] .control-icon-close {
  display: initial;
  transition: .3s ease;
}
details[open] .control-icon-expand {
  display: none;
}
.accordion {
    max-width: 99vw;
}
/* faq end */
/* card 2 */
div .card2:hover {
  border: 1px solid rgba(29, 29, 29, 0.6);
}
.card2 {
  display: flex;
  flex-direction: column;
  align-items: left;
  text-align: left;
  padding: 30px 15px 30px 15px;
  border-radius: 15px;
  gap: 20px;
}
.herocard {
  background: var(--black);
  color: var(--bodywhite);
  border: 1px solid rgba(29, 29, 29, 0.6);
}
.card2.herocard:hover {
  border: 1px solid var(--accentcolor);
}
.normalcard {
  background: #fff;
  color: var(--black);
  border: 1px solid var(--accentcolor);
  height: 100%;
}
/* .normalcard .card2header h4 {
  max-width: 65% ;
} */
.card2 .btn2 {
  /* display: block; */
  width: 100%;
  border: none;
}
.card2header {
  display: flex;
  justify-content: space-between;
  height: 60px;
}
.card2header h4 {
  color: var(--accentcolor);
}
.card2header div h5 {
  background: var(--accentcolor);
  padding: 7px 20px;
  border-radius: 25px;
  font-size: 12px;
}
.card2price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-direction: column;
}
.card2price sup {
  font-size: 1rem;
  display: contents;
}
.herocard sup {
  color: var(--offgrey);
}
.normalcard sup {
  color: var(--black-lighter);
}
.card2price h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 0.7em;
}
.card2price h1, .card2price sup, .card2price p{
  font-family: 'DM Sans', sans-serif;
}
.card2header h4 {
  font-size: 1.5rem;
  font-weight: 500;
}
.card2price p {
  font-weight: 700;
}
.card2price s {
  text-decoration: line-through;
}
.card2price .elements {
  padding-top: 15px;
  border-top: 1px dotted var(--offgrey);
}
.elements h5 {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding-top: 20px;
  padding-bottom:5px;
}
.elements [data-tooltip]::before {
  width: 200px;
}
.normalcard h5 {
  color: var(--black);
}
.card2tag {
  text-align: center;
  height: 25px;
}
.card2 .btn2 {
  margin-top: 7px;
  padding: 7px;
  border-radius: 8px;
}
.normalcard .btn2 {
  background: var(--black);
  color: var(--bodywhite);
  border: 1px solid var(--black);
}
.card2price h1::before {
  content: "$";
  font-size: 30px;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
.normalcard .btn2:hover {
  background: var(--bodywhite);
  color: var(--accentcolor);
  border: 1px solid var(--accentcolor);
}
.herocard .btn2 {
  background: var(--accentcolor);
  color: var(--bodywhite);
}
.herocard .btn2:hover {
  background: var(--bodywhite);
  color: var(--black);
}
.herocard .btn2white {
  background: var(--bodywhite);
  color: var(--black);
  border: 1px solid var(--bodywhite);
}
.herocard .btn2white:hover {
  background: var(--black);
  color: var(--bodywhite);
  border: 1px solid var(--bodywhite);
}
.normalcard .btn2white {
  border: 1px solid rgba(29, 29, 29, 0.6) ;
  background: var(--bodywhite);
  color: var(--black);
}
.normalcard .btn2white:hover {
  border: 1px solid rgba(29, 29, 29, 0.6) ;
  background: var(--black);
  color: var(--bodywhite);
}
.best::before, .good::before, .bad::before, .mid::before {
  height: 20px;
  width: 20px;
  font-size: 17px;
  text-align: center;
  font: var(--fa-font-solid);
  font-weight: 900;
  margin-right: 5px;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
.best::before {
  content: "\f058";
  color: green;
}
.good::before {
  content: "\f058";
  color: grey;
}
.mid::before {
  content: "\f058";
  color: orange;
}
.bad::before {
  font: var(--fa-font-solid);
  content: "\f00d";
  color: red;
}
.cardscontainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  gap: 10px;
  padding-top: 80px;
  padding-bottom: 80px;
  margin-bottom: 70px;
}
/* toggle switch for plans */
.toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.switch {
  position: relative;
  display: inline-block;
  align-self: center;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--accentcolor);
  -webkit-transition: 0.4s;
  transform: translate(0px, 0px);
  transition: 0.6s ease transform, 0.6s box-shadow;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: var(--black);
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
.text1, a .text1 {
  display: none;
}
.top {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.top h1 {
  margin-bottom: 10px;
}
/* toggle switch for plans END */
/* comparision */
/* sticky buttons */

/*  */
.stickytop {
 position: sticky;
 top: 70px;
 background: var(--bodywhite);
 color: var(--darkblue);
 box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
.stickybot {
  position: sticky;
  bottom: 0;
  background: var(--bodywhite);
  color: var(--accentcolor);
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
 }
.tablecontainer {
  height: fit-content;
}
/* table compare start */
table {
  width: 800px;
  border-radius: 7px 7px 7px 7px;
  padding: 0;
  margin: 0;
  border-spacing: 0;
  color: var(--black);
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
tr th {
  /* min-width: 150px; */
  flex-grow: 1;
  padding: 15px;
}
@media only screen and (min-width:1025px) {
  tr th {
    min-width: 150px;
  }
}
th.tabletitle {
 width: auto;
}
.tablecontainer {
  display: flex;
  justify-content: center;
  align-items: center;
}
.tablecompare {
  width: 80vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width:768px) {
    .tablecompare {
        width: 95vw;
    }
}
.stickybot .btn3 {
  color: var(--darkerwhite);
  background: var(--black);
  border-radius: 5px;
  padding: 10px 5px 10px 5px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  letter-spacing: 1px;
  display: block;
}
.stickybot .btn3:hover, .stickybot .btn3:focus {
  background: var(--accentcolor);
}
@media only screen and (max-width:1024px) {
  th.tabletitle {
    width: 100%;
    background: #d4d4db;
   }
   tr {
    display: flex;
    flex-wrap: wrap;
  }
  .hidden {
    display: none;
   }
   .tableplan {
    font-size: 11px;
    inline-size: 33%;
    display: inline-grid;
    align-content: center;
    justify-content: center;
  }
  tr th {
    width: 33%;
  }
  .fourcells, .fourcells tr th:not(.tabletitle){
    width: 25%;
    inline-size: min-content;
    padding:12px;
  }
  .fourcells tr th  {
    min-width: 25%;
  }
}
.hidden {
  visibility: visible;
 }
 .tableplan-accent {
  color: var(--accentcolor);
 }
 .stickytop tr th {
  background: var(--black);
  color: var(--bodywhite);
 }
@media only screen and (min-width:1025px) {
  tr:nth-child(even) {background: #d4d4db;}
  tr:nth-child(odd) {background: var(--bodywhite)}
}
/* table order buttons */

/* table compare end */
/* better plans section start */
.betterplanscontainer {
  width: 300px;
  display: block;
  background: var(--bodywhite);
  border: 1px solid var(--accentcolor);
  border-radius: 7px;
  padding: 10px;
  text-align: center;
  height: fit-content;
  margin: 15px;
  transition: ease-in-out 0.2s;
}
.betterplanscontainer ul {
  height: 150px;
  padding-bottom: 10px;
}
.betterplanscontainer:hover, .betterplanscontainer:focus {
  background: var(--darkerwhite);
  transform: scale(1.1);
}
.betterplans h3 {
  padding-bottom: 7px;
}
.betterplans h5 {
  color: var(--darkblue);
  text-decoration: underline;
}
.betterplans ul {
  color: var(--black);
  padding-bottom: 10px;
  inline-size: 100%;
  font-size: 14px;
  font-weight: 400;
}
.betterplans ul li span {
  font-weight: 600;
  color: var(--accentcolor);
}
.betterplans .btn3 {
  color: var(--darkerwhite);
  background: var(--black);
  border-radius: 5px;
  padding: 10px 15px 10px 15px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  letter-spacing: 1px;
  display: block;
}
.betterplans .btn3:hover, .betterplans .btn3:focus {
  background: var(--accentcolor);
}

/* better plans section end */
/* domains sections */
.domains {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #b6b6b654;
  border-radius: 15px;
  padding: 30px 10px;
  margin: 0;
  font-family: inherit;
}
.domains:hover, .domains:focus {
  background: #4b4b4b2f;
}
.domains form {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
}
.domains form input {
  border-radius: 5px;
  padding: 15px 10px;
  color: var(--black);
  font-weight: 400;
  font-size: 16px;
  margin: 5px;
}
.domains form input[type=submit] {
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
  background: var(--black);
  color: var(--darkerwhite);
  border: 1px solid var(--black);
  border-radius: 7px;
  text-decoration: none;
  padding: calc(10px + 0.1vw) calc(20px + 0.2vw);
  text-align: center;
  cursor: pointer;
  line-height: 25px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 30%;
  display: block;
  letter-spacing: 1px;
}
.domains form input[type=submit]:hover, .domains form input[type=submit]:focus {
  color: var(--black);
  background: var(--darkerwhite);
}
.domains form input[type="text"] {
  border: 1px solid #15005050;
  width: 60%;  
}
.domains form input[type="text"]:focus {
  outline: none;
  border: 1px solid var(--offgrey);
}
.domains form input[type="text"]::placeholder {
  opacity: 0.5;
}
.domains form input[type="text"]:focus::placeholder {
  opacity: 0.8;
}
@media only screen and (min-width:1024px){
  .domains {
    padding: 100px 20px;
    margin-top: 140px;
  }
  .domainhero {
      min-height: calc(100vh - 3px);
      height: var(--doc-height);
      background:linear-gradient(0deg, rgba(230, 239, 253, 0.9), rgba(250, 242, 242, 0.7)), url(../images/hostavio_web_solutions_register-domain-cheap\ offers.jpg);
      background-position: top center;
      background-repeat: no-repeat;
      background-size: cover;
      margin-top: -70px;
  }
}
@media only screen and (max-width:1023px) {
  .domains form input[type=submit],.domains form input[type=text] {
    width: 100%;
  }
  .domainhero {
    min-height: calc(100vh - 3px);
      height: var(--doc-height);
      background:linear-gradient(0deg, rgba(230, 239, 253, 0.815), rgba(250, 242, 242, 0.438)), url(../images/hostavio_web_solutions_register-domain-cheap\ offers.jpg);
      background-repeat: no-repeat, repeat;
      background-position: top center;
      background-repeat: no-repeat;
      background-size: cover;
      color: var(--);
  }
  .domains h1 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
  
}
.domains h1 {
  margin-bottom: 25px;
  text-align: center;
}
.tlds {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  gap: 15px;
  width: 100%;
}
.tlds div {
  border: 1px solid var(--offgrey);
  background: var(--darkerwhite);
  padding: 10px 40px;
  border-radius: 7px;
  text-transform: uppercase;
  text-align: center;
  width: fit-content;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  transition: 0.2s ease-in-out;
}
.tldaccent {
  color: var(--accentcolor);
}

.tlds div:hover, .tlds div:focus {
  background: var(--black);
  color: var(--darkerwhite);
  border: 1px solid var(--darkerwhite);
  scale: 1.1;
}
/* domains end */
.heroicon {
  font-size: calc(200px + 5vw);
  color: var(--accentcolor);
  text-align: center;
}
.infobox2container {
  flex-wrap: wrap;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.info-box2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 25px;
  text-align: center;
  width: calc(200px + 11vw);
  margin: 10px;
}
.info-box2 i  {
  font-size: calc(20px + 2vw);
  color: var(--accentcolor);
  margin-bottom: 20px;
}
.info-box2 .blueaccent {
  color: var(--darkblue);
}
.info-box2 p {
  width: 100%;
}
#herosvg {
  fill: var(--accentcolor);
  width: calc(100px + 15vw) ;
  align-self: center;
}
/* tabs start */
.tab-box{
  width: 100%;
  align-items: start;
}
.tab-content-box {
  width: 100%;
  z-index: 2;
}
.tab-box, .tab-content-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.tab-box {
  background: var(--black);
  padding: 10px 5px;
  border-radius: 50px;
  width: fit-content;
  align-self: center;
}
.tab_btn {
  display: inline-block;
  padding: 7px;
  border-radius: 30px;
  border: none;
  background: var(--black);
  color: var(--darkerwhite);
  font-size: 10px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin: 0 5px;
  cursor: pointer;
}
.tab-box .tab_btn::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--accentcolor);
  transition: 0.4s ease-in-out;
  z-index: -1;
}
.tab-box .tab_btn:hover::before, .tab-box .tab_btn.active::before{
  width: 100%;
}
.tab-box .tab_btn:hover .tab_btn.active::before {
  background-color: var(--black);
}
@media only screen and (min-width:601px){
  .tab_btn {
    font-size: 12px;
  }
}
@media only screen and (max-width:600px){
  .tab_btn {
    font-size: 10px;
  }
}
.tab-content-box {
  padding: 20px;
  width: 100%;
}
.tab-content-box .tab-content {
  display: none;
  animation: moving .5s ease-in-out;
}
@keyframes moving {
  from{transform: translateX(50px);opacity:0;}
  to{transform: translateX(0px);opacity:1;}
}
.tab-content-box .tab-content.active {
  display: flex;
  flex-direction: column;
}
.tab-content h3 {
  text-transform: capitalize;
  color: var(--black);
  scale: 1.1;
  text-align: center;
  font-weight: 600;
}

.info-box2 svg {
  width: 70px;
  height: 70px;
}
p.pmargin br {
  margin-bottom: 10px;
}
.sslend {
  margin-top: 20px;
}
.sslend div {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.sslend img {
  width: 200px;
}
.card3 {
  padding: 10px;
  border-radius: 10px;
}
.card3:hover{
  filter: drop-shadow(0 0 5px #15005070);
  transition: 0.3s ease-in-out;
}
.card3 p {
  line-height: 1.4rem;
  font-size: 14px;
}
.card3 .btn2 {
  display: block;
  width: 100%;
}
.card3 .card2header {
  height: auto;
}
.card3 p a {
  font-weight: 600;
  color: var(--accentcolor);
}
.card3 p a:hover {
  color: var(--darkblue);
}
.all-ssl {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-around;
  gap: 15px;
}
.all-ssl .item2 {
  width: 45%;
}
@media only screen and (max-width:768px) {
  .all-ssl .item2 {
    width: 100%;
  }
}
/* tabs end */
/* ssl menu start */
.ssl_menu {
  background: var(--black);
  display: flex;
  height: 100px;
  flex-wrap: wrap;
  margin-bottom: 80px;
  align-items: center;
  justify-content: space-around;
  /* position: sticky; */
  top: 70px;
  z-index: 2;
}
.normalcard svg {
  stroke: var(--accentcolor);
  height: 65px;
  width: 65px;
  margin: 0 auto;
}
.ssl_menu a {
  height: 100%;
  width: 20%;
  text-align: center;
  cursor: pointer;
  border: none;
  background: var(--black);
  color: var(--darkerwhite);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.15s ease-in-out;
}
@media only screen and (max-width:600px) {
  .ssl_menu a {
    font-size: 12px;
    line-height: 15px;
    word-break: keep-all;
    padding: 5px;
  }
  .ssl_menu a:focus {
    background: var(--bodywhite);
    color: var(--accentcolor);
  }
}
.ssl_menu a:hover, .ssl_menu a.active {
  background: var(--bodywhite);
  color: var(--accentcolor);
}
/* ssl menu end */
.emailfilter {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  width: 100%;
}
@media only screen and (min-width:1025px) {
  .emailfilter {
    width: calc(800px + 20vw);
  }
  .emailfilter .item3:first-child {
    width: 100%;
}
  .emailfilter .item3{
    width: 32.5%;
  }
}
.item3 {
  width: 100%;
}
.info-box2 h1 {
  font-size: 7.4rem;
  color: var(--darkblue);
}
.hacked {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 30px;
  border-inline: 1.5px solid var(--darkblue);
  border-block: 3px solid var(--darkblue);
}
.hacked div h4 {
  color: var(--black);
  background: var(--bodywhite);
  margin-top: -45px;
  padding: 10px;
}
.footerrow {
  width: 100vw;
  height: fit-content;
  padding-top: 20px;
  color: var(--darkerwhite);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.footercopyright {
  background: var(--darkerwhite);
  color: var(--black);
  border-radius: 10px 10px 0 0;
  width: fit-content;
  padding: 0 20px 0 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footercontent i {
  width: 30px;
  height:30px;
  font-size: 15px;
  padding: 5px;
  background: var(--darkerwhite);
  color: var(--black);
  fill: var(--black);
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  border-radius: 7px;
  margin-right: 5px;
}
.footercontent i:hover {
  background: var(--black);
  color: var(--accentcolor);
  border: 1px solid var(--accentcolor);
}
.footercontent {
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  padding-top: 70px;
  padding-bottom: 35px ;
  width: 90vw;
}
.footerlist {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: column;
}
.footercontent p {
  text-align: justify;
  font-size: 12px;
  width: 80%;
}
.footercontent div h5 {
  color: var(--accentcolor);
}
.footercontent div li a {
  color: var(--darkerwhite);
}
.footercontent div li a:hover {
  color: var(--accentcolor);
}
.footerlogoarea {
  width: 30%;
  height: 100%;
}
.footercontentarea {
  width: 70%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.footercontentarea ul {
  margin-block: 10px;
}
@media only screen and (max-width:768px) {
  .footercontent {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .footerlist {
    width: 40%;
    margin-inline: auto;
  }
  .footerlogoarea{
    width: 90%;
  }
  .footercontentarea {
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
  }
  .footerlogoarea p {
    width: 100%;
    text-align: justify;
  }
}


/*Logo slider*/
@keyframes slides {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 30px 0px;
  white-space: nowrap;
  position: relative;
}

.logos:before, .logos:after {
  position: absolute;
  top: 0;
  content: '';
  width: 250px;
  height: 100%;
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to right, #DDE6F8 0%, rgba(255, 255, 255,0) 100%);
  mix-blend-mode:lighten;
}

.logos:after {
  right: 0;
  background: linear-gradient(to left, #DDE6F8 0%, rgba(255, 255, 255,0) 100%);
  mix-blend-mode:lighten;
}
.logo_items {
  display: inline-block;
  animation: 35s slides infinite linear;
}

.logos:hover .logo_items {
  animation-play-state: paused;
}

.logo_items img{
  height: 70px;
}
@media only screen and (max-width:768px) {
    .logos:before, .logos:after {
        width: 100px;
    }
    .logo_items img{
        height: 50px;
    }
}
/**/