/**
Theme Name: PB Theme
Author: Good Men 
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pb-theme
Template: astra
*/


h1 {
  margin-bottom: clamp(36px, 4vw,64px)!important;
}

h2 {
  margin-bottom: clamp(36px, 4vw,64px)!important;
}

a {
  text-decoration: underline;
}
.gm-dot-grid{
  --dot-color: rgba(0,0,0,0.22);
  --dot-size: 1px;
  --dot-gap: 24px;

  background-color: #FFF200;
  background-image: radial-gradient(circle, var(--dot-color) var(--dot-size), transparent var(--dot-size));
  background-size: var(--dot-gap) var(--dot-gap);
}

/* Group block with corner-cross decorations */
.gm-corner-crosses{
  position: relative;
  /* optional: create a little inset so the cross doesn't touch edges */
  --cross-inset: clamp(8px, 2vw, 16px);

  /* Cross size responds: smaller on small screens, larger on big screens */
  --cross-size: clamp(24px, 5vw, 72px);

  /* 1px line thickness */
  --cross-stroke: 1px;

  /* Color */
  --cross-color: currentColor; /* or e.g. #111 */

  margin-top: clamp(20px, 4vw, 64px);
  margin-bottom: clamp(20px, 4vw, 64px);
}

/* One rule for all four corner elements */
.gm-corner-crosses::before,
.gm-corner-crosses::after{
  content: "";
  position: absolute;
  width: var(--cross-size);
  height: var(--cross-size);
  pointer-events: none;

  /* Draw the cross using two gradients */
  background:
    linear-gradient(var(--cross-color), var(--cross-color)) center / 100% var(--cross-stroke) no-repeat,
    linear-gradient(var(--cross-color), var(--cross-color)) center / var(--cross-stroke) 100% no-repeat;
}

/* Top-left */
.gm-corner-crosses::before{
  top: var(--cross-inset);
  left: var(--cross-inset);
}

/* Top-right uses ::after */
.gm-corner-crosses::after{
  top: var(--cross-inset);
  right: var(--cross-inset);
}

/* Bottom corners: add 2 extra pseudo elements via a wrapper */
.gm-corner-crosses > .gm-corner-crosses__inner{
  position: relative;
}

/* Create the bottom corners on an inner wrapper */
.gm-corner-crosses > .gm-corner-crosses__inner::before,
.gm-corner-crosses > .gm-corner-crosses__inner::after{
  content: "";
  position: absolute;
  width: var(--cross-size);
  height: var(--cross-size);
  pointer-events: none;
  background:
    linear-gradient(var(--cross-color), var(--cross-color)) center / 100% var(--cross-stroke) no-repeat,
    linear-gradient(var(--cross-color), var(--cross-color)) center / var(--cross-stroke) 100% no-repeat;
}

/* Bottom-left */
.gm-corner-crosses > .gm-corner-crosses__inner::before{
  bottom: var(--cross-inset);
  left: var(--cross-inset);
}

/* Bottom-right */
.gm-corner-crosses > .gm-corner-crosses__inner::after{
  bottom: var(--cross-inset);
  right: var(--cross-inset);
}


.wp-block-image img {
  max-width: min(100%, 43vw);
  height: auto;
}