Poppins/**********************************************************
TABLE OF CONTENTS
1.  Mainstyling
2.  Login Page
3.  Maingrid (Sidebar, Menu, Content)
4.  Entry form


X.  Import Google Fonts


**********************************************************/

/*****   1   -   M A I N S T Y L I N G   *****/
body {
  font-size: 14px;
	color: black;
  margin: 0;
}

a {
  font-family: Poppins !important;
  text-decoration: none;
  color: black;
}

a:hover {
  color: #ff6c00;
}

.basic-table {
  width: 80% !important;
  border: 1px solid lightgray;
}

.basic-table th {
  height: 40px;
  text-transform: uppercase;
	background-color: #951b81;
	color: white;
  border-color: #951b81;
  text-align: center;
}

.basic-table td {
  padding: 5px;
  border-bottom: 0px;
  text-align: center;
  border: 1px solid lightgray;
}


/*****   2   -   L O G I N   P A G E   *****/
.loginPage {
  display: flex;
  justify-content: center;
  height: 100vh;
  margin: -8px;
  background-color: #fff7bd;
}

.loginContainer {
  background: white;
  border-radius: 30px;
  padding: 40px;
  height: 300px;
  width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10%
}

.logoBig {
  padding-bottom: 30px;
}

.logoBig img {
  width: 200px;
}

.loginEntryRow {
  font-family: Poppins;
  padding-bottom: 10px;
}

.loginEntryButton {
  display: flex;
  justify-content: center;
}

/*****   3   -   M A I N G R I D   *****/
.grid-container {
  background-color: #eee !important;
  height: 100vh;
  display: grid;
  grid-template-columns: 75px auto;
  grid-template-rows: 80px auto;
  grid-template-areas:
    "sidebar menu"
    "sidebar main";
}

.sidebar {
  grid-area: sidebar;
/*  position: sticky;
  top: 0;
  height: 100vh;
  background-color: #ff6c00;*/
}

.menu {
  grid-area: menu;
  position: sticky;
}

.main {
  grid-area: main;
  /*margin: 20px 50px 20px 50px;*/
  font-size: 14px;
	font-family: Poppins !important;
	color: black;
  display: flex;
  justify-content: center;
  overflow-y: scroll !important;
}

.pl-3 {
  padding-left: 25px !important;
}

.pl-4 {
  padding-left: 35px !important;
}

.pt-0 {
  padding-bottom: 0 !important;
}

.px-1 {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

.px-2 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.py-2 {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.ml-2 {
  margin-left: 10px !important;
}

.mr-3 {
  margin-right: 15px !important;
}

.mr-4 {
  margin-right: 25px !important;
}

.mt-1 {
  margin-top: 5px !important;
}

.mb-1 {
  margin-bottom: 5px !important;
}

.mx-3 {
  margin-left: 15px !important;
  margin-right: 15px !important;
}

.wp-content {
  margin-top: 60px;
  margin-left: 75px;
}

/* Remove unde*/
a:hover {
  text-decoration: none;
}

[data-component='navbar'] .navbar {
  background-color: #fcea10;
}

[data-component='navbar'] .navbar-brand {
  background-color: #fcea10;
  height: 60px;
  width: 75px;
  text-align: center;
}
[data-component='navbar'] ::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}
[data-component='navbar'] .right-links i {
  color: #000;
  font-size: 20px;
  line-height: 2.8;
}
[data-component='navbar'] .lastLeft {
  border-right: 1px solid #ababab;
}
[data-component='navbar'] .dropdown-toggle::after {
  display: none;
}
[data-component='navbar'] .dropdown-item {
  color: #292b2c;
  font-size: 0.75em;
}
[data-component='navbar'] .dropdown {
  position: relative;
}
[data-component='navbar'] .dropdown span {
  color: #fff;
  position: absolute;
  width: 15px;
  height: 15px;
  top: -8px;
  right: -3px;
  background-color: red;
  border-radius: 50%;
  text-align: center;
  font-size: 0.625em;
  font-weight: 600;
}
[data-component='navbar'] .dropdown img {
  border-radius: 50%;
  height: 40px;
}
[data-component='navbar'] .list-group .lg {
  /*height: 500px;*/
  width: 270px;
  overflow: auto;
}
[data-component='navbar'] .list-group .list-group-item {
  border-radius: 0;
  letter-spacing: 0.5px;
}
[data-component='navbar'] .list-group h5 {
  font-size: 0.6875em;
  font-weight: 700;
  line-height: 2;
}
[data-component='navbar'] .list-group p {
  font-size: 0.5625em;
  font-weight: 400;
  line-height: 2;
}

[data-component='sidebar'] .sidebar {
  position: fixed;
  z-index: 9999;
}
[data-component='sidebar'] .first-menu {
  position: fixed;
  background-color: #292a2c;
  height: 100vw;
  width: 75px;
  top: 60px;
  overflow: hidden;
  transition: width .5s;
}
[data-component='sidebar'] .first-menu a {
  color: #fff;
}
[data-component='sidebar'] .first-menu i {
  font-size: 24px;
}
[data-component='sidebar'] .first-menu span {
  font-size: 14px;
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
  opacity: 0;
  visibility: hidden;
  font-weight: 600;
}
[data-component='sidebar'] .first-menu:hover span {
  opacity: 1;
  visibility: visible;
}
[data-component='sidebar'] .first-menu .list-group-item {
  border-radius: 0;
}
[data-component='sidebar'] .first-menu .list-group-item:hover {
  background-color: #ff7c00;
}
[data-component='sidebar'] .first-menu:hover {
  width: 220px; /*160*/
}
[data-component='sidebar'] .list-group-item {
  font-size: 14px;
}
[data-component='sidebar'] .submenu {
  position: fixed;
  left: 220px; /*160*/
  width: 195px;
  top: 60px;
  background-color: #ff7c00;
  height: 100vw;
  opacity: 0;
  visibility: hidden;
  transition: 600ms opacity 600ms, 600ms visibility 600ms;
}
[data-component='sidebar'] .submenu .list-group-item {
  margin-top: 8px;
}
[data-component='sidebar'] .first-menu li:hover .submenu {
  visibility: visible;
  opacity: 1;
}

[data-component='sidebar'] .list-group-item {
  background-color: transparent;
  border: none;
  border-radius: 0;
}
[data-component='sidebar'] .arrow {
  position: fixed;
  left: 329px;
  width: 0;
  height: 0;
  border-top: 27px solid transparent;
  border-bottom: 27px solid transparent;
  border-right: 27px solid white;
}
[data-component='sidebar'] .arrow:nth-child(3) {
  top: 20px;
}

/*****   4   -   E N T R Y   F O R M   *****/
.tileContainer {
  width: 50% !important;
  background-color: white;
  border-radius: 30px;
  padding: 30px;
  display: flex;
  flex-flow: column;
  align-items: center;
  height: min-content;
}

.tileContainerFull {
  width: 95% !important;
  background-color: white;
  border-radius: 30px;
  padding: 30px;
  display: flex;
  flex-flow: column;
  align-items: center;
  height: min-content;
}

.tileTitle {
  font-size: 20px;
  padding-bottom: 10px;
  font-weight: 700;
}

.input-styled {
  height:35px;
  border: 1px solid lightgray;
  width:100%;
  border-radius: 10px;
  padding: 0px 10px;
}

.textarea-styled {
  height:75px;
}

.buttonContainer {
  display: flex;
  justify-content: center;
  padding-top: 20px;
}

.cancelFormButton {
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid #951b81;
  margin-right: 20px;
  color: #951b81
}

.cancelFormButton:hover {
  background: #951b81;
  color: white;
}

.submitFormButton {
  font-family: Poppins;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid #951b81;
  background:#951b81;
  color: white;
}

.submitFormButton:hover {
  background: white;
  color: #951b81;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/*****   5   -   B U S I N E S S   C A R D S   *****/
.our-team {
  padding: 30px 0 40px;
  margin-bottom: 30px;
  background-color: #f7f5ec;
  text-align: center;
  overflow: hidden;
  position: relative;
  min-width: 280px;
  min-height:350px;
}

.our-team .picture {
  display: inline-block;
  height: 130px;
  width: 130px;
  margin-bottom: 50px;
  z-index: 1;
  position: relative;
}

.our-team .picture::before {
  content: "";
  width: 100%;
  height: 0;
  border-radius: 50%;
  background-color: #951b81;
  position: absolute;
  bottom: 135%;
  right: 0;
  left: 0;
  opacity: 0.9;
  transform: scale(3);
  transition: all 0.3s linear 0s;
}

.our-team:hover .picture::before {
  height: 100%;
}

.our-team .picture::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #951b81;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.our-team .picture img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: scale(1);
  transition: all 0.9s ease 0s;
}

.our-team:hover .picture img {
  box-shadow: 0 0 0 14px #f7f5ec;
  transform: scale(0.7);
}

.our-team .title {
  display: block;
  font-size: 15px;
  color: #4e5052;
  text-transform: capitalize;
}

.our-team .social {
  width: 100%;
  padding: 0;
  margin: 0;
  background-color: #951b81;
  position: absolute;
  bottom: -100px;
  left: 0;
  transition: all 0.5s ease 0s;
}

.our-team:hover .social {
  bottom: 0;
}

.our-team .social li {
  display: inline-block;
}

.our-team .social li a {
  display: block;
  padding: 10px;
  font-size: 17px;
  color: white;
  transition: all 0.3s ease 0s;
  text-decoration: none;
}

.our-team .social li a:hover {
  color: #951b81;
  background-color: #f7f5ec;
}

/*****   X   -   G O O G L E    F O N T S   *****/
/* poppins-100 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 100;
  src: url('/fonts/poppins-v9-latin-100.eot'); /* IE9 Compat Modes */
  src: local('Poppins Thin'), local('Poppins-Thin'),
       url('/fonts/poppins-v9-latin-100.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/poppins-v9-latin-100.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/poppins-v9-latin-100.woff') format('woff'), /* Modern Browsers */
       url('/fonts/poppins-v9-latin-100.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/poppins-v9-latin-100.svg#Poppins') format('svg'); /* Legacy iOS */
}

/* poppins-200 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 200;
  src: url('/fonts/poppins-v9-latin-200.eot'); /* IE9 Compat Modes */
  src: local('Poppins ExtraLight'), local('Poppins-ExtraLight'),
       url('/fonts/poppins-v9-latin-200.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/poppins-v9-latin-200.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/poppins-v9-latin-200.woff') format('woff'), /* Modern Browsers */
       url('/fonts/poppins-v9-latin-200.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/poppins-v9-latin-200.svg#Poppins') format('svg'); /* Legacy iOS */
}

/* poppins-100italic - latin */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 100;
  src: url('/fonts/poppins-v9-latin-100italic.eot'); /* IE9 Compat Modes */
  src: local('Poppins Thin Italic'), local('Poppins-ThinItalic'),
       url('/fonts/poppins-v9-latin-100italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/poppins-v9-latin-100italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/poppins-v9-latin-100italic.woff') format('woff'), /* Modern Browsers */
       url('/fonts/poppins-v9-latin-100italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/poppins-v9-latin-100italic.svg#Poppins') format('svg'); /* Legacy iOS */
}

/* poppins-300 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  src: url('/fonts/poppins-v9-latin-300.eot'); /* IE9 Compat Modes */
  src: local('Poppins Light'), local('Poppins-Light'),
       url('/fonts/poppins-v9-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/poppins-v9-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/poppins-v9-latin-300.woff') format('woff'), /* Modern Browsers */
       url('/fonts/poppins-v9-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/poppins-v9-latin-300.svg#Poppins') format('svg'); /* Legacy iOS */
}

/* poppins-300italic - latin */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 300;
  src: url('/fonts/poppins-v9-latin-300italic.eot'); /* IE9 Compat Modes */
  src: local('Poppins Light Italic'), local('Poppins-LightItalic'),
       url('/fonts/poppins-v9-latin-300italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/poppins-v9-latin-300italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/poppins-v9-latin-300italic.woff') format('woff'), /* Modern Browsers */
       url('/fonts/poppins-v9-latin-300italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/poppins-v9-latin-300italic.svg#Poppins') format('svg'); /* Legacy iOS */
}

/* poppins-200italic - latin */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 200;
  src: url('/fonts/poppins-v9-latin-200italic.eot'); /* IE9 Compat Modes */
  src: local('Poppins ExtraLight Italic'), local('Poppins-ExtraLightItalic'),
       url('/fonts/poppins-v9-latin-200italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/poppins-v9-latin-200italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/poppins-v9-latin-200italic.woff') format('woff'), /* Modern Browsers */
       url('/fonts/poppins-v9-latin-200italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/poppins-v9-latin-200italic.svg#Poppins') format('svg'); /* Legacy iOS */
}

/* poppins-regular - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/poppins-v9-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('Poppins Regular'), local('Poppins-Regular'),
       url('/fonts/poppins-v9-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/poppins-v9-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/poppins-v9-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('/fonts/poppins-v9-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/poppins-v9-latin-regular.svg#Poppins') format('svg'); /* Legacy iOS */
}

/* poppins-italic - latin */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 400;
  src: url('/fonts/poppins-v9-latin-italic.eot'); /* IE9 Compat Modes */
  src: local('Poppins Italic'), local('Poppins-Italic'),
       url('/fonts/poppins-v9-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/poppins-v9-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/poppins-v9-latin-italic.woff') format('woff'), /* Modern Browsers */
       url('/fonts/poppins-v9-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/poppins-v9-latin-italic.svg#Poppins') format('svg'); /* Legacy iOS */
}

/* poppins-500 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url('/fonts/poppins-v9-latin-500.eot'); /* IE9 Compat Modes */
  src: local('Poppins Medium'), local('Poppins-Medium'),
       url('/fonts/poppins-v9-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/poppins-v9-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/poppins-v9-latin-500.woff') format('woff'), /* Modern Browsers */
       url('/fonts/poppins-v9-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/poppins-v9-latin-500.svg#Poppins') format('svg'); /* Legacy iOS */
}

/* poppins-500italic - latin */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 500;
  src: url('/fonts/poppins-v9-latin-500italic.eot'); /* IE9 Compat Modes */
  src: local('Poppins Medium Italic'), local('Poppins-MediumItalic'),
       url('/fonts/poppins-v9-latin-500italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/poppins-v9-latin-500italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/poppins-v9-latin-500italic.woff') format('woff'), /* Modern Browsers */
       url('/fonts/poppins-v9-latin-500italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/poppins-v9-latin-500italic.svg#Poppins') format('svg'); /* Legacy iOS */
}

/* poppins-600italic - latin */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 600;
  src: url('/fonts/poppins-v9-latin-600italic.eot'); /* IE9 Compat Modes */
  src: local('Poppins SemiBold Italic'), local('Poppins-SemiBoldItalic'),
       url('/fonts/poppins-v9-latin-600italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/poppins-v9-latin-600italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/poppins-v9-latin-600italic.woff') format('woff'), /* Modern Browsers */
       url('/fonts/poppins-v9-latin-600italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/poppins-v9-latin-600italic.svg#Poppins') format('svg'); /* Legacy iOS */
}

/* poppins-600 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('/fonts/poppins-v9-latin-600.eot'); /* IE9 Compat Modes */
  src: local('Poppins SemiBold'), local('Poppins-SemiBold'),
       url('/fonts/poppins-v9-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/poppins-v9-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/poppins-v9-latin-600.woff') format('woff'), /* Modern Browsers */
       url('/fonts/poppins-v9-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/poppins-v9-latin-600.svg#Poppins') format('svg'); /* Legacy iOS */
}

/* poppins-700 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/poppins-v9-latin-700.eot'); /* IE9 Compat Modes */
  src: local('Poppins Bold'), local('Poppins-Bold'),
       url('/fonts/poppins-v9-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/poppins-v9-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/poppins-v9-latin-700.woff') format('woff'), /* Modern Browsers */
       url('/fonts/poppins-v9-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/poppins-v9-latin-700.svg#Poppins') format('svg'); /* Legacy iOS */
}

/* poppins-700italic - latin */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 700;
  src: url('/fonts/poppins-v9-latin-700italic.eot'); /* IE9 Compat Modes */
  src: local('Poppins Bold Italic'), local('Poppins-BoldItalic'),
       url('/fonts/poppins-v9-latin-700italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/poppins-v9-latin-700italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/poppins-v9-latin-700italic.woff') format('woff'), /* Modern Browsers */
       url('/fonts/poppins-v9-latin-700italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/poppins-v9-latin-700italic.svg#Poppins') format('svg'); /* Legacy iOS */
}

/* poppins-800 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  src: url('/fonts/poppins-v9-latin-800.eot'); /* IE9 Compat Modes */
  src: local('Poppins ExtraBold'), local('Poppins-ExtraBold'),
       url('/fonts/poppins-v9-latin-800.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/poppins-v9-latin-800.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/poppins-v9-latin-800.woff') format('woff'), /* Modern Browsers */
       url('/fonts/poppins-v9-latin-800.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/poppins-v9-latin-800.svg#Poppins') format('svg'); /* Legacy iOS */
}

/* poppins-800italic - latin */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 800;
  src: url('/fonts/poppins-v9-latin-800italic.eot'); /* IE9 Compat Modes */
  src: local('Poppins ExtraBold Italic'), local('Poppins-ExtraBoldItalic'),
       url('/fonts/poppins-v9-latin-800italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/poppins-v9-latin-800italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/poppins-v9-latin-800italic.woff') format('woff'), /* Modern Browsers */
       url('/fonts/poppins-v9-latin-800italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/poppins-v9-latin-800italic.svg#Poppins') format('svg'); /* Legacy iOS */
}

/* poppins-900italic - latin */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 900;
  src: url('/fonts/poppins-v9-latin-900italic.eot'); /* IE9 Compat Modes */
  src: local('Poppins Black Italic'), local('Poppins-BlackItalic'),
       url('/fonts/poppins-v9-latin-900italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/poppins-v9-latin-900italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/poppins-v9-latin-900italic.woff') format('woff'), /* Modern Browsers */
       url('/fonts/poppins-v9-latin-900italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/poppins-v9-latin-900italic.svg#Poppins') format('svg'); /* Legacy iOS */
}

/* poppins-900 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 900;
  src: url('/fonts/poppins-v9-latin-900.eot'); /* IE9 Compat Modes */
  src: local('Poppins Black'), local('Poppins-Black'),
       url('/fonts/poppins-v9-latin-900.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/poppins-v9-latin-900.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/poppins-v9-latin-900.woff') format('woff'), /* Modern Browsers */
       url('/fonts/poppins-v9-latin-900.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/poppins-v9-latin-900.svg#Poppins') format('svg'); /* Legacy iOS */
}

/* raleway-100 - latin */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 100;
  src: url('/fonts/raleway-v16-latin-100.eot'); /* IE9 Compat Modes */
  src: local('Raleway Thin'), local('Raleway-Thin'),
       url('/fonts/raleway-v16-latin-100.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/raleway-v16-latin-100.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/raleway-v16-latin-100.woff') format('woff'), /* Modern Browsers */
       url('/fonts/raleway-v16-latin-100.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/raleway-v16-latin-100.svg#Raleway') format('svg'); /* Legacy iOS */
}

/* raleway-100italic - latin */
@font-face {
  font-family: 'Raleway';
  font-style: italic;
  font-weight: 100;
  src: url('/fonts/raleway-v16-latin-100italic.eot'); /* IE9 Compat Modes */
  src: local('Raleway Thin Italic'), local('Raleway-ThinItalic'),
       url('/fonts/raleway-v16-latin-100italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/raleway-v16-latin-100italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/raleway-v16-latin-100italic.woff') format('woff'), /* Modern Browsers */
       url('/fonts/raleway-v16-latin-100italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/raleway-v16-latin-100italic.svg#Raleway') format('svg'); /* Legacy iOS */
}

/* raleway-200 - latin */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 200;
  src: url('/fonts/raleway-v16-latin-200.eot'); /* IE9 Compat Modes */
  src: local('Raleway ExtraLight'), local('Raleway-ExtraLight'),
       url('/fonts/raleway-v16-latin-200.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/raleway-v16-latin-200.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/raleway-v16-latin-200.woff') format('woff'), /* Modern Browsers */
       url('/fonts/raleway-v16-latin-200.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/raleway-v16-latin-200.svg#Raleway') format('svg'); /* Legacy iOS */
}

/* raleway-200italic - latin */
@font-face {
  font-family: 'Raleway';
  font-style: italic;
  font-weight: 200;
  src: url('/fonts/raleway-v16-latin-200italic.eot'); /* IE9 Compat Modes */
  src: local('Raleway ExtraLight Italic'), local('Raleway-ExtraLightItalic'),
       url('/fonts/raleway-v16-latin-200italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/raleway-v16-latin-200italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/raleway-v16-latin-200italic.woff') format('woff'), /* Modern Browsers */
       url('/fonts/raleway-v16-latin-200italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/raleway-v16-latin-200italic.svg#Raleway') format('svg'); /* Legacy iOS */
}

/* raleway-300 - latin */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 300;
  src: url('/fonts/raleway-v16-latin-300.eot'); /* IE9 Compat Modes */
  src: local('Raleway Light'), local('Raleway-Light'),
       url('/fonts/raleway-v16-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/raleway-v16-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/raleway-v16-latin-300.woff') format('woff'), /* Modern Browsers */
       url('/fonts/raleway-v16-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/raleway-v16-latin-300.svg#Raleway') format('svg'); /* Legacy iOS */
}

/* raleway-300italic - latin */
@font-face {
  font-family: 'Raleway';
  font-style: italic;
  font-weight: 300;
  src: url('/fonts/raleway-v16-latin-300italic.eot'); /* IE9 Compat Modes */
  src: local('Raleway Light Italic'), local('Raleway-LightItalic'),
       url('/fonts/raleway-v16-latin-300italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/raleway-v16-latin-300italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/raleway-v16-latin-300italic.woff') format('woff'), /* Modern Browsers */
       url('/fonts/raleway-v16-latin-300italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/raleway-v16-latin-300italic.svg#Raleway') format('svg'); /* Legacy iOS */
}

/* raleway-regular - latin */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/raleway-v16-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('Raleway'), local('Raleway-Regular'),
       url('/fonts/raleway-v16-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/raleway-v16-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/raleway-v16-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('/fonts/raleway-v16-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/raleway-v16-latin-regular.svg#Raleway') format('svg'); /* Legacy iOS */
}

/* raleway-italic - latin */
@font-face {
  font-family: 'Raleway';
  font-style: italic;
  font-weight: 400;
  src: url('/fonts/raleway-v16-latin-italic.eot'); /* IE9 Compat Modes */
  src: local('Raleway Italic'), local('Raleway-Italic'),
       url('/fonts/raleway-v16-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/raleway-v16-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/raleway-v16-latin-italic.woff') format('woff'), /* Modern Browsers */
       url('/fonts/raleway-v16-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/raleway-v16-latin-italic.svg#Raleway') format('svg'); /* Legacy iOS */
}

/* raleway-500italic - latin */
@font-face {
  font-family: 'Raleway';
  font-style: italic;
  font-weight: 500;
  src: url('/fonts/raleway-v16-latin-500italic.eot'); /* IE9 Compat Modes */
  src: local('Raleway Medium Italic'), local('Raleway-MediumItalic'),
       url('/fonts/raleway-v16-latin-500italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/raleway-v16-latin-500italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/raleway-v16-latin-500italic.woff') format('woff'), /* Modern Browsers */
       url('/fonts/raleway-v16-latin-500italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/raleway-v16-latin-500italic.svg#Raleway') format('svg'); /* Legacy iOS */
}

/* raleway-500 - latin */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 500;
  src: url('/fonts/raleway-v16-latin-500.eot'); /* IE9 Compat Modes */
  src: local('Raleway Medium'), local('Raleway-Medium'),
       url('/fonts/raleway-v16-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/raleway-v16-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/raleway-v16-latin-500.woff') format('woff'), /* Modern Browsers */
       url('/fonts/raleway-v16-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/raleway-v16-latin-500.svg#Raleway') format('svg'); /* Legacy iOS */
}

/* raleway-600 - latin */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  src: url('/fonts/raleway-v16-latin-600.eot'); /* IE9 Compat Modes */
  src: local('Raleway SemiBold'), local('Raleway-SemiBold'),
       url('/fonts/raleway-v16-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/raleway-v16-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/raleway-v16-latin-600.woff') format('woff'), /* Modern Browsers */
       url('/fonts/raleway-v16-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/raleway-v16-latin-600.svg#Raleway') format('svg'); /* Legacy iOS */
}

/* raleway-600italic - latin */
@font-face {
  font-family: 'Raleway';
  font-style: italic;
  font-weight: 600;
  src: url('/fonts/raleway-v16-latin-600italic.eot'); /* IE9 Compat Modes */
  src: local('Raleway SemiBold Italic'), local('Raleway-SemiBoldItalic'),
       url('/fonts/raleway-v16-latin-600italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/raleway-v16-latin-600italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/raleway-v16-latin-600italic.woff') format('woff'), /* Modern Browsers */
       url('/fonts/raleway-v16-latin-600italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/raleway-v16-latin-600italic.svg#Raleway') format('svg'); /* Legacy iOS */
}

/* raleway-700 - latin */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/raleway-v16-latin-700.eot'); /* IE9 Compat Modes */
  src: local('Raleway Bold'), local('Raleway-Bold'),
       url('/fonts/raleway-v16-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/raleway-v16-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/raleway-v16-latin-700.woff') format('woff'), /* Modern Browsers */
       url('/fonts/raleway-v16-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/raleway-v16-latin-700.svg#Raleway') format('svg'); /* Legacy iOS */
}

/* raleway-700italic - latin */
@font-face {
  font-family: 'Raleway';
  font-style: italic;
  font-weight: 700;
  src: url('/fonts/raleway-v16-latin-700italic.eot'); /* IE9 Compat Modes */
  src: local('Raleway Bold Italic'), local('Raleway-BoldItalic'),
       url('/fonts/raleway-v16-latin-700italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/raleway-v16-latin-700italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/raleway-v16-latin-700italic.woff') format('woff'), /* Modern Browsers */
       url('/fonts/raleway-v16-latin-700italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/raleway-v16-latin-700italic.svg#Raleway') format('svg'); /* Legacy iOS */
}

/* raleway-800 - latin */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 800;
  src: url('/fonts/raleway-v16-latin-800.eot'); /* IE9 Compat Modes */
  src: local('Raleway ExtraBold'), local('Raleway-ExtraBold'),
       url('/fonts/raleway-v16-latin-800.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/raleway-v16-latin-800.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/raleway-v16-latin-800.woff') format('woff'), /* Modern Browsers */
       url('/fonts/raleway-v16-latin-800.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/raleway-v16-latin-800.svg#Raleway') format('svg'); /* Legacy iOS */
}

/* raleway-900 - latin */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 900;
  src: url('/fonts/raleway-v16-latin-900.eot'); /* IE9 Compat Modes */
  src: local('Raleway Black'), local('Raleway-Black'),
       url('/fonts/raleway-v16-latin-900.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/raleway-v16-latin-900.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/raleway-v16-latin-900.woff') format('woff'), /* Modern Browsers */
       url('/fonts/raleway-v16-latin-900.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/raleway-v16-latin-900.svg#Raleway') format('svg'); /* Legacy iOS */
}

/* raleway-800italic - latin */
@font-face {
  font-family: 'Raleway';
  font-style: italic;
  font-weight: 800;
  src: url('/fonts/raleway-v16-latin-800italic.eot'); /* IE9 Compat Modes */
  src: local('Raleway ExtraBold Italic'), local('Raleway-ExtraBoldItalic'),
       url('/fonts/raleway-v16-latin-800italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/raleway-v16-latin-800italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/raleway-v16-latin-800italic.woff') format('woff'), /* Modern Browsers */
       url('/fonts/raleway-v16-latin-800italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/raleway-v16-latin-800italic.svg#Raleway') format('svg'); /* Legacy iOS */
}

/* raleway-900italic - latin */
@font-face {
  font-family: 'Raleway';
  font-style: italic;
  font-weight: 900;
  src: url('/fonts/raleway-v16-latin-900italic.eot'); /* IE9 Compat Modes */
  src: local('Raleway Black Italic'), local('Raleway-BlackItalic'),
       url('/fonts/raleway-v16-latin-900italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/raleway-v16-latin-900italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/raleway-v16-latin-900italic.woff') format('woff'), /* Modern Browsers */
       url('/fonts/raleway-v16-latin-900italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/raleway-v16-latin-900italic.svg#Raleway') format('svg'); /* Legacy iOS */
}
