/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Reset y estilos base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
	font-family: 'Montserrat', sans-serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  background-color: #ffffff;
  color: #333;
  padding: 0;
}

.body-container-wrapper{padding-top:90px;}

/* Tipografías */
h1, h2, h3, h4, h5, h6{
  margin-bottom: 0.5em;
  font-weight: 600;
  line-height: 1.2;
	font-family: 'Montserrat', sans-serif;
}

h1 { font-size: 2em; }
h2 { font-size: 1.75em; }
h3 { font-size: 1.5em; }

p {
  margin-bottom: 1em;
}

span {
  margin-bottom: 0.5em;
  line-height: 1.2;
	font-family: 'Montserrat', sans-serif;
}

a {
  color: #0077cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Botones */
button,
input[type="submit"],
input[type="button"] {
  background-color: #0077cc;
  color: #fff;
  padding: 0.6em 1.2em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
}

button:hover {
  background-color: #005fa3;
}

/* Formularios */
input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
  width: 100%;
  padding: 0.5em;
  margin-bottom: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
}

/* Listas */
ul, ol {
  margin-bottom: 1em;
  padding-left: 1.5em;
}

li {
  margin-bottom: 0.5em;
}

/* Tablas */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1em;
}

th, td {
  padding: 0.75em;
  border: 1px solid #ddd;
  text-align: left;
}

th {
  background-color: #f0f0f0;
}

/* Imágenes */
img {
  max-width: 100%;
  height: auto;
  display: block;
}




@font-face {
    font-family: 'Montserrat';
    src: url('https://3446783.fs1.hubspotusercontent-na1.net/hubfs/3446783/fonts/Montserrat-Black.woff2') format('woff2'),
        url('https://3446783.fs1.hubspotusercontent-na1.net/hubfs/3446783/fonts/Montserrat-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('https://3446783.fs1.hubspotusercontent-na1.net/hubfs/3446783/fonts/Montserrat-BlackItalic.woff2') format('woff2'),
        url('https://3446783.fs1.hubspotusercontent-na1.net/hubfs/3446783/fonts/Montserrat-BlackItalic.woff') format('woff');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('https://3446783.fs1.hubspotusercontent-na1.net/hubfs/3446783/fonts/Montserrat-Bold.woff2') format('woff2'),
        url('https://3446783.fs1.hubspotusercontent-na1.net/hubfs/3446783/fonts/Montserrat-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('https://3446783.fs1.hubspotusercontent-na1.net/hubfs/3446783/fonts/Montserrat-BoldItalic.woff2') format('woff2'),
        url('https://3446783.fs1.hubspotusercontent-na1.net/hubfs/3446783/fonts/Montserrat-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('https://3446783.fs1.hubspotusercontent-na1.net/hubfs/3446783/fonts/Montserrat-ExtraBold.woff2') format('woff2'),
        url('https://3446783.fs1.hubspotusercontent-na1.net/hubfs/3446783/fonts/Montserrat-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('https://3446783.fs1.hubspotusercontent-na1.net/hubfs/3446783/fonts/Montserrat-ExtraBoldItalic.woff2') format('woff2'),
        url('https://3446783.fs1.hubspotusercontent-na1.net/hubfs/3446783/fonts/Montserrat-ExtraBoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('https://3446783.fs1.hubspotusercontent-na1.net/hubfs/3446783/fonts/Montserrat-Italic.woff2') format('woff2'),
        url('https://3446783.fs1.hubspotusercontent-na1.net/hubfs/3446783/fonts/Montserrat-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('https://3446783.fs1.hubspotusercontent-na1.net/hubfs/3446783/fonts/Montserrat-ExtraLightItalic.woff2') format('woff2'),
        url('https://3446783.fs1.hubspotusercontent-na1.net/hubfs/3446783/fonts/Montserrat-ExtraLightItalic.woff') format('woff');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('https://3446783.fs1.hubspotusercontent-na1.net/hubfs/3446783/fonts/Montserrat-ExtraLight.woff2') format('woff2'),
        url('https://3446783.fs1.hubspotusercontent-na1.net/hubfs/3446783/fonts/Montserrat-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('https://3446783.fs1.hubspotusercontent-na1.net/hubfs/3446783/fonts/Montserrat-Light.woff2') format('woff2'),
        url('https://3446783.fs1.hubspotusercontent-na1.net/hubfs/3446783/fonts/Montserrat-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('https://3446783.fs1.hubspotusercontent-na1.net/hubfs/3446783/fonts/Montserrat-LightItalic.woff2') format('woff2'),
        url('https://3446783.fs1.hubspotusercontent-na1.net/hubfs/3446783/fonts/Montserrat-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('https://3446783.fs1.hubspotusercontent-na1.net/hubfs/3446783/fonts/Montserrat-Medium.woff2') format('woff2'),
        url('https://3446783.fs1.hubspotusercontent-na1.net/hubfs/3446783/fonts/Montserrat-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('https://3446783.fs1.hubspotusercontent-na1.net/hubfs/3446783/fonts/Montserrat-MediumItalic.woff2') format('woff2'),
        url('https://3446783.fs1.hubspotusercontent-na1.net/hubfs/3446783/fonts/Montserrat-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('https://3446783.fs1.hubspotusercontent-na1.net/hubfs/3446783/fonts/Montserrat-SemiBold.woff2') format('woff2'),
        url('https://3446783.fs1.hubspotusercontent-na1.net/hubfs/3446783/fonts/Montserrat-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('https://3446783.fs1.hubspotusercontent-na1.net/hubfs/3446783/fonts/Montserrat-Regular.woff2') format('woff2'),
        url('https://3446783.fs1.hubspotusercontent-na1.net/hubfs/3446783/fonts/Montserrat-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('https://3446783.fs1.hubspotusercontent-na1.net/hubfs/3446783/fonts/Montserrat-SemiBoldItalic.woff2') format('woff2'),
        url('https://3446783.fs1.hubspotusercontent-na1.net/hubfs/3446783/fonts/Montserrat-SemiBoldItalic.woff') format('woff');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('https://3446783.fs1.hubspotusercontent-na1.net/hubfs/3446783/fonts/Montserrat-Thin.woff2') format('woff2'),
        url('https://3446783.fs1.hubspotusercontent-na1.net/hubfs/3446783/fonts/Montserrat-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('https://3446783.fs1.hubspotusercontent-na1.net/hubfs/3446783/fonts/Montserrat-ThinItalic.woff2') format('woff2'),
        url('https://3446783.fs1.hubspotusercontent-na1.net/hubfs/3446783/fonts/Montserrat-ThinItalic.woff') format('woff');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}



html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 14px;
  }
}

body {
  font-family: 'Montserrat'!important;
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
}

p {
  margin-top: 0;
  margin-bottom: .75em;
}

p:last-child {
	margin-bottom: 0;
}

.atmc-intro {
	font-size: 1.2rem;
	line-height: 1.5;
	margin-bottom: 1rem;
}

/*.atmc-dropcap *:first-child::first-letter {
  font-size: 6rem;
	line-height: 1;
  padding-right: 1rem;
	float: left;
	font-weight: bold;
	color: ;
}*/

/* Anchor Links */
a {
  color: ;
  text-decoration: none;
  transition: all ease 200ms;
}

a:hover,
a:visited {
  color: #FF5800;
}
a:focus,
a:active {
  color: #FF5800;
}
a:visited,
a:visited * {
  color: #FF5800;
}

a.atmc-link-default:not(:hover) * {
  color: inherit;
	transition: 0.2s ease;
}
a.atmc-link-default:not(:hover) h1 {
  color: ;
}
a.atmc-link-default:not(:hover) h2 {
  color: ;
}
a.atmc-link-default:not(:hover) h3 {
  color: ;
}
a.atmc-link-default:not(:hover) h4 {
  color: ;
}
a.atmc-link-default:not(:hover) h5 {
  color: ;
}
a.atmc-link-default:not(:hover) h6 {
  color: ;
}

a:hover * {
	color: inherit;
}
 
.atmc-link {
	font-weight: bold;
	color: ;
	position: relative;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: .9rem;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	color: inherit;
}

/* Headings */
h1, .atmc-h1,
h2, .atmc-h2,
h3, .atmc-h3,
h4, .atmc-h4,
h5, .atmc-h5,
h6, .atmc-h6 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  line-height: 1.1;
  word-break: break-word;
  font-family: 'Montserrat'!important;
}

.widget-type-rich_text * + h1,
.widget-type-rich_text * + h2,
.widget-type-rich_text * + h3,
.widget-type-rich_text * + h4,
.widget-type-rich_text * + h5,
.widget-type-rich_text * + h6 {
  margin-top: 2.25rem;
}


.text-base *:not(a),
.text-primary *:not(a),
.text-secondary *:not(a),
.text-warning *:not(a),
.text-danger *:not(a),
.text-success *:not(a),
.text-white *:not(a),
.text-dark *:not(a),
.text-gray *:not(a),
.text-lightgray *:not(a),
.text-light *:not(a) {
	color: inherit;
}

.text-white a:visited {
	color: inherit;
}

.atmc-l {
	font-size: 3rem;
	line-height: 1;
}

.atmc-xl {
	font-size: 4rem;
	line-height: 1;
}

.atmc-xxl {
	font-size: 6rem;
	line-height: 1;
}

@media (max-width: 767px) {
  h1, .atmc-h1 {
    font-size: 24px;
  }
  h2, .atmc-h2 {
    font-size: 22px;
  }
  h3, .atmc-h3 {
    font-size: 20px;
  }
  h4, .atmc-h4 {
    font-size: 18px;
  }
  h5, .atmc-h5 {
    font-size: 16px;
  }
	.atmc-l {
	  font-size: 1.5rem;
	}
	.atmc-xl {
	  font-size: 2rem;
	}
	.atmc-xxl {
		font-size: 3rem;
	}
}

strong {
  font-weight: bolder;
}

code {
  vertical-align: bottom;
}

.widget-type-rich_text ul,
.widget-type-rich_text ol {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
	list-style: none;
	padding: 0;
}

.widget-type-rich_text ul {
}

.widget-type-rich_text ol {
	counter-reset: item;
}

.widget-type-rich_text ul li,
.widget-type-rich_text ol li {
  line-height: 1.5rem;
	position: relative;
	padding-left: 1.5rem;
}

.widget-type-rich_text ul li:before {
	content: "";
	position: absolute;
	top: .45rem;
	left: 0;
	width: .75rem;
	height: .75rem;
	background: ;
	border-radius: 50%;
}

.widget-type-rich_text ol li {
	counter-increment: item;
}

.widget-type-rich_text ol li:before {
	content: counter(item);
	position: absolute;
	top: 0;
	left: 0;
	line-height: 1.5rem;
	color: ;
	font-weight: bold;
}

.widget-type-rich_text ul li + li,
.widget-type-rich_text ol li + li {
	margin-top: .75rem;
}

.widget-type-rich_text ul ul,
.widget-type-rich_text ol ul,
.widget-type-rich_text ul ol,
.widget-type-rich_text ol ol {
  margin-top: 0;
  margin-bottom: 0;
}

blockquote {
  line-height: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 2px solid #A9A9A9;
  padding-left: 15px;
}

.atmc-cap {
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
	font-size: .75rem;
	opacity: .8;
}

/*.atmc-dropcap:first-letter {
	font-size: 3.5rem;
	margin-right: .35rem;
	float: left;
	margin-top: 0;
	line-height: 1;
	font-weight: bold;
}*/

.text-default {
	color: inherit;
}


/* Horizontal Rules */
hr {
  color: #ccc;
  background-color: #ccc;
  height: 1px;
  border: none;
}

/* TODO */
small {

}

/* TODO */
mark {

}

sup,
sub {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

:focus {
  outline: none;
}

.disable-focus-styles :focus {
  outline: none;
}


/* Quotes */
.atmc-quote-01 {
	position: relative;
}
.atmc-quote-01:before {
	content: "\f10d";
	font-family: "Font Awesome 5 Free" !important;
	font-weight: 900;
	position: absolute;
	font-size: 5rem;
	color: inherit;
	opacity: .2;
	z-index: inherit;
	top: -3rem;
	left: -3rem;
}
.atmc-quote-01 > div {
	position: relative;
}


.atmc-quote-02 {
	position: relative;
}
.atmc-quote-02:before {
	content: "\f10d";
	font-family: "Font Awesome 5 Free" !important;
	font-weight: 900;
	position: absolute;
	font-size: 5rem;
	color: inherit;
	opacity: .2;
	z-index: inherit;
	top: -3rem;
	left: -3rem;
}
.atmc-quote-02:after {
	content: "\f10e";
	font-family: "Font Awesome 5 Free" !important;
	font-weight: 900;
	position: absolute;
	font-size: 5rem;
	color: inherit;
	opacity: .2;
	z-index: inherit;
	bottom: -3rem;
	right: -1rem;
}
.atmc-quote-01 > div {
	position: relative;
}

a{
  color: #FF5800;
}