#login-page {
	
    background-color: rgb(138, 162, 92);
	height: auto;
	font-size: larger;

}
#comment-section {
	background-color: #3ba43d;

}

.content {
	

	margin: 200px;
}





#search {
    padding-top: 60px; /* Default padding for mobile (up to 600px) */
}

/* Styles for screens 600px and wider (tablets, desktops) */
@media screen and (min-width: 600px) {
    .search {
		margin-top:75px;
		position: relative;

    }
}

/* Styles for screens 1024px and wider (desktops) */
@media screen and (min-width: 1024px) {
    .search {

		margin-top:75px;
    }
}




/* COLORS
========================================== */

$gray: #3e4146;
$blue: #689bf6;
$yellow: #ffd84c;
$orange: #f66867;
$purple: #8e6ac1;
$white: #ffffff;
$black: #000000;

/* MIXINS
========================================== */

@mixin animation($animation) {
  -webkit-animation: #{$animation};
     -moz-animation: #{$animation};
       -o-animation: #{$animation};
          animation: #{$animation};
}

@mixin animation-delay($animation-delay) {
  -webkit-transition-delay: #{$animation-delay};
     -moz-transition-delay: #{$animation-delay};
       -o-transition-delay: #{$animation-delay};
          transition-delay: #{$animation-delay};
}

@mixin keyframes($keyframes) {
  @-webkit-keyframes #{$keyframes} { @content; }
     @-moz-keyframes #{$keyframes} { @content; }
       @-o-keyframes #{$keyframes} { @content; }
          @keyframes #{$keyframes} { @content; }
}

@mixin transform($transform) {
  -webkit-transform: $transform;
     -moz-transform: $transform;
      -ms-transform: $transform;
       -o-transform: $transform;
          transform: $transform;
}

@mixin transition($transition) {
  -webkit-transition: #{$transition};
     -moz-transition: #{$transition};
       -o-transition: #{$transition};
          transition: #{$transition};
}

@mixin transition-delay($transition-delay) {
  -webkit-transition-delay: #{$transition-delay};
     -moz-transition-delay: #{$transition-delay};
       -o-transition-delay: #{$transition-delay};
          transition-delay: #{$transition-delay};
}

/* KEYFRAMES
========================================== */

@include keyframes(float) {
  0% {
		transform: translatey(0px);
    transform: translatex(0px);
	}
	50% {
		transform: translatey(-30px);
    transform: translatex(20px);
	}
	100% {
		transform: translatey(0px);
    transform: translatex(0px);
	}
}

/* RESET
========================================== */

*, *:before, *:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* BUTTON
========================================== */

.button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  
  button {
    position: absolute;
    top: 50%;
    left: 50%;
    @include transform(translate(-50%, -50%));
    
    font-family: inherit;
    background-color: $white;
    border: 0;
    padding: 15px 25px;
    color: $black;
    text-transform: uppercase;
    font-size: 21px;
    letter-spacing: 1px;
    width: 200px;
    overflow: hidden;
    outline: 0;
    @include transition(all .4s);
    visibility: visible;
    opacity: 1;
    font-weight: bold;
    box-shadow: 0px 6px 30px rgba(0,0,0,0.6);
    
    &:hover {
      cursor: pointer;
      background-color: $purple;
      color: $white;
    }
    
    span {
      
      opacity: 1;
    }
  }
  
  &.clicked {
    button {
      visibility: hidden;
      oacity: 0;
    }
  }
}

/* POP-UP
========================================== */

.pop-up {
  position: absolute;
  top: 50%;
  left: 50%;
  @include transform(translate(-50%, -50%) scale(0.9));
  overflow-y: auto; 
  box-shadow: 0px 6px 30px rgba(0,0,0,0.4);
  visibility: hidden;
  opacity: 0;
  @include transition(all .3s);
  z-index: 10;
  background-color: $white;
  width: 100%;
  height: 100%;
  
  @media (min-width: 768px) {
    width: calc(100% - 40px);
    height: auto;
    max-width: 900px;
  }
  
  .content {
    width: 100%;
    max-width: 900px;
    overflow: hidden;
    text-align: center;
    position: relative;
    min-height: 100vh;
    
    @media (min-width: 768px) {
      min-height: inherit;
    }
    
    .container {
      padding: 100px 20px 140px;
      
      @media (min-width: 568px) {
        padding: 50px 20px 80px;
      }
      
      @media (min-width: 768px) {
        padding: 70px 0px 90px;
        max-width: 520px;
        margin: 0 auto;
      }
    }
    
    .close {
      position: absolute;
      top: 20px;
      left: 20px;
      font-size: 1.1rem;
      letter-spacing: 0.05rem;
      color: $gray;
      @include transition(all .4s);
      
      &:hover {
        cursor: pointer;
        color: $orange;
      }
    }
    
    .dots {
      .dot {
        position: absolute;
        border-radius: 100%;
        z-index: 11;
        
        &:nth-of-type(1) {
          top: -80px;
          right: -80px;
          width: 160px;
          height: 160px;
          background-color: $blue;
          @include animation(float 6s ease-in-out infinite);
          
          @media (min-width: 768px) {
            top: -190px;
            right: -190px;
            width: 380px;
            height: 380px;
          }
        }
        
        &:nth-of-type(2) {
          bottom: -120px;
          left: -120px;
          width: 240px;
          height: 240px;
          background-color: $orange;
          @include animation(float 8s ease-in-out infinite);
        }
        
        &:nth-of-type(3) {
          bottom: -50px;
          right: -50px;
          width: 100px;
          height: 100px;
          background-color: $yellow;
          @include animation(float 4s ease-in-out infinite);
        }
      }
    }
    
    .title {
      h1 {
        text-align: center;
        color: $orange;
        text-transform: uppercase;
        font-weight: 900;
        font-size: 2.8rem; //1.4
        letter-spacing: 0.05rem;
      }
    }
    
    img {
      width: 100%;
      max-width: 220px;
      display: inline-block;
      margin: 30px 0 40px 0;
      opacity: 0;
      @include transform(translateX(60px));
      @include transition(.2s);
      -webkit-backface-visibility: hidden;
      
      @media (min-width: 768px) {
        max-width: 300px;
      }
    }
    
    .subscribe {
      h1 {
        font-size: 1.5rem;
        color: $gray;
        line-height: 130%;
        letter-spacing: 0.07rem;
        margin-bottom: 30px;
        
        span {
          color: $orange;
        }
      }
      
      form {
        overflow: hidden;
        
        input {
          width: 100%;
          float: left;
          padding: 15px 20px;
          text-align: center;
          font-family: inherit;
          font-size: 1.1rem;
          letter-spacing: 0.05rem;
          outline: 0;
          
          &[type=email] {
            margin-bottom: 15px;
            border: 1px solid lighten($gray, 50%);
            @include transition(all .4s);
            
            @media (min-width: 768px) {
              margin-bottom: 0px;
              width: 75%;
              border-right-width: 0px;
            }
            
            &:focus {
              border-color: $gray;
            }
          }
          
          &[type=submit] {
            background-color: $purple;
            color: $white;
            border: 1px solid $purple;
            @include transition(all .4s);
            
            @media (min-width: 768px) {
              width: 25%;
            }
            
            &:hover {
              cursor: pointer;
              background-color: darken($purple, 10%);
              border-color: darken($purple, 10%);
            }
          }
        }
      }
    }
  }
  
  &.open {
    visibility: visible;
    opacity: 1;
    @include transform(translate(-50%, -50%) scale(1));
    
    img {
      opacity: 1;
      @include transition(1s);
      @include transition-delay(.3s);
      @include transform(translateX(0px));
    }
  }
}



.support-button{
  background:#9f1c19;
  color:#efeabd;
  width:150px;
  height:40px;
  text-align:center;
  line-height:40px;
  border-radius:5px;
  font-weight: 800;
  margin: 0 auto;
  cursor: pointer;
	  transition: background 0.3s ease;
}

start-button{
  background:#9f1c19;
  color:#efeabd;
  text-align:center;
  font-weight: 800;
  cursor: pointer;
	  transition: background 0.3s ease;
}


.support-button:hover{
  background:#FFEA53;
	color:#121212;
	  transition: background 0.3s ease;
	  font-weight: 800;
}





/**
 * Tabs
 */
.tabs {
	display: flex;
	flex-wrap: wrap; // make sure it wraps
}
.tabs label {
	order: 1; // Put the labels first
	display: block;
	padding: 0.2rem 0.2rem;
	margin-right: 0.2rem;
	cursor: pointer;
  background: #90CAF9;
  font-weight: bold;
  transition: background ease 0.2s;
}
.tabs .tab {
  order: 99; // Put the tabs last
  flex-grow: 1;
	width: 100%;
	display: none;
  padding: 0.1rem;
  background: #fff;
}
.tabs input[type="radio"] {
	display: none;
}
.tabs input[type="radio"]:checked + label {
	background: #fff;
}
.tabs input[type="radio"]:checked + label + .tab {
	display: block;
}

@media (max-width: 45em) {
  .tabs .tab,
  .tabs label {
    order: initial;
  }
  .tabs label {
    width: 100%;
    margin-right: 0;
    margin-top: 0.2rem;
  }
}









.icon-block svg {
  width: 100%;
  height: 100%;
}

.team-cards-inner-container {
  display: flex;
  row-gap: 1rem;
  column-gap: 1rem;
}

.text-blk {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 10px;
  padding-top: 10px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 20px;
  line-height: 25px;
}

.responsive-cell-block {
  min-height: 75px;
  background-color: #fffbfb;
}

.responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  padding-top: 30px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: flex-start;
}

.inner-container {
  max-width: 1200px;
  min-height: 100vh;
  margin-top: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
  margin-left: 0px;
  justify-content: center;
}

.section-head {
  font-size: 30px;
  line-height: 70px;
  margin-top: 10px;
  margin-right: 0px;
  margin-bottom: 24px;
  margin-left: 0px;
}

.section-body {
  font-size: 18px;
  line-height: 18px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 24px;
  margin-left: 0px;
}

.team-cards-outer-container {
  display: flex;
  align-items: center;
}

.content-container {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  align-items: center;
  padding-top: 0px;
  padding-right: 25px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.img-box {
  max-width: 200px;
  max-height: 200px;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  margin-top: 0px;
  margin-right: 50px;
  margin-bottom: 0px;
  margin-left: 0px;
}

.card {
  background-color: rgb(255, 255, 255);
  display: flex;
  padding-top: 6px;
  padding-right: 6px;
  padding-bottom: 16px;
  padding-left: 16px;
  box-shadow: rgba(95, 95, 95, 0.1) 1px 1px 4px;
  flex-direction: row;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
}

.card-container {
  max-width: 350px;
}

.card-content-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.person-name {
  font-size: 20px;
  font-weight: 700;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 5px;
  margin-left: 0px;
}

.person-info {
  font-size: 11px;
  line-height: 15px;
}

.card-container {
  max-width: 350px;
}

.outer-container {
  justify-content: center;
  padding-top: 0px;
  padding-right: 50px;
  padding-bottom: 0px;
  padding-left: 50px;
  background-color: #FAF8CD;
}

.person-img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0px);
  }

  40% {
    transform: translateY(-30px);
  }

  60% {
    transform: translateY(-15px);
  }

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0px);
  }

  40% {
    transform: translateY(-30px);
  }

  60% {
    transform: translateY(-15px);
  }
}

@media (max-width: 1024px) {
  .team-card-container {
    justify-content: center;
  }

  .section-head {
    font-size: 50px;
    line-height: 55px;
  }

  .img-box {
    max-width: 109px;
    max-height: 109px;
  }

  .content-container {
    padding-top: 0px;
    padding-right: 20px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .inner-container {
    justify-content: space-evenly;
  }
}

@media (max-width: 768px) {
  .inner-container {
    margin-top: 60px;
    margin-right: 0px;
    margin-bottom: 60px;
    margin-left: 0px;
  }

  .section-body {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .img-box {
    margin-top: 0px;
    margin-right: 30px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .content-box {
    text-align: center;
  }

  .content-container {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
  }

  .card-container {
    max-width: 45%;
  }

  .team-cards-inner-container {
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .outer-container {
    padding-top: 0px;
    padding-right: 60px;
    padding-bottom: 0px;
    padding-left: 60px;
  }

  .section-head {
    font-size: 40px;
    line-height: 45px;
  }

  .content-box {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .section-body {
    font-size: 12px;
  }

  .img-box {
    max-width: 68px;
    max-height: 68px;
  }

  .person-name {
    font-size: 14px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 1px;
    margin-left: 0px;
  }

  .content-box {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 46px;
    margin-left: 0px;
    text-align: left;
  }

  .content-container {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .card-container {
    max-width: 100%;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800&amp;display=swap');

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
}

.wk-desk-1 {
  width: 8.333333%;
}

.wk-desk-2 {
  width: 16.666667%;
}

.wk-desk-3 {
  width: 25%;
}

.wk-desk-4 {
  width: 33.333333%;
}

.wk-desk-5 {
  width: 41.666667%;
}

.wk-desk-6 {
  width: 50%;
}

.wk-desk-7 {
  width: 58.333333%;
}

.wk-desk-8 {
  width: 66.666667%;
}

.wk-desk-9 {
  width: 75%;
}

.wk-desk-10 {
  width: 83.333333%;
}

.wk-desk-11 {
  width: 91.666667%;
}

.wk-desk-12 {
  width: 100%;
}

@media (max-width: 1024px) {
  .wk-ipadp-1 {
    width: 8.333333%;
  }

  .wk-ipadp-2 {
    width: 16.666667%;
  }

  .wk-ipadp-3 {
    width: 25%;
  }

  .wk-ipadp-4 {
    width: 33.333333%;
  }

  .wk-ipadp-5 {
    width: 41.666667%;
  }

  .wk-ipadp-6 {
    width: 50%;
  }

  .wk-ipadp-7 {
    width: 58.333333%;
  }

  .wk-ipadp-8 {
    width: 66.666667%;
  }

  .wk-ipadp-9 {
    width: 75%;
  }

  .wk-ipadp-10 {
    width: 83.333333%;
  }

  .wk-ipadp-11 {
    width: 91.666667%;
  }

  .wk-ipadp-12 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .wk-tab-1 {
    width: 8.333333%;
  }

  .wk-tab-2 {
    width: 16.666667%;
  }

  .wk-tab-3 {
    width: 25%;
  }

  .wk-tab-4 {
    width: 33.333333%;
  }

  .wk-tab-5 {
    width: 41.666667%;
  }

  .wk-tab-6 {
    width: 50%;
  }

  .wk-tab-7 {
    width: 58.333333%;
  }

  .wk-tab-8 {
    width: 66.666667%;
  }

  .wk-tab-9 {
    width: 75%;
  }

  .wk-tab-10 {
    width: 83.333333%;
  }

  .wk-tab-11 {
    width: 91.666667%;
  }

  .wk-tab-12 {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .wk-mobile-1 {
    width: 8.333333%;
  }

  .wk-mobile-2 {
    width: 16.666667%;
  }

  .wk-mobile-3 {
    width: 25%;
  }

  .wk-mobile-4 {
    width: 33.333333%;
  }

  .wk-mobile-5 {
    width: 41.666667%;
  }

  .wk-mobile-6 {
    width: 50%;
  }

  .wk-mobile-7 {
    width: 58.333333%;
  }

  .wk-mobile-8 {
    width: 66.666667%;
  }

  .wk-mobile-9 {
    width: 75%;
  }

  .wk-mobile-10 {
    width: 83.333333%;
  }

  .wk-mobile-11 {
    width: 91.666667%;
  }

  .wk-mobile-12 {
    width: 100%;
  }
}











audio:not([controls]) {
	display: none;
}
canvas {
	-ms-touch-action: double-tap-zoom;
}
 [hidden] {
display: none;
}
a {
	text-decoration: underline;
	color: #000;
}
a:hover {
	text-decoration: none;
}
small {
	font-size: 75%;
}
big {
	font-size: 125%;
}
em {
	font-style: italic;
}
strong {
	font-weight: bold;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
sup, sub {
	font-size: 75%;
	line-height: 0;
}
sup {
	vertical-align: super;
}
sub {
	vertical-align: sub;
}
pre {
	display: block;
	overflow: auto;
}
code {
	font-family: 'Courier New', Courier, monospace;
}
ul, ol {
	list-style: none;
}
table {
	table-layout: auto;
	border-collapse: separate;
	border-spacing: 0;
	empty-cells: hide;
}
img {
	vertical-align: middle;
	-ms-interpolation-mode: bicubic;
}
svg:not(:root) {
	overflow: hidden;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
input, textarea {
	-webkit-appearance: none;
}
button, input, select, textarea {
	vertical-align: baseline;
*vertical-align: middle;
	-webkit-border-radius: 0;
}
button, input {
	line-height: normal;
*overflow: visible;
}
table button, table input {
*overflow: auto;
}
button, input[type='button'], input[type='reset'], input[type='submit'] {
	cursor: pointer;
	-webkit-appearance: button;
}
textarea {
	overflow: auto;
	vertical-align: top;
}
input[type='search']::-webkit-search-decoration, input[type='search']::-webkit-search-cancel-button, input[type='search']::-webkit-search-results-button, input[type='search']::-webkit-search-results-decoration {
display: none;
}
input[type='search'] {
	-webkit-appearance: textfield;
}
input[type='radio'] {
	-webkit-appearance: radio;
}
input[type='checkbox'] {
	-webkit-appearance: checkbox;
}
input::-ms-clear {
display: none;
}
input[type='password']::-ms-reveal {
display: none;
}
.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}
* html .clearfix {
	zoom: 1;
}
*:first-child+html .clearfix {
	zoom: 1;
}
.cleaner {
	height: 0;
	line-height: 0;
	clear: both;
}

/********** End RESET **********/



a, a:hover {
	text-decoration: none;
}
#nav {

	box-shadow: rgba(64, 63, 63, 0.35) 0px -50px 36px -28px inset;
	width: 80%; /* 1000 */
	height: auto;
	font-family: 'Open Sans', sans-serif;
	font-weight: 600;
	position: relative;
	margin: 0 auto;
	transition: visibility 200ms ease-out, opacity 200ms ease-out;
	border-top: 1.3px solid #000;


	 position: sticky;
  top: 0; /* This is the key part: the element becomes sticky when it reaches 0 pixels from the top of the viewport */
  	background-color: #fff;
 /* Optional: adds a background color */
  z-index: 10;

	

	
}
#nav > a {
	display: none;

	
}
#nav li {
	position: relative;
}
#nav li a {
	color: #0a0a0a;
	display: block;
	
}
#nav li a:active {
	background-color: rgb(14, 22, 1) !important;
}
#nav span:after {
	width: 0;
	height: 0;
	border: 0.313em solid transparent; /* 5 */
	border-bottom: none;
	border-top-color: #0d0d0d;
	content: '';
	vertical-align: middle;
	display: inline-block;
	position: relative;
	right: -0.313em; /* 5 */
}
/* first level */

	#nav > ul {	
	height: 1.75em; /* 60 */
	background-color: #ffffff;
	justify-content: left;
	color:#0a0a0a
}
	#nav > ul > li {
	width: auto;
	height: 100%;
	float: left;
	margin: 0 auto;
	padding-left: 10px;
	background-color: #fefdfae8;
	box-shadow: #012d02 0px 0px 10px 0px;
}
#nav > ul > li > a {
	height: 100%;
	font-size: 1em; /* 24 */
	line-height: 2em; /* 60 (24) */
	text-align: left;
}
#nav > ul > li:not( :last-child ) > a {
	padding-right: 10px;
}
#nav > ul > li:hover > a, #nav > ul:not( :hover ) > li.active > a {
	background-color: #373d08;
}

/* second level / dropdown */

	#nav li ul {
	background-color: #f6f4f3;
	display: none;
	position: absolute;
	top: 100%;
	width: 300%;
	color:hsl(0, 0%, 2%)
}
#nav li:hover ul {
	display: block;
	left: 0;
}
#nav li:not( :first-child ):hover ul {
	left: -1px;
}
#nav li ul a {
	font-size: 1em; /* 20 */
	border-top: 1px solid #050505;
	padding: 0.75em; /* 15 (20) */
}
#nav li ul li a:hover, #nav li ul:not( :hover ) li.active a {
	background-color: #565352;
	color:#000;
}
 @media only screen and ( max-width: 62.5em ) /* 1000 */ {
#nav {
	width: 100%;
	position: static;
	margin: 0;

	 position: sticky;
  top: 0; /* This is the key part: the element becomes sticky when it reaches 0 pixels from the top of the viewport */
  padding: 10px; /* Optional: adds some spacing */
  z-index: 10;
}
}
 @media only screen and ( max-width: 40em ) /* 640 */ {

#nav {
	position: relative;
	top: auto;
	left: auto;
}
#nav > a {
	width: 3.125em; /* 50 */
	height: 3.125em; /* 50 */
	text-align: left;
	text-indent: -9999px;
	background-color: #0b0b0b;
	position: relative;
}
#nav > a:before, #nav > a:after {
	position: absolute;
	border: 2px solid #fff;
	top: 35%;
	left: 25%;
	right: 25%;
	content: '';
}
#nav > a:after {
	top: 60%;
}
#nav:not( :target ) > a:first-of-type, #nav:target > a:last-of-type {
	display: block;
}
/* first level */

	#nav > ul {
	height: auto;
	display: none;
	position: absolute;
	left: 0;
	right: 0;
}
#nav:target > ul {
	display: block;
}
#nav > ul > li {
	width: 100%;
	float: none;
}
#nav > ul > li > a {
	height: auto;
	text-align: left;
	padding: 0 0.833em; /* 20 (24) */
}
#nav > ul > li:not( :last-child ) > a {
	border-right: none;
	border-bottom: 1px solid #050505;
}
/* second level */

				#nav li ul {
	position: relative;
	padding: 0.25em; /* 20 */
	padding-top: 0;
	color: #0a0a0a;
}
}






.scroller {
  overflow: hidden;
  display: flex;
  position: relative;
  margin: 0 auto;
}

.scroller div {

  animation: slide 30s linear infinite;
  margin: 0 auto;
}


@keyframes slide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-20px, 0, 0); /* The image width */
  }
}


.r18-container {
  margin: 0 auto;
  width: 100%;
  background: #0a0a0a;
  display: flex;
  flex-flow: row wrap;
  padding-top: 10px;
}

.r18-container>* {
  flex: 1 100%;
  text-align: center;
}

.r18-items:nth-child(1) {
  background: rgba(0, 255, 255, 0.05);
  color: white;
}

.r18-items:nth-child(2) {
  background: rgba(255, 0, 0, 0.05);
}

.r18-items:nth-child(3) {
  background: rgba(0, 255, 0, 0.05);
}

@media all and (min-width: 900px) {
  .r18-items {
    flex: 1 auto;
  }
}

@media only screen and (max-width: 600px) {
  .r18-items {
    display: flex;
    flex-wrap: wrap;
  }
}

.r18-columns {
  display: inline-flex;
  font-family: 'Open Sans Condensed', sans-serif;
  padding-top: 5px;
}

.r18-separator {
  border-top: 1px solid #fffffff7;
  width: 100%
}



.r18-name {
  color: #f1eded;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px;
  position: relative;
  top: -6px;
}

.r18-team-l {
  padding-right: 0px;
}

.r18-team-l::after {
  font-family: 'Open Sans Condensed', sans-serif;
  font-weight: 300;
  content: ":";
  color: #0e0e0e;
  font-size: 28px;
  line-height: 0;
  top: -2px;
  position: relative;
  margin-left: 5px;
}

.r18-team-r {
  padding-left: 2px;
}

.r18-team-r .flag-icon, .r18-team-l .flag-icon {
  position: relative;
  top: -4px;
}

.r18-score {
  font-weight: 700;
  font-size: 17.5px;
  background: rgba(255, 255, 255, 0.2);
  color: #fafafa;
  position: relative;
  padding: 0 10px;
  top: -5px;
}

.r18-time {
  color: #FFFFFF;
  font-family: 'Open Sans', sans-serif;
  display: inline-flex;
  margin-bottom: 5px;
}

.r18-hour {
  font-weight: 100;
  font-size: 36px;
}

.r18-text::after {
  content: "";
  position: absolute;
  height: 18px;
  border-left: 2px dotted rgba(251, 247, 247, 0.923);
  top: 17px;
  margin-left: 10px;
}

.r18-text {
  display: inline-grid;
  position: relative;
  min-width: 48px;
}

.r18-text span:first-child {
  font-size: 12px;
  font-weight: 300;
  text-transform: uppercase;
  text-align: left;
  position: relative;
  top: 10px;
}

.r18-text span:last-child {
  font-size: 12px;
  font-weight: 700;
  position: absolute;
  top: 25px;
  right: 10;
}


.footer-distributed{
  	background-color: hsl(0, 0%, 94%);
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
	box-sizing: border-box;
	width: 100%;
	text-align: left;
	font: bold 12px sans-serif;
	padding: 40px 20px;
}

.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right{
	display: inline-block;
	vertical-align: top;
}

/* Footer left */

.footer-distributed .footer-left{
	width: 34%;
	text-align: center;
}

/* The company logo */

.footer-distributed h4{
	color:  #111111;
	margin-bottom: 10;
	text-decoration: underline;
	padding-bottom: 10px;
	font: bold 18px georgia, 'Times New Roman', Times, serif;
}


/* Footer links */

.footer-distributed .footer-links{
	color:  #070707;
	margin: 10px 0 12px;
	padding: 10px;
}

.footer-distributed .footer-links a{
	display:inline-block;
	line-height: 1.8;
  font-weight:600;
	text-decoration: none;
	color:  inherit;
}

.footer-linkss{
	display:inline-block;
	line-height: 1.8;
  font-weight:600;
	text-decoration: underline;
	color:  inherit;
	padding: 10px;
}

.footer-distributed .footer-company-name{
	color:  #222;
	font-size: 14px;
	font-weight: 600;
	margin: 0;
}

/* Footer Center */

.footer-distributed .footer-center{
	width: 16%;
	margin-left: 4%;
}

.footer-distributed .footer-center i{
	background-color:  #33383b;
	color: #0a0a0a;
	font-size: 12px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	text-align: center;
	line-height: 42px;
	margin: 10px;
	vertical-align: middle;
}

.footer-distributed .footer-center i.fa-envelope{
	font-size: 14px;
	line-height: 20px;
}

.footer-distributed .footer-center p{
	display: inline-block;
	color: #0c0b0b;
  	font-weight:600;
	vertical-align: middle;
	margin:0;
	font-size: 15px;
}

.footer-distributed .footer-center p span{
	display:block;
	font-weight: normal;
	font-size:14px;
	line-height:2;
}

.footer-distributed .footer-center p a{
	color:  rgb(17, 17, 17);
	text-decoration: none;;
}

.footer-distributed .footer-links a:before {
  content: "|";
  font-weight:300;
  font-size: 20px;
  left: 0;
  color: #0b0b0b;
  display: inline-block;
  padding-right: 5px;
}

.footer-distributed .footer-links .link-1:before {
  content: none;
}

/* Footer Right */

.footer-distributed .footer-right{
	width: 22%;
	text-align: center;
}

.footer-distributed .footer-company-about{
	display: block;
	color:  #000;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 20px;
}

.footer-distributed .footer-icons{
	margin-top: 25px;
}

#donate-support {
  margin: 20px;
  font-size: 14px;
  font-weight: 800;
  background-color: #861414;
  text-align: center;
  box-shadow: inset 0 0 10px #000000;
  text-transform: none;
}

.footer-distributed .footer-icons a{
	display: inline-block;
	width: 25px;
	height: 20px;
	cursor: pointer;
	background-color:  #fff;
	border-radius: 2px;

	font-size: 15px;
	color: #111010;
	text-align: center;
	line-height: 20px;
	margin: 5px;
}

/* If you don't want the footer to be responsive, remove these media queries */

@media (max-width: 880px) {

	.footer-distributed{
		font: bold 14px sans-serif;
	}

	.footer-distributed .footer-left,
	.footer-distributed .footer-center,
	.footer-distributed .footer-right{
		display: block;
		width: 100%;
		margin-bottom: 40px;
		text-align: center;
	}

	.footer-distributed .footer-center i{
		margin-left: 0;
	}

}

#category-1 {

	position: relative;
	text-align: center;
}

section { display: flex; }

article { 
  margin: 1rem;
  -ms-flex: 1 0 0px;
  flex: 1; 
  
  /* shortcut for "flex-grow: 1". Note that it MUST be a unitless value to work; defined with a unit (e.g. flex: 1px) the shortcut would alter the flex-basis property. */
}
article.breaking { 
  -ms-flex-grow: 2; 
  flex: 2; 
  /* shortcut for "flex-grow: 2" */
} 
 
article img { 
  width: 100%; height: auto; 
}
article h1, article h2, article h3 { font-family: Georgia, 'Times New Roman', Times, serif; }
article h1 { 
  font-size: 1.1rem; 
  line-height: 1;
  padding-top: 10px;
  text-align: center;
  text-decoration: none;
  
}
article h2, article h3 { 
  font-size: 1.0rem; 
  text-align: center; 
  line-height: 1.3;
  margin: .3rem 0;
  font-weight: 300;
    text-decoration: none;

  
}
article h3 { 
  font-size: 1.1rem; 
}
article p { 
  font-family: Georgia, 'Times New Roman', Times, serif;
  line-height: 1.3; 
  font-size: 1rem;

}
@media screen and (max-width: 750px) {
  body > h1 { font-size: 3rem; }
  section { 
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    flex-direction: column; 
  }
}



.sidenav {
  height: 100vh; /* Your element will take 100% of the viewport's height */
  /* Other styles for your element */ width: 0;
  width: 0;
  position: fixed;
  z-index: 999;
  left: 0;
  background-color: hsl(0, 0%, 2%);
  overflow-x: hidden;
  transition: 0.5s;
  text-align: left;
  padding-top: 10%;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 14px;
  color: #f9efef;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: green;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

@import url('https://fonts.googleapis.com/css?family=Lobster+Two:700|Poppins&display=swap');
*{
  margin: 0;
  box-sizing: border-box;
}

::selection{
  color: white;
  background: #000;
}
.center,.start-{
  position: absolute;
}
.start-btn a{
  font-size: 15px;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: 5px 5px 15px rgba(0,0,0,.1);
}
.modal-box{
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  background: white;
  height: auto;
  width: 400px;
  padding: 30px;
  border-radius: 5px;
  border: 1px solid #000;
  box-shadow: 5px 5px 30px rgba(0,0,0,.2);
}
.start-btn.show-modal{
  opacity: 0;
  visibility: hidden;
}
.modal-box.show-modal{
  top: 260px;
  opacity: 1;
  visibility: visible;
  transition: .4s;
}
.modal-box .fa-times{
  position: absolute;
  top: 0;
  right: 0;
  background: #000;
  height: 45px;
  width: 50px;
  line-height: 40px;
  color: white;
  font-size: 18px;
  border-radius: 0 5px 0 50px;
  padding-left: 13px;
  cursor: pointer;
}
.fa-times:hover{
  font-size: 22px;
}

.modal-box header{
  font-size: 31px;
  font-family: 'Lobster Two';
  margin-bottom: 10px;
}
.modal-box p{
  /* margin-bottom: 10px; */
  line-height: 20px;
  color: grey;
}
form input, form button{
  height: 40px;
  width: 95%;
  border-radius: 3px;
}

form input{
  margin-top: 10px;
  padding: 0 65px;
  font-size: 18px;
  outline: none;
  border: 1px solid #000;
  caret-color: #000;
}
input::placeholder{
  color: #8c8c8c;
}
form input:focus{
  box-shadow: 0 0 15px #82e6fc,
              0 0 25px #b4f0fd,
              0 0 35px #ffffff;
}
form button{
  margin-top: 15px;
  background: #000;
  color: white;
  font-size: 25px;
  border: 1px solid #000;
  letter-spacing: 1px;
  cursor: pointer;
  outline: none;
  transition: .3s;
}
form button:hover{
  background: #1ed2fa;
  border: 1px solid #05cdfa;
  letter-spacing: 2px;
}
.modal-box .icons{
  margin-top: 25px;
}
.icons i{
  font-size: 22px;
  margin: 0 7px;
  color: #000;
  cursor: pointer;
  padding-bottom: 10px;
}
.icons i:hover{
  transform: scale(1.1);
  color: #05cdfa;
}
/*
======================================
  * CSS TABLE CONTENT *  
======================================
1. HEADER
2. HEADER TOPBAR
3. HEADER LOGO
4. MENU BAR
5. MEGA MENU
6. HEADER TRANSPARENT
7. MENU ICON
8. PAGE BANNER
9. BLOG
10. TESTIMONIALS
11. COUNTERUP
12. FOOTER
13. INNER CONTENT CSS
======================================
  * END TABLE CONTENT *  
======================================
*/




/*=================================
	1. HEADER
=================================*/

.with-line {
	position: relative;
	/* Needed for positioning the pseudo-element */
}

.with-line::before {
	content: '';
	/* Essential for pseudo-elements */
	position: absolute;
	left: -5px;
	/* Adjust horizontal position */
	top: 5%;
	height: 90%;
	/* Line height matches parent */
	width: 0.5px;
	background-color: rgb(110, 110, 115);
}


.bg-fix {
	background-attachment: fixed;
	background-size: cover;
}



.header {
	position: relative;
	z-index: 888;
	font-family: "Fraunces", serif;

}

.header ul,
.header ol {
	margin-bottom: 0;
}


.hr-details {
	display: block;
	margin-top: 0em;
	margin-bottom: 0.1em;
	margin-left: auto;
	margin-right: auto;
	border-style: inset;

	color: #000;

	height: 2px;
	border-width: 0;
	color: gray;
	background-color: gray
}

.hr-details-inner {
	display: block;
	
	padding: 0.2em;
	margin-left: auto;
	margin-right: auto;
	border-style: inset;
	width: 25%;
	color: #000;

	height: 1px;
	border-width: 0;
	color: gray;
	background-color: rgb(8, 19, 2)
}

body {
    background-color: #fff;
	font-family: 'Times New Roman', Times, serif;
	font-weight: 500;
	color:#000000;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	scroll-behavior: smooth;
}


/*without top bar*/
.secondary-menu {
	margin: 0 auto;
	float: center;
	position: fixed;
	z-index: 888;
	font-family: "Fraunces", serif;
}

.secondary-menu .btn-link {
	font-size: 30px;
	padding-top: 20px;
	padding-left: 20px;
	background-color: white;
}

.secondary-menu .btn-link:hover {
	color: var(--primary);
}

.secondary-menu .secondary-inner {
	display: inline-block;
	margin-left: 10px;
}

.nav-search-bar {
	background-color: rgba(7, 7, 7, 0.95);
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 888;
	display: none;
	overflow: hidden;
	padding: 20 15px;
}

.nav-search-bar.On form {
	transition: all 0.5s ease 0.5s;
	-moz-transition: all 0.5s ease 0.5s;
	-webkit-transition: all 0.5s ease 0.5s;
	opacity: 1;
}

.nav-search-bar form {
	width: 100%;
	max-width: 700px;
	margin: auto;
	position: relative;
	top: 50%;
	transition: all 0.5s;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transform: translate(0px, -50%);
	-moz-transform: translate(0px, -50%);
	-o-transform: translate(0px, -50%);
	-webkit-transform: translate(0px, -50%);
	opacity: 0;
}

.nav-search-bar .form-control {
	padding: 15px 15px 15px 15px;
	width: 100%;
	border: none;
	background: none;
	color: #000;
	font-size: 20px;
	border-bottom: 2px solid #000;
}

.vl {
	border-left: 6px solid rgb(24, 25, 24);
	height: 500px;
}


.nav-search-bar .form-control::-moz-placeholder {
	color: #000;
}

.nav-search-bar .form-control:-moz-placeholder {
	color: #000;
}

.nav-search-bar .form-control:-ms-input-placeholder {
	color: #000;
}

.nav-search-bar .form-control::-webkit-input-placeholder {
	color: #000;
}



@media only screen and (max-width: 767px) {
	.secondary-menu {
		margin-right: 5px;
	}
}

@media only screen and (max-width: 480px) {
	.secondary-menu {
		margin: 0 1px 0 0;
		text-align: right;
	}
}

/*=================================
	2. HEADER TOPBAR
=================================*/

.topbar-left {
	float: left;
		font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
		background-color: #ededed;
		

}

.topbar-right {
	float: right;
	background-color: #ededed;
	padding-top: 5px;
	margin-bottom: 1px;

}

.topbar-center,
.topbar-left,
.topbar-right {
	padding-left: 15px;
	padding-right: 15px;
	height: 32px;
	
}

.topbar-left ul li,
.topbar-right ul li {
	display: inline-block;
	position: relative;
}

.topbar-left ul li a,
.topbar-right ul li a {
	color: #000;
}

.topbar-left ul,
.topbar-right ul {
	margin: 0;
	padding: 0;
	list-style: none;
	font-family: rubik;
	font-size: 14px;
}

.topbar-left ul li {
	padding-right: 10px;
	margin-right: 10px;
}

.topbar-right ul li {
	padding-left: 10px;
	margin-left: 10px;
}

.topbar-left ul li i {
	margin-right: 5px;
}

.search-btn:after,
.topbar-left ul li:after,
.topbar-right ul li:after {
	position: absolute;
	width: 1px;
	height: 20px;
	background-color: #000;
	right: 0;
	content: "";
	top: 2px;
	opacity: 0.1;
}

.topbar-right ul li:after {
	right: auto;
	left: 0;
}

.topbar-right ul li:first-child:after,
.topbar-left ul li:last-child:after {
	content: none;
}

@media only screen and (max-width: 767px) {
	.top-bar [class*="col-"] {
		width: 100%;
		text-align: right;
		padding: 10px 15px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.top-bar [class*="col-"]:last-child {
		border-bottom: none;
	}

	.top-bar {
		padding: 2px 0;
	}

	.topbar-center,
	.topbar-left,
	.topbar-right {
		display: black;
		width: 100%;
		text-align: center;
		padding: 3px 15px;
		padding-left: 15px;
		padding-right: 15px;
	}

	.topbar-left ul li {
		padding: 0 5px;
	}
}

/*=================================
	3. HEADER LOGO
=================================*/
.menu-logo {
	background-color: rgb(255, 255, 255);
	display: table;
	vertical-align: center;
	color: #0f0f0e;
	margin: 0 auto;
	text-align: center;
	width: 30%;
	position: relative;
	z-index: 888;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;

	box-shadow: rgba(0, 0, 0, 0.35) 0px -50px 36px -28px inset;

}



.menu-logo a {
	font-size: 25px;
	color: #131313;
	letter-spacing: -0.8px;
	text-decoration: none;
	font-weight: 800;
}



@media only screen and (max-width: 767px) {

	.menu-logo,
	.is-fixed .menu-logo {
		width: 100px;
		max-width: 100px;
		height: 50px;
	}

	.menu-logo img {
		max-width: 100px;
	}

	.is-fixed .menu-logo a img {
		vertical-align: sub;
	}

	.header .navbar-toggler,
	.header .is-fixed .navbar-toggler {
		margin: 18px 0 14px 15px;
	}

	.header .secondary-menu,
	.header .is-fixed .secondary-menu {
		padding: 11px 0;
	}
}

.nav-right-details {
	z-index: 888;
	height: auto;
	border-bottom: 2px rgb(10, 10, 10);
    text-transform: uppercase;
    font-size: 12px;
	color: rgb(27, 4, 4);
}

/*=================================
	4. MENU BAR
=================================*/
.menu-bar {

	width: 100%;
  background-color: #ddd6d6;
}



.navbar-toggler {
	border: 0 solid #efbb20;
	font-size: 16px;
	line-height: 24px;
	margin: 32px 0 30px 15px;
	padding: 0;
	float: right;
}

.navbar-toggler span {
	background: #000;
}

.is-fixed .navbar-toggler {
	margin: 28px 0 20px 15px;
}

.menu-links {
	position: relative;
	padding: 0;
	

}

.menu-links .nav {
	margin: 0 auto;
	transition: visibility 200ms ease-out, opacity 200ms ease-out;   
	float: center;

}

.menu-links .nav i {
	font-size: 14px;
	margin-left: 3px;
	margin-top: -3px;
	vertical-align: middle;
}

.menu-links .nav>li {
	margin: 0px;
	font-weight: 700;
	text-transform: uppercase;
	position: relative;
}

.menu-links .nav>li>a {
	border-radius: 0px;
	color: #000;
	font-size: 13px;
	font-weight: 600;
	padding: 20px 12px;
	cursor: pointer;
	display: inline-block;
	transition: visibility 200ms ease-out, opacity 200ms ease-out;   
}

.menu-links .nav>li>a:hover {
	background-color: transparent;
	color: darkgreen;
}

.menu-links .nav>li>a:active,
.menu-links .nav>li>a:focus {
	background-color: transparent;
}

.menu-links .nav>li.active>a,
.menu-links .nav>li.current-menu-item>a {
	background-color: transparent;
	color: darkgreen;
}

.menu-links .nav>li:hover>a {
	color: darkgreen;
}

.menu-links .nav>li:hover>a:after {
	content: "";
	width: 10px;
	height: 10px;
	background: green;
	top: 85%;
	position: absolute;
	left: 30px;
	transform: rotate(45deg);
	z-index: 11;
}

.menu-links .nav>li:hover>.sub-menu,
.menu-links .nav>li:hover>.mega-menu {
	opacity: 1;
	visibility: visible;
	margin-top: 0;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.menu-links .nav>li>.sub-menu,
.menu-links .nav>li>.mega-menu {
	box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
}

.menu-links .nav>li .sub-menu {
	background-color: #ffffff;
	border: 1px solid #f4f4f4;
	display: block;
	left: 0;
	list-style: none;
	opacity: 0;
	padding: 10px 0;
	position: absolute;
	visibility: hidden;
	width: 220px;
	z-index: 10;
	border-radius: 6px;
	top: 90%;
}

.menu-links .nav>li .sub-menu li {
	border-bottom: 1px dashed #4c4a4a;
	position: relative;
}

.menu-links .nav>li .sub-menu li a {
	color: #303030;
	display: block;
	font-size: 17px;
	font-weight: 600;
	padding: 8px 20px;
	text-transform: none;
	transition: all 0.15s linear;
	-webkit-transition: all 0.15s linear;
	-moz-transition: all 0.15s linear;
	-o-transition: all 0.15s linear;
	font-family: "Fraunces", serif;
}

.menu-links .nav>li .sub-menu li a:hover {
	background-color: #F2F2F2;
	color: #EFBB20;
	text-decoration: none;
	font-family: "Fraunces", serif;
}

.menu-links .nav>li .sub-menu li:hover>a {
	color: #EFBB20;
}

.menu-links .nav>li .sub-menu li:last-child {
	border-bottom: 0px;
}

.menu-links .nav>li .sub-menu li>.sub-menu.left,
.menu-links .nav>li .sub-menu li:hover .sub-menu.left {
	left: auto;
	right: 220px;
}

.menu-links .nav>li .sub-menu li .fa {
	color: inherit;
	display: block;
	float: right;
	font-size: 15px;
	position: absolute;
	right: 15px;
	top: 12px;
	opacity: 1;
}

.menu-links .nav>li .sub-menu li .fa.fa-nav {
	color: inherit;
	display: inline-block;
	float: none;
	font-size: 13px;
	margin-right: 5px;
	opacity: 1;
	position: unset;
	right: 10px;
	top: 12px;
}

.menu-links .nav>li .sub-menu li>.sub-menu {
	left: 220px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.menu-links .nav>li .sub-menu li:hover>.sub-menu {
	left: 220px;
	margin: 0px;
	opacity: 1;
	top: -1px;
	visibility: visible;
}

.menu-links .nav>li .sub-menu li:hover>.sub-menu:before {
	background-color: transparent;
	bottom: 0px;
	content: '';
	display: block;
	height: 100%;
	left: -6px;
	position: absolute;
	top: 0px;
	width: 6px;
}

/*=================================
	5. MEGA MENU
=================================*/
.menu-links .nav>li.has-mega-menu {
	position: inherit;
	width: 100%;

}

.menu-links .nav>li .mega-menu {
	background-color: #0e0d0d;
	border: 1px solid #0f0d0d;
	display: table;
	left: 0px;
	list-style: none;
	opacity: 0;
	position: absolute;
	right: 0px;
	visibility: hidden;
	width: 100%;
	font-family: "Fraunces", serif;
	margin-top: 20px;
	z-index: 888;
}

.menu-links .nav>li .mega-menu>li {
	display: table-cell;
	padding: 30px 0 25px;
	position: relative;
	vertical-align: top;
	width: 25%;
}

.menu-links .nav>li .mega-menu>li:after {
	content: "";
	background-color: rgba(0, 0, 0, 0.02);
	position: absolute;
	right: 0px;
	top: 0px;
	display: block;
	width: 1px;
	height: 100%;
}

.menu-links .nav>li .mega-menu>li:last-child:after {
	display: none;
}

.menu-links .nav>li .mega-menu>li>a {
	color: #000;
	display: block;
	font-size: 14px;
	padding: 0 20px;
	font-size: 13px;
	font-weight: 600;
}

.menu-links .nav>li .mega-menu>li ul {
	list-style: none;
	margin: 10px 0px 0px 0px;
	padding: 0px;
	width: 100%;
}

.menu-links .nav>li .mega-menu>li ul a {
	color: #505050;
	display: block;
	font-size: 13px;
	line-height: 34px;
	text-transform: capitalize;
	padding: 0 20px;
	font-weight: 500;
}

.menu-links .nav>li .mega-menu>li ul a:hover {
	color: #EFBB20;
}

.menu-links .nav .mega-menu a i {
	font-size: 14px;
	margin-right: 5px;
	text-align: center;
	width: 15px;
}

.menu-links .nav>li.menu-item-has-children:before {
	content: "\f078";
	display: block;
	font-family: "Fraunces", serif;
	right: 4px;
	position: absolute;
	top: 50%;
	color: #999;
	margin-top: -8px;
	font-size: 8px;
}

/* Menu */
.menu-links .nav>li.add-mega-menu .mega-menu,
.has-mega-menu.add-mega-menu .mega-menu {
	display: block;
	padding: 20px;
	width: 90%;
	max-width: 90%;
	margin: auto;
}

.menu-links .nav>li .add-menu {
	display: flex;
	width: 420px;
}

.add-menu-left {
	width: 100%;
	padding-left: 10px;
	border-bottom: 0 !important;
}

.add-menu-right {
	min-width: 240px;
	width: 240px;
	padding: 10px 20px;
}

.menu-links .nav>li.has-mega-menu.demos .mega-menu {
	left: auto;
	right: auto;
	max-width: 600px;
	z-index: 888;
}

.menu-links .nav .add-menu-left ul li {
	list-style: none;
}

.menu-links .nav .add-menu-left ul li a {
	padding: 8px 0px;
}

.menu-links .nav .add-menu-left ul li a:hover {
	background-color: rgba(0, 0, 0, 0);
}

.menu-adv-title {
	font-size: 16px;
	text-transform: capitalize;
	margin-top: 15px;
	margin-bottom: 15px;
	padding-bottom: 10px;
	position: relative;
}

.menu-adv-title:after {
	content: "";
	width: 25px;
	height: 2px;
	display: block;
	background: #000;
	position: absolute;
	bottom: 0;
	left: 0;
}

.menu-links .menu-logo,
.menu-links .nav-social-link {
	display: none;

}

.social a i {
	font-size: 16px;
	margin: 6px;
	color: #000;
	float: right;
	
}

.social > .a:first-child {
  margin-left: 20px; /* Override the margin for the very first item */
}
/* Header Extra Nav */
.secondary-inner ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.secondary-inner ul li {
	display: inline-block;
	position: relative;
}

.secondary-inner ul li a {
	color: #000;
}

.search-btn {
	padding-left: 10px;
	margin-left: 10px;
}

.search-btn:after {
	left: 0;
	right: auto;
	top: 5px;
}

.search-btn .btn-link i {
	margin-left: 5px;
}

@media only screen and (max-width: 991px) {
	.add-menu-left ul {
		display: block !important;
	}

	.menu-links .menu-logo,
	.menu-links .nav-social-link {
		display: block;
	}

	.menu-links .nav-social-link {
		margin-top: auto;
		text-align: center;
		width: 100%;
		padding: 10px 0;
		background: #fff;
	}

	.menu-links .nav-social-link a {
		color: #000;
		padding: 5px 10px;
	}

	.menu-links .nav>li.has-mega-menu.demos .mega-menu {
		max-width: 100%;
	}

	.menu-links .nav>li .mega-menu {
		border: 0;
	}

	.menu-links .nav>li .mega-menu>li {
		padding: 10px 0;
	}

	.menu-links .nav>li .sub-menu,
	.menu-links .nav>li .mega-menu {
		border-radius: 0;
		border-width: 1px 0 1px 0;
	}

	.menu-links .nav i {
		margin-top: 6px;
		float: right;
	}

	.menu-links {
		clear: both;
		margin: 0 -15px;
		border-bottom: 1px solid #E9E9E9;
	}

	.menu-links .nav {
		float: none;
		background: #fff;
		width: 100%;
		display: block;
		margin-bottom: auto;
	}

	.menu-links .nav li {
		float: none;
		display: block;
		width: 100%;
	}

	.menu-links .nav>li .sub-menu>li,
	.menu-links .nav>li .mega-menu>li {
		float: none;
		display: block;
		width: auto;
	}

	.menu-links .nav>li>a {
		padding: 10px 15px;
		border-top: 1px dashed #E9E9E9;
		display: block;
	}

	.menu-links .nav>li>a:hover,
	.menu-links .nav>li>a:active,
	.menu-links .nav>li>a:focus {
		background-color: #f0f0f0;
		text-decoration: none;
	}

	.menu-links .nav>li .mega-menu>li:after {
		display: none;
	}

	.menu-links .nav>li ul,
	.menu-links .nav>li .sub-menu,
	.menu-links .nav>li .mega-menu {
		display: none;
		position: static;
		visibility: visible;
		width: auto;
		background: transparent;
	}

	.menu-links .nav>li ul.mega-menu ul {
		display: none;
	}

	.menu-links .nav>li:hover>ul,
	.menu-links .nav>li:hover .sub-menu,
	.menu-links .nav>li:hover .mega-menu,
	.menu-links .nav>li .sub-menu li>.sub-menu {
		opacity: 1;
		visibility: visible;
		display: block;
		margin: 0;
	}

	.menu-links .nav>li ul.mega-menu li:hover ul {
		display: block;
	}

	.side-nav .nav.navbar-nav li a i.fa-chevron-down:before,
	.nav.navbar-nav li a i.fa-chevron-down:before {
		content: "\f078";
	}

	.side-nav .nav.navbar-nav li.open a i.fa-chevron-down:before,
	.nav.navbar-nav li.open a i.fa-chevron-down:before {
		content: "\f054";
	}

	.menu-links .nav>li .sub-menu li i.fa-angle-right:before {
		content: "\f078";
		font-size: 10px;
		position: absolute;
		z-index: 2;
		color: #000;
		right: 20px;
		top: -5px;
	}

	.menu-links .nav>li .sub-menu li.open i.fa-angle-right:before {
		content: "\f054";
	}

	.menu-links .nav>li .sub-menu .sub-menu,
	.menu-links .nav>li:hover .sub-menu .sub-menu,
	.menu-links .nav>li:hover .sub-menu,
	.menu-links .nav>li:hover .mega-menu {
		display: none;
		opacity: 1;
		margin-top: 0;
	}

	.menu-links .nav li .sub-menu .sub-menu {
		display: none;
		opacity: 1;
		margin-top: 0;
	}

	.menu-links .nav>li.open>.sub-menu .sub-menu {
		display: none;
	}

	.menu-links .nav>li.open>.sub-menu li.open .sub-menu,
	.menu-links .nav>li.open>.mega-menu,
	.menu-links .nav>li.open>.sub-menu,
	.menu-links .nav>li ul.mega-menu ul {
		display: block;
		opacity: 1;
		margin-top: 0;
		box-shadow: none;
	}

	.menu-links .nav>li:hover>a:after {
		content: none;
	}

	.menu-links .nav>li .sub-menu li .fa {
		top: 50%;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		margin: 0;
		right: -1px;
		color: #000;
	}

	.menu-links .nav>li .mega-menu>li {
		padding: 0;
	}

	.menu-links .nav>li .mega-menu>li>a {
		display: none;
	}

	.menu-links .nav .mega-menu a i {
		display: inline-block;
		float: none;
		margin-top: 0;
	}

	.menu-links .nav .open>a,
	.menu-links .nav .open>a:focus,
	.menu-links .nav .open>a:hover {
		background-color: inherit;
		border-color: #e9e9e9;
	}
}

@media screen and (max-width: 991px) {
	.rs-nav .menu-links.nav-dark {
		background-color: #070707;
	}

	.rs-nav .menu-links {
		position: fixed;
		width: 60px;
		left: -280px;
		height: 100vh !important;
		transition: all 0.5s;
		-webkit-transition: all 0.5s;
		-moz-transition: all 0.5s;
		-o-transition: all 0.5s;
		top: 0;
		background-color: #f6f1f1;
		margin: 0;
		z-index: 99;
		overflow-y: scroll;
		display: flex;
		flex-direction: column;
	}

	.rs-nav .menu-links li.open a {
		position: relative;
	}

	.navbar-nav {
		height: auto;
	}

	.rs-nav .menu-links.show {
		left: -1px;
		transition: all 0.8s;
		-webkit-transition: all 0.8s;
		-moz-transition: all 0.8s;
		-o-transition: all 0.8s;
		margin: 0;
		width: 100%;
		width: 300px;
		padding: 15px 15px 5px 15px;
	}

	.rs-nav .is-fixed .menu-links .nav {
		height: auto;
	}

	.rs-nav .navbar-toggler.open:after {
		background-color: rgba(0, 0, 0, 0.6);
		content: "";
		height: 100%;
		left: 0;
		position: fixed;
		right: 0px;
		top: -20px;
		transform: scale(100);
		-o-transform: scale(100);
		-moz-transform: scale(100);
		-webkit-transform: scale(100);
		width: 100%;
		z-index: -1;
		transition: all 0.5s;
		transform-origin: top right;
		margin: 0 0px 0px 10px;
		box-shadow: 0 0 0 500px rgba(0, 0, 0, 0.6);
	}

	.rs-nav .menu-links .menu-logo {
		display: block;
		float: none;
		height: auto;
		max-width: 100%;
		padding: 20px 15px;
		width: 100%;
		text-align: center;
	}

	.rs-nav .menu-links .menu-logo img {
		max-width: unset;
		width: 130px;
		vertical-align: middle;
	}

	.rs-nav .menu-links .menu-logo a {
		display: inline-block;
	}

	.rs-nav .navbar-toggler.open span {
		background: #fff;
	}
}

.sticky-no .menu-bar {
	position: static !important;
}

.is-fixed .menu-bar {
	position: fixed;
	top: 0;
	left: 0;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.is-fixed .menu-links .nav>li>a {
	padding: 25px 12px;
}

.is-fixed .secondary-menu {
	padding: 21px 0;
}

@media only screen and (max-width: 991px) {
	.is-fixed .menu-links .nav>li>a {
		padding: 10px 15px;
	}
}

@media only screen and (max-width: 767px) {
	.is-fixed .menu-links .nav {
		height: 225px;
	}

	.is-fixed .menu-links .nav>li>a {
		padding: 10px 15px;
	}
}

/*=================================
	6. HEADER TRANSPARENT
=================================*/
.header-transparent {
	position: absolute;
	width: 100%;
}

.header-transparent .menu-bar {
	background-color: rgba(0, 0, 0, 0);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-transparent .menu-links .nav>li>a {
	color: #fff;
}

.header-transparent .menu-links .nav>li>a,
.header-transparent .secondary-menu .btn-link,
.header-transparent .navbar-toggler {
	color: #fff;
}

.header-transparent .secondary-menu .btn-link:hover {
	color: var(--primary);
}

.header-transparent .navbar-toggler span {
	background-color: #fff;
}

.header-transparent .is-fixed .menu-bar {
	position: fixed;
	background-color: rgba(0, 0, 0, 0.9);
}

.header-transparent .top-bar {
	background-color: rgba(0, 0, 0, 0);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	color: #dfdfdf;
}

.header-transparent .search-btn:after,
.header-transparent .topbar-left ul li:after,
.header-transparent .topbar-right ul li:after {
	background-color: #fff;
}

.fullwidth .container-fluid {
	padding-left: 30px;
	padding-right: 30px;
}

.onepage .navbar {
	margin-bottom: 0;
	border: 0;
}

.header-transparent .header-lang-bx .btn {
	background-color: transparent !important;
	color: #fff;
}

.header-transparent .topbar-right .header-lang-bx ul li a {
	color: #000;
}

.header-transparent .topbar-left ul li a,
.header-transparent .topbar-right ul li a {
	color: #fff;
}

@media only screen and (max-width: 991px) {
	.header-transparent .menu-links .nav>li>a {
		color: #000;
	}

	.header-transparent .menu-links.nav-dark .nav>li>a {
		color: #fff;
	}
}

@media only screen and (max-width: 767px) {
	.fullwidth .container-fluid {
		padding-left: 15px;
		padding-right: 15px;
	}
}

/*=================================
	7. MENU ICON
=================================*/
.menuicon {
	width: 20px;
	height: 14px;
	position: relative;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
}

.menuicon span {
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	border-radius: 1px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}

.menuicon span:nth-child(1) {
	top: 0px;
}

.menuicon span:nth-child(2) {
	top: 50%;
	transform: translateY(-50%)
}

.menuicon span:nth-child(3) {
	bottom: 0;
}

.menuicon.open span:nth-child(1) {
	top: 7px;
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
}

.menuicon.open span:nth-child(2) {
	opacity: 0;
	left: -60px;
}

.menuicon.open span:nth-child(3) {
	top: 7px;
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	-o-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

/*========================
	8. PAGE BANNER
=========================*/
.page-banner {
	height: 300px;
	background-size: cover;
	background-position: center center;
	display: table;
	width: 100%;
	text-align: left;
}

.page-banner .container {
	display: table;
	height: 100%;
}

.page-banner-entry {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

.page-banner-entry.align-m {
	vertical-align: middle;
}

.page-banner h1 {
	font-weight: 600;
	font-size: 40px;
	margin-bottom: 0;
}

.breadcrumb-row ul li a {
	color: #000;
	text-decoration:dotted;
}

@media only screen and (max-width: 767px) {
	.page-banner-entry {
		vertical-align: middle;
	}

	.page-banner {
		padding-bottom: 0;
		height: 200px;
	}

	.page-banner h1 {
		line-height: 24px;
		font-size: 20px;
		text-align: center;
	}
}

/*========================
	9. BLOG
=========================*/


.news-blog {
	width: 100%;
	/* Or a fixed pixel value */
	margin: 0 auto;
	padding-left: 20%;
	font-family: "Fraunces", serif;

}



.blog-post {
	position: relative;
	margin-bottom: 10px;
	width: 100%;
	font-weight: 500;
	line-height: 1.25;
	background-color: #000;
}

.ttr-post-title {

	font-family: "Fraunces", serif;
	color: #fffefe;
}

.ttr-post-title .post-title {
	padding: 10px;
}


h1 {
	font-family: "Fraunces", serif;
	font-weight: 600;
	margin: 0 auto;
}

.ttr-post-meta ul li {
	padding: 0;
	display: inline-block;
	color: #707070;
	font-weight: 500;
	font-size: 16px;

}

.ttr-post-meta ul li strong {
	font-weight: 500;
}

.ttr-post-meta li:after {
	content: "|";
	display: inline-block;
	font-weight: normal;
	margin-left: 5px;
	opacity: 0.5;
}

.ttr-post-meta li:last-child:after {
	display: none;
}

.ttr-post-meta a {
	color: #707070;
}

.ttr-post-meta i {
	margin: 0 5px;
	font-size: 15px;
}

.ttr-post-text {
	margin-bottom: 20px;
}

.ttr-post-text p:last-child {
	margin: 0;
}

@media only screen and (max-width: 1200px) {
	.ttr-post-meta .d-flex {
		display: block !important;
	}
}

/*blog post half iamge*/
.blog-md .ttr-post-media {
	width: 350px;
	border-radius: 4px;
	max-height: 250px;
}

.blog-md .ttr-post-info {
	padding-left: 40px;
	font-family: "Fraunces", serif;
	font-weight: 900;
	line-height: 1.25;
	color: #000;
}


.blog-md .ttr-post-info p {
	padding-left: 0px;
	font-size: 1.125em;
	font-family: "Fraunces", serif;
}

.blog-md .ttr-post-tags {
	border: none;
	display: inline-block;
	padding: 0;
}

.blog-md .ttr-post-info .post-title {
	margin-top: 0;
}

.blog-md,
.blog-md .ttr-post-info {
	overflow: hidden;
}

.blog-md .ttr-post-info,
.blog-md .ttr-post-media {
	display: table-cell;
	vertical-align: middle;
}

.blog-md .ttr-post-media {
	vertical-align: top;
}

.blog-md .ttr-post-info>div:last-child {
	margin-bottom: 0;
}

/* Blog Share */
.blog-share {
	position: relative
}

.share-btn {
	position: absolute;
	right: 0;
	bottom: 0;
}

.share-btn ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.share-btn ul li {
	display: inline-block;
	margin-left: -40px;
	float: left;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-ms-transition: all 0.5s;
}

.share-btn ul li a.btn {
	border-radius: 3px;
	width: 40px;
	line-height: 44px;
	height: 44px;
	display: block;
	color: #000;
	background: #E6E6E6;
}

.share-btn ul li a.btn:hover {
	background: #D6D6D6;
}

.share-btn ul:hover li.share-button a.btn {
	background: #A0A0A0;
}

.share-btn ul:hover li {
	margin-left: 4px;
}

.share-details-btn ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.time {
	color: black;
}

.share-details-btn ul li {
	display: inline-block;
	margin-right: 5px;
	margin-bottom: 6px;
}

@media only screen and (max-width: 767px) {

	.blog-md.blog-post .ttr-pfost-media,
	.blog-md.blog-post .ttr-post-info {
		float: none;
		margin: 0 0 20px;
		width: 100%;
		display: block;
		padding-left: 0;
	}

	.blog-md.blog-post .ttr-post-info {
		margin-top: 15px;
	}

	.blog-md .ttr-post-media {
		width: 100%;
	}
}

/*Blog single*/
.blog-single .ttr-post-meta {
	margin-bottom: 10px;
}

.blog-single .ttr-post-text {
	margin-top: 10px;
	font-size: 14px;
	font-style: Georgia;
}

.blog-single .ttr-post-tags {
	margin-top: 20px;
}

.blog-single .ttr-post-media {
	border-radius: 4px;
}

/*= comment list = */
.comments-area {
	padding: 0;
}

.comments-area .comments-title {
	text-transform: uppercase;
	font-size: 20px;
	font-weight: 500;
}

ol.comment-list {
	list-style: none;
	margin-bottom: 0;
	padding-left: 0;
}

ol.comment-list li.comment {
	position: relative;
	padding: 0;
}

ol.comment-list li.comment .comment-body {
	position: relative;
	margin-bottom: 40px;
	margin-left: 80px;
	position: relative;
}

ol.comment-list li.comment .comment-author {
	display: block;
	margin-bottom: 0;
}

ol.comment-list li.comment .comment-author .avatar {
	position: absolute;
	top: 0;
	left: -80px;
	width: 56px;
	height: 56px;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	border: 2px solid #FFF;
}

ol.comment-list li.comment .comment-author .fn {
	display: inline-block;
	color: #000000;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 500;
	font-style: normal;
}

ol.comment-list li.comment .comment-author .says {
	display: none;
	color: #999999;
	font-weight: 600;
}

ol.comment-list li.comment .comment-meta {
	color: #8d8d8d;
	text-transform: uppercase;
	margin-bottom: 15px;
}

ol.comment-list li.comment .comment-meta a {
	color: #8d8d8d;
}

ol.comment-list li.comment .comment-meta a {
	color: #9d9d9d;
	font-size: 13px;
}

ol.comment-list li.comment p {
	margin: 0 0 5px;
	font-size: 14px;
	font-weight: 400;
	line-height: 22px;
	color: #505050;
}

ol.comment-list li.comment .reply a {
	position: absolute;
	top: 10px;
	right: 10px;
	margin-top: -5px;
	color: #B0B0B0 !important;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
}

ol.comment-list li .children {
	list-style: none;
	margin-left: 80px;
}

ol.comment-list li .children li {
	padding: 0;
}

@media only screen and (max-width: 767px) {
	.comments-area .padding-30 {
		padding: 15px;
	}

	ol.comment-list li.comment .comment-body {
		margin-bottom: 30px;
		margin-left: 70px;
	}

	ol.comment-list li.comment .comment-author .avatar {
		left: -75px;
		height: 60px;
		width: 60px;
	}

	ol.comment-list li .children {
		margin-left: 20px;
	}

	ol.comment-list li.comment .reply a {
		position: static;
	}
}

@media only screen and (max-width: 480px) {
	ol.comment-list li.comment .comment-body {
		margin-left: 52px;
	}

	ol.comment-list li.comment .comment-author .avatar {
		left: -55px;
		top: 12px;
		width: 40px;
		height: 40px;
	}
}

/*= comment form = */
.comment-respond {
	padding: 30px 30px;
	background: #f6f7f8;
}

.comment-respond .comment-reply-title {
	text-transform: uppercase;
	font-size: 20px;
}

.comment-respond .comment-reply-title {
	font-size: 20px;
	font-weight: 500;
}

.comments-area .comment-form {
	margin: 0 -15px;
}

.comments-area .comment-form .comment-notes {
	display: none;
}

.comments-area .comment-form p {
	width: 33.333%;
	float: left;
	padding: 0 15px;
	margin-bottom: 30px;
	position: relative;
}

.comments-area .comment-form p.form-allowed-tags {
	width: 100%;
}

ol.comment-list li.comment .comment-respond .comment-form p {
	padding: 0 15px !important;
}

.comments-area .comment-form p label {
	display: none;
	line-height: 18px;
	margin-bottom: 10px;
}

.comments-area .comment-form p input[type="text"],
.comments-area .comment-form p textarea {
	width: 100%;
	height: 40px;
	line-height: 6px 12px;
	padding: 10px 10px 10px 0;
	border: 1px solid #000;
	border-radius: 0;
	-webkit-border-radius: 0;
	text-transform: capitalize;
	border-width: 0 0 2px 0;
	color: #000000;
	background: transparent;
	font-size: 15px;
}

.comments-area .comment-form p.comment-form-comment {
	width: 100%;
	display: block;
	clear: both;
}

.comments-area .comment-form p textarea {
	height: 120px;
}

.comments-area .comment-form p.form-submit {
	clear: both;
	float: none;
	width: 100%;
	margin: 0;
}

.comments-area .comment-form p input[type="submit"] {
	background-color: #EFBB20;
	border: none;
	border-radius: 0;
	border-style: solid;
	border-width: 0;
	color: #fff;
	display: inline-block;
	padding: 10px 20px;
	text-transform: uppercase;
	font-weight: 400;
	font-size: 14px;
	padding: 8px 30px;
}

.comments-area .comment-form p input[type="submit"]:hover,
.comments-area .comment-form p input[type="submit"]:focus,
.comments-area .comment-form p input[type="submit"]:active {
	background-color: #ff7800;
	border-color: #6ab33e;
	color: #fff;
}

@media only screen and (max-width: 767px) {
	.comments-area .comment-form p {
		width: 100%;
		float: none;
		margin-bottom: 20px;
	}

	.comment-respond {
		padding: 20px;
	}
}

/*========================
	10. TESTIMONIALS
=========================*/
.testimonial-pic {
	background: #FFF;
	width: 100px;
	height: 100px;
	position: relative;
	display: inline-block;
	border: 5px solid #FFF;
}

.testimonial-pic.radius {
	border-radius: 100%;
	-webkit-border-radius: 100%;
}

.testimonial-pic.radius img {
	width: 100%;
	height: 100;
	border-radius: 100%;
	-webkit-border-radius: 100%;
}

.testimonial-pic.shadow {
	-webkit-box-shadow: 2px 3px 6px -3px rgba(0, 0, 0, 0.35);
	-moz-box-shadow: 2px 3px 6px -3px rgba(0, 0, 0, 0.35);
	box-shadow: 2px 3px 6px -3px rgba(0, 0, 0, 0.35);
}

.testimonial-text {
	padding: 15px;
	position: relative;
	font-size: 15px;
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
}

.testimonial-detail {
	padding: 5px;
}

.testimonial-name {
	font-family: montserrat;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
}

.testimonial-position {
	font-family: montserrat;
	font-size: 12px;
	font-style: inherit;
	text-transform: uppercase;
}

.testimonial-name,
.testimonial-position {
	display: block;
}

.testimonial-text p:last-child {
	margin: 0;
}

/*========================
	11. COUNTERUP
=========================*/
.counter {
	position: relative;
}

.counter-style-1 .counter {
	font-size: 50px;
	font-weight: 700;
}

.counter-style-1 .counter-text {
	font-size: 16px;
	font-weight: 500;
}

.counter-style-1 .icon {
	font-size: 45px;
	margin-right: 10px;
}

/**********************************/
/********** Footer CSS ************/
/**********************************/
.footer {
	position: relative;
	padding: 40px 0 0 0;
	background: #ffffff;
	font-family: "Fraunces", serif !important;
	font-weight: 900;
	line-height: 1.25;
	color: #000;
}

.footer .footer-list {
	position: relative;
	width: 100%;
	margin-bottom: 60px;

}

.footer-list li {
	color: #000;
	margin-bottom: 12px;
	margin: 0;
	padding: 5px;
	white-space: nowrap;
	display: block;
	line-height: 23px;
}

.footer .footer-list .title {
	color: #040303;
	font-size: 18px;
	letter-spacing: 1px;
	padding-bottom: 10px;
	margin-bottom: 25px;
	border-bottom: 3px double #131212;
}

.footer .footer-list p {
	color: #090909;


}

.footer .footer-list ul {
	margin: 0;
	padding: 0;
	list-style: none !important;
}

.footer .footer-widget ul li {
	margin-bottom: 12px;
}

.footer .footer-widget ul li:last-child {
	margin-bottom: 0;
}

.footer .footer-widget ul li a {
	color: #060606;
	white-space: nowrap;
	display: block;
	line-height: 23px;
}

.footer .footer-widget ul li a::before {
	content: '\f061';
	font-family: Georgia, 'Times New Roman', Times, serif;
	font-weight: 900;
	padding-right: 5px;
}

.footer .footer-widget ul li a:hover {
	padding-left: 10px;
	color: #FF6F61;
}

.footer .contact-info p {
	margin-bottom: 10px;
	color: #080808;
	font-size: 16px;
}

.footer .contact-info p i {
	color: #090808;
	margin-right: 5px;
}

.footer .social {
	position: relative;
	width: 100%;
}



.footer .social a i {
	color: #111111;
	right: 0;
}

.footer .social a:hover {
	background: #FF6F61;
}

.footer .social a:hover i {
	color: #ffffff;
}

.footer .newsletter {
	position: relative;
	width: 100%;
}

.footer .newsletter form {
	position: relative;
	width: 100%;
}

.footer .newsletter input {
	width: 100%;
	height: 35px;
	padding: 0 15px;
	border: 1px solid #060606;
	border-radius: 4px;
}

#footer-btn {
	position: absolute;
	width: 80px;
	height: 35px;
	top: 10;
	right: 10;
	padding: 0 15px;
	border: none;
	background: #111111;
	color: #ffffff;
	font-size: 14px;
	border: 1px solid #ffffff;
	border-radius: 0 4px 4px 0;
}

.footer h4 {
	font-size: 18px;
	margin-bottom: 20px;
	color: #FF6F61;
}

.footer .newsletter .btn:hover {
	background: #FF6F61;
}

.footer .newsletter input:focus,
.footer .newsletter .btn:focus {
	box-shadow: none;
}

/**********************************/
/******** Footer Menu CSS *********/
/**********************************/
.footer-menu {
	position: relative;
	background: #111111;
}

.footer-menu .container {
	padding: 15px 0;
	border-top: 1px solid #000000;
}

.footer-menu .f-menu {
	font-size: 0;
	text-align: center;
}

.footer-menu .f-menu a {
	color: #ffffff;
	font-size: 13px;
	margin-right: 15px;
	padding-right: 15px;
	border-right: 1px solid #ffffff;
}

.footer-menu .f-menu a:hover {
	color: #FF6F61;
}

.footer-menu .f-menu a:last-child {
	margin-right: 0;
	padding-right: 0;
	border-right: none;
}


/**********************************/
/******** Footer Bottom CSS *******/
/**********************************/
.footer-bottom {
	position: relative;
	padding: 15px 0;
	background: #cc5b5b;
}

.footer-bottom .copyright {
	text-align: left;
}

.footer-bottom .template-by {
	text-align: right;
}

.footer-bottom .copyright p,
.footer-bottom .template-by p {
	color: #ffffff;
	font-weight: 400;
	margin: 0;
}

.footer-bottom .copyright p a,
.footer-bottom .template-by p a {
	font-weight: 600;
}

.footer-bottom .copyright p a:hover,
.footer-bottom .template-by p a:hover {
	color: #ffffff;
}

@media (max-width: 768.98px) {

	.footer-bottom .copyright,
	.footer-bottom .template-by {
		text-align: center;
	}
}

/*========================
	13. INNER CONTENT CSS
=========================*/
/* About Section */
.service-info-bx {
	margin-top: -215px;
}

.service-bx {
	box-shadow: 0 0 25px 0 rgba(29, 25, 0, 0.25);
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	position: relative;
	background-color: #fff;
}

.service-bx [class*="feature-"] {
	box-shadow: 0 0 25px 0 rgba(29, 25, 0, 0.15);
	margin-top: -30px;
	position: relative;
	top: -40px;
	margin-bottom: -20px;
}

.service-bx .info-bx {
	padding: 30px;
}

.service-bx:hover {
	transform: translateY(-15px);
	-moz-transform: translateY(-15px);
	-webkit-transform: translateY(-15px);
	-ms-transform: translateY(-15px);
	-o-transform: translateY(-15px);
}

/* Recent News */
.recent-news {
	box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .1);
	background: #fff;
}

.recent-news.blog-lg {
	box-shadow: none;
}

.recent-news.blog-lg .info-bx {
	border: 0;
	padding: 0px 0 0 0;
}

.blog-post .post-title,
.recent-news .post-title {
	font-size: 20px;
	margin-top: 0px;
	margin-bottom: 6px;
	font-family: "Fraunces", serif;
	line-height: 34px;
}

.recent-news .info-bx {
	padding: 10px;
	border: 1px solid #0e0d0d;
}

.comments-bx {
	margin-left: auto;
	color: #000;
}

.comments-bx i {
	margin-right: 5px;
}

.post-extra {
	display: flex;
	border-top: 1px solid #EEEEEE;
	padding-top: 20px;
	margin-top: 20px;
}

.media-post {
	border-bottom: 1px solid #EEEEEE;
	padding-bottom: 10px;
	margin-bottom: 15px;
}

.media-post,
.post-tag {
	margin-bottom: 5px;
}

.media-post li {
	list-style: none;
	display: inline-block;
	font-size: 13px;
	text-transform: capitalize;
	font-family: "Fraunces", serif;
	margin-right: 5px;
}

.media-post li a {
	color: var(--primary);
	vertical-align: middle;
}

.media-post li a i {
	margin-right: 5px;
	font-size: 13px;
}

.post-tag li {
	display: inline-block;
	font-size: 14px;
	margin-bottom: 5px;
	list-style: none;
}

.post-title a {
	color: #061538;
}

.blog-post p,
.recent-news p {
	margin-bottom: 10px;
	font-size: 17px;
	color: #242424;
	font-family: "Fraunces", serif;
	margin-left: 15%;
	font-weight: 500;
}

/* Popular Courses */
.cours-bx .info-bx {
	padding: 15px;
	font-size: 13px;
}

.cours-bx .action-box .btn {
	border-radius: 0;
	position: absolute;
	bottom: 0;
	left: -50%;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.cours-bx:hover .action-box .btn {
	left: 0;
}

.cours-bx {
	box-shadow: 0 0 25px 0 rgba(29, 25, 0, 0.25);
	border-radius: 4px;
	overflow: hidden;
}

.cours-more-info {
	border-top: 1px solid #e6e6e6;
	display: flex;
	margin: 0;
}

.cours-star {
	margin: 0;
	padding: 0;
}

.cours-star li {
	display: inline-block;
	list-style: none;
	color: #d1d1d1;
	font-size: 13px;
}

.cours-star li.active {
	color: var(--primary);
}

.cours-more-info .price,
.cours-more-info .review {
	width: 50%;
	padding: 5px 15px;
}

.cours-more-info .review span {
	font-size: 12px;
	color: #3c3c3c;
}

.cours-more-info .price del {
	font-size: 12px;
	font-weight: 500;
	color: #8e8e8e;
}

.cours-more-info .review {
	border-right: 1px solid #e6e6e6;
}

.cours-more-info .price {
	text-align: right;
}

.cours-more-info .price h5 {
	margin-bottom: 0;
}

.courses-carousel {
	margin-top: -15px;
}

.courses-carousel .item {
	padding: 15px;
}

.courses-carousel .owl-nav {
	position: absolute;
	top: -70px;
	right: 10px;
}

.testimonial-carousel .owl-nav {
	position: absolute;
	top: -80px;
	right: -5px;
}

.recent-news-carousel .owl-nav {
	position: absolute;
	top: -80px;
	right: -5px;
}

.courses-carousel .owl-nav .owl-next,
.courses-carousel .owl-nav .owl-prev,
.recent-news-carousel .owl-nav .owl-next,
.recent-news-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next,
.testimonial-carousel .owl-nav .owl-prev {
	background-color: var(--primary);
	margin: 0 5px !important;
}

.courses-carousel .owl-nav .owl-next:hover,
.courses-carousel .owl-nav .owl-prev:hover,
.recent-news-carousel .owl-nav .owl-next:hover,
.recent-news-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover,
.testimonial-carousel .owl-nav .owl-prev:hover {
	background-color: var(--sc-primary);
}

/* Online Cours */
.online-cours h2 {
	font-size: 25px;
	margin-top: 0;
	margin-bottom: 10px;
}

.online-cours h5 {
	font-weight: 400;
	font-size: 24px;
	margin-bottom: 40px;
}

.cours-search {
	padding: 10px;
	background-color: rgba(255, 255, 255, 0.3);
	border-radius: 4px;
	max-width: 700px;
	margin: auto;
	margin-bottom: 50px;
}

.cours-search .form-control {
	border: 0;
	height: 50px;
	border-radius: 4px !important;
	padding: 10px 20px;
	font-size: 16px;
}

.cours-search .input-group-append {
	margin-left: 10px;
}

.cours-search .input-group-append .btn {
	border-radius: 4px;
}

.cours-search-bx {
	text-align: center;
	border-radius: 4px;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background-color: rgba(255, 255, 255, 0.15);
	padding: 20px 20px 15px 20px;
}

.cours-search-bx h3 {
	color: #fff;
	font-weight: 300;
	font-size: 45px;
}

.cours-search-bx i {
	margin-right: 10px;
	font-size: 40px;
}

/* heading-bx */
.heading-bx.left .title-head {
	margin-bottom: 10px;
	margin-top: 0;
	line-height: 32px;
	padding-left: 10px;
	border-left: 5px solid var(--primary);
}

.heading-bx.left p {
	max-width: 500px;
	margin-bottom: 0;
}

.title-head span {
	font-weight: 400;
}

/* section space */
.section-sp1 {
	padding-top: 80px;
	padding-bottom: 50px;
}

.section-sp2 {
	padding-top: 80px;
	padding-bottom: 80px;
}

.section-sp3 {
	padding-top: 80px;
	padding-bottom: 0;
}

.section-sp4 {
	padding-top: 50px;
	padding-bottom: 50px;
}

/*   */
.ovpr-dark:after {
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ff5e14+0,ff8e14+100 */
	background: #ff5e14;
	/* Old browsers */
	background: -moz-linear-gradient(45deg, #ff5e14 0%, #ff8e14 100%);
	/* FF3.6-15 */
	background: -webkit-linear-gradient(45deg, #ff5e14 0%, #ff8e14 100%);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg, #ff5e14 0%, #ff8e14 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5e14', endColorstr='#ff8e14', GradientType=1);
	/* IE6-9 fallback on horizontal gradient */
}

/* Event Box */
.event-bx {
	box-shadow: 0 0 15px 0 rgba(29, 25, 0, 0.25);
	font-family: "Fraunces", serif;
	font-weight: 900;
	line-height: 1.25;
	color: #000;
}

.upcoming-event-carousel {
	margin-top: -15px;
}

.upcoming-event-carousel .item {
	padding: 15px;
}

.event-bx .info-bx {
	padding: 5px;
}

.event-time {
	color: #fff;
	background-color: var(--primary);
	font-size: 1.125rem;
	line-height: 1.4;
	text-align: center;
	padding: 15px 10px;
	border-radius: 4px;
	margin-right: 20px;
}

.event-time .event-date {

	font-family: "Fraunces", serif;
	font-size: 1.125rem;
	line-height: 1.4;
	font-weight: 700;
	font-size: 1.125rem;
	line-height: 1.4;
}

.event-info .event-title {
	font-family: "Fraunces", serif;
	font-weight: 900;
	margin-bottom: 5px;
	font-size: 24px;
}

.event-info .media-post {
	margin-bottom: 10px;
	font-size: 24;
}

.event-info .media-post li a {
	text-transform: capitalize;
	font-size: 14px;
	color: #757575;
}

.event-info p {
	color: #454545;
	margin-bottom: 0;
	font-family: "Fraunces", serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 24px;
}

.upcoming-event-carousel .owl-item {
	box-shadow: none;
	transform: scale(0.9);
	transition: all 0.5s;
	opacity: 0.;
}

.upcoming-event-carousel .owl-item .item {
	padding: 0;
}

.upcoming-event-carousel .owl-item.active.center .item {
	padding: 15px;
}

.upcoming-event-carousel .owl-item.active.center {
	transform: scale(1);
	transition: all 0.5s;
	opacity: 1;
}

.our-story {
	position: relative;
	z-index: 1;
}

.our-story:after {
	width: 50%;
	content: "";
	height: 100%;
	position: absolute;
	left: 50%;
	background-color: #fff;
	top: 0;
	z-index: -1;
}

.video-bx {
	position: relative;
}

.video-bx .video {
	width: 80px;
	height: 80x;
	border-radius: 80px;
	line-height: 80px;
	text-align: center;
	position: absolute;
	left: 50%;
	top: 50%;
	background: #fff;
	color: #000;
	font-size: 24px;
	transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
}

.video-bx .video:hover {
	transform: translate(-50%, -50%) ro;
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%) rotate(360deg);
	-webkit-transform: translate(-50%, -50%) rotate(360deg);
	-ms-transform: translate(-50%, -50%) rotate(360deg);
	-o-transform: translate(-50%, -50%) rotate(360deg);
}

.counter-style-1 span {
	font-size: 45px;
	font-family: rubik;
	font-weight: 700;
}

.counter-style-1 .counter-text {
	color: #606060;
	font-size: 16px;
	text-transform: uppercase;
}

.join-content-bx {
	max-width: 800px;
	margin: auto;
}

.join-content-bx h2 {
	font-size: 45px;
	line-height: 65px;
	margin: 0px 0 20px 0;
}

.join-content-bx h4 {
	font-weight: 400;
	font-size: 30px;
}

.join-content-bx p {
	line-height: 24px;
	opacity: 0.8;
}

.choose-bx .choose-bx-in {
	margin-top: -20px;
}

/* Contact */
.contact-info-bx {
	padding: 30px;
}

.contact-info-bx .widget_getintuch i {
	font-size: 18px;
	line-height: 16px;
}

.contact-social-bx li a {
	width: 40px;
	padding: 0;
	height: 40px;
	line-height: 38px;
}

.contact-info-bx .widget_getintuch {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-top: 20px;
	padding-bottom: 0;
	margin-bottom: 20px;
}

.courses-search-bx .input-group,
.contact-bx .input-group {
	display: block;
	position: relative;
}

.courses-search-bx .input-group .form-control,
.contact-bx .input-group .form-control,
.courses-search-bx .input-group label,
.contact-bx .input-group label {
	width: 100%;
}

.courses-search-bx .input-group label,
.contact-bx .input-group label {
	font-size: 14px;
	font-weight: 400;
	color: #606060;
	position: absolute;
	top: 10px;
	left: 0;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
}

.courses-search-bx .focused .input-group label,
.contact-bx .focused .input-group label {
	top: -8px;
	font-size: 10px;
	color: var(--primary);
}

.contact-bx .input-group textarea.form-control {
	height: 120px;
}

.courses-search-bx .input-group .form-control,
.contact-bx .input-group .form-control {
	border-width: 0 0 1px 0;
	background-color: rgba(0, 0, 0, 0);
	padding: 10px 0;
}

.contact-bx .heading-bx {
	margin-bottom: 30px;
}

.courses-search-bx .input-group .form-control {
	border-width: 0 0 2px 0;
	border-color: #E0E0E0;
}

.faq-bx .panel {
	border: 1px solid #D0D0D0;
	padding: 12px 0px 12px 20px;
	border-radius: 4px;
	margin-bottom: 4px;
}

.faq-bx .acod-title a {
	padding: 0px 50px 0px 0px;
	border: 0;
	color: #000;
}

.faq-bx .acod-content {
	margin: 10px 0 0 0;
}

.faq-bx .acod-body {
	border: 0;
}

/* Gallery Box */
.portfolio-bx {
	margin-bottom: 30px;
}

.portfolio-bx .portfolio-info-bx p {
	color: #fff;
	font-size: 13px;
	margin-bottom: 0;
}

.portfolio-bx .portfolio-info-bx h4 {
	margin: 0;
	font-size: 18px;
}

.portfolio-bx .portfolio-info-bx h4 a {
	color: #fff;
}

.portfolio-bx .portfolio-info-bx {
	bottom: -100%;
	position: absolute;
	width: 100%;
	padding: 10px 20px;
	text-align: left;
	transition: all 0.5s;
}

.portfolio-bx .overlay-icon a {
	font-size: 18px;
}

.portfolio-bx .overlay-icon a i {
	background: rgba(0, 0, 0, 0);
	color: #fff;
}

.portfolio-bx:hover .portfolio-info-bx {
	bottom: 0;
}

.portfolio-bx:hover .media-ov2:before,
.portfolio-bx:hover .media-ov2:after {
	opacity: 0.7;
}

.widget-courses .ttr-post-meta .price del,
.widget-courses .ttr-post-meta .price h5 {
	display: inline-block;
	font-weight: 400;
}

.widget-courses .ttr-post-meta .price del {
	font-size: 10px;
}

.widget-courses .ttr-post-meta .price h5 {
	font-size: 13px;
	font-weight: 500;
	margin: 0;
}

.widget-courses .ttr-post-meta .price .free {
	color: #1fd36b;
}

.widget-courses .ttr-post-meta .review {
	font-size: 13px;
	font-weight: 400;
}

/* course detail bx */
.course-detail-bx {
	padding: 20px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 100px;
}

.course-price {
	text-align: center;
	padding: 10px 0 20px;
}

.course-price .price,
.course-price del {
	display: inline-block;
}

.course-price .price {
	font-size: 35px;
	margin: 0;
}

.teacher-info {
	display: flex;
	align-items: center;
}

.course-price del {
	margin: 0;
}

.teacher-bx {
	border: 1px solid rgba(0, 0, 0, 0.1);
	padding: 10px 20px;
	margin: 20px -20px 0;
	border-width: 1px 0 1px 0;
}

.teacher-name h5 {
	font-size: 16px;
	margin-bottom: 0;
	line-height: 18px;
	font-weight: 400;
	color: #000;
}

.teacher-thumb {
	width: 55px;
	height: 55px;
	overflow: hidden;
	border-radius: 55px;
	margin-right: 15px;
}

.teacher-name span {
	font-size: 13px;
	color: #6a6a6a;
}

.course-detail-bx .cours-more-info .price span {
	font-size: 12px;
	color: #3c3c3c;
}

.course-detail-bx .cours-more-info .price h5 {
	font-size: 16px;
	font-weight: 400;
}

.course-detail-bx .cours-more-info {
	border-bottom: 1px solid #e6e6e6;
	display: flex;
	margin: 0;
	border-top: 0;
	margin: 0 -20px;
}

.course-detail-bx .cours-more-info .price,
.cours-more-info .review {
	padding: 8px 20px;
}

.course-info-list {
	padding-top: 20px;
	margin: 0 -20px;
}

.course-info-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.course-info-list ul li {
	display: block;
	width: 100%;
}

.course-info-list ul li a {
	padding: 8px 20px;
	font-size: 15px;
	color: #808080;
	display: flex;
	align-items: center;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
}

.course-info-list ul li a.active,
.course-info-list ul li a:hover {
	color: #fff;
	background: var(--primary);
}

.course-info-list ul li a i {
	margin-right: 10px;
	font-size: 20px;
}

.courses-post .post-title {
	font-size: 35px;
	font-weight: 500;
}

.course-features {
	margin: 0;
	margin-bottom: 30px;
	padding: 0;
	list-style: none;
	position: sticky;
	top: 80px;
}

.course-features li {
	padding: 15px 20px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	display: flex;
	font-size: 14px;
	align-items: center;
}

.course-features li i {
	margin-right: 10px;
	font-size: 16px;
	color: var(--primary);
}

.course-features li .label {
	width: 100%;
}

.course-features li .value {
	width: 40%;
}

.curriculum-list ul li,
.curriculum-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.curriculum-list ul li {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding: 10px 20px;
	font-size: 15px;
}

.curriculum-list>li {
	margin-bottom: 30px;
}

.curriculum-list h5 {
	font-size: 14px;
	font-weight: 500;
	color: var(--primary);
	margin-bottom: 0px;
	text-transform: uppercase;
}

.instructor-bx {
	display: flex;
	align-items: start;
	border: 1px solid rgba(0, 0, 0, 0.1);
	padding: 20px 20px;
	margin-bottom: 30px;
}

.instructor-author {
	width: 85px;
	height: 85px;
	overflow: hidden;
	border-radius: 55px;
	margin-right: 15px;
	min-width: 85px;
}

.instructor-info h6 {
	margin-bottom: 0;
}

.instructor-info p,
.instructor-info span {
	font-size: 14px;
	line-height: 22px;
}

.review-bx {
	display: flex;
	align-items: center;
	padding: 20px 20px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	margin-bottom: 30px;
}

.all-review {
	width: 25%;
	text-align: center;
	margin-right: 20px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	padding: 10px 10px;
}

.all-review .rating-type {
	margin: 0;
	font-size: 35px;
	line-height: 40px;
}

.all-review span {
	font-size: 14px;
}

.review-bar {
	width: 75%;
}

.bar-bx {
	display: flex;
	width: 100%;
	align-items: center;
	font-size: 14px;
	font-weight: 400;
	color: #000;
}

.bar-bx .middle {
	width: 80%;
}

.bar-bx .side {
	width: 10%;
}

.bar-bx .side.right {
	text-align: right;
}

.bar-container {
	width: 100%;
	background-color: #f1f1f1;
	text-align: center;
	color: white;
}

.bar-container [class*="bar"] {
	height: 8px;
	background: var(--primary);
}

/* MemberShip */
.pricingtable-inner {
	text-align: center;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 0 15px 0 rgba(17, 0, 34, 0.1);
}

.pricingtable-features,
.pricingtable-features li,
.pricingtable-footer {
	border: 0;
}

.pricingtable-features li {
	color: #353535;
	font-size: 14px;
	font-weight: 500;
}

.pricingtable-bx {
	font-size: 120px;
	font-weight: 300;
	line-height: 90px;
	font-family: rubik;
	color: #fff;
}

.priceing-doller {
	vertical-align: top;
	font-size: 30px;
	line-height: 30px;
	color: #fff;
}

.pricingtable-type {
	color: #fff;
}

.pricingtable-type::before {
	content: "/";
	margin-right: 10px;
	color: #fff;
}

.pricingtable-price {
	padding: 20px 20px;
	background-color: transparent;
	border: 0px solid #E9E9E9;
}

.pricingtable-main {
	background: #ff5e14;
	/* Old browsers */
	background: -moz-linear-gradient(45deg, #ff5e14 0%, #ff8e14 100%);
	/* FF3.6-15 */
	background: -webkit-linear-gradient(45deg, #ff5e14 0%, #ff8e14 100%);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg, #ff5e14 0%, #ff8e14 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5e14', endColorstr='#ff8e14', GradientType=1);
	/* IE6-9 fallback on horizontal gradient */
}

.pricingtable-title {
	background-color: rgba(255, 255, 255, 0.2);
	padding: 10px 10px 5px 10px;
}

.pricingtable-title h2 {
	font-size: 22px;
	line-height: 26px;
	font-weight: 600;
}

.pricingtable-title p {
	font-size: 13px;
	line-height: 20px;
	font-weight: 500;
}

.pricingtable-features li:nth-child(2n) {
	background-color: rgba(0, 0, 0, 0.1);
}

.pricingtable-footer {
	background-color: rgba(222, 29, 29, 0.1);
}

.pricingtable-footer .btn {
	font-size: 16px;
	padding: 10px 30px;
}

/* Profile Box */
.profile-bx {
	border: 1px solid #e9e9e9;
	position: sticky;
	top: 100px;
}

.user-profile-thumb {
	width: 100px;
	height: 100px;
	overflow: hidden;
	border-radius: 100px;
	border: 5px solid #fff;
	box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
	margin: 25px auto 15px;
}

.profile-info {
	margin-bottom: 15px;
}

.profile-info h4 {
	font-size: 18px;
	margin-bottom: 0;
}

.profile-info span {
	font-size: 14px;
	color: #717171;
}

.profile-social ul li a {
	width: 35px;
	height: 35px;
	display: block;
	text-align: center;
	border: 1px solid #e9e9e9;
	line-height: 34px;
	border-radius: 40px;
	color: #000;
	font-size: 14px;
}

.profile-social {
	border-bottom: 1px solid #e9e9e9;
	padding-bottom: 15px;
}

.profile-content-bx {
	border: 1px solid #e9e9e9;
}

.profile-tabnav {
	margin: 20px 0;
}

.profile-tabnav .nav {
	border: 0;
}

.profile-tabnav .nav li {
	display: block;
	width: 100%;
}

.profile-tabnav .nav li a {
	border: 0;
	color: #8a8a8a;
	font-size: 15px;
	text-align: left;
	padding: 10px 30px;
}

.profile-tabnav .nav li a.active {
	background-color: var(--primary);
	color: #fff;
	border-radius: 0;
}

.profile-tabnav .nav li a i {
	margin-right: 10px;
}

.profile-head h3 {
	font-size: 20px;
	text-transform: uppercase;
	margin-bottom: 0;
	font-weight: 500;
}

.profile-head {
	display: flex;
	padding: 10px 15px 10px 30px;
	border-bottom: 1px solid #e9e9e9;
	align-items: center;
}

.profile-head .feature-filters {
	margin-bottom: 0;
}

.courses-filter .action-card {
	margin-bottom: 30px;
}

.courses-filter {
	padding: 30px 30px 0 30px;
}

.profile-head .feature-filters.style1 li a {
	font-weight: 400;
	font-size: 15px;
}

.edit-profile h3 {
	font-size: 18px;
	font-weight: 400;
	margin: 0;
}

.edit-profile .help {
	font-size: 12px;
	line-height: 18px;

	display: block;
}

.edit-profile .col-form-label {
	font-size: 14px;
	font-weight: 400;
}

.edit-profile {
	padding: 30px;
}

.edit-profile .form-group {
	margin-bottom: 15px;
}

/* My Account */
.account-form {
	display: flex;
	width: 100%;
	position: relative;
}

.account-head {
	position: sticky;
	left: 0;
	top: 0;
	z-index: 1;
	width: 500px;
	min-width: 500px;
	height: 100vh;
	background-position: center;
	text-align: center;
	align-items: center;
	display: flex;
	vertical-align: middle;
}

.account-head a {
	display: block;
	width: 100%;
}

.account-head:after {
	opacity: 0.9;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #ff5e14;
	/* Old browsers */
	background: -moz-linear-gradient(45deg, #ff5e14 0%, #ff8e14 100%);
	/* FF3.6-15 */
	background: -webkit-linear-gradient(45deg, #ff5e14 0%, #ff8e14 100%);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg, #ff5e14 0%, #ff8e14 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5e14', endColorstr='#ff8e14', GradientType=1);
	/* IE6-9 fallback on horizontal gradient */
}

.account-form-inner {
	width: 100%;
	align-self: center;
}

.account-container {
	max-width: 400px;
	margin: auto;
	padding: 30px 0;
}

.custom-control-label:before {
	width: 20px;
	height: 20px;
	background-color: transparent;
	border: 2px solid var(--primary);
	top: 2px;
}

.custom-control-label:after {
	width: 20px;
	height: 20px;
	top: 2px;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
	background-color: var(--primary);
}

.account-container .form-forget {
	display: flex;
}

.account-container .form-forget .custom-control-label {
	font-weight: 400;
}

.account-container .btn.button-md {
	padding: 12px 40px;
}

.account-container .form-control {
	border-color: rgba(0, 0, 0, 0.2);
}

.account-container .facebook i,
.account-container .google-plus i {
	border-right: 1px solid #fff;
	padding-right: 10px;
	margin-right: 10px;
}

.account-form .heading-bx p a {
	color: var(--primary);
	text-decoration: underline;
	padding-bottom: 0px;
}

/* .g-recaptcha {
  transform-origin: left top;
} */
/* Google Recaptcha */

.g-recaptcha,
#rc-imageselect {
	transform: scale(0.99);
	-webkit-transform: scale(0.99);
	-moz-transform: scale(0.99);
	-o-transform: scale(0.99);

	transform-origin: 0 0;
	-o-transform-origin: 0 0;
	-moz-transform-origin: 0 0;
	-webkit-transform-origin: 0 0;
}

@media screen and (max-width: 575px) {

	#rc-imageselect,
	.g-recaptcha {
		transform: scale(0.77);
		-moz-transform: scale(0.77);
		-o-transform: scale(0.77);
		-webkit-transform: scale(0.77);

		transform-origin: 0 0;
		-moz-transform-origin: 0 0;
		-o-transform-origin: 0 0;
		-webkit-transform-origin: 0 0;

	}
}

.recaptcha-box {
	height: 60px;
}

.g-recaptcha>div {
	width: 250px !important;
}

/* Google Recaptcha */
/* error */
.error-page {
	text-align: center;
}

.error-title {
	font-size: 140px;
	line-height: 140px;
	margin-bottom: 0;
}

.error-page h3 {
	font-size: 50px;
	opacity: 0.2;
}

.error-page h5 {
	font-size: 22px;
	opacity: 1;
	font-weight: 500;
	line-height: 35px;
}

.error-page p {
	font-size: 16px;
	line-height: 26px;
}

.why-chooses-bx .faq-bx {
	max-width: 700px;
	margin: auto;
}

.why-chooses-bx .faq-bx .panel {
	background: #fff;
	margin-bottom: 6px;
}

@media only screen and (max-width: 1200px) {
	.cours-more-info .review {
		padding: 8px 12px;
	}

	.service-info-bx .action-box {
		margin-top: 40px;
	}

	.account-head {
		width: 350px;
		min-width: 350px;
	}

	.service-bx h4 {
		font-size: 20px;
	}

	.rev-btn {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}

	.pricingtable-bx {
		font-size: 80px;
	}
}

@media only screen and (max-width: 991px) {
	.event-time .event-date {
		font-size: 30px;
		line-height: 30px;
	}

	.event-month {
		font-size: 12px;
	}

	.event-time {
		padding: 10px 8px;
	}

	.event-bx .info-bx {
		padding: 20px;
	}

	.event-info .event-title {
		font-size: 20px;
	}

	.upcoming-event-carousel.owl-btn-1 .owl-prev,
	.upcoming-event-carousel.owl-btn-1 .owl-next {
		margin: 0 50px !important;
	}

	.service-info-bx {
		margin-top: 0px;
		padding-top: 80px;
	}

	.service-bx .info-bx {
		padding: 10px 10px 20px 10px;
	}

	.service-bx .info-bx h4 {
		font-size: 16px;
	}

	.service-bx .feature-box-sm {
		width: 60px;
		height: 60px;
		line-height: 60px;
		top: -30px;
	}

	.service-bx .feature-box-sm i {
		font-size: 20px;
	}

	.our-story::after {
		content: unset;
	}

	.bar-bx .side {
		width: 20%;
	}

	.service-info-bx .action-box {
		margin-top: 0;
	}

	.account-head {
		width: 100%;
		min-width: 100%;
		height: 200px;
	}

	.account-form {
		display: block;
	}

	.account-container {
		padding: 50px 20px;
	}
}

@media only screen and (max-width: 767px) {
	.courses-carousel .owl-nav {
		position: unset;
		top: auto;
		right: auto;
		bottom: 0;
		text-align: center;
		margin-top: 20px;
	}

	.section-sp1 {
		padding-top: 50px;
		padding-bottom: 20px;
	}

	.section-sp2 {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.upcoming-event-carousel.owl-btn-1 .owl-prev,
	.upcoming-event-carousel.owl-btn-1 .owl-next {
		margin: 0 0 !important;
	}

	.testimonial-carousel .owl-nav,
	.recent-news-carousel .owl-nav {
		position: unset;
		top: auto;
		right: auto;
		text-align: center;
		margin-top: 10px;
	}

	.testimonial-carousel .owl-nav {
		margin-top: 30px;
	}

	.info-bx {
		font-size: 16px;
	}

	.upcoming-event-carousel.owl-btn-1 .owl-prev,
	.upcoming-event-carousel.owl-btn-1 .owl-next {
		width: 40px;
		height: 40px;
		line-height: 40px;
		font-size: 14px;
		position: unset;
		box-shadow: none;
		margin: 0 5px !important;
		transform: translateY(0);
		-o-transform: translateY(0);
		-moz-transform: translateY(0);
		-webkit-transform: translateY(0);
	}

	.upcoming-event-carousel.owl-btn-center-lr .owl-nav {
		text-align: center;
		margin-top: 15px;
	}

	.online-cours h2 {
		font-size: 30px;
		margin-bottom: 10px;
	}

	.online-cours h5 {
		font-size: 18px;
		margin-bottom: 25px;
	}

	.cours-search {
		margin-bottom: 30px;
	}

	.service-info-bx {
		padding-top: 50px;
	}

	.service-bx {
		margin-bottom: 30px;
	}

	.service-bx.m-b0 {
		margin-bottom: 0;
	}

	.event-time {
		margin-right: 0;
		border-radius: 0;
		position: absolute;
		top: -68px;
		left: 0;
	}

	.rev-btn {
		padding: 10px 10px !important;
		font-size: 12px !important;
		background-color: #000;
	}

	/* Rev Slide */
	.rev-slider .tp-rightarrow,
	.rev-slider .tp-leftarrow {
		background-color: #000;
		display: none;
	}
}

@media only screen and (max-width: 576px) {
	.footer-title {
		font-size: 14px;
		padding-bottom: 10px;
		margin-bottom: 15px;
	}

	footer p,
	footer li {
		font-size: 13px;
	}

	footer .widget {
		margin-bottom: 24px;
	}

	.footer-top {
		padding: 0 0 10px;
	}

	.pt-exebar {
		margin-bottom: 30px;
	}

	.pt-logo img {
		width: 150px;
	}

	.pt-social-link {
		display: none !important;
	}

	.all-review,
	.bar-bx .side {
		width: 60%;
	}

	.rev-btn {
		padding: 10px 15px !important;
	}

	.counter-style-1 span,
	.counter-style-1 .counter {
		font-size: 35px;
		font-weight: 700;
		line-height: 40px;
	}

	.counter-style-1 .counter-text {
		font-size: 12px;
		font-weight: 400;
	}

	.profile-head {
		padding: 10px 15px 10px 15px;
	}

	.edit-profile {
		padding: 15px;
	}

	.courses-filter {
		padding: 15px 15px 0 15px;
	}

	.online-cours h5 {
		font-size: 14px;
	}

	.online-cours h2 {
		font-size: 24px;
		margin-bottom: 5px;
	}
}

.back-to-top {
	position: fixed;
	display: none;
	background: #0a0a0a;
	color: #eae5e5;
	width: 35px;
	height: 35px;
	text-align: center;
	line-height: 1;
	font-size: 14px;
	right: 15px;
	bottom: 15px;
	transition: background 0.5s;
	border-radius: 4px;
	z-index: 999;
}

.back-to-top:hover {
	background: #424040;
}

.back-to-top i {
	padding-top: 9px;
	color: #ffffff;
}

	


/* COLORS
========================================== */
/* MIXINS
========================================== */
/* KEYFRAMES
========================================== */
@-webkit-keyframes float {
	0% {
		transform: translatey(0px);
		transform: translatex(0px);
	}

	50% {
		transform: translatey(-30px);
		transform: translatex(20px);
	}

	100% {
		transform: translatey(0px);
		transform: translatex(0px);
	}
}

@-moz-keyframes float {
	0% {
		transform: translatey(0px);
		transform: translatex(0px);
	}

	50% {
		transform: translatey(-30px);
		transform: translatex(20px);
	}

	100% {
		transform: translatey(0px);
		transform: translatex(0px);
	}
}

@-o-keyframes float {
	0% {
		transform: translatey(0px);
		transform: translatex(0px);
	}

	50% {
		transform: translatey(-30px);
		transform: translatex(20px);
	}

	100% {
		transform: translatey(0px);
		transform: translatex(0px);
	}
}

@keyframes float {
	0% {
		transform: translatey(0px);
		transform: translatex(0px);
	}

	50% {
		transform: translatey(-30px);
		transform: translatex(20px);
	}

	100% {
		transform: translatey(0px);
		transform: translatex(0px);
	}
}

/* RESET
========================================== */
*,
*:before,
*:after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* BUTTON
========================================== */
.button {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}

.button button {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	font-family: inherit;
	background-color: #ffffff;
	border: 0;
	padding: 15px 25px;
	color: #000000;
	text-transform: uppercase;
	font-size: 21px;
	letter-spacing: 1px;
	width: 200px;
	overflow: hidden;
	outline: 0;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	visibility: visible;
	opacity: 1;
	font-weight: bold;
	box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.6);
}

.button button:hover {
	cursor: pointer;
	background-color: #8e6ac1;
	color: #ffffff;
}

.button button span {
	opacity: 1;
}

.button.clicked button {
	visibility: hidden;
	oacity: 0;
}

/* POP-UP
========================================== */
.pop-up {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%) scale(0.9);
	-moz-transform: translate(-50%, -50%) scale(0.9);
	-ms-transform: translate(-50%, -50%) scale(0.9);
	-o-transform: translate(-50%, -50%) scale(0.9);
	transform: translate(-50%, -50%) scale(0.9);
	overflow-y: auto;
	box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.4);
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	z-index: 10;
	background-color: #ffffff;
	width: 100%;
	height: 100%;
}

@media (min-width: 768px) {
	.pop-up {
		width: calc(100% - 40px);
		height: auto;
		max-width: 900px;
	}
}

.pop-up .content {
	width: 100%;
	max-width: 900px;
	overflow: hidden;
	text-align: center;
	position: relative;
	min-height: 100vh;
}

@media (min-width: 768px) {
	.pop-up .content {
		min-height: inherit;
	}
}

.pop-up .content .container {
	padding: 100px 20px 140px;
}

@media (min-width: 568px) {
	.pop-up .content .container {
		padding: 50px 20px 80px;
	}
}

@media (min-width: 768px) {
	.pop-up .content .container {
		padding: 70px 0px 90px;
		max-width: 520px;
		margin: 0 auto;
	}
}

.pop-up .content .close {
	position: absolute;
	top: 20px;
	left: 20px;
	font-size: 1.1rem;
	letter-spacing: 0.05rem;
	color: #3e4146;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.pop-up .content .close:hover {
	cursor: pointer;
	color: #f66867;
}

.pop-up .content .dots .dot {
	position: absolute;
	border-radius: 100%;
	z-index: 11;
}

.pop-up .content .dots .dot:nth-of-type(1) {
	top: -80px;
	right: -80px;
	width: 160px;
	height: 160px;
	background-color: #689bf6;
	-webkit-animation: float 6s ease-in-out infinite;
	-moz-animation: float 6s ease-in-out infinite;
	-o-animation: float 6s ease-in-out infinite;
	animation: float 6s ease-in-out infinite;
}

@media (min-width: 768px) {
	.pop-up .content .dots .dot:nth-of-type(1) {
		top: -190px;
		right: -190px;
		width: 380px;
		height: 380px;
	}
}

.pop-up .content .dots .dot:nth-of-type(2) {
	bottom: -120px;
	left: -120px;
	width: 240px;
	height: 240px;
	background-color: #f66867;
	-webkit-animation: float 8s ease-in-out infinite;
	-moz-animation: float 8s ease-in-out infinite;
	-o-animation: float 8s ease-in-out infinite;
	animation: float 8s ease-in-out infinite;
}

.pop-up .content .dots .dot:nth-of-type(3) {
	bottom: -50px;
	right: -50px;
	width: 100px;
	height: 100px;
	background-color: #ffd84c;
	-webkit-animation: float 4s ease-in-out infinite;
	-moz-animation: float 4s ease-in-out infinite;
	-o-animation: float 4s ease-in-out infinite;
	animation: float 4s ease-in-out infinite;
}

.pop-up .content .title h1 {
	text-align: center;
	color: #f66867;
	text-transform: uppercase;
	font-weight: 900;
	font-size: 2.8rem;
	letter-spacing: 0.05rem;
}

.pop-up .content img {
	width: 100%;
	max-width: 220px;
	display: inline-block;
	margin: 30px 0 40px 0;
	opacity: 0;
	-webkit-transform: translateX(60px);
	-moz-transform: translateX(60px);
	-ms-transform: translateX(60px);
	-o-transform: translateX(60px);
	transform: translateX(60px);
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
	-webkit-backface-visibility: hidden;
}

@media (min-width: 768px) {
	.pop-up .content img {
		max-width: 300px;
	}
}

.pop-up .content .subscribe h1 {
	font-size: 1rem;
	color: #3e4146;
	line-height: 130%;
	letter-spacing: 0.07rem;
	margin-bottom: 30px;
}

.pop-up .content .subscribe h1 span {
	color: #100f0f;
}

@media (min-width: 768px) {
	.pop-up .content .subscribe form input[type=email] {
		margin-bottom: 0px;
		width: 75%;
		border-right-width: 0px;
	}
}

.pop-up .content .subscribe form input[type=email]:focus {
	border-color: #3e4146;
}

.pop-up .content .subscribe form input[type=submit] {
	background-color: #8e6ac1;
	color: #ffffff;
	border: 1px solid #8e6ac1;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

@media (min-width: 768px) {
	.pop-up .content .subscribe form input[type=submit] {
		width: 25%;
	}
}

.pop-up .content .subscribe form input[type=submit]:hover {
	cursor: pointer;
	background-color: #7349af;
	border-color: #7349af;
}

.pop-up.open {
	visibility: visible;
	opacity: 1;
	-webkit-transform: translate(-50%, -50%) scale(1);
	-moz-transform: translate(-50%, -50%) scale(1);
	-ms-transform: translate(-50%, -50%) scale(1);
	-o-transform: translate(-50%, -50%) scale(1);
	transform: translate(-50%, -50%) scale(1);
}

.pop-up.open img {
	opacity: 1;
	-webkit-transition: 1s;
	-moz-transition: 1s;
	-o-transition: 1s;
	transition: 1s;
	-webkit-transition-delay: 0.3s;
	-moz-transition-delay: 0.3s;
	-o-transition-delay: 0.3s;
	transition-delay: 0.3s;
	-webkit-transform: translateX(0px);
	-moz-transform: translateX(0px);
	-ms-transform: translateX(0px);
	-o-transform: translateX(0px);
	transform: translateX(0px);
}



.magazine-layout {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-row-gap: 0.8rem;
	background-color: white;
	padding-top: 15px;
}

.magazine-column {
	padding: 0 0.8rem;
	grid-column: span 5;
}

@media (min-width: 1200px) {
	.magazine-column {
		grid-column: span 1;
		border-right: 1px solid #CCC;
	}

	.magazine-column:last-child {
		border-right: none;
	}
}

@media (min-width: 1200px) {
	.magazine-column:nth-child(2) {
		grid-column: span 2;
	}
}

.article+.article {
	padding-top: 1rem;
	margin-top: 1rem;
	border-top: 2px solid #0c0c0c;
	text-decoration: none;
}

.article-img+* {
	margin-top: 1rem;
}


.article-link h2:hover {
  color: red; /* Text color on hover */
}

.article-link a{
	color: rgb(4, 4, 4);
	text-transform: none;
}

.article-title {
	font-family: "Fraunces", serif;
	font-weight: 800;
	line-height: 1;
	color: #000;
	text-decoration: none;
}

.article-title--large {
	font-size: 1.2rem;
}

.article-title--large+* {
	margin-top: 1.2rem;
}

.article-title--medium {
	font-size: 1.5rem;
}

.article-title--medium+* {
	margin-top: 0.5rem;
}

.article-title--small {
	font-size: 1rem;
	font-weight: 500;
}

.article-title--small+* {
	margin-top: 0.75rem;
}

.article-link {
	color: inherit;
}

.mark {
	background-color: #fabea1;
}

.mark--secondary {
	background-color: #c2dddf;
}

.mark--tertiary {
	background-color: #F8E177;
}

.article-excerpt,
.article-creditation {
	font-size: 1.125rem;
	line-height: 1.2;
}

.article-excerpt p+p,
.article-creditation p+p {
	margin-top: 0.5rem;
}

.article-author {
	display: flex;
	flex-wrap: wrap;
	margin-top: 1rem;
}

.article-author-img {
	width: 3rem;
	height: 3rem;
	border-radius: 12px;
	background-color: #323232;
	overflow: hidden;
	background-blend-mode: multiply;
}

.article-author-img+.article-author-info {
	margin-left: 0.5rem;
}

.article-author-info {
	line-height: 1.375;
}

.article-author-info dl {
	margin-top: 0.25em;
}

.article-author-info dt {
	font-weight: 600;
}

.article-author-info dd {
	font-size: 0.875em;
}

.article-category {
	font-weight: 500;
	margin-bottom: 1rem;
	display: block;
}

.article-category svg {
	max-width: 1.5rem;
	margin-right: 0.5rem;
	vertical-align: middle;
}

.article-podcast-player {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
	margin-top: 1.25rem;
}

.podcast-play-button {
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 12px;
	border: 0;
	background-color: #000;
	margin-right: 0.5rem;
}

.podcast-play-button svg {
	max-width: 1rem;
	max-height: 1rem;
	fill: #FFF;
}

.podcast-progression {
	flex: 1;
	height: 8px;
	border-radius: 99em;
	background-color: #D9D4CD;
	background-image: linear-gradient(to right, #F99970 30%, #D9D4CD 30%, #D9D4CD 100%);
}

.podcast-time {
	font-weight: 500;
	font-size: 1.125rem;
	margin-left: 0.5rem;
}

:focus {
	outline: 0;
}





.audio-player {
	height: 10px;
	width: 4px;
	background: #444;
	box-shadow: 0 0 5px 0 #000a;

	font-family: arial;
	color: white;
	font-size: 0.5em;
	overflow: hidden;

	display: grid;
	grid-template-rows: 6px auto;

	.timeline {
		background: white;
		width: 100%;
		position: relative;
		cursor: pointer;
		box-shadow: 0 2px 10px 0 #0008;

		.progress {
			background: coral;
			width: 0%;
			height: 100%;
			transition: 0.25s;
		}
	}

	.controls {
		display: flex;
		justify-content: space-between;
		align-items: stretch;
		padding: 0 4px;

		>* {
			display: flex;
			justify-content: center;
			align-items: center;
		}

		.toggle-play {
			&.play {
				cursor: pointer;
				position: relative;
				left: 0;
				height: 0;
				width: 0;
				border: 7px solid #0000;
				border-left: 13px solid white;

				&:hover {
					transform: scale(1.1);
				}
			}

			&.pause {
				height: 15px;
				width: 10px;
				cursor: pointer;
				position: relative;

				&:before {
					position: absolute;
					top: 0;
					left: 0px;
					background: white;
					content: "";
					height: 15px;
					width: 3px;
				}

				&:after {
					position: absolute;
					top: 0;
					right: 8px;
					background: white;
					content: "";
					height: 15px;
					width: 3px;
				}

				&:hover {
					transform: scale(1.1);
				}
			}
		}

		.time {
			display: flex;

			>* {
				padding: 2px;
			}
		}

		.volume-container {
			cursor: pointer;

			.volume-button {
				height: 26px;
				display: flex;
				align-items: center;

				.volume {
					transform: scale(0.7);
				}
			}

			position: relative;
			z-index: 2;

			.volume-slider {
				position: absolute;
				left: -3px;
				top: 15px;
				z-index: -1;
				width: 0;
				height: 15px;
				background: white;
				box-shadow: 0 0 20px #000a;
				transition: .25s;

				.volume-percentage {
					background: coral;
					height: 100%;
					width: 75%;
				}
			}

			&:hover {
				.volume-slider {
					left: -123px;
					width: 100px;
				}
			}
		}
	}
}