@import url(fontawesome-all.min.css);
@import url(fontawesome.css);

body {
	background: #fefefe;
    font-family: 'Source Sans Pro', sans-serif;
    font-style: normal;
		font-weight: 300;
    padding-top: 70px;
    overflow-x: hidden;
}


/*---------------------------------------
    Typorgraphy              
-----------------------------------------*/

h1,h2,h3,h4,h5,h6,
.navbar-default, .btn {
  font-family: 'Source Sans Pro', cursive;
  font-weight: 400;
}


h1,h2,h3,h4,h5,h6 {
  font-weight: 400;
  letter-spacing: 1px;
}

h2 {
    color: #1c1c1c;
    font-size: 52px;
    letter-spacing: 2px;
    padding-bottom: 10px;
    margin-bottom: 0px;
}

h3 {
  color: #1c1c1c;
  font-size: 32px;
}

h4 {
  color: red;
  font-size: 22px;
  line-height: 32px;
  padding-bottom: 4px;
}

h5 {
  font-weight: bold;
}

p {
    color: #1c1c1c;
    font-size: 20px;
  	font-weight: 400;
    /*font-weight: 300;
    line-height: 30px;*/
}

hr {
  border-bottom-color: #999;
  width: 100px;
}

.section-btn {
  /*background-color: #f0f0f0;
  border: 2px solid transparent;*/
  border-radius: 100px;
  color: #f0f0f0;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 14px 36px;
  margin-top: 26px;
  transition: all 0.4s ease-in-out;
}

.section-btn:hover {
  /*background: transparent;*/
  /*border-top-color: #1c1c1c;
  border-right-color: #222;
  border-bottom-color: #1c1c1c;
  border-left-color: #222;*/
  /*color: #f0f0f0;*/
}


/*---------------------------------------
    General               
-----------------------------------------*/

html{
  -webkit-font-smoothing: antialiased;
}

a {
  color: red;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none !important;
}
a:hover, a:active, a:focus {
  /*color: #FFF;*/
  outline: none;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

::-webkit-scrollbar{
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: #1c1c1c;
}

.section-title {
  position: relative;
  padding-bottom: 62px;
  text-align: center;
}

#about,
#screenshot,
#divider,
#courses,
#contact {
  padding-top: 100px;
  padding-bottom: 100px;
}

#divider,
#courses {
  text-align: center;
}


/*---------------------------------------
    Preloader section              
-----------------------------------------*/

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background: none repeat scroll 0 0 #ffffff;
}

.sk-spinner-pulse {
  width: 60px;
  height: 60px;
  background-color: red;
  border-radius: 100%;
  -webkit-animation: sk-pulseScaleOut 1s infinite ease-in-out;
          animation: sk-pulseScaleOut 1s infinite ease-in-out; }

@-webkit-keyframes sk-pulseScaleOut {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0; } }

@keyframes sk-pulseScaleOut {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0; } }



/*---------------------------------------
    Navigation section              
-----------------------------------------*/

.navbar-default {
    background: #ffffff;
    border: none;
    box-shadow: none;
    margin: 0 !important;
}

.navbar-default .navbar-brand {
  /*color: #535bd4;*/
  color: red;
  font-size: 26px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 50px;
  margin: 0;
}

.navbar-default .navbar-brand span {
  /*color: #1dc9e3;*/
  color: red;
}

.navbar-default .navbar-nav li a {
    color: #656565;
    font-size: 18px;
    font-weight: 500;
    line-height: 50px;
    letter-spacing: 1px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    padding-right: 20px;
    padding-left: 20px;
}

.navbar-default .navbar-nav > li a:hover {
  /*color: #1dc9e3;*/
  color: red;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
    color: #656565;
    background-color: transparent;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  /*color: #1dc9e3;*/
  color: red;
    background-color: transparent;
}

.navbar-default .navbar-toggle {
     border: none;
     padding-top: 10px;
  }

.navbar-default .navbar-toggle .icon-bar {
    border-color: transparent;
  }

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus { 
  background-color: transparent;
}


/*---------------------------------------
    Home section              
-----------------------------------------*/

#home {
    background: #fefefe url('../images/home-bg.jpg') no-repeat;
    background-size: cover;
    background-position: center center;
    color: #1c1c1c;
    display: -webkit-box;
    display: -webkit-flex;
     display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
     align-items: center;
    height: 95vh;
    position: relative;
}

#home .overlay {
  background: #fefefe; /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, #1c1c1c , #333333); /* Chrome 10-25, Safari 5.1-6 */ 
  background: linear-gradient(to left, #1c1c1c , #333333); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  opacity: 0.3;
  position: absolute;
  width: 100%;
  height: 95vh;
  top: 0;
  left: 0;
  right: 0;
}

#home img {
  width: 100%;
  height: auto;
}

#home .home-thumb {
  padding-top: 32px;
  padding-left: 32px;
}

#home p,
#contact p {
  color: #1c1c1c;
  letter-spacing: 1px;
}

#home .section-btn {
  background: red;/*#1dc9e3*/
}

#home .section-btn:hover {
  /*background: transparent !important;*/
}


/*---------------------------------------
   Divider section              
-----------------------------------------*/

#divider {
  background-color: #E0DD20;
}

#divider p {
  color: #666;
  font-size: 26px;
  line-height: 42px;
}


/*---------------------------------------
   About section              
-----------------------------------------*/

#about img {
  width: 100%;
}

#about .about-thumb {
  margin-bottom: 32px;
  position: relative;
  text-align: center;
}

#about .about-overlay h4 {
  padding-bottom: 0px;
}

#about .about-overlay {
  background-color: rgba(250,250,250,0.9);
  border-radius: 2px;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 100px;
  overflow: hidden;
  transition: height 450ms;
}

#about .about-thumb:hover .about-overlay {
  height: 100%;
  background-color: #ffffff;
  color: #222;
  padding-top: 30%;
  opacity: 0.9;
}

#about .about-thumb:hover h5 {
 /* color: #1dc9e3;*/
}

#about .section-btn {
  background: red;/*#1dc9e3*/
}
#about .section-btn:hover {
	color:#FFFFFF;
  /*background: transparent !important;*/
}
#about .section-btn:visited {
	color:#FFFFFF;
  /*background: transparent !important;*/
}


/*---------------------------------------
    Screenshot section              
-----------------------------------------*/

#screenshot .col-md-3 {
  display: block;
  width: 100%;
  padding-bottom: 1rem;
}

#screenshot img {
  background-color: #ffffff;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  cursor: pointer;
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
  top: 0px;
  transition: all 0.4s ease-in-out;
}

#screenshot img:hover {
  box-shadow: 0px 16px 22px 0px rgba(0, 0, 0, 0.3);
  top: -6px;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  /* ideally, transition speed should match zoom duration */
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}


/*---------------------------------------
   courses section         
-----------------------------------------*/

#courses {
  background: #ffffff;
}

#courses .courses-plan {
  background-color: #E2E0E0;
  border-radius: 16px;
  margin-bottom: 32px;
}

#courses .courses-plan .courses-month {
  padding: 14px 10px 6px 10px;
}

#courses .courses-plan .courses-month h3 {
  font-size: 52px;
  color: #1c1c1c;/*1dc9e3*/
}

#courses .courses-plan .courses-month p {
  /*font-size: 52px;*/
  color: #1c1c1c;/*1dc9e3*/
}

#courses .courses-plan .section-btn {
  background: #1dc9e3;
  position: relative;
  top: 20px;
}

#courses .courses-plan .section-btn:hover {
  background-color: #ffffff;
  color: #222;
}

#courses .section-btn {
  background: red;/*#1dc9e3*/
}
#courses .section-btn:hover {
	color:#FFFFFF;
  /*background: transparent !important;*/
}
#courses .section-btn:visited {
	color:#FFFFFF;
  /*background: transparent !important;*/
}

/*---------------------------------------
    contact section              
-----------------------------------------*/

#contact {
    /*background: #535bd4 url('../images/contact-bg.jpg') no-repeat;*/
	background-color:#F0F0F0;
    background-size: cover;
    background-position: center center;
    color: #1c1c1c;
    position: relative;
}

#contact .overlay {
  /*background: #1dc9e3;*/
  opacity: 0.9;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
}

#contact .form-control {
  background-color: transparent;
  border: none;
  border-bottom: 3px solid #eee;
  border-radius: 0px;
  box-shadow: none;
  color: #1c1c1c;
  font-size: 20px;
  font-weight: 400;
  height: 50px;
  transition: all 0.4s ease-in-out;
  margin-bottom: 20px;
}

#contact .form-control:focus {
  border-color: #1c1c1c;
}

#contact input[type="submit"] {
  background-color: #ffffff;
  border-radius: 100px;
  border: 3px solid #1c1c1c;
  color: #1c1c1c;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  height: 55px;
}

#contact input[type="submit"]:hover {
  background-color: transparent;
  color: #1c1c1c;
}

#contact .form-control::-moz-placeholder {
  color: #1c1c1c;
  opacity: 1;
}

#contact .form-control:-ms-input-placeholder {
  color: #1c1c1c;
}

#contact .form-control::-webkit-input-placeholder {
  color: #1c1c1c;
}


#contact .a {
	color: red;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none !important;
}
#contact .a:hover, a:active, a:focus {
  /*color: #3FF;*/
  outline: none;
}

.disabled {
	pointer-events: none;
	opacity: 0.25;
}

/*---------------------------------------
   Footer section              
-----------------------------------------*/

footer {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color:#1c1c1c;
  /*background-color:#adadad;
	border-top:2px solid red;*/
  color:#f0f0f0;
}

footer span {
  padding-right: 10px;
  padding-left: 10px;
}

footer p {
  padding-top: 16px;
}


/*---------------------------------------
   Modal Contact           
-----------------------------------------*/

.modal-dialog .modal-content {
  background-color: #fefefe;
  border: none;
  border-radius: 2px;
  text-align: justify;
  padding: 70px 20px 60px 20px;
  position: relative;
  overflow: hidden;
  font-size:16px;
}

.btn:focus {
  outline: none;
}

.modal-header {
  border-bottom: 0px;
}

.modal-dialog .close {
  color: #1c1c1c;
  /*font-size: 45px;
  font-weight: 300;*/
  text-shadow: none;
  opacity: 1;
  position: absolute;
  top: 40px;
  right: 40px;
  border-radius: 100px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: justify;
}

.modal-dialog .close:focus {
  outline: none;
}

.modal-dialog .modal-title {
  color: #1c1c1c;
  font-size:36px;
}

.modal-dialog form {
  padding: 20px;
}

.modal-dialog form input {
  height: 50px;
}

.modal-dialog .form-control {
  background: transparent;
  border: 1px solid #f0f0f0;
  border-radius: 0px;
  box-shadow: none;
  color: #1c1c1c;
  font-size: 20px;
  margin-bottom: 20px;
  transition: all 0.4s ease-in-out;
}

.modal-dialog .form-control:focus {
  border-top-color: transparent;
  border-right-color: transparent;
  border-left-color: transparent;
  border-bottom-color: #1c1c1c;
}

.modal-dialog form input[type="submit"] {
  background: red;
  border: 3px solid transparent;
  border-radius: 100px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #FFF;
  text-transform: uppercase;
  margin-top: 30px;
}

.modal-dialog form input[type="submit"]:hover {
  /*background: red;*/
  /*border-color: #1dc9e3;*/
  color: #fff;
}

.modal-dialog .form-control::-moz-placeholder {
  color: #1c1c1c;
  opacity: 1;
}
.modal-dialog .form-control:-ms-input-placeholder {
  color: #1c1c1c;
}
.modal-dialog .form-control::-webkit-input-placeholder {
  color: #1c1c1c;
}

.modal.fade .modal-dialog{
  -webkit-perspective: 1300px;
     -moz-perspective: 1300px;
          perspective: 1300px;
}

.modal.fade .modal-content{
  -webkit-transform-style: preserve-3d;
     -moz-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transform: translateZ(-3000px) rotateY(90deg);
     -moz-transform: translateZ(-3000px) rotateY(90deg);
      -ms-transform: translateZ(-3000px) rotateY(90deg);
          transform: translateZ(-3000px) rotateY(90deg);
  opacity: 0;
}

.modal.fade.in .modal-content{
    -webkit-animation: slit .7s forwards ease-out;
    -moz-animation: slit .7s forwards ease-out;
    animation: slit .7s forwards ease-out;
}

@-webkit-keyframes slit {
  50% { -webkit-transform: translateZ(-250px) rotateY(60deg); opacity: .5; -webkit-animation-timing-function: ease-out;}
  100% { -webkit-transform: translateZ(0) rotateY(0deg); opacity: 1; }
}

@-moz-keyframes slit {
  50% { -moz-transform: translateZ(-250px) rotateY(60deg); opacity: .5; -moz-animation-timing-function: ease-out;}
  100% { -moz-transform: translateZ(0) rotateY(0deg); opacity: 1; }
}

@keyframes slit {
  50% { transform: translateZ(-250px) rotateY(60deg); opacity: 1; animation-timing-function: ease-in;}
  100% { transform: translateZ(0) rotateY(0deg); opacity: 1; }
}


/*---------------------------------------
   Social icon             
-----------------------------------------*/

.social-icon {
    position: relative;
    padding: 0;
    margin: 0;
    text-align: center;
}

.social-icon li {
    display: inline-block;
    list-style: none;
}

.social-icon li a {
    border-radius: 100px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    vertical-align: middle;
    position: relative;
    top: 0px;
    margin: 10px 4px 0px 4px;
}

.social-icon li a:hover {
    /*background: #1dc9e3;*/
	background: red;
    color: #fff;
    top: -5px;
}


/*---------------------------------------
   legal             
-----------------------------------------*/

.legal {
    position: relative;
    padding: 0;
    margin: 0;
    text-align: center;
    display: inline-block;
    list-style: none;
    height: 50px;
    line-height: 50px;
    text-align: center;
    vertical-align: middle;
    position: relative;
    top: 0px;
    margin: 10px 0px 0px 0px;
	font-size:16px;
}

.legal a {
    color: #fff;
    cursor: pointer;
    text-decoration: none;
}

.legal a:hover {
}


/*---------------------------------------
   Back top         
-----------------------------------------*/

.go-top {
  background-color: #1c1c1c;
  box-shadow: 1px 1.732px 12px 0px rgba( 0, 0, 0, .14 ), 1px 1.732px 3px 0px rgba( 0, 0, 0, .12 );
  border-radius: 100px;
  transition : all 1s ease;
  bottom: 1em;
  right: 1em;
  color: #333;
  font-size: 22px;
  display: none;
  position: fixed;
  text-decoration: none;
  width: 35px;
  height: 35px;
  line-height: 30px;
  text-align: center;
  z-index:9999;
}

.go-top:hover {
    background: red;
    color: #f0f0f0;
}


/*---------------------------------------
   Mobile Responsive         
-----------------------------------------*/
@media (max-width: 1200px) {
  .container {
	width: 100%;
  }
}

@media (max-width: 980px) {

  h2 {
    font-size: 38px;
  }
  
  .section-btn {
    padding: 10px 34px 12px;
  }

  #home, #home .overlay {
    height: 60vh;
  }

  #home .home-thumb {
    padding-top: 0px;
  }

  #about {
    text-align: center;
  }

  #about .about-thumb {
    margin-top: 62px;
  }

}

@media (max-width: 768px) {

  h2 {
    font-size: 28px;
  }

  .section-title {
    padding-bottom: 32px;
  }

  #about, #divider,
  #screenshot,
  #courses, #contact {
    padding-top: 60px;
    padding-bottom: 60px;
  }

}

@media (max-width: 767px) {

   body {
    padding-top: 0px;
    text-align: center;
  }

  .navbar-default {
    text-align: center;
    padding-top: 0px;
  }

  .navbar-default .navbar-brand {
    line-height: 20px;
  }

  .navbar-default .navbar-nav li a {
    line-height: 25px;
  }

  #home, #home .overlay {
    height: 100vh;
  }

  #home img {
    position: relative;
    display: inline-block;
  }

  #home .home-thumb {
    padding-top: 32px;
    padding-left: 0px;
  }

  #courses .courses-plan {
    margin-bottom: 62px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 18px;
  }

  p {
    font-size: 18px;
  }

}

@media (max-width: 650px) {

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 18px;
  }

  p {
    font-size: 18px;
  }

}

#g-recaptcha-response {
  display: block !important;
  position: absolute;
  margin: -78px 0 0 0 !important;
  width: 302px !important;
  height: 76px !important;
  z-index: -999999;
  opacity: 0;
}


	input[type="checkbox"],
	input[type="radio"] {
		-moz-appearance: none;
		-webkit-appearance: none;
		-ms-appearance: none;
		appearance: none;
		display: block;
		float: left;
		margin-right: -2rem;
		opacity: 0;
		width: 1rem;
		z-index: -1;
	}

		input[type="checkbox"] + label,
		input[type="radio"] + label {
			text-decoration: none;
			cursor: pointer;
			display: inline-block;
			/*font-size: 1rem;*/
			letter-spacing: 0;
			text-transform: none;
			/*font-weight: 300;*/
			padding-left: 3.8rem;
			padding-right: 1rem;
			position: relative;
			color:#000000;
		}

			input[type="checkbox"] + label:before,
			input[type="radio"] + label:before {
				-moz-osx-font-smoothing: grayscale;
				-webkit-font-smoothing: antialiased;
				display: inline-block;
				font-style: normal;
				font-variant: normal;
				text-rendering: auto;
				line-height: 1;
				text-transform: none !important;
				font-family: 'Font Awesome 5 Free';
				font-weight: 900;
			}

			input[type="checkbox"] + label:before,
			input[type="radio"] + label:before {
				border-radius: 0;
				border: solid 2px;
				content: '';
				display: inline-block;
				font-size: 1.8rem;
				height: 2.8rem;
				left: 0;
				line-height: 2.65rem;
				position: absolute;
				text-align: center;
				top: -0.125rem;
				width: 2.8rem;
			}

		input[type="checkbox"]:checked + label:before,
		input[type="radio"]:checked + label:before {
			content: '\f00c';
		}

	input[type="checkbox"] + label:before {
		border-radius: 0;
	}


.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 23px;
}

.switch input {display:none;}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}
.slider2 {
  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: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
.slider2:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider2 {
  background-color: #6bbe6b;
  opacity: 0.5;
}

input:checked + .slider {
  background-color: #6bbe6b;
}

input:focus + .slider {
  /*box-shadow: 0 0 1px #D80815;*/
}

input:checked + .slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}
input:checked + .slider2:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}


/* Rounded sliders */
.slider.round {
  border-radius: 24px;
}

.slider.round:before {
  border-radius: 50%;
}

.slider2.round {
  border-radius: 24px;
}
.slider2.round:before {
  border-radius: 50%;
}







table {
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}

table caption {
  font-size: 1.5em;
  margin: .5em 0 .75em;
}

table tr {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  padding: .35em;
}

table th,
table td {
  padding: .625em;
  text-align: center;
}

table th {
  font-size: 1em;
  letter-spacing: .1em;
  /*text-transform: uppercase;*/
}

@media screen and (max-width: 600px) {
  table {
    border: 0;
  }

  table caption {
    font-size: 1.3em;
  }
  
  table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
  table tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: .625em;
  }
  
  table td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: 1em;
    text-align: right;
  }
  
  table td::before {
    /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
    content: attr(data-label);
    float: left;
    font-weight: bold;
    /*text-transform: uppercase;*/
  }
  
  table td:last-child {
    border-bottom: 0;
  }
}


		#main {
			background-color: #ffffff;
			position: relative;
			margin: 0 auto;
			max-width: 100%;
			z-index: 2;
			font-size:1.3rem;
			overflow:hidden;
		}
	
		#main > * {
			padding: 2rem 1rem 1rem 1rem;
			margin: 0;
		}
	
		#main > *:first-child {
			border-top: 0;
		}
	
		/*#main > .post > *{padding: 0 0 40px 0;}*/

		@media only screen and (max-width:768px){#main > .post {padding: 1rem 0.2rem 1rem 0.2rem;}}
		@media only screen and (min-width:767px) and (max-width:991px){#main > .post {padding: 1rem 0.2rem 1rem 0.2rem;}}
		@media only screen and (min-width:992px) and (max-width:1023px){#main > .post {padding: 1rem 0.2rem 1rem 0.2rem;}}
		@media (min-width:1024px){#main > .post {padding: 1rem 4rem 1rem 4rem;}}

