/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here/* Define the Open Sans font using @font-face */

/* Importing fonts */
@font-face {
  font-family: 'nb-international';
  /* Replace 'url' with the actual font URL */
  src: url('https://42465336.fs1.hubspotusercontent-na1.net/hubfs/42465336/Custom%20Fonts/NB%20International%20Regular.otf') format('opentype');
  /* Add additional font properties as needed */
}

@font-face {
  font-family: 'roobert';
  /* Replace 'url' with the actual font URL */
  src: url('https://42465336.fs1.hubspotusercontent-na1.net/hubfs/42465336/Custom%20Fonts/Roobert-Regular.ttf') format('truetype');
  /* Add additional font properties as needed */
}

/* Applying fonts to elements */
/* nb-international for H1 and H2 */
h1, h2 {
  font-family: 'nb-international', sans-serif;
  /* Add additional styles for H1 and H2 if desired */
}

/* roobert for H3, H4, H5, H5 and body */
h3, h4, h5, h6, body {
  font-family: 'roobert', sans-serif;
  /* Add additional styles for H3, H4, H5, H6, and body if desired */
}


/* Additional styling specific to your HubSpot template */
/* ... */    */
/*****************************************/

/* Apply a border radius to a specific container in HubSpot */
.hs_cos_wrapper_type_container .dnd_area-dnd_partial-1-column-1-row-0-background-image {
    border-radius: 25px; /* Adjust the radius value as needed */
    overflow: hidden; /* Ensures the content fits within the rounded corners */
}

.dnd_area-dnd_partial-1-column-1-row-0-background-image {
    border-radius: 25px; /* Adjust the radius value as needed */
    overflow: hidden; /* Ensures the content fits within the rounded corners */
}

/* Target all images in a specific module by class */
.span5 img {
  border-radius: 20px; /* Adjust the value to change the radius */
}