/* @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    */
/*****************************************/@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

::selection {
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
}

* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

/* body {
    font-family: "Barlow", Arial, sans-serif;
    color: #000;
    overflow-wrap: break-word;
    margin: 0;
}

p {
    font-style: normal;
    font-weight: 400;
    text-decoration: none;
    line-height: 1.5;
}

h1, h2, h3, h4, p, ol, ul, li {
    margin: 0 0 1em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Barlow";
    font-weight: 700;
    text-decoration: none;
    text-transform: none;
    color: #000;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.1rem;
}

h5 {
    font-size: 1rem;
    text-transform: uppercase;
}

h6 {
    font-size: .75rem;
    text-transform: uppercase;
}

a {
    cursor: pointer;
    text-decoration: underline;
}

section {
    margin-bottom: 5rem;
} */
  .content-wrapper {
  
  }

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

img {
    max-width: 100%;
}

/** BUTTONS **/

.main-btn {
    display: inline-block;
    margin: 1em 0;
	padding: 10px 14px;
	font-size: 1rem;
	text-transform: uppercase;
	font-weight: 400;
	transition: all .2s ease-in-out;
    border: 1px solid;
    border-color: #000;
    text-decoration: none;
    border-radius: 2px;
}

.main-btn:hover, .main-btn:focus {
  text-decoration: none;
}

.regular {
    background: #000;
	  color: #fff;
  border: none;
}

.regular:hover, .regular:focus {
    background: #fff;
    color: #000;
    border-color: #000;
}

.negative-transparent {
	background: transparent;
	color: #fff;
  border-color: #fff;
}

.negative-transparent:hover, .negative-transparent:focus {
    background: white;
    color: #000;
    border-color: #fff;
    border: 1px solid;
}

.negative {
	background: #fff;
	color: #000;
}

.negative:hover, .negative:focus {
    background: black;
    color: #fff;
    border-color: #fff;
    border: 1px solid;
}

/** LISTS **/

ul.checklist {
    margin: 2em 0 0;
    list-style-type: none;
    color: var(--main-color);
    --icon-space: 1em;
    padding-left: 0;
    row-gap: 0;
}

ul.checklist li {
    font-weight: 600;
    padding-left: var(--icon-space);
}

ul.checklist li::before {
    content: "\f00c"; /* FontAwesome Unicode */
    font-family: FontAwesome;
    display: inline-block;
    margin-left: calc( var(--icon-space) * -1 );
    width: var(--icon-space);
    margin-right: .25em;
  }

  /** EXTRA **/