/*!
 * jQuery Tabs - jQuery plugin to create simple vertical and horizontal tabs
 * Copyright 2017 - Anantajit JG
 * https://github.com/anantajitjg/jquery-tabs
 */
.jq-tab-wrapper {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 1em; }
  .jq-tab-wrapper.horizontal-tab {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }

.jq-tab-menu {
  -webkit-box-flex: 0.5;
  -ms-flex: 0.5;
  flex: 0.5; }
  .jq-tab-menu .jq-tab-title {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -1px;
    background: #ececec;
    border: 0;
    margin: 5px 0;
    cursor: pointer;
    padding: 15px 5px;
    -webkit-transition: background 0.2s;
    -o-transition: background 0.2s;
    transition: background 0.2s; }
    .jq-tab-menu .jq-tab-title i{font-size: 38px;font-weight: normal;}
    .jq-tab-menu .jq-tab-title:first-child {
      border-top: 1px solid #d1d1d1; }
    .jq-tab-menu .jq-tab-title:hover{
         background: #c5c5c5;
    }
    .jq-tab-menu .jq-tab-title.active {
     background: #160f27;
     border: 0;
    border-right: 5px solid yellow;
    border-left: 5px solid #160f27;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0px;}

.horizontal-tab .jq-tab-menu {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex; }
  .horizontal-tab .jq-tab-menu .jq-tab-title {
    border-bottom: none;
    border-right: 1px solid #d1d1d1;
    border-left: none; }
    .horizontal-tab .jq-tab-menu .jq-tab-title:first-child {
      border-left: 1px solid #d1d1d1;
      border-top: none; }
    .horizontal-tab .jq-tab-menu .jq-tab-title:hover, .horizontal-tab .jq-tab-menu .jq-tab-title.active {
      border-bottom: 1px solid #505050; }

.jq-tab-content-wrapper {
  -webkit-box-flex: 4;
  -ms-flex: 4;
  flex: 4; }

.jq-tab-content {
  display: none;
  padding: 1em 1.8em; }
  .jq-tab-content.active {
    display: block; }

.jq-tab-content h3{font-size: 42px;}
.jq-tab-content h3{font-size: 30px;}
.jq-tab-content p.font25{font-size: 27px;}
.jq-tab-content p.font20{font-size: 20px;}

