@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');

/* RESET *********************************************************************/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark: #1b1f24;
    --dark-light: #2a2d32;
    --primary: #007bff;
    --primary-light: #00c6ff;
    --text-light: #f5f5f5;
    --text-muted: #cfcfcf;
    --success: #28a745;
    --error: #dc3545;
    --warning: #ffc107;
    --font-main: 'Poppins', sans-serif;
    --font-code: monospace;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

.hidden {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap; /* zabraňuje zalomení */
}

#surebetting{
  /*overflow: hidden;*/
}

/*************************************************************/
.surebetting1 {
    display: flex;
    flex-direction: row;
    width: 90%;
    margin: 140px auto;
    justify-content: space-between;
    box-shadow: 
    0 8px 16px rgba(0, 0, 0, 0.5),
    0 8px 16px rgba(0, 0, 0, 0.5),
    inset -4px -4px 8px rgba(0, 0, 0, 0.2),
    inset 4px 4px 8px rgba(0, 0, 0, 0.2);
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}


.surebetting1 .image img{
    height: 100%;
}

.surebetting1 .content1 {
    padding: 40px 40px 20px 40px;
    font-family: var(--font-main);
    display: flex;
    flex-direction: column;
}

.surebetting1 .content1 h1 {
    font-family: "Orbitron", sans-serif;
    font-weight: bolder;
    color: var(--primary-light);
    font-size: 40px;
}

.surebetting1 .content1 p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-light);
  margin: 20px 0;       /* omezení šířky pro čitelnost */
  text-align: justify;       /* zarovnání do bloku – rovné okraje */
  float: left;
}

/* zvýraznění klíčových slov */
.surebetting1 .content1 p span {
  color: var(--primary-light);
  font-weight: 600;
}


/*************************************************************************************************/

.surebetting2 {
    display: flex;
    flex-direction: row;
    width: 90%;
    margin: 140px auto;
    justify-content: space-between;
    box-shadow: 
    0 8px 16px rgba(0, 0, 0, 0.5),
    0 8px 16px rgba(0, 0, 0, 0.5),
    inset -4px -4px 8px rgba(0, 0, 0, 0.2),
    inset 4px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 50px;
}

.surebetting2 .content2 {
    width: 100%;
}

.surebetting2 .content2 h2 {
    font-family: "Orbitron", sans-serif;
    font-weight: bolder;
    color: var(--primary-light);
    font-size: 40px;
    text-transform: none;
    margin-top: 50px;
}

.surebetting2 .content2 .formula {
    margin: 50px auto;
    background: var(--primary-light);
    color: var(--dark);
    color: var(--dark);
    padding: 10px 20px;
    width: 54%;
    text-align: center;
    font-weight: bold;
}

.surebetting2 .content2 .example {
    margin: 0px 30px;
}

.surebetting2 .content2 .example ul {
    list-style: none;
    margin: 30px 0;
}

.surebetting2 .content2 .example h3{
    color: var(--primary-light);
    font-size: 32px;
}

.surebetting2 .content2 .formula code {
    font-size: 18px;
}

.surebetting2 .content2 .example code {
    font-size: 18px;
    color: var(--primary-light);
}

details summary {
    text-align: center;
    margin: 60px auto;
    color: var(--primary-light);
    border: 2px solid var(--primary-light);
    font-weight: bold;
    width: 40%;
    padding: 10px 5px;
    border-radius: 30px;
}

.dropdown {
  position: relative;
}

.dropdown summary {
    cursor: pointer;
}

.dropdown-content {
  position: absolute;
  bottom: 100%;     /* místo top → bottom, takže se vysune nahoru */
  width: 100%;      /* můžeš zúžit pokud chceš menší box */
  background: var(--dark);
  padding: 1em;
  border-top: 2px solid var(--primary-light);
  border-left: 2px solid var(--primary-light);
  border-right: 2px solid var(--primary-light);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  max-height: 0;
  transition: max-height 0.5s ease;
}


.surebetting2 .image img{
    height: 100%;
}


/**************************************************************************************/
.surebetting3 {
    width: 90%;
    margin: 140px auto;
    justify-content: space-between;
    box-shadow: 
    0 8px 16px rgba(0, 0, 0, 0.5),
    0 8px 16px rgba(0, 0, 0, 0.5),
    inset -4px -4px 8px rgba(0, 0, 0, 0.2),
    inset 4px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 50px;
}

.surebetting3 .content3 {
    display: flex;
    flex-direction: column;
}

.surebetting3 .content3 h2 {
    font-family: "Orbitron", sans-serif;
    font-weight: bolder;
    color: var(--primary-light);
    font-size: 40px;
    text-transform: none;
    margin-top: 50px;
}

.surebetting3 .content3 .pros-cons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 88%;
    margin: 40px auto;
}

.surebetting3 .content3 .pros-cons ul {
    list-style: none;
}

.surebetting3 .content3 .pros-cons ul li {
    margin: 20px 0;
    font-size: 22px;
}

.surebetting3 .content3 .pros-cons span {
    font-weight: bold;
    margin-right: 4px;
}

.pros-cons span.circle {
  display: inline-flex;           /* umožní centrovat text uvnitř */
  align-items: center;
  justify-content: center;
  width: 24px;                    /* velikost kruhu */
  height: 24px;
  border-radius: 50%;             /* kruh */
  color: var(--text-light);                   /* barva znaménka */
  font-weight: bold;
  margin-right: 0.5rem;
  flex-shrink: 0;                 /* zůstane stejná velikost */
}

.pros-cons span.plus {
  background-color: var(--success);      /* zelený kruh pro plus */
}

.pros-cons span.minus {
  background-color: var(--error);      /* červený kruh pro minus */
}

/**************************************************************************************************/


.surebetting4 h2 {
    font-family: "Orbitron", sans-serif;
    font-weight: bolder;
    color: var(--primary-light);
    font-size: 60px;
    text-transform: none;
    margin: 100px auto;
    width: 100%;
    text-align: center;
}

.flow-wrapper1 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  max-width: 90%;
  gap: 200px;
  margin: 40px auto;
}

/* Karty */
.flow-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  justify-content: center;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.flow-step.offset-left {
  align-items: flex-start;
  margin-left: 40px;
}

.flow-step.offset-right {
  align-items: flex-end;
  margin-right: 40px;
}

.flow-card {
  background: var(--dark);
  border: 3px dashed var(--primary-light);
  border-radius: 16px;
  padding: 28px 32px;
  width: 380px;
  min-height: 120px;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-light);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flow-card:hover {
  transform: scale(1.03);
}

.flow-card p {
  /*text-align: center;*/
}

/* Spojnice */
.flow-connector {
  height: 122px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow-connector svg {
  width: 280px;
  height: 120px;
}

.flow-connector path {
  stroke-dasharray: 8 6;
  stroke-linecap: round;
  animation: dashmove 2s linear infinite;
}

@keyframes dashmove {
  to {
    stroke-dashoffset: -28;
  }
}

/* Obrázky */
.flow-images {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 
    0 8px 16px rgba(0, 0, 0, 0.5),
    0 8px 16px rgba(0, 0, 0, 0.5),
    inset -4px -4px 8px rgba(0, 0, 0, 0.2),
    inset 4px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    padding: 50px;
}

.flow-wrapper1 .flow-images .top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.flow-wrapper1 .flow-images .top img:nth-child(1) {
  box-shadow: 0 0 10px #FFDB01;
}

.flow-wrapper1 .flow-images .top img:nth-child(1):hover {
  box-shadow: 0 0 20px #FFDB01;
}

.flow-wrapper1 .flow-images .top img:nth-child(2) {
  box-shadow: 0 0 15px #115CAD;
}

.flow-wrapper1 .flow-images .top img:nth-child(2):hover {
  box-shadow: 0 0 30px #115CAD;
}

.flow-wrapper1 .flow-images .bottom img:nth-child(1) {
  box-shadow: 0 0 20px #FF6600;
}

.flow-wrapper1 .flow-images .bottom img:nth-child(1):hover {
  box-shadow: 0 0 40px #FF6600;
}

.bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.flow-img {
  width: 220px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.5s;
}

.bottom p {
  color: var(--text-light);
  border: 2px dashed var(--primary-light);
  border-radius: 50%;
  height: 140px;
  width: 140px;
  text-align: center;
  align-content: center;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* rovná spojnice */
.connector {
  flex: 1;
  height: 2px;
}

.connector svg {
  width: 100%;
  height: 2px;
}

.connector line {
  stroke-dasharray: 10 10;    /* stejné mezery a čárky */
  stroke-linecap: round;
  animation: dashmove-reverse 1.5s linear infinite;
}

.flow-wrapper1 .flow-images img:hover {
  transform: scale(1.3);
}

@keyframes dashmove-reverse {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -20; /* záporná hodnota → plynule dozadu */
  }
}

@keyframes dashmove {
  to {
    stroke-dashoffset: -28;
  }
}

/*****************************************************************************************************/

.flow-wrapper2 {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  max-width: 90%;
  gap: 200px;
  margin: 100px auto 0;
}

.flow-wrapper2 .flow-images {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 50px;
}

.flow-wrapper2 .flow-images .top {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.5s;
  box-shadow: 
    0 8px 16px rgba(0, 0, 0, 0.8),
    0 8px 16px rgba(0, 0, 0, 0.8),
    inset -4px -4px 8px rgba(0, 0, 0, 0.5),
    inset 4px 4px 8px rgba(0, 0, 0, 0.5);
  margin-top: 40px;
}

.flow-wrapper2 .flow-images .top:hover {
  transform: scale(1.7);
  z-index: 5;
}

.flow-wrapper2 .flow-images .top img {
  width: 580px;
}

.flow-wrapper2 .flow-images .bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flow-wrapper2 .flow-images .bottom img {
  width: 300px;
  box-shadow: 
    0 8px 16px rgba(0, 0, 0, 0.8),
    0 8px 16px rgba(0, 0, 0, 0.8),
    inset -4px -4px 8px rgba(0, 0, 0, 0.5),
    inset 4px 4px 8px rgba(0, 0, 0, 0.5);
}



.flow-wrapper2 .flow-images .bottom img:nth-child(2) {
  margin: 34px 0;
}

[data-aos="tilt-left"] {
  transform: rotate(0deg);
  transition: transform 0.6s ease;
}
[data-aos="tilt-left"].aos-animate {
  transform: rotate(8deg);
}

[data-aos="tilt-right"] {
  transform: rotate(0deg);
  transition: transform 0.6s ease;
}
[data-aos="tilt-right"].aos-animate {
  transform: rotate(-8deg);
}

.flow-wrapper2 .flow-images .bottom img:hover {
  transform: scale(1.3);
}

/********************************************************************************************/

.blink {
  animation: blink-border 1.5s infinite;
}

@keyframes blink-border {
  0%, 100% {
    border: 4px solid transparent;
  }
  50% {
    border: 4px solid #177DD2;
    border-radius: 6px; /* trochu zakulacení, můžeš změnit nebo smazat */
  }
}

/************************************************************************************/



/*************************************************************************************************/

.surebetting5 {
  display: flex;
  flex-direction: row;
  width: 50%;
  margin: 20px auto;
  justify-content: space-between;
  box-shadow: 
    0 8px 16px rgba(0, 0, 0, 0.5),
    0 8px 16px rgba(0, 0, 0, 0.5),
    inset -4px -4px 8px rgba(0, 0, 0, 0.2),
    inset 4px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 50px;
  align-items: stretch; /* aby flex-itemy měly stejnou výšku */
}

.surebetting5 .image img {
  width: 100%;
  height: auto; /* zachová proporce */
}

.surebetting5 .container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
}

.surebetting5 .content5 h2 {
  font-family: "Orbitron", sans-serif;
  font-weight: bolder;
  color: var(--primary-light);
  font-size: 60px;
  text-transform: none;
  margin: 50px auto;
  width: 100%;
  text-align: center;
}

.surebetting5 .desc5 {
  font-size: 14px;
  text-align: center;
  margin: 50px auto;
    background: var(--primary-light);
    color: var(--dark);
    color: var(--dark);
    padding: 10px 20px;
    width: 88%;
    text-align: center;
    font-weight: bold;
}

.surebetting5 .flow-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  justify-content: space-between;
  margin: 50px 0;
}

/* Spojnice */
.surebetting5 .flow-connector {
  height: 82px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.surebetting5 .flow-connector svg {
  width: 280px;
  height: 80px;
}

.surebetting5 .image img{
    height: 100%;
}

/*****************************************************************************/


/****************************************************************************/
.surebetting6 {
  width: 90%;
  margin: 60px auto;
  padding: 40px 30px;
  border-radius: 40px;
  color: var(--light);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.4),
    inset 4px 4px 8px rgba(0, 0, 0, 0.2),
    inset -4px -4px 8px rgba(0, 0, 0, 0.2);
}

.surebetting6 .container {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.expert-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1100px;
  text-align: left;
}

.expert-photo img {
  width: 280px;
  border-radius: 50%;
  border: 4px solid var(--primary-light);
  box-shadow: 0 0 15px rgba(0,198,255,0.5);
  object-fit: cover;
  transition: 0.4s ease;
}

.expert-photo img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0,198,255,0.7);
}

.expert-card h2 {
  font-family: "Orbitron", sans-serif;
  color: var(--primary-light);
  font-size: 45px;
  margin: 0 auto;
}

.expert-card blockquote {
  font-size: 18px;
  font-style: italic;
  color: #d9d9d9;
  line-height: 1.8;
  border-left: 4px solid var(--primary-light);
  padding-left: 20px;
}

.author {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 40px;
}

.author-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.expert-card .author h3 {
  font-family: "Orbitron", sans-serif;
  color: var(--primary-light);
  font-size: 32px;
  margin: 0;
}

.expert-card .author .title {
  font-size: 20px;
  color: #aaa;
  margin: 5px 0 15px;
}

.expert-card .verify {
  display: inline-block;
  width: 180px;
  padding: 10px 20px;
  background: var(--primary-light);
  color: var(--dark);
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: 0.3s ease;
}

.expert-card .verify:hover {
  background: transparent;
  color: var(--primary-light);
  border: 2px solid var(--primary-light);
}



/*****************************************************************************/

.flow-connector-mobile {
  display: none;
}

.top .mobile-img {
  display: none; /* na desktopu skryto */
}

.flow-connector-success {
  display: none;
}


@media (max-width: 1400px) {
  .flow-wrapper2 {
    gap: 100px;
  }
}

@media (max-width: 1280px) {
  .flow-wrapper2 {
    gap: 50px;
    flex-direction: row;
  }

  .flow-wrapper1 .flow-images {
    width: 600px;
    margin: 0 auto;
  }

  .flow-wrapper2 .flow-images {
    width: 600px;
    margin: 0px auto;
  }

  .flow-wrapper2 .flow-images .top {
    transform: scale(0.8);
    align-self: center;
  }

  .flow-wrapper2 .flow-images .top:hover {
    transform: scale(1.4);
  }

  .flow-wrapper2 .flow-images .bottom{
    margin-bottom: 20px;
    z-index: 5;
  }

  .flow-wrapper2 .flow-images .bottom img:hover {
    transform: scale(1.2);
    align-self: center;
  }
}

@media (max-width: 1200px) {
  .flow-wrapper1, .flow-wrapper2 {
    flex-direction: column;
  }

  .flow-wrapper1 {
    gap: 50px;
  }

  .surebetting5 .container {
    box-shadow: 
      0 8px 16px rgba(0, 0, 0, 0.5),
      0 8px 16px rgba(0, 0, 0, 0.5),
      inset -4px -4px 8px rgba(0, 0, 0, 0.2),
      inset 4px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 50px;
  }

  .surebetting5 .content5 h2, .surebetting6 h2 {
    font-size: 50px;
  }

  .surebetting5 .container .image img {
    display: none;
  }

  .surebetting5 .content5 {
    margin: 0 auto;
  }

  .flow-connector-mobile {
    display: flex;
  }

  .flow-connector-mobile svg{
    height: 320px;
  }

  .flow-wrapper1 .flow-connector-mobile svg {
    height: 220px;
  }

  .flow-connector-mobile-last svg {
    height: 220px;
  }
}

@media (max-width: 1024px) {
  .surebetting1 {
    margin-top: 220px;
  }
}

@media (max-width: 820px) {

  .surebetting2, .surebetting3, .surebetting5 {
    margin: 50px auto;
  }

  .surebetting2{
    margin-top: -80px;
  }

  .surebetting2 .formula {
    width: 100%;
    padding: 8px 16px;
  }

  .surebetting5{
    margin-top: -50px;
  }

  .top .desktop-img {
    display: none; /* skryjeme původní obrázky */
  }

  .top .mobile-img {
    display: block; /* zobrazíme mobilní verzi */
  }

  .flow-wrapper2 .flow-images {
    box-shadow:none;
  }

  .flow-wrapper2 .flow-images .top {
    flex-direction: row;
    justify-content: center;
    width: 70%;
    margin: 0 auto;
     box-shadow: 
    0 0px 0px rgba(0, 0, 0, 0.8),      /* zvětšený offset a blur */
    0 0px 0px rgba(0, 0, 0, 0.8),      /* duplikovaný pro intenzitu */
    inset -4px -4px 12px rgba(0, 0, 0, 0.5), /* mírně větší vnitřní stín */
    inset 4px 4px 12px rgba(0, 0, 0, 0.5);
    z-index: 10;
  }

  .flow-wrapper1 .flow-images img:hover {
    transform: scale(1);
  }

  .flow-wrapper2 .flow-images .top{
    transform: scale(0.8) !important;
  }

  .flow-wrapper2 .flow-images .top:hover {
    transform: scale(0.95) !important;
  }

  .flow-wrapper2 .flow-images .bottom {
    box-shadow: 
    0 8px 16px rgba(0, 0, 0, 0.5),
    0 8px 16px rgba(0, 0, 0, 0.5),
    inset -4px -4px 8px rgba(0, 0, 0, 0.2),
    inset 4px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    padding: 50px 0;
  }

  .flow-wrapper2 .flow-images .bottom img:nth-child(1) {
  transform: rotate(0deg);
}

.flow-wrapper2 .flow-images .bottom img:nth-child(2) {
  transform: rotate(0deg);
  margin: 34px 0;
}

.flow-wrapper2 .flow-images {
  gap: 0px;
}

.flow-connector-mobile-last svg {
  height: 380px;
}

.flow-connector-success {
  position: relative;
  width: 230px; /* šířka mezi kolejnicemi */
  height: 140px;
  margin: 0px auto;
  display: flex;
  margin-top: -80px;
}

/* SVG kolejnice čárkované */
.flow-connector-success svg path {
  stroke-dasharray: 16 12;
  stroke-linecap: round;
  animation: dashmove 2s linear infinite;
}

@keyframes dashmove {
  to { stroke-dashoffset: -28; }
}

/* Ikony mezi kolejnicemi */
.flow-connector-success .icons {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Jedna fajfka uprostřed */
.flow-connector-success .icons span img {
  width: 60px;
  height: 60px;
  animation: pulse-tick 1.5s ease-in-out infinite;
}

/* Pulzování fajfky */
@keyframes pulse-tick {
  0%   { transform: scale(1); opacity: 1; }
  50%  { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

}

@media (max-width: 715px) {
  .surebetting1, .surebetting2, .surebetting3, .flow-wrapper1, .flow-wrapper2, .surebetting5, .surebetting6{
    width: 100%;
  }

  .surebetting6 blockquote {
    border: none;
    font-size: 18px;
    padding: 0 5px;
  }

  .author {
    flex-direction: column-reverse;
    align-items: center;
  }
}

@media (max-width: 605px) {
  .surebetting1 {
    margin-top: 350px;
  }

  .surebetting6 h2 {
    font-size: 37px;
  }
}

@media (max-width: 600px) {
  .flow-wrapper1,
  .surebetting5 .container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .surebetting2 .content2 h2 {
    font-size: 37px;
  }


  .surebetting3 .content3 h2 {
    font-size: 37px;
  }

  .surebetting4 h2 {
    font-size: 48px;
  }

  .surebetting3 .content3 .pros-cons ul li {
    font-size: 16px;
  }

  .flow-wrapper1 .flow-connector-mobile svg {
    height: 160px;
  }

  .flow-wrapper1 .bottom {
    flex-direction: column-reverse;
  }

  .flow-wrapper1 .flow-images .bottom .connector {
    transform: rotate(-90deg);
    transform-origin: center;
    margin: 18px 0;
  }


  /* Flow images – mobil */
  .flow-images {
    width: 100% !important;
    padding: 20px !important;
    box-sizing: border-box;
  }

  .flow-wrapper1 .flow-images .top {
    flex-direction: column !important;
    align-items: center;
    gap: 20px;
  }

  .flow-images img,
  .flow-images .top img,
  .flow-images .bottom img {
    width: 100% !important;
    max-width: 280px;   /* aby nebyly přes celou obrazovku */
    height: auto;
  }

  /* Karty menší */
  .flow-card {
    width: 90% !important;
    max-width: 320px;
    font-size: 1rem;
    padding: 20px;
  }

  /* Surebetting5 layout */
  .surebetting5 {
    align-items: center;
  }

  .surebetting5 .content5 h2 {
    font-size: 37px;
  }


  .surebetting5 .image img {
    max-width: 100%;
    height: auto;
  }
}