
  
@font-face {
  font-family: 'Plain-Regular';
  src: url('../fonts/Plain-Regular.woff2') format('woff2'),
      url('../fonts/Plain-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Plain-Light';
  src: url('../fonts/Plain-Light.woff2') format('woff2'),
      url('../fonts/Plain-Light.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Plain-Bold';
  src: url('../fonts/Plain-Bold.woff2') format('woff2'),
      url('../fonts/Plain-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}

:root {
--primary-color:        #00647f;
--secondary-color:      #ba4618;
--white-color:          #ffffff;
--dark-color:           #494442;
--project-bg:           #f0f8ff;
--menu-bg:              #ffffff;

--title-color:          #00647f
;
--gray-color:           #909090;
--link-color:           #404040;
--p-color:              #666262;
--footer-color:         #494442;

--base-font-family:     'Plain-Regular', sans-serif;
--title-font-family:    'Plain-Bold', sans-serif;
--font-bold-family:     'Plain-Bold', sans-serif;
--font-weight-bold:     bold;

--h1-font-size:         3.2rem;
--t1-font-size:         3.5rem;
--n1-font-size:         2.5rem;
--h2-font-size:         35px;
--h3-font-size:         25px;
--h6-font-size:         14px:

--base-font-size:       16px;
--menu-font-size:       14px;

--border-radius-large:  100px;
--border-radius-small:  5px;
}

body {
background: var(--white-color);
font-family: var(--base-font-family);
}


/*---------------------------------------
 TYPOGRAPHY              
-----------------------------------------*/

h1,h2,h3,h4,h5,h6 {
font-family: var(--title-font-family);
line-height: inherit;
}

h1 {
color: var(--title-color);
font-size: var(--h1-font-size);
}

h2 {
  color: var(--title-color);
font-size: var(--h2-font-size);
font-weight: 100;
}

h3 {
font-size: var(--h3-font-size);
color: var(--title-color);
font-weight: 100;
margin-bottom: 0;
}

h4 {
font-size: var(--h3-font-size);
color: var(--dark-color);
font-family: var(--font-bold-family);

}
h6 {
  color: var(--white-color);
  font-family: var(--base-font-family);
  font-size: var(--p-font-size);
  letter-spacing: 1px;
  text-transform: uppercase;
  }

p {
color: var(--dark-color);
font-size: 14px;
line-height: 1.5em;
}

b, 
strong {
letter-spacing: 0;
color: var(--secondary-color);
}

.btn{
  background-color:var(--primary-color);
  border-color: var(--primary-color);
}
.maintitle{
  font-size: var(--t1-font-size);
  font-weight: 100;
}
 /*---------------------------------------
     FOOTER              
  -----------------------------------------*/

  .site-footer {
    background: var(--footer-color);
    padding: 7em 0 6em 0;
  }
  
  .pfooter{
    color: var(--white-color);
    font-size: var(--p-font-size);
    line-height: 1.2em;

  }

