
.footer {
    margin-top: 50px;
    position: absolute;
    bottom: 0;
    width: 100%;
}
.footer-basic {
    padding:40px 0;
    background-color:#6c6c6d;
    color:white;
  }
  
  .footer-basic ul {
    padding:0;
    list-style:none;
    text-align:center;
    font-size:18px;
    line-height:1.6;
    margin-bottom:0;
  }
  
  .footer-basic li {
    padding:0 10px;
  }
  
  .footer-basic ul a {
    color:inherit;
    text-decoration:none;
    opacity:0.8;
  }
  
  .footer-basic ul a:hover {
    opacity:1;
  }
  
  .footer-basic .social {
    text-align:center;
    padding-bottom:25px;
  }
  
  .footer-basic .social > a {
    font-size:24px;
    width:40px;
    height:40px;
    line-height:40px;
    display:inline-block;
    text-align:center;
    border-radius:50%;
    border:1px solid rgb(255, 255, 255);
    margin:0 8px;
    color:inherit;
    opacity:0.75;
  }
  
  .footer-basic .social > a:hover {
    opacity:0.9;
  }
  
  .footer-basic .copyright {
    margin-top:15px;
    text-align:center;
    font-size:13px;
    color:rgb(255, 255, 255);
    margin-bottom:0;
  }

  .navbar {
    background-color: white;
    margin: auto;
    position: fixed; /* Set the navbar to fixed position */
    top: 0; /* Position the navbar at the top of the page */
    width: 100%;/* Full width */
  }
  
/* Hambuger Menu */

.header {
    padding-top: 10px;
    padding-bottom: 20px;
    background-color: #ffffff;
    width: 100%;
    margin-bottom: 20px;
    padding: 20px 20px 0px 20px;
    justify-content: center;
    text-align: center;
    box-shadow: 0 5px 10px -4px #6c6c6d;
  }

.headerTitle{
  display: inline-block;
    text-decoration: none;
    opacity: 0.8;
    font-family: Georgia;
    color: rgb(255, 255, 255);
    font-weight: lighter;
    padding-right: 40px;
    padding-top: 10px;
    width: 80%;
  }
  
  .header ul {
    background-color: #ffffff;
    list-style: none;
    overflow: hidden;
  }
  
  .header li a {
    display: block;
    text-decoration: none;
    color: #6c6c6d;
    font-family: 'Orienta', sans-serif;
  }
  
  .header li a:hover,
  .header .menu-btn:hover {
    opacity: 0.5;
  }
  
  .header .logo {
    display: block;
    float: left;
    font-size: 2em;
    padding: 10px 20px;
    text-decoration: none;
  }
  
  /* menu */
  
  .header .menu {
    clear: both;
    display: block;
    max-height: 0;
    transition: max-height .2s ease-out;
    font-size: x-large;
    padding-bottom: 5px;
    margin-top: 5px;
    padding-left: 0px;
  }
  
  /* menu icon */
  
  .header .menu-icon {
    cursor: pointer;
    display: inline-block;
    position: relative;
    user-select: none;
    margin-bottom: 15px;
    height: 100%;
  }
  
  .header .menu-icon .navicon {
    background: #6c6c6d;
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 30px;
  }
  
  .header .menu-icon .navicon:before,
  .header .menu-icon .navicon:after {
    background: #6c6c6d;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
  }
  
  .header .menu-icon .navicon:before {
    top: 5px;
  }
  
  .header .menu-icon .navicon:after {
    top: -5px;
  }
  
  /* menu btn */
  
  .header .menu-btn {
    display: none;
  }
  
  .header .menu-btn:checked ~ .menu {
    max-height: 250px;
    padding: 20px;
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon {
    background: transparent;
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
  }
  
  .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
  .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    top: 0;
  }
  
  /* 25em = 400px */
  @media (min-width: 600px) {
    .header li {
      float: center;
    }
    .header li a {
      padding: 50px 20px;
    }
    .header .menu {
      clear: none;
      max-height: none;
      display: inline-flex;
    }
    .header .menu-icon {
      display: none;
    }
  }

.chrLogo{
    width: 100px; 
    border-radius: 50%; 
    border:2px solid #e4e4e4;
    padding: 10px;
}

.chrLogo:hover{
    border:2px solid #aca2a2;
    opacity: 0.5;
}

.indexPic {
    width:30%; 
    margin-bottom: 50px;
    -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 2s; /* Firefox < 16 */
    -ms-animation: fadein 2s; /* Internet Explorer */
    -o-animation: fadein 2s; /* Opera < 12.1 */
    animation: fadein 2s;
    padding-right: 15 px;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@media (max-width: 1800px) {
  .indexPic {
   width:40%;
  }
}

@media (max-width: 1400px) {
  .indexPic {
   width:50%;
  }
}

@media (max-width: 1000px) {
  .indexPic {
   width:60%;
  }
}

@media (max-width: 700px) {
  .indexPic {
   width:70%;
  }
}

@media (max-width: 595px) {
   .indexPic {
    width:100%;
   }
}

#mobileYep {
  display: none;
}

@media (max-width: 600px) {
  .morebtn {
    padding: 5px;
    margin-top: 30px;
  }
  #mobileNot {
    display: none;
  }
  #mobileNot {
    display: none;
  }
  #mobileYep {
    display: block;
  }
}

.morebtn {
    border: 2px solid #6c6c6d;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    background-color: #6c6c6d;
    padding: 15px;
    margin: 10px;
    text-align: center;
    font-style: normal;
    font-weight: 100;
    font-family: Arial, Helvetica, sans-serif;
}



.morebtn:hover {
   text-decoration: none; 
   font-style: normal;
   font-weight: 100;
   font-family: Arial, Helvetica, sans-serif;
   color: #6c6c6d;
   background-color: white;
}

/* About Page */

.testimonial-area {
  padding-top: 60px;
  padding-bottom: 120px;
}

.testimonial-area
.testimonial_text
{
  color: black;
}

.team-container{
  display: inline-block;
}

.team-box {
  position: relative;
  padding: 55px 30px 30px 30px;
  -webkit-box-shadow: 0 0 30px -5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 30px -5px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  margin-top: 40px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  margin-left: 15px;
  margin-right: 15px;
}

.team-box:hover {
  -webkit-box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.1);
}

.team-box .team-image {
  position: absolute;
  top: -275px;
  width: 500px;
  height: 300px;
  border-radius: 20%;
  background-color: #ffffff;
  text-align: center;
  overflow: hidden;
  border: 5px solid #ffffff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1)
}

@media (max-width: 1199px) 
{
  .team-box .team-image {
      position: absolute;
      top: -145px;
      left: 500px;
      width: 400px;
      height: 270px;
      border-radius: 100%;
      background-color: #ffffff;
      text-align: center;
      overflow: hidden;
      border: 5px solid #ffffff;
      -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
      box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1)
  }
}

@media (max-width: 991px) 
{
  .team-box .team-image {
      position: absolute;
      top: -145px;
      left: 270px;
      width: 400px;
      height: 270px;
      border-radius: 100%;
      background-color: #ffffff;
      text-align: center;
      overflow: hidden;
      border: 5px solid #ffffff;
      -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
      box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1)
  }
}

@media (max-width: 734px) 
{
  .team-box .team-image {
      position: absolute;
      top: -125px;
      left: 300px;
      width: 350px;
      height: 230px;
      border-radius: 100%;
      background-color: #ffffff;
      text-align: center;
      overflow: hidden;
      border: 5px solid #ffffff;
      -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
      box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1)
  }
}

@media (max-width: 713px) 
{
  .team-box .team-image {
      position: absolute;
      top: -105px;
      left: 300px;
      width: 300px;
      height: 200px;
      border-radius: 100%;
      background-color: #ffffff;
      text-align: center;
      overflow: hidden;
      border: 5px solid #ffffff;
      -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
      box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1)
  }
}

@media (max-width: 662px) 
{
  .team-box .team-image {
      position: absolute;
      top: -105px;
      left: 250px;
      width: 300px;
      height: 200px;
      border-radius: 100%;
      background-color: #ffffff;
      text-align: center;
      overflow: hidden;
      border: 5px solid #ffffff;
      -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
      box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1)
  }
}

@media (max-width: 611px) 
{
  .team-box .team-image {
      position: absolute;
      top: -105px;
      left: 230px;
      width: 250px;
      height: 170px;
      border-radius: 100%;
      background-color: #ffffff;
      text-align: center;
      overflow: hidden;
      border: 5px solid #ffffff;
      -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
      box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1)
  }
}

@media (max-width: 539px) 
{
  .team-box .team-image {
      position: absolute;
      top: -145px;
      left: 100px;
      width: 250px;
      height: 170px;
      border-radius: 100%;
      background-color: #ffffff;
      text-align: center;
      overflow: hidden;
      border: 5px solid #ffffff;
      -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
      box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1)
  }
}

@media (max-width: 460px) 
{
  .team-box .team-image {
      position: absolute;
      top: -145px;
      left: 70px;
      width: 250px;
      height: 170px;
      border-radius: 100%;
      background-color: #ffffff;
      text-align: center;
      overflow: hidden;
      border: 5px solid #ffffff;
      -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
      box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1)
  }
}

@media (max-width: 410px) 
{
  .team-box .team-image {
      position: absolute;
      top: -145px;
      left: 40px;
      width: 250px;
      height: 170px;
      border-radius: 100%;
      background-color: #ffffff;
      text-align: center;
      overflow: hidden;
      border: 5px solid #ffffff;
      -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
      box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1)
  }
}

@media (max-width: 350px) 
{
  .team-box .team-image {
      position: absolute;
      top: -145px;
      left: 20px;
      width: 250px;
      height: 170px;
      border-radius: 100%;
      background-color: #ffffff;
      text-align: center;
      overflow: hidden;
      border: 5px solid #ffffff;
      -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
      box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1)
  }
}

@media (max-width: 325px) 
{
  .team-box .team-image {
      position: absolute;
      top: -145px;
      left: 15px;
      width: 250px;
      height: 170px;
      border-radius: 100%;
      background-color: #ffffff;
      text-align: center;
      overflow: hidden;
      border: 5px solid #ffffff;
      -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
      box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1)
  }
}

@media (max-width: 290px) 
{
  .team-box .team-image {
      position: absolute;
      top: -125px;
      left: 2px;
      width: 220px;
      height: 150px;
      border-radius: 100%;
      background-color: #ffffff;
      text-align: center;
      overflow: hidden;
      border: 5px solid #ffffff;
      -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
      box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1)
  }
}

.team-box h4 {
  color: #000000;
  font-weight: 600;
  font-size: 20px;
}

.team-box h6.position {
  font-size: 14px;
  font-weight: bold;
  color: black;
}

.team-slide .owl-controls .owl-nav > div {
  position: absolute;
  top: 50%;
  left: auto;
  right: 100%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%)
}

.team-slide .owl-controls .owl-nav > div.owl-next {
  right: auto;
  left: 100%;
}

.chrPic {
  -webkit-box-shadow: 0 0 30px -5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 30px -5px rgba(0, 0, 0, 0.1);
  border-radius: 1000px;
  width: 30%;
  display: block; 
  margin-left:auto; 
  margin-right:auto; 
  margin-bottom: 50px;
  -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 2s; /* Firefox < 16 */
  -ms-animation: fadein 2s; /* Internet Explorer */
  -o-animation: fadein 2s; /* Opera < 12.1 */
  animation: fadein 2s;
}

@media (max-width: 500px) {
  .chrPic {
    width: 75%;
  }
}
@media (min-width: 500px) and (max-width: 600px) {
  .chrPic {
    width: 65%;
  }
}
@media (min-width: 600px) and (max-width: 700px) {
  .chrPic {
    width: 55%;
  }
}
@media (min-width: 700px) and (max-width: 1000px) {
  .chrPic {
    width: 45%;
  }
}
@media (min-width: 1000px) and (max-width: 1300px) {
  .chrPic {
    width: 35%;
  }
}
@media (min-width: 1300px) {
  .chrPic {
    width: 25%;
  }
}

.aboutTitle{
  color: #6c6c6d; font-family: 'Orienta', sans-serif; font-size: 36px; line-height: 24px; margin: 0 0 24px;  text-align: center; font-weight: bold; 
  -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 2s; /* Firefox < 16 */
  -ms-animation: fadein 2s; /* Internet Explorer */
  -o-animation: fadein 2s; /* Opera < 12.1 */
  animation: fadein 2s;
}
.aboutSubTitle{
  color: #6c6c6d; font-family: 'Orienta', sans-serif; font-size: 20px; line-height: 24px; margin: 0 0 24px; text-align: center; 
  -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 2s; /* Firefox < 16 */
  -ms-animation: fadein 2s; /* Internet Explorer */
  -o-animation: fadein 2s; /* Opera < 12.1 */
  animation: fadein 2s;
}
.aboutText{
  padding-left: 300px;
  padding-right: 300px;
  text-align: justify;
  color: #6c6c6d; font-family: 'Orienta', sans-serif; font-size: 18px; line-height: 24px; margin: 0 0 24px; 
  -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 2s; /* Firefox < 16 */
  -ms-animation: fadein 2s; /* Internet Explorer */
  -o-animation: fadein 2s; /* Opera < 12.1 */
  animation: fadein 2s;
}

@media (max-width: 500px) {
  .aboutTitle{
    font-size: 26px;
  }
  .aboutText{
    padding-left: 0px;
    padding-right: 0px;
    font-size: 15px;
  }
  .aboutSubTitle{
    font-size: 15px;
  }
}
@media (min-width: 500px) and (max-width: 600px) {
  .aboutText{
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 600px) and (max-width: 700px) {
  .aboutText{
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 700px) and (max-width: 1000px) {
  .aboutText{
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media (min-width: 1000px) and (max-width: 1300px) {
  .aboutText{
    padding-left: 150px;
    padding-right: 150px;
  }
}
@media (min-width: 1300px) and (max-width: 1500px) {
  .aboutText{
    padding-left: 200px;
    padding-right: 200px;
  }
}

/* End of About Page */

/* Beggining of Contact Page */

.contactBox{
  margin-top: 50px;
  margin-bottom: 100px;
  text-align: center;
  font-family: 'Orienta', sans-serif;
}

.contactEButton{
  margin-top: 20px;
  margin-bottom: 40px;
  text-align: center;
  padding: 20px;
  background-color: #6c6c6d;
  border-radius: 30px;
  color: white;
  border: 2px solid #6c6c6d;
  -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 2s; /* Firefox < 16 */
  -ms-animation: fadein 2s; /* Internet Explorer */
  -o-animation: fadein 2s; /* Opera < 12.1 */
  animation: fadein 2s;
}

.contactEButton:hover{
  background-color: white;
  color: #6c6c6d;
  cursor: pointer;
}

.phoneButton{
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  padding: 20px;
  background-color: #6c6c6d;
  border-radius: 30px;
  color: white;
  border: 2px solid #6c6c6d;
  -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 2s; /* Firefox < 16 */
  -ms-animation: fadein 2s; /* Internet Explorer */
  -o-animation: fadein 2s; /* Opera < 12.1 */
  animation: fadein 2s;
}

.phoneButton:hover{
  background-color: white;
  color: #6c6c6d;
  cursor: pointer;
}

.contactMainTitle{
  text-align: center;
  margin-top: 100px;
  margin-bottom: 50px;
  color: #6c6c6d; 
  font-size:50px;
  padding-left: 20px;
  padding-right: 20px;
  -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 2s; /* Firefox < 16 */
  -ms-animation: fadein 2s; /* Internet Explorer */
  -o-animation: fadein 2s; /* Opera < 12.1 */
  animation: fadein 2s;
}

.blogCardSubTitle{
  font-size: 20px;
  text-align: center;
  padding: 10px;
  color: white;
}

.blogCardTitle{
  text-align: center;
  color: white; 
  padding: 10px;
}

.contactTitle{
  color: #6c6c6d; 
  font-size:35px;
  -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 2s; /* Firefox < 16 */
  -ms-animation: fadein 2s; /* Internet Explorer */
  -o-animation: fadein 2s; /* Opera < 12.1 */
  animation: fadein 2s;
}

@media (min-width: 1300px) {
  .contactTitle{
    font-size:35px;
  }
}

@media (max-width: 500px) {
  .contactTitle{
    font-size:25px;
  }
  .contactMainTitle{
    margin-top: 70px;
    font-size:30px;
  }
  .blogCardTitle{
    font-size: 20px;
  }
  .blogCardSubTitle{
    display:  none;
  }
}

/* End of Contact Page */

/* Blog */
.blogcard {
  /* Add shadows to create the "card" effect */
  border: 2px solid #6c6c6d;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  border-radius: 10px; 
  padding-top: 30px;
  padding-bottom: 40px;
  margin-right: 20px;
  margin-top: 20px;
  margin-left: 20px;
  width: 350px;
  display: inline-block;
  background-color: #6c6c6d;
  box-shadow: 
  0 0px 16px 0 rgba(255, 255, 255, 0.2);
  -webkit-animation: fadein 2.5s; /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 2.5s; /* Firefox < 16 */
  -ms-animation: fadein 2.5s; /* Internet Explorer */
  -o-animation: fadein 2.5s; /* Opera < 12.1 */
  animation: fadein 2.5s;
}

.categorycard {
  /* Add shadows to create the "card" effect */
  border: 2px solid #6c6c6d;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  border-radius: 10px; 
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 10px;
  margin-right: 20px;
  margin-top: 20px;
  margin-left: 0px;
  width: 250px;
  display: inline-block;
  background-color: #6c6c6d;
  box-shadow: 
  0 0px 16px 0 rgba(255, 255, 255, 0.2);
  -webkit-animation: fadein 2.5s; /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 2.5s; /* Firefox < 16 */
  -ms-animation: fadein 2.5s; /* Internet Explorer */
  -o-animation: fadein 2.5s; /* Opera < 12.1 */
  animation: fadein 2.5s;
}

.categoryText{
  display: block;
  color: white;
  text-align: center;
}

.categorycard:hover .categoryText{ color:  #6c6c6d; }

.blogcard:hover {
  border: 2px solid rgb(255, 255, 255);
  box-shadow: 0 0 11px rgba(0, 0, 0, 0.2);
}

.categorycard:hover {
  border: 2px solid #6c6c6d;
  background-color: white;
  box-shadow: 0 0 11px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.blogimg {
  border-radius: 10px;
  width: 300px;
}

/* Add some padding inside the card container */
.blogsContainer{
  background-color: white;
}
.blogcontainer {
  background-color: #ffffff;
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-bottom: 30px;
  text-align: center;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.categoriescontainer {
  background-color: #ffffff;
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-bottom: 30px;
  text-align: center;
  margin: auto;
  display: block;
  justify-content: center;
  align-items: center;
}
.dtcn {
    display: block;
    color: #b1b1b1;
    font-weight: normal;
    font-size: 14px;
    margin-bottom: 0px;
}
.blogbox .title,  .blogbox a .title {
    padding: 0px 0px;
    color: #000000;
    display: block;
    font-weight: bold;
    font-size: 30px;
    margin: 0;
    margin-bottom: 50px;
}

.more_btn {
  border: 2px solid white;
  border-radius: 30px;
  color: #6c6c6d;
  text-decoration: none;
  background-color: white;
  padding: 13px;
  text-align: center;
  font-style: normal;
  font-weight: 100;
  font-family: Arial, Helvetica, sans-serif;
}
.more_btn:hover {
   text-decoration: none; 
   font-style: normal;
   font-weight: 100;
   font-family: Arial, Helvetica, sans-serif;
   color: white;
   background-color: #6c6c6d;
}

@media screen and (max-width: 640px) {
.blogbox {
max-height: 100%;
}
.blogbox img {
width: 100%;
}
a.more_btn {
width: calc(100% - 60px);
text-align: center;
}
}

@media screen and (max-width: 1300px) {
  .blogcontainer{
    display: block;
  }
}

/* Episodes */
.episodesContainer{
    display: inline-block;
    justify-content: center;
    text-align: center;
    width: 100%;
    margin: 0;
    padding-top: 0px;
    padding-right: 150px;
    padding-left: 150px;
    background-color:white;
}
@media (max-width: 1600px) {
  .episodesContainer {
    padding-right: 0px;
    padding-left: 0px;
  }
}
.allEpisodesContainer{
  display: inline-block;
    justify-content: center;
    text-align: center;
    width: 100%;
    margin: 0;
    background-color:#1d1c1c;
    padding-bottom: 100px;
}
.episodesText{
    font-size: 40px;
    display: block;
    text-align: center;
}
@media (max-width: 800px) {
  .episodesText {
    font-size: 30px;
  }
  .blogimg{
    width: 250px;
  }
  .categoryText{
    font-size: 15px;
  }
}

.episodeList{
    display: inline-block;
    padding-left: auto;
    padding-right: auto;
}
.newEpisodescard {
    display: inline-block;
    max-width: 100%;
    padding: 0px;
    margin-top: 25px;
    margin-bottom: 25px;
    margin-left: 5px;
    margin-right: 5px;
    transition: 0.3s;
    text-align: center;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 
    0 8px 16px 0 rgba(0,0,0,0.2);
}
.allEpisodesCard {
  display: inline-block;
  max-width: 100%;
  padding: 0px;
  margin: 25px;
  transition: 0.3s;
  text-align: center;
  border-radius: 30px;
  padding: 20px;
  background-color: #000;
  box-shadow: 
  0 0px 16px 0 rgba(255, 255, 255, 0.2);
}
@media (max-width: 500px) {
  .allEpisodesCard {
    margin-left: 0;
    margin-right: 0;
  }
}

.card-title{
    font-size: 50px;
    color: black;
    font-weight: lighter;
    margin: 0;
    padding-top: 20px;
    -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 2s; /* Firefox < 16 */
    -ms-animation: fadein 2s; /* Internet Explorer */
    -o-animation: fadein 2s; /* Opera < 12.1 */
    animation: fadein 2s;
}
.card-text{
    font-size: 25px;
    padding-left: 30px;
    padding-right: 30px;
    display: inline-block;
    color: black;
    word-wrap: break-word;
    font-weight: lighter;
    -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 2s; /* Firefox < 16 */
    -ms-animation: fadein 2s; /* Internet Explorer */
    -o-animation: fadein 2s; /* Opera < 12.1 */
    animation: fadein 2s;
}
@media (max-width: 500px) {
  .card-title {
    font-size: 30px;
  }
  .card-text {
    font-size: 15px;
  }
  .blogcard{
    margin: 0px;
    margin-bottom: 20px;
    width: 250px;
  }
  .categorycard{
    margin: 0px;
    margin-bottom: 20px;
    width: 120px;
    display: inline-block;
    align-items: center;
    text-align: center;
  }
  .blogimg{
    width: 200px;
  }
  .blogcontainer{
    padding: 0;
  }
}
.card-date{
    opacity: 0.5;
    font-size: 15px;
    text-align: center;
    color: rgb(173, 173, 173);
    font-weight: lighter;
    -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 2s; /* Firefox < 16 */
    -ms-animation: fadein 2s; /* Internet Explorer */
    -o-animation: fadein 2s; /* Opera < 12.1 */
    animation: fadein 2s;
}
.briefD {
  padding-left:20px; 
  padding-right:20px; 
  padding-bottom:20px; 
  color:white; 
  text-align:justify;
  font-style: normal;
  font-weight: 100;
  font-family: Arial, Helvetica, sans-serif;
}


.customImage{
  max-width: 80%;
  border-radius:20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  -webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 1s; /* Firefox < 16 */
  -ms-animation: fadein 1s; /* Internet Explorer */
  -o-animation: fadein 1s; /* Opera < 12.1 */
  animation: fadein 1s;
}
.customInsertImage{
  max-width: 80%;
  border-radius:20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  -webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 1s; /* Firefox < 16 */
  -ms-animation: fadein 1s; /* Internet Explorer */
  -o-animation: fadein 1s; /* Opera < 12.1 */
  animation: fadein 1s;
}
@media (min-width: 1500px) {
  .customImage{
    max-width: 40%;
  }
  .customInsertImage{
    max-width: 40%;
  }
}

@media (min-width: 1500px) {
  .customImage{
    max-width: 40%;
  }
  .customInsertImage{
    max-width: 40%;
  }
}

@media only screen and (max-width: 600px) {
  .briefD {
    display:none;
  }
  .contactMainTitle{
    margin-top: 20px;
  }
}

/* Episodes End */

/* Share buttons */

.share-btn-container {
  background: white;
  width: 200px;
  text-align: center;
  margin: auto;
  padding: 16px;
  border-radius: 30px;
  border: 1px solid #6c6c6d;
  -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 2s; /* Firefox < 16 */
  -ms-animation: fadein 2s; /* Internet Explorer */
  -o-animation: fadein 2s; /* Opera < 12.1 */
  animation: fadein 2s;
}

.share-btn-container:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.share-btn-container a i {
  font-size: 30px;
}

.share-btn-container a {
  margin: 12px 0;
  padding: 5px;
  transition: 500ms;
}

.share-btn-container a:hover {
  transform: scale(1.2);
}

.share-btn-container .fa-facebook {
  color: #3b5998;
}

.share-btn-container .fa-link {
  color: #6c6c6d;
}

.share-btn-container .fa-twitter {
  color: #1da1f2;
}


/* Share buttons End*/