@font-face {
    font-family: 'BebasNeue'; 
    src: url('../fonts/BebasNeue-Regular.ttf') format('opentype'); 
    font-weight: normal; 
    font-style: normal;
}
@font-face {
    font-family: 'Barlow'; 
    src: url('../fonts/Barlow-Regular.ttf') format('opentype'); 
    font-weight: normal; 
    font-style: normal;
}

body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    background-color: #ede7e3;
}

.hero-section {
    position: relative;
    background-image: url(/assets/img/backgroundImg/heroImage.jpg);
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.7;
    z-index: 1;
}

.hero-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-family: 'BebasNeue', sans-serif;
}

.hero-text{
	position: relative;
	z-index: 2;
}

.hero-content h1{
    margin: 0;
    color: white;
    z-index: 2;
    font-size: 4.5vw;
    letter-spacing: 2px;
	text-align: center;
}

.hero-content p{
    margin: 0;
    color: #ede7e3;
    z-index: 2;
    font-size: 2vw;
    letter-spacing: 2px;
	text-align: center;
}

.scrollingText{
    width: 100%;
}

.scrollingText p{
    color: #ede7e3;
}

#animated-text-strip{
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    overflow: hidden;
  }
  #animated-text-strip .marquee {
    white-space: nowrap;
    animation: marquee 45s linear infinite;
    max-width: none;
  }
  
  @keyframes marquee {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(-100%, 0);
    }
  }
  
  #animated-text-strip{
    background:#16697a;
    padding: 1rem 0;
  }
  .marquee{
    font-family: 'BebasNeue', sans-serif;
    font-size: 3rem;
    letter-spacing: 2px;
    font-weight: 900;
    text-transform: uppercase;
    color: #ede7e3;
  }

.button1 {
    z-index: 2;
    --glow-color: rgba(255, 255, 255, 0.795);
    --glow-spread-color: rgba(78, 142, 153, 0.781);
    --enhanced-glow-color: rgb(128, 179, 190);
    --btn-color: rgb(22, 105, 122);
    border: .25em solid var(--glow-color);
    padding: 1em 3em;
    color: var(--glow-color);
    font-family: 'Barlow', sans-serif;
    font-size: 20px;
    font-weight: bold;
    background-color: var(--btn-color);
    border-radius: 1em;
    outline: none;
    box-shadow: 0 0 1em .02em var(--glow-color),
           0 0 4em 1em var(--glow-spread-color),
           inset 0 0 .75em .01em var(--glow-color);
    text-shadow: 0 0 .1em var(--glow-color);
    position: relative;
    transition: all 0.3s;
}
   
.button1:hover {
    color: var(--btn-color);
    background-color: var(--glow-color);
    box-shadow: 0 0 1em .25em var(--glow-color),
           0 0 4em 2em var(--glow-spread-color),
           inset 0 0 .75em .25em var(--glow-color);
           transform: scale(1.2);
	cursor: pointer;
}
   
.button1:active {
    box-shadow: 0 0 0.6em .25em var(--glow-color),
           0 0 2.5em 2em var(--glow-spread-color),
           inset 0 0 .5em .25em var(--glow-color);
}


/* cene paketa */
.pricing-section {
	text-align: center;
	padding: 40px 20px 5px 20px;
	position: relative;
	background-image: url(../../assets/img/backgroundImg/pricingSectionIMG.jpg);
	height: 100%;
	background-size: cover;
	background-position: center;
	font-family: 'Barlow', sans-serif;
}

.pricing-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000000;
	opacity: 0.7;
	z-index: 1;
}

.pricing-section h2 {
	color: #ede7e3;
	margin-top: 0;
	margin-bottom: 40px;
	position: relative;
	z-index: 2;
  font-weight: bold;
  font-size: 40px;
}

.pricing-cards {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	position: relative;
	z-index: 2;
	margin-bottom: 50px;
}

.card3 {
	background-color: #252525;
	border: 1px solid #707070;
	border-radius: 10px;
	width: 300px;
	padding: 20px 20px 10px 20px;
	text-align: left;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s;
}

.card3:hover {
	transform: translateY(-10px);
}

.card3 h3 {
	color: #50afc7;
	font-size: 30px;
	margin-bottom: 10px;
	margin-top: 5px;
}

.card3 p{
	display: flex;
	align-items: center;
	list-style: none;
	padding: 0;
	color: #ede7e3;
}

.card3 .price {
	font-size: 28px;
	margin: 0;
	color: #ffa62b;
}

.uskoro{
	color: #ffa62b;
}

.card3 ul {
	list-style: none;
	padding: 0;
	margin: 20px 0;
	color: #ede7e3;
}

.card3 ul li {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
}

.card3 ul li::before {
	content: '\2713';
	color: #489fb5;
	font-weight: bold;
	margin-right: 10px;
}

.card3 ul li.unavailable::before {
	content: '\2717';
	color: #ff4b4b;
}

.card3-wrapper{
	display: flex;
	flex-direction: column;
	height: 100%;
}

.button-container {
	margin-top: auto !important;
	text-align: center !important;
}

.post-ad-btn {
	background-color: #00b1dd;
	color: black;
	border: none;
	border-radius: 5px;
	padding: 10px 20px;
	font-size: 18px;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.3s ease;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	font-family: 'Barlow', sans-serif;
}
.post-ad-btn:hover {
	background-color: #00a0c8;
	transform: translateY(-2px);
}

.priceInfo{
  display: flex;
  flex-direction: row;
  align-items: center;
}

.priceInfo i{
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-left: 10px;
  cursor: pointer;
}

.pricetext{
  margin-top: 10px !important;
}








.tooltip-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip {
  visibility: hidden;
  background-color: black;
  color: white;
  text-align: center;
  padding: 6px 10px;
  border-radius: 5px;
  position: absolute;
  bottom: 150%;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  white-space: normal;
  word-wrap: break-word;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 1000;
  font-size: 12px;
}

.tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}

.tooltip-container:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

.tooltip-container.active .tooltip {
  visibility: visible;
  opacity: 1;
}









.goodWebsite{
    padding: 30px 0;
    position: relative;
    background-image: url(/assets/img/backgroundImg/goodWebsite.jpg);
    height: 100%;
    background-size: cover;
    background-position: center;
    font-family: 'Barlow', sans-serif;
}

.goodWebsite::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.7;
  z-index: 1;
}

.goodWebsiteCards{
  width: 70%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  justify-content: center;
  margin: 0 auto;
  font-family: 'Barlow', sans-serif;
}

.goodWebsite h2{
  position: relative;
  z-index: 2 !important;
  margin: 0;
  opacity: 1;
  display: flex;
  justify-content: center;
  color: #ede7e3;
  margin-bottom: 30px;
  font-size: 40px;
}

.card {
  z-index: 2;
  width: 300px;
  height: auto;
  background: #252525;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  border: 1px solid #707070;
  transition: all .5s ease;
}

.image {
  width: 300px;
  height: 300px;
  position: relative;
  background-image: url(/assets/img/goodWebsiteImg/1.jpg);
  background-size: cover;
  background-position: center;
}

.image2{
  background-image: url(/assets/img/goodWebsiteImg/2.jpg);
}

.image3{
  background-image: url(/assets/img/goodWebsiteImg/3.jpg);
}

.image4{
  background-image: url(/assets/img/goodWebsiteImg/4.jpg);
}

.card__info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-evenly;
  padding: 15px;
  gap: 3px;
}

.title{
  font-size: 22px !important;
  color: #f5efeb !important;
}

.card__info span{
  font-weight: bold;
  font-size: large;
}

.card__info p{
  margin: 0;
  color: #ede7e3;
}

.page {
  font-size: 13px;
  font-weight: 100;
}

.title {
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  color: black;
}

.content {
  font-size: 14px;
}


.websiteContent{
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  gap: 20px;
  width: 60%;
  margin: 0 auto 30px auto;
}

.websiteContentContainer {
  z-index: 2;
  background-color: #252525;
  padding: 20px;
  border: 1px solid #d9d9d92f;
  border-radius: 8px;
  transition: all 0.6s ease;
}

.websiteContentContainer:hover {
  z-index: 3;
  transform: scale(1.1);
  background-color: #16697a;
  border: 2px solid #16697a;
  border-radius: 30px;
}

.websiteContentContainer:hover h3{
  color: #ede7e3;
}

.websiteContentContainer:hover p{
  color: #dad4d0;
}

.websiteContentContainer:not(:hover) {
  transform: scale(1);
  animation: none;
}


.websiteContentContainer h3{
  font-size: 1.8em;
  margin: 0 0 20px 0;
  text-align: center;
  color: #f5efeb;
}

.websiteContentContainer p{
  margin: 0;
  color: #ede7e3;
}

.card1 {
  z-index: 3 !important;
  position: relative;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid #c5c5c5;
  border-radius: 12px;
  background-color: #d9d9d92f;
  backdrop-filter: blur(8px);
  width: 60%;
  margin: 40px auto 0 auto;
}
.wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 10;
  border: 0.5px solid #525252;
  border-radius: 8px;
  overflow: hidden;
}
.terminal {
  display: flex;
  flex-direction: column;

  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
}
.head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  min-height: 40px;
  padding-inline: 12px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background-color: #202425;
}
.title1 {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 2.5rem;
  user-select: none;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #8e8e8e;
}
.title1 > svg {
  height: 18px;
  width: 18px;
  margin-top: 2px;
  color: #006adc;
}
.copy_toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  border: 0.65px solid #c1c2c5;
  margin-left: auto;
  border-radius: 6px;
  background-color: #202425;
  color: #8e8e8e;
  cursor: pointer;
}
.copy_toggle > svg {
  width: 20px;
  height: 20px;
}
.copy_toggle:active > svg > path,
.copy_toggle:focus-within > svg > path {
  animation: clipboard-check 500ms linear forwards;
}
.body {
  display: flex;
  flex-direction: column;
  position: relative;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  overflow-x: auto;
  padding: 1rem;
  line-height: 19px;
  color: white;
  background-color: black;
  white-space: nowrap;
}
.pre {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-wrap: nowrap;
  white-space: pre;
  background-color: transparent;
  overflow: hidden;
  box-sizing: border-box;
  font-size: 16px;
}
.pre code:nth-child(1) {
  color: #575757;
}
.pre code:nth-child(2) {
  color: #e34ba9;
}
.cmd {
  height: 19px;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row;
}
.cmd::before {
  content: attr(data-cmd);
  position: relative;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  background-color: transparent;
  animation: inputs 8s steps(22) infinite;
}
.cmd::after {
  content: "";
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
  background-color: transparent;
  border-right: 0.15em solid #e34ba9;
  animation: cursor 0.5s step-end infinite alternate, blinking 0.5s infinite;
}

@keyframes blinking {
  20%,
  80% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0);
  }
}
@keyframes cursor {
  50% {
    border-right-color: transparent;
  }
}
@keyframes inputs {
  0%,
  100% {
    width: 0;
  }
  10%,
  90% {
    width: 58px;
  }
  30%,
  70% {
    width: 100%;
    max-width: max-content;
  }
}
@keyframes clipboard-check {
  100% {
    color: #fff;
    d: path(
      "M 9 5 H 7 a 2 2 0 0 0 -2 2 v 12 a 2 2 0 0 0 2 2 h 10 a 2 2 0 0 0 2 -2 V 7 a 2 2 0 0 0 -2 -2 h -2 M 9 5 a 2 2 0 0 0 2 2 h 2 a 2 2 0 0 0 2 -2 M 9 5 a 2 2 0 0 1 2 -2 h 2 a 2 2 0 0 1 2 2 m -6 9 l 2 2 l 4 -4"
    );
  }
}




.crypto{
	text-align: center;
	padding: 50px 20px 5px 20px;
	position: relative;
    z-index: 2;
	background-image: url(/assets/img/ai/bc.jpg);
	height: 100%;
	background-size: cover;
	background-position: center;
	font-family: 'Barlow', sans-serif
}

.crypto::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000000;
	opacity: 0.7;
	z-index: 1;
}

.crypto-title{
	line-height: 350%;
}

.crypto-title h2{
	position: relative;
	z-index: 2;
	margin: 0;
	text-align: center;
  	color: #ede7e3;
  	font-size: 4vw;
	font-family: 'BebasNeue', sans-serif;
	letter-spacing: 2px;
    color: #fffcf8 !important;
}

.crypto-title h3{
	position: relative;
	z-index: 2;
	margin: 0 0 35px 0;
	text-align: center;
    color: #ede7e3;
  	font-size: 2vw;
	font-family: 'BebasNeue', sans-serif;
	letter-spacing: 2px;
}

.crypto-box{
	background: rgba(0, 0, 0, 0.2);
  	backdrop-filter: blur(10px);
	border: 1px solid #707070;
	border-radius: 8px;
	margin: 0 auto 20px auto;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	width: 70%;
	word-wrap: break-word;
	box-sizing: border-box;
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: row;
	height: 100%;
	font-family: 'Barlow', sans-serif;
}

.cryptoIMG {
    width: 50%;
    height: auto;
    overflow: hidden !important;
}

.cryptoIMG img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.cryptoInfo{
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: start;
	padding: 50px;
}

.cryptoInfo h2{
	text-align: center;
	color: #ede7e3;
	font-size: 40px;
}

.cryptoInfo p{
	color: #ede7e3;
	font-size: 20px;
	margin: 15px 0;
}




.ourProjects{
    position: relative;
    background-image: url(/assets/img/backgroundImg/whyUS.jpg);
    height: 100%;
    background-size: cover;
    background-position: center;
    padding: 30px 0 50px 0;
    font-family: 'Barlow', sans-serif;
}

.ourProjects::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.7;
  z-index: 1;
}

.why-choose-us {
  position: relative;
  z-index: 2;
  max-width: 50%;
  margin: 0 auto;
  padding: 0px 40px 40px 40px;
}

.okvirne{
	text-align: start;
	padding: 0 !important;
}

.section-title h2 {
  position: relative;
  z-index: 2 !important;
  margin: 0 0 35px 0;
  display: flex;
  justify-content: center;
  text-align: center;
  color: #ede7e3;
  font-size: 40px;
  font-weight: bold;
}

.steps, .benefits {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.step, .benefit {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  width: 100%;
}

.step-box, .benefit-box {
  background-color: #252525;
  border: 1px solid #d9d9d92f;
  padding: 20px;
  border-radius: 8px !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  word-wrap: break-word;
  box-sizing: border-box;
}

.step-box p, .benefit-box p {
  font-size: 16px;
  margin-bottom: 0;
  margin-top: 10px;
  color: #ede7e3;
  padding-left: 35px; 
}

.step-box h2, .benefit-box h2 {
  margin: 0;
  padding-left: 35px;
  color: #f5efeb;
  font-size: 30px;
}

.whyUsBtn{
  display: flex;
  justify-self: center;
}







.scroll-to-top {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #489fb5;
  color: #fff;
  font-size: 24px;
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: background-color 0.3s ease, transform 0.2s ease;
  transform-origin: bottom left;
}

.scroll-to-top:hover {
  	background-color: #489fb5;
    transform: scale(2);
    border-radius: 10px;
}

.scroll-to-top i {
  transition: transform 0.6s ease-in-out;
}

.scroll-to-top:hover i {
  transform: rotate(-360deg);
}

@media (max-width: 600px) {
.hero-content h1{
  	font-size: 12vw;
  	text-align: center;
}

.hero-content p{
  	font-size: 6vw;
  	letter-spacing: 2px;
}

#animated-text-strip .marquee {
  	animation: marquee 30s linear infinite;
}


.button1{
	width: 90%;
}

.section-title h2 {
  margin: 0 0 35px 0;
  font-size: 7vw;
  font-weight: bold;
}

.pricing-section {
	padding: 40px 0px 5px 0px;
}

.pricing-section h2 {
	margin: 0 0 35px 0;
  font-size: 7vw;
  font-weight: bold;
}

.pricing-cards {
	margin-bottom: 20px;
}

.card3 {
	width: 85% !important;
	transition: none;
}

.card3:hover {
	transform: none;
}

.post-ad-btn:hover {
	background-color: #00b1dd;
	transform: none;
}

.why-choose-us {
  max-width: none;
  width: 95%;
  padding: 0 !important;
}

.step-box, .benefit-box {
  padding: 10px;
}

.step-box p, .benefit-box p {
  font-size: 15px;
  margin-bottom: 0;
  margin-top: 10px;
  color: #ede7e3;
  padding-left: 0px; 
}

.step-box h2, .benefit-box h2 {
  margin: 0;
  padding-left: 0px;
  color: #fffcf8;
  font-size: 5vw;
}

.ourProjects{
  padding: 30px 0 40px 0;
}

.button1-whyUs{
  margin: 20px auto 0 auto !important;
}

.goodWebsite h2{
  margin: 0 auto 30px auto;
  text-align: center;
  font-size: 7vw;
  width: 95%;
}

.websiteContent{
  grid-template-columns: repeat(1, 1fr);
  width: 95%;
  margin: 0 auto 30px auto;
}

.websiteContentContainer {
  padding: 10px;
}

.websiteContentContainer p{
  margin-top: 10px;
  font-size: 15px;
}

.websiteContentContainer h3{
  font-size: 5vw;
  text-align: start;
  color: #fffcf8;
  margin-bottom: 0px;
}

.websiteContentContainer:hover {
  transform: none;
  background-color: #252525;
  border: 1px solid #d9d9d92f;
  border-radius: 8px;
}

.websiteContentContainer:hover h3{
  color: #fffcf8;
}

.websiteContentContainer:hover p{
  color: #ede7e3;
}

.websiteContentContainer:not(:hover) {
  transform: none;
  animation: none;
}

.goodWebsiteCards{
  width: 95%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  justify-content: center;
  margin: 0 auto;
  font-family: 'Barlow', sans-serif;
}

.card {
  width: auto;
  height: auto;
  transition: none;
}

.image {
  width: auto;
  height: 300px;
  position: relative;
  background-size: cover;
  background-position: center;
}

.card__info {
  padding: 10px;
}

.title{
  text-align: center;
}

.card__info p{
  margin: 0;
  color: #ede7e3;
}

.card1 {
	padding: .5rem;
	width: 91%;
}

.pre{
  font-size: 12px;
}

.button1:hover, .button1:active {
	color: var(--glow-color);
	background-color: var(--btn-color);
	box-shadow: 0 0 1em .02em var(--glow-color),
           0 0 4em 1em var(--glow-spread-color),
           inset 0 0 .75em .01em var(--glow-color);
	transform: none;
}

.scroll-to-top:hover {
  background-color: #489fb5;
  transform: none;
  border-radius: 8px;
}

.scroll-to-top i {
transition: none;
}

.scroll-to-top:hover i {
transform: none; 
}


.crypto{
	padding: 30px 0px;
	height: 100%;
}

.crypto-title{
	line-height: 230%;
  width: 95%;
  margin: 0 auto;
}

.crypto-title h2{
	margin: 0;
  font-size: 8vw;
}

.crypto-title h3{
	margin: 0 0 30px 0;
  font-size: 6vw;
	letter-spacing: 2px;
  line-height: 110%;
}

.crypto-box{
	margin: 0 auto;
	width: 95%;
	flex-direction: column;
	height: 100%;
	font-family: 'Barlow', sans-serif;
}

.cryptoIMG {
    width: 100%;
    height: auto;
    overflow: hidden !important;
}

.cryptoIMG img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.button12{
  margin: 10px 0 30px 0 !important;
  font-size: 18px;
}

.cryptoInfo{
	padding: 10px;
}

.cryptoInfo h2{
	font-size: 7.3vw;
  margin: 10px 0;
}

.cryptoInfo p{
	font-size: 16px;
	margin: 10px 0;
}

}
@media (min-width: 601px) and (max-width: 1000px) {
  .hero-content h1{
  	font-size: 8vw;
  	text-align: center;
}

.hero-content p{
  	font-size: 4vw;
  	letter-spacing: 2px;
}
}

@media (min-width: 601px) and (max-width: 743px) {
  .card3 {
    width: 80% !important;
    transition: none;
  }

  .card3:hover {
    transform: none;
  }

  .post-ad-btn:hover {
	background-color: #00b1dd;
	transform: none;
}

.card {
	transition: none;
}

.button1:hover, .button1:active {
	color: var(--glow-color);
	background-color: var(--btn-color);
	box-shadow: 0 0 1em .02em var(--glow-color),
           0 0 4em 1em var(--glow-spread-color),
           inset 0 0 .75em .01em var(--glow-color);
	transform: none;
}

.scroll-to-top:hover {
  background-color: #489fb5;
  transform: none;
  border-radius: 8px;
}

.scroll-to-top i {
transition: none;
}

.scroll-to-top:hover i {
transform: none; 
}


.crypto{
	padding: 30px 0px;
	height: 100%;
}

.crypto-title{
	line-height: 300%;
  width: 80%;
  margin: 0 auto;
}

.crypto-title h2{
	margin: 0;
  font-size: 7vw;
}

.crypto-title h3{
	margin: 0 0 30px 0;
  font-size: 5vw;
	letter-spacing: 2px;
  line-height: 110%;
}

.crypto-box{
	margin: 0 auto;
	width: 80%;
	flex-direction: column;
	height: 100%;
	font-family: 'Barlow', sans-serif;
}

.cryptoIMG {
    width: 100%;
    height: auto;
    overflow: hidden !important;
}

.cryptoIMG img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.button12{
  margin: 30px 0 50px 0;
  width: 90%;
}

.cryptoInfo{
	padding: 10px 30px;
}

.cryptoInfo h2{
	font-size: 6vw;
  margin: 10px 0;
}

.cryptoInfo p{
	font-size: 18px;
	margin: 10px 0;
}
}

@media (min-width: 745px) and (max-width: 1100px) {
  .crypto{
    padding: 30px 0px;
    height: 100%;
  }
  
  .crypto-title{
    line-height: 300%;
    width: 80%;
    margin: 0 auto;
  }
  
  .crypto-title h2{
    margin: 0;
    font-size: 6vw;
  }
  
  .crypto-title h3{
    margin: 0 0 30px 0;
    font-size: 3vw;
    letter-spacing: 2px;
    line-height: 110%;
  }
  
  .crypto-box{
    margin: 0 auto;
    width: 90%;
    flex-direction: row;
    height: 100%;
    font-family: 'Barlow', sans-serif;
  }
  
  .cryptoIMG {
      width: 100%;
      height: auto;
      overflow: hidden !important;
  }
  
  .cryptoIMG img {
      object-fit: cover;
      height: 100%;
      width: 100%;
  }
  
  .button12{
    margin: 30px 0 50px 0;
    width: 90%;
  }
  
  .cryptoInfo{
    padding: 10px 30px;
  }
  
  .cryptoInfo h2{
    font-size: 6vw;
    margin: 10px 0;
  }
  
  .cryptoInfo p{
    font-size: 18px;
    margin: 10px 0;
  }
}

@media (min-width: 601px) and (max-width: 1100px) {
  .card3:hover {
    transform: none;
  }

  .post-ad-btn:hover {
	background-color: #00b1dd;
	transform: none;
}

  .why-choose-us {
    max-width: none;
    width: 80%;
    padding: 0 !important;
  }

  .button1-whyUs{
    margin-top: 30px;
  }

  .websiteContent{
    width: 90%;
  }

  .goodWebsite h2{
	margin: 0 auto 30px auto;
	text-align: center;
	font-size: 4vw;
	width: 95%;
  }

  .goodWebsiteCards{
	width: 70%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	justify-content: center;
	margin: 0 auto;
	font-family: 'Barlow', sans-serif;
  }

  .card {
	width: auto;
	height: auto;
	transition: none;
  }

  .websiteContentContainer {
	padding: 10px;
  }

  .image {
	width: auto;
	height: 300px;
	position: relative;
	background-size: cover;
	background-position: center;
  }
  
  .card__info {
	padding: 10px;
  }
  
  .title{
	text-align: center;
  }
  
  .card__info p{
	margin: 0;
	color: #ede7e3;
  }

  .button1:hover, .button1:active {
	color: var(--glow-color);
	background-color: var(--btn-color);
	box-shadow: 0 0 1em .02em var(--glow-color),
           0 0 4em 1em var(--glow-spread-color),
           inset 0 0 .75em .01em var(--glow-color);
	transform: none;
}

.websiteContentContainer:hover {
	transform: none;
	background-color: #252525;
	border: 1px solid #d9d9d92f;
	border-radius: 8px;
  }
  
  .websiteContentContainer:hover h3{
	color: #fffcf8;
  }
  
  .websiteContentContainer:hover p{
	color: #ede7e3;
  }
  
  .websiteContentContainer:not(:hover) {
	transform: none;
	animation: none;
  }

.scroll-to-top:hover {
  background-color: #489fb5;
  transform: none;
  border-radius: 8px;
}

.scroll-to-top i {
transition: none;
}

.scroll-to-top:hover i {
transform: none; 
}



}

@media (min-width: 1101px) and (max-width: 1350px) {
	.goodWebsiteCards{
		width: 70%;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
		justify-content:space-between;
		margin: 0 auto;
		font-family: 'Barlow', sans-serif;
	  }

	  .card {
		width: auto;
		height: auto;
		transition: none;
	  }

	  .image {
		width: auto;
		height: 300px;
		position: relative;
		background-size: cover;
		background-position: center;
	  }
	  
	  .card__info {
		padding: 10px;
	  }
	  
	  .title{
		text-align: center;
	  }
	  
	  .card__info p{
		margin: 0;
		color: #ede7e3;
	  }


    .crypto{
      padding: 30px 0px;
      height: 100%;
    }
    
    .crypto-title{
      line-height: 400%;
      width: 80%;
      margin: 0 auto;
    }
    
    .crypto-title h2{
      margin: 0;
      font-size: 6vw;
    }
    
    .crypto-title h3{
      margin: 0 0 30px 0;
      font-size: 4vw;
      letter-spacing: 2px;
      line-height: 110%;
    }
    
    .crypto-box{
      margin: 0 auto;
      width: 85%;
      flex-direction: row;
      height: 100%;
      font-family: 'Barlow', sans-serif;
    }
    
    .cryptoIMG {
        width: 100%;
        height: auto;
        overflow: hidden !important;
    }
    
    .cryptoIMG img {
        object-fit: cover;
        height: 100%;
        width: 100%;
    }
    
    .button12{
      margin: 30px 0 50px 0;
      width: 90%;
    }
    
    .cryptoInfo{
      padding: 10px 30px;
    }
    
    .cryptoInfo h2{
      font-size: 6vw;
      margin: 10px 0;
    }
    
    .cryptoInfo p{
      font-size: 18px;
      margin: 10px 0;
    }
}

@media (min-width: 1350px) and (max-width: 1900px) {
.button12{
  margin-bottom: 30px;
  width: 80%;}
}