/**
* Template Name: eStartup
* Template URL: https://bootstrapmade.com/estartup-bootstrap-landing-page-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #101f0c; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #71c55d; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #212529;  /* The default color of the main navmenu links */
  --nav-hover-color: #71c55d; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #71c55d; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f1f6f1;
  --surface-color: #ffffff;
}

.light-background {
  padding: 50px 50px 50px 50px;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color:#0b3d5a;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, #0e4e74, transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: rgb(0, 0, 0);
  font-weight: 700;
  font-family: var(--heading-font);
}

h1 {
  padding-top: 20px;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .logo h1 span {
  color: var(--accent-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0;
  position: relative;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .social-links {
  margin-top: 20px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 0 5px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer .credits {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  padding: 20px 0;
  scroll-margin-top: 90px;
  overflow: clip;
  margin: 50px auto auto auto;

}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title div {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title div .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  position: relative;
}

.background-i {
  background-image: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url("../img/back.png");

  background-size: cover;      
  background-position: center;  
  background-repeat: no-repeat;
}

.hero .container {
  position: relative;
  z-index: 3;
} 

.hero h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero h2 .accent {
  color: var(--accent-color);
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 400;
  margin-bottom: 30px;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: rgb(78, 39, 39);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 36px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, rgb(48, 23, 23), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 640px) {
  .hero h2 {
    font-size: 36px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 14px;
  }
}

.hero .icon-boxes {
  padding-bottom: 60px;
  z-index: 4;
}

.hero .icon-box {
  background: var(--surface-color);
  padding: 60px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  height: 100%;
  width: 100%;
  text-align: center;
}

.hero .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.hero .icon-box .title a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.hero .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 48px;
  line-height: 1;
  color: var(--accent-color);
}

.hero .icon-box:hover {
  background-color: var(--accent-color);
}

.hero .icon-box:hover .title a,
.hero .icon-box:hover .icon {
  color: var(--contrast-color);
}

.title {
  color: rgb(0, 0, 0) !important;
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 30px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  border-bottom: 5px solid var(--surface-color);
  height: 100%;
}

.services .service-item .icon {
  color: var(--contrast-color);
  background: var(--accent-color);
  margin: 0;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

@media (min-width: 1365px) {
  .services .service-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
  }

  .services .service-item:hover h3 {
    color: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .feature-box {
  background-color: var(--surface-color);
  padding: 24px 20px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  height: 100%;
}

.features .feature-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.features .feature-box i {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  line-height: 0;
  padding: 4px;
  margin-right: 10px;
  font-size: 24px;
  border-radius: 3px;
  transition: 0.3s;
}

.features .feature-box:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-tem {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  text-align: center;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
}

@media (min-width: 1200px) {
  .pricing .pricing-tem:hover {
    transform: scale(1.1);
  }
}

.pricing h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}

.pricing .price {
  font-size: 36px;
  color: var(--heading-color);
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing .price sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .price span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .icon {
  padding: 20px 0;
}

.pricing .icon i {
  font-size: 48px;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: var(--default-color);
  text-align: center;
  line-height: 26px;
  font-size: 16px;
  margin-bottom: 25px;
}

.pricing ul li {
  padding-bottom: 10px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
  text-decoration: line-through;
}

.pricing .btn-buy {
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  color: var(--accent-color);
  transition: none;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
  border: 1px solid var(--accent-color);
}

.pricing .btn-buy:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq-content p{
  font-size: 20px !important;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

.casino-top-list {
  padding: 20px 0;
  background: #f5f7fa;
}

.casino-top-list .title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: 800;
}

.casino-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 30px;
}

.casino-card {
  position: relative;
  background: white;
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.casino-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.12);
}

.position-number {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #c7c7c7;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
}


.casino-logo {
  width: 120px;
  height: auto;
  margin-bottom: 15px;
}

.casino-card h3 {
  font-size: 22px;
  margin: 10px 0;
}

.rating {
  font-size: 22px;
  color: #fcc07c;
  margin-bottom: 10px;
}

.rating span {
  color: #000;
  margin-left: 5px;
}

.card-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.btn-primary,
.btn-secondary {
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s;
}

.btn-primary {
  background: #1e4b44;
  color: #fff !important;
}

.btn-primary:hover {
  background: #37887c;
}

.btn-secondary {
  background: #e6e6e6;
  color: #222 !important;
}

.btn-secondary:hover {
  background: #cfcfcf;
  color: #222 !important;
}

.logo-block {
  display: flex;
  align-items: flex-end;
}

.logo-block  p {
  font-size: 3rem;
  font-family: 'Impact', 'fantasy', sans-serif;
}

.logo-img {
  width: 400px;
}

.h1-color {
  color: #c22a2a;
}

.pros-style {
  display: flex;
  align-items: flex-start;
    justify-content: space-between;
}

.pros-img-rating {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  
}

.pros-style > div {
  margin-right: 80px;
}

.visit-btn {
  width: 30%;
  margin-top: 20px;
  display: inline-block;
  padding: 12px 26px;
  background: #7a2d2d;
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: 0.2s;
  text-decoration: none;
  text-align: center;
}

.visit-btn:hover {
  background: #5e2020;
  color: #fff;
}

@media (max-width: 768px) {
  .about-block {
    flex-direction: column;
    padding: 25px;
  }

  .about-block img.casino-logo {
    width: 60px;
  }

  .about-content h3 {
    font-size: 22px;
  }
}


  .container{
    padding: 0px 20px;
    font-family: Inter, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #123;
    line-height: 1.55;
  }

  .background-post {
    background-color: white !important;
    border-radius: 20px;
    padding: 50px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    
  }

  .background-post h2{
    color: var(--accent);
    font-size: 30px;
    margin: 0 0 14px 0;
    font-weight: 700;
    border-bottom: 2px solid var(--soft-border);
    padding-bottom: 14px;
  }

  .table-of-contents{
    background-color: var(--toc-bg);
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    border-left: 4px solid var(--accent);
    padding: 18px;
    margin-bottom: 22px;
  }

  .table-of-contents h3{
    margin: 0 0 8px 0;
    font-size: 15px;
    color: var(--accent);
  }

  .table-of-contents ol{
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    font-size: 14px;
  }

  .table-of-contents ol li{
    margin: 6px 0;
  }

  .table-of-contents a{
    color: #0b3d5a;
    text-decoration: none;
    display: inline-block;
  }

  .table-of-contents a:hover{ text-decoration: underline; color: var(--accent); }



  section h3{
    color: #0e4b6b;
    font-size: 18px;
    margin: 18px 0 10px 0;
    font-weight: 700;
  }

  section h4{
    font-size: 15px;
    margin: 12px 0 8px 0;
    color: #163d54;
  }

  p{
    color: #1f3342;
    font-size: 22px;
    margin: 8px 0 12px 0;
  }

  ul, ol{ margin: 8px 0 12px 1.05rem; color: #233644; }

  aside{
    background: linear-gradient(180deg,#f9fbfd,#ffffff);
    border: 1px solid rgba(24,79,122,0.06);
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 14px;
    color: #123b57;
    margin: 12px 0;
    box-shadow: 0 2px 8px rgba(20,40,60,0.03);
  }

  details{
    margin: 10px 0;
    border: 1px solid rgba(10,30,50,0.04);
    border-radius: 8px;
    padding: 8px 12px;
    background: #fff;
  }
  details summary{
    cursor: pointer;
    font-weight: 600;
    color: #0e4b6b;
    outline: none;
  }

  @media (max-width: 900px){
    :root{ --container-w: 92%; }
  }



  @media (max-width: 1059px){
    .casino-grid{ grid-template-columns: 1fr; }
    .casino-card{ padding:14px; }
    .about-block{ padding:12px; }
    .pros-style{ flex-direction:column; }
    .pros-style > div{ width:100%; }
    .visit-btn{ align-self: stretch; text-align:center; height: 20%; margin-top: auto; margin-bottom: auto;}
    .casino-logo { width: 200px !important;}
  }

  @media (min-width: 1060px) and (max-width: 1099px){
    .casino-grid{ grid-template-columns: repeat(2, 1fr); }
    .about-block{ flex-direction:row; align-items:flex-start; gap:18px; }
    .about-block .casino-logo{ flex:0 0 96px; }
    .casino-logo { width: 200px !important;}
    .about-content{ flex:1; }
    .visit-btn{ align-self:center; margin-left:auto; height: 20%; margin-top: auto; margin-bottom: auto;}
  }



    #post-author {
      border-bottom: 1px solid #e5e5e5;
      background-color: #cacaca;
      margin-bottom: 0px;
    }

    #header {
      background-color: #f5f7fa;
    }

    .author-photo {
      width:60px;
      height:60px;
      border-radius:50%;
      object-fit:cover;
    }

    .author-section h3 {
      font-size: 22px;
      font-weight: 700;
    }

    .author-section p {
      font-size: 13px;
    }

    .author-meta {
      font-size: 14px;
      color: #555;
    }

    .author-meta span:last-child {
      color: #1aa957;
      font-weight: 600;
    }


    .right-margin {
      margin: 0px;
      padding: 0px;
      margin-right: 50px;
      font-weight:600;
      
    }

    .margin-cont {
      margin: 0px auto;
    }

    .mb-green {
      color:green;
      
    }

    .underline {
      border-bottom: 2px solid green;
    }

    .post-meta {
      display: flex;
      align-items: center;
      gap: 10px;         
      font-size: 14px;
    }

    .author-wrap {
      margin-right: 10px;
    }

    .meta-divider {
      display: inline-block;
      width: 3px;
      height: 30px;
      background: rgba(0, 0, 0, 0.35);
      margin: 0 6px;
    }

    .mb-green {
      color: #1d7e3d;
    }

.proscons-box {
    display: flex;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    background: #ffffff;
    align-items: start;
}

.pc-item {
    text-align: left;
}

.pc-title {
    font-weight: 700;
    font-size: 16px;
    padding: 6px 12px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 12px;
}

.pc-title.pros {
    background: #e9f9ef;
    color: #11833f;
}

.pc-title.cons {
    background: #ffeaea;
    color: #b83232;
}

ul {
    padding-left: 20px;
    margin: 0;
}

.rating-box {
    text-align: center;
}

.rating-title {
    background: #eef3ff;
    color: #2b4cbf;
}

.stars {
    font-size: 28px;
    color: #ffb703;
    letter-spacing: 3px;
    margin: 10px 0;
}

.rating-number {
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

.review-box {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 35px;
}

.rb-top {
    display: flex;
    gap: 25px;
    align-items: flex-end;
}

.rb-right {
  display: flex;
  justify-content: space-between;
    align-items: flex-start;
}

.rb-logo {
  display: inline-flex;
  padding: 14px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
  transition: 0.25s ease;
}

.rb-logo img {
  width: 250px;
  height: auto;
  display: block;
}


.rb-proscons {
    display: flex;
    gap: 50px;
}

.rb-col-title {
    font-weight: 700;
    font-size: 30px;
}

.rb-pros-title { color: #1b9c40; }
.rb-cons-title { color: #cc3c3c; }

.rb-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.rb-list li {
    margin-bottom: 6px;
    font-size: 20px;
    display: flex;
    align-items: center;
}

.rb-icon {
    font-weight: bold;
    margin-right: 6px;
}

.rb-pros-icon { color: #1b9c40; }
.rb-cons-icon { color: #cc3c3c; }

.rb-content {
    margin-top: 20px;
}

.rb-content p {
  font-size: 22px;
}

.rb-title {
    margin: 0 0 6px 0;
    font-size: 28px;
    font-weight: 700;
    color: #060606 !important;
}

.rb-content p {
    color: #444;
    margin-top: 8px;
    line-height: 1.55;
}

.rb-btn {
    text-align: center;
    width: 30%;
    display: inline-block;
    margin-top: 15px;
    background: #1e4b44;
    color: #fff;
    padding: 20px 24px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    margin-right: 10px;
}
.rb-btn:hover {
  background: #37887c;
}

.rb-btn-read-reviews {
    text-align: center;
    width: 30%;
    display: inline-block;
    margin-top: 15px;
    background: #919191;
    color: #fff;
    padding: 20px 24px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
}

.rb-btn-read-reviews:hover {
    color: #fff;
}

.btn-all {
  display: flex;
}

.rb-btn:hover {
    color: #fff;
}

.rb-btn:hover {
    opacity: .9;
}

.rb-pay-title {
    font-weight: 700;
    margin-bottom: 12px;
}

.rb-pay-grid {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.rb-pay-grid img {
    height: 22px;
}


.rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.star {
  width: 22px;
  height: 22px;
  background-size: cover;
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 .587l3.668 7.568 8.332 1.151-6.064 5.828 1.48 8.279L12 18.896l-7.416 4.517 1.48-8.279L0 9.306l8.332-1.151z"/></svg>') no-repeat center;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 .587l3.668 7.568 8.332 1.151-6.064 5.828 1.48 8.279L12 18.896l-7.416 4.517 1.48-8.279L0 9.306l8.332-1.151z"/></svg>') no-repeat center;
  background-color: #ccc;
  position: relative;
  overflow: hidden;
}

.star.full {
  background-color: #b48a61;
}

.star.half::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #b48a61;
  mask: inherit;
  -webkit-mask: inherit;
}



@media (max-width: 992px) {
  .rb-pros-title, .rb-list{
    text-align: center;
  }

  .rb-cons-title, .rb-list{
    text-align: center;
  }

  .rb-list li, .rb-content p {
    font-size: 14px;
    font-weight: bold;
    align-items: flex-start;
    text-align: left;
  }

  .rb-list li {
    text-align: left;
  }

  .rb-col-title {
    font-size: 25px;
  }

  .review-box {
    padding: 20px;
    grid-template-columns: 1fr;
  }

  .rb-right {
    flex-direction: column;
    align-items: flex-start;
  }

  .rb-proscons {
    display: flex;
    gap: 20px;
  }

  .rb-content {
    margin-top: 15px;
  }

  .rb-btn {
    width: 45%;
    text-align: center;
  }

  .rb-btn-read-reviews {
    text-align: center;
    width: 45%;
  }

  .btn-all {
    display: flex;
    justify-content: center !important;
  }

  .rb-pay-grid {
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    
  }

  .logo-img {
    width: 300px;
  }
}

@media (max-width: 768px) {

  .rb-right {
    flex-direction: column;
    align-items: center;
  }

  .review-box {
    padding: 18px;
    border-radius: 14px;
  }

  .rb-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .rb-logo {
    box-shadow: none;
  }

  .rb-logo img {
    width: 250px;
    margin-bottom: 15px;
  }

  .rb-proscons {
    flex-direction: column;
    text-align: center;
    width: 100%;
    margin-top: 10px;
  }

  .rb-col {
    width: 100%;
  }

  .rating {
    margin-top: 20px;
    justify-content: center;
  }

  .rb-content {
    text-align: center;
  }

  .rb-btn {
    width: 100%;
    text-align: center;
    margin: 5px auto 5px auto;
    
  }

  .btn-all {
    flex-direction: column;
  }

  .btn-all a {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .rb-btn-read-reviews {
    text-align: center;
    width: 100%;
    margin: 5px auto 5px auto;
    
  }

  .btn-all {
    display: flex;
    justify-content: center !important;
  }

  .rb-pay-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .logo-img {
    width: 250px;
  }
}

@media (max-width: 480px) {

  .rb-logo {
    box-shadow: none;
  }

  .rb-logo img {
    width: 100%;

    box-shadow: none;
  }

  .rb-pay-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rb-proscons {
    gap: 10px;
  }

  .rating-text {
    font-size: 14px;
  }

  .rb-title {
    font-size: 20px;
  }

  .logo-img {
    width: 200px;
  }
}

.block-frost {
  justify-content: center;
}


.post-meta a,
.post-meta button { outline: none; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

main {
  background: #f5f7fa;
  
}

.post-main, 
.post-main * {
  font-family: "Inter", Arial, sans-serif;
}

.post-author-section {
  padding: 20px 0;
}

.intro-text {
  line-height: 1.6;
  color: #444;
  background-color: #ffffff;
  padding: 5px;
  border-radius: 20px 20px 0px 0px;

}

.intro-text-3 {
  padding: 5px;
  line-height: 1.6;
}

.intro-text p{
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  padding: 0px 10px;
}

.post-author-meta {
  background-color: #f1f6f1;
  border-radius: 0px 0px 20px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: black !important;
}

.post-author-meta2 {
  background-color: #3c845d;
  border-radius: 0px 0px 20px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: black !important;
}


.intro-text,
.head-h1-autor {
  margin: 0; 
  box-shadow: 3px 3px 13px 3px rgba(20,40,60,0.03);
}


.intro-text p,
.head-h1-autor p {
  margin-top: 0;
  margin-bottom: 0;
}

.post-author-underline {
  border-bottom: 2px solid rgb(0, 204, 0);
  color: rgb(0, 0, 0);
}

.post-author-underline2 {
  border-bottom: 2px solid rgb(0, 204, 0);
  color: rgb(255, 255, 255);
}

.post-author-divider {
  width: 1px;
  height: 55px;
  background: #e1e1e1;
  display: block;
}

.post-author-right {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.post-author-date,
.post-author-verified {
  font-size: 13px;
}

.post-author-verified {
  color: #1e8e2c;
  font-weight: 600;
}



.btn-between {
  justify-content: space-between;
}

.btn-right {
  justify-content: flex-end;
}

.btn-left {
  justify-content: flex-start;
}

.btn-center {
  justify-content: center;
}




.casino-top-list.author-section {
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.casino-top-list.author-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  max-width: 1284px !important;
  margin: auto;
  background: linear-gradient(90deg, #c9bc03, #ece92e, #71c55d);
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}


.post-author-photo-wrap {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.post-author-photo {
  width: 60%;
  height: 60%;
  object-fit: cover;
  border-radius: 50px;
}


.post-author-info {
  display: flex;
  align-items: center
}


.post-author-role {
  font-size: 14px;
  font-weight: 500;
  margin: 10px;
  letter-spacing: 0.5px;
}

.post-author-role2 {
  font-size: 14px;
  font-weight: 500;
  margin: 0px 5px;
  letter-spacing: 0.5px;
  color: white;
}

.post-author-name {
  margin: 10px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  justify-content: center;
}

.post-author-name2 {
  margin: 10px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.post-author-name2 a{
  color: #ffffff !important;
}

.post-author-divider {
  width: 1px;
  height: 30px;

  flex-shrink: 0;
}

.post-author-right {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  margin: 10px;
}

.post-author-verified {
  color: #28a745;
  margin: 10px;
}

.post-author-date {
  color: #ffffff;
  margin: 10px;
}

.post-author-name-mobile {
  display: none;
  margin: 10px;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
}

.post-author-name-mobile2 {
  display: none;
  margin: 10px;
  font-size: 10px;
  font-weight: 500;
  color: #ffffff !important;
  line-height: 1.2;
}

/* ================================
   RESPONSIVE (MOBILE)
================================ */
@media (max-width: 768px) {

  .post-author-photo-wrap {
    width: 100px;
    height: 100px;
  }

  .post-author-photo {
    width: 60%;
    height: 60%;
  }

  .post-author-meta {
    flex-direction: column;
    gap: 20px;
  }

  .post-author-meta2 {
    gap: 20px;
    justify-content: center;
  }

  .post-author-name-mobile {
    display: block;
    font-size: 14px !important;
  }

  .post-author-name, .post-author-role {
    display: none;
  }
  
  .post-author-left {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    order: 1;
    margin: 10px 0px;
  }
  
  .post-author-info {
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
  }
  
  .post-author-name {
    font-size: 18px;
    margin: 5px 0;
    order: 1;
  }
  
  .post-author-role {
    font-size: 12px;
    margin: 0;
    order: 2;
  }
  
  .post-author-right {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    order: 2;
  }
  
  .post-author-date {
    font-size: 13px;
    margin: 0;
    order: 1;
  }
  
  .post-author-verified {
    font-size: 13px;
    margin: 0;
    order: 2;
  }
  
  .post-author-divider {
    display: none;
  }
  
}

@media (max-width: 480px) {

  .post-author-name-mobile {
    display: block;
  }

  .post-author-name, .post-author-role {
    display: none;
  }
  
  .post-author-name {
    font-size: 16px;
  }
  
  .post-author-role,
  .post-author-date,
  .post-author-verified {
    font-size: 12px;
  }

  .logo-block  p {
  font-size: 2rem;
  font-family: 'Impact', 'fantasy', sans-serif;
}
}

#article_content {
  background-color: #f5f7fa;
  margin-bottom: 20px;
  margin: 0px;
}

#full-casino {
  background-color: #f5f7fa;
}

#casinos {
  background-color: #f5f7fa;
}

h4 {
  color: #0e4b6b!important;
}

.toc-nav-menu {
  background-color: var(--toc-bg);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  border-left: 4px solid var(--accent);
  padding: 18px;
  margin-bottom: 22px;
}

.toc-nav-menu h3 {
  margin: 0 0 8px 0;
  font-size: 15px;
  color: var(--accent);
}

.toc-nav-menu ol {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.toc-nav-menu ol li {
  margin: 6px 0;
}

.toc-nav-menu a {
  color: #0b3d5a;
  text-decoration: none;
  display: inline-block;
}

.toc-nav-menu a:hover {
  text-decoration: underline;
  color: var(--accent);
}

.media-cas-play {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  margin: 10px 0 22px 0;
  border: 1px solid rgba(10,30,50,0.03);
}

.media-cas-play img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  background: #f2f4f6;
}

.media-cas-play figcaption {
  font-size: 13px;
  color: var(--muted);
  padding: 12px 16px;
  border-top: 1px solid rgba(10,30,50,0.03);
}

.video-cas-play {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  margin: 10px 0 22px 0;
  border: 1px solid rgba(10,30,50,0.03);
}

.video-cas-play iframe {
  width: 100%;
  height: 320px;
  border-radius: var(--radius);
}

.video-cas-play figcaption {
  font-size: 13px;
  color: var(--muted);
  padding: 12px 16px;
  border-top: 1px solid rgba(10,30,50,0.03);
}

/* aside → fact-aside, audit-fact-aside */
.fact-aside,
.audit-fact-aside {
  background: linear-gradient(180deg,#f9fbfd,#ffffff);
  border: 1px solid rgba(24,79,122,0.06);
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
  color: #123b57;
  margin: 12px 0;
  box-shadow: 0 2px 8px rgba(20,40,60,0.03);
}

/* details → safety-tip-details, bonus-tip-details, expert-tip-details */
.safety-tip-details,
.bonus-tip-details,
.expert-tip-details {
  margin: 10px 0;
  border: 1px solid rgba(10,30,50,0.04);
  border-radius: 8px;
  padding: 8px 12px;
  background: #fff;
}

.safety-tip-details summary,
.bonus-tip-details summary,
.expert-tip-details summary {
  cursor: pointer;
  font-weight: 600;
  color: #0e4b6b;
  outline: none;
}

#article_content .container {
  padding: 0 18px;
  font-family: Inter, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #123;
  line-height: 1.55;
  
}

#article_content h2#top-text{
  color: var(--accent);
  font-size: 30px;
  margin: 0 0 14px 0;
  font-weight: 700;
  border-bottom: 2px solid var(--soft-border);
  padding-bottom: 14px;
}

#article_content {
  max-width: var(--max-content-width);
}

#article_content h3 {
  color: #0e4b6b;
  font-size: 18px;
  margin: 18px 0 10px 0;
  font-weight: 700;
}

#article_content h4 {
  font-size: 15px;
  margin: 12px 0 8px 0;
  color: #163d54;
}

#article_content p {
  color: #1f3342;
  font-size: 15px;
  margin: 8px 0 12px 0;
}

#article_content ul, 
#article_content ol {
  margin: 8px 0 12px 1.05rem;
  color: #233644;
}
@media (max-width: 900px) {
  .media-cas-play img,
  .video-cas-play iframe {
    height: 220px;
  }
  :root {
    --container-w: 92%;
  }
}
