@import url(http://fonts.googleapis.com/css?family=Oxygen);
@import url(http://weloveiconfonts.com/api/?family=entypo);
.wrapper {
  position: relative;
  height: 100%;
  width: 100%;
}



#content {
  margin: 0 auto;
  padding-bottom: 50px;
}

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  z-index: 1001;
  -webkit-animation: spin 2s linear infinite;
          animation: spin 2s linear infinite;
}
#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  -webkit-animation: spin 3s linear infinite;
          animation: spin 3s linear infinite;
}
#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  right: 15px;
  left: 15px;
  bottom: 15px;
  border-radius: 50%;
}

#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background-color: lightgray;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-blend-mode: multiply;
  z-index: 1000;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

#loader-wrapper .loader-section.section-left {
  left: 0;
}

#loader-wrapper .loader-section.section-right {
  right: 0;
}

#loader {
  display: block;
  width: 100px;
  height: 100px;
  margin: 50 auto;
}

.circ-one {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  background: #c71f22;
  border-radius: 100%;
  float: left;
  -webkit-animation: load-x 1s cubic-bezier(0.445, 0.1, 0.55, 0.9) infinite;
          animation: load-x 1s cubic-bezier(0.445, 0.1, 0.55, 0.9) infinite;
}

.circ-two {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  background: #2a3456;
  border-radius: 100%;
  float: right;
  -webkit-animation: load-y 1s cubic-bezier(0.445, 0.1, 0.55, 0.9) infinite;
          animation: load-y 1s cubic-bezier(0.445, 0.1, 0.55, 0.9) infinite;
}

@-webkit-keyframes load-x {
  0% {
    left: -10px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  25% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    z-index: 2;
  }
  50% {
    left: 60px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  75% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    z-index: 1;
  }
  100% {
    left: -10px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes load-x {
  0% {
    left: -10px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  25% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    z-index: 2;
  }
  50% {
    left: 60px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  75% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    z-index: 1;
  }
  100% {
    left: -10px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes load-y {
  0% {
    right: -10px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  50% {
    right: 60px;
    -webkit-transform: scale(1);
            transform: scale(1);
    z-index: 1;
  }
  75% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    z-index: 2;
  }
  100% {
    right: -10px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes load-y {
  0% {
    right: -10px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  50% {
    right: 60px;
    -webkit-transform: scale(1);
            transform: scale(1);
    z-index: 1;
  }
  75% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    z-index: 2;
  }
  100% {
    right: -10px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
#loader p {
  text-align: center;
  font-weight: 50;
  color: #c02942;
  -webkit-animation: pulse 2s ease-in-out infinite;
          animation: pulse 2s ease-in-out infinite;
}

@-webkit-keyframes pulse {
  50% {
    opacity: 0.5;
  }
}

@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}
.loaded #loader-wrapper .loader-section.section-left {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
  visibility: hidden;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 0.3s 1s ease-out;
  transition: all 0.3s 1s ease-out;
}

[class*="entypo-"]:before {
  font-family: 'entypo', sans-serif;
}

* {
  box-sizing: border-box;
}

.preload * {
  -webkit-transition: none !important;
  transition: none !important;
}














.hub .hub_section {
    background: white none repeat scroll 0 0;
}
.hub .hub_section h3 {
    font-weight: 200;
    letter-spacing: 5px;
    padding: 22px 30px;
    text-align: center;
    text-transform: uppercase;
}
.hub .hub_event {
    background-color: #595959;
    display: table;
    position: relative;
    width: 100%;
}
.hub .hub_event:nth-child(2n) {
    background-color: #435c85;
}
.hub .hub_event .hub_overlay {
    background-color: rgba(255, 255, 255, 0);
    height: 100%;
    left: 0;
    position: absolute;
    transition: background-color 0.3s ease-in 0s, color 0.3s ease-in 0s;
    width: 100%;
    z-index: 9999;
}
.hub .hub_event .hub_overlay:hover {
    background-color: rgba(255, 255, 255, 0.15);
}
.hub .hub_event .hub_event_date {
    color: #ffffff;
    display: table-cell;
    padding: 30px 0;
    text-align: center;
    vertical-align: middle;
}
.hub .hub_event .hub_event_date .event_month {
    font-size: 1rem;
    font-weight: 200;
    letter-spacing: 2px;
    line-height: 1.4;
    text-transform: uppercase;
}
.hub .hub_event .hub_event_date .event_day {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 0.4rem;
}
.hub .hub_event .hub_event_date .event_year {
    font-size: 1rem;
    font-weight: 200;
    letter-spacing: 2px;
    line-height: 1.4;
}
.hub .hub_event .hub_event_content {
    background: white none repeat scroll 0 0;
    padding-left: 35px;
    padding-right: 35px;
    position: relative;
    width: 80%;
  display: table-cell;
    vertical-align: middle;
}
.hub .hub_event:nth-child(2n) .hub_event_content {
    background: #f7f7f7 none repeat scroll 0 0;
    position: relative;
}
.hub .hub_event .hub_event_content::after, .hub .hub_event .hub_event_content::before {
    border: medium solid transparent;
    content: " ";
    height: 0;
    pointer-events: none;
    position: absolute;
    right: 100%;
    width: 0;
}
.hub .hub_event .hub_event_content::after {
    border-color: transparent white transparent transparent;
    border-width: 15px;
    margin-left: -15px;
    margin-top: -15px;
    top: 50%;
    z-index: 999;
}
.hub .hub_event:nth-child(2n) .hub_event_content::after, .hub .hub_event:nth-child(2n) .hub_event_content::before {
    border: medium solid transparent;
    content: " ";
    height: 0;
    pointer-events: none;
    position: absolute;
    right: 100%;
    width: 0;
}
.hub .hub_event:nth-child(2n) .hub_event_content::after {
    border-color: transparent #f7f7f7 transparent transparent;
    border-width: 15px;
    margin-left: -15px;
    margin-top: -15px;
    top: 50%;
    z-index: 999;
}
.hub .hub_event .hub_event_content h4 {
    font-size: 120%;
    line-height: 1.33333;
    margin: 0 !important;
    text-transform: uppercase;
    color: #c62022!important;
}
.hub .hub_event .hub_event_content .event_content p {
    margin-bottom: 0;
}

#slider_part{
   width: 100%;
   overflow:hidden;
   padding: 0;
    height: 700px;

}

.carousel-caption{
    top: 26%;
    margin-top: -50px;
    text-shadow:none!important;
    left:9%;
    right: 10%;
    -webkit-transition: all.3s ease 0s;
    -o-transition: all.3s ease 0s;
    transition: all.3s ease 0s;
    text-align: center;
}
.carousel-caption h3{
    text-shadow:none;
    font-size: 50px;
    font-weight: 0;
    margin: 20px 0px;
    transition-delay:.3s;
    -webkit-transition-delay:.3s;
    -o-transition-delay:.3s;
   text-transform: uppercase  ;
}
.carousel-caption p{
    font-size:28px;
    font-weight: 500;
    color: #fff;
    transition-delay:.3s;
    -moz-transition-delay:.3s;
    -o-transition-delay:.3s;
    margin: 40px 0px;
}
.carousel-caption img{
    padding:10px 10px 10px 20px;
}
.line{
   width: 100px;
    height: 5px;
    color: #222;
    margin: 0px auto;
}
.carousel-caption p i{
    font-size: 7px;
    margin: 0px 3px;
    position: relative;
    top: -3px;
}
.carousel .item {
    -webkit-transition: opacity .3s;
    -moz-transition: opacity .3s;
    -ms-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
}

.btn-featured{
    text-decoration:none;
    position: relative;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background: transparent;
    border-radius:2px;
    z-index:1;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    padding: 15px 40px !important;
    text-transform: uppercase;
    margin-top:20px;
    margin-right: 10px;
}

.carousel-control.left,.carousel-control.right{
    background-image:none !important;
    background-repeat:no-repeat !important;
}
.carousel-control{
    width:4% !important;
}

.carousel-caption img{
    height: auto;
}
 .carousel-indicators{
    left: 20%;
    margin: 0 auto;
    bottom: 50%;
}

.carousel-indicators .active {
    width: 0;
    height: 0;
    margin: 0;
    background-color: transparent ;
}
.carousel-control.left span{
    padding:15px;
    background:   #000;
}
.slides-control .carousel-control i{
    line-height: 36px;
    font-size: 32px;
    padding-top: 6px;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border-radius: 50%;
    height: 50px;
}

.slides-control .carousel-control{
    position: absolute;
    width: 240px;
    top: 35%;
    z-index:10;
}

.carousel-control.left{
    left: 0px;
}
.carousel-control.right{
    right: 15px;
}
.carousel-control.right span{
   background: #000;
   padding: 15px;

}
.carousel-control.left{
    width: 120px;
    height: 40px;
}
.carousel-control.right{
    width: 120px;
    height: 40px
}
.overlay-slide{
    height: 850px;
    position: relative;
    width: 100%;
}
.overlay-slide:after{
    background: url("../images/banner/overaly.png");
    position: absolute;
    content: "";
    z-index: 3;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
}
.overlay-slide img{
    /*opacity:.6;*/
   /* width: 100%;
    height: auto;*/
    width: 100%;
    display: block;
    padding: 0; 
    height:   700px;
}

.carousel.fade{
  opacity: 1;
}
.carousel.fade .item{
  display: block;
  position: absolute; 
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  transition: opacity .5s;
}
.carousel.fade .item.active{
  position: relative;
  opacity: 1;
}
/*-- Animation --*/

.carousel .item.active .animated2 {
    -webkit-animation:  flipInX 2s ease-in 200ms both;
    animation: flipInX 2s ease-in 200ms both;
}

.carousel .item.active .animated3 {
    -webkit-animation:  flipInX 1s ease-in 200ms both;
    animation: flipInX 1s ease-in 200ms both;
}



/* Service  Area
============================================================= */

.main_feature{
    margin: 40px 0px;
}

.feature_content:hover .feature_content:after{
    border:2px solid#fff!important;
}
.feature_content:hover i{
    top: -20px;
}

.feature_content:hover i,.feature_content:hover  h5{
      cursor: pointer;
}
.feature_content i{
    font-size:60px;
    line-height: 60px;
    z-index:3;
    position: relative;
     -webkit-transition: all .4s ease .1s;
    -o-transition: all .4s ease .1s;
    transition: all .4s ease .1s;
    display: block;
}

.feature_content h5{
    font-size: 16px;
    font-weight: 800;
    line-height: 19px;
    margin: 0px 0px 30px;
    text-transform: uppercase;
    padding-top: 34px;
   -webkit-transition: all 150ms linear 0s;
    -o-transition: all 150ms linear 0s;
    transition: all 150ms linear 0s;
    letter-spacing: -1px;
}

.feature_content p{
    font-size: 14px;
    line-height: 24px;
    color: #222;
}
.feature_content a{
    text-decoration:none;
    padding: 8px;
    margin-top: 10px;
}
.feature_content a:hover{
    text-decoration:none;
}





/*EVENTS*/


.attorney {
  padding: 40px 0 ;
  margin: 0; }
  .attorney .block_three, .attorney .block_one, .attorney .block_two {
    margin:  0 0 22px 0;
       width: 100%;
    height: 300px;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
 }
.attorney .block_three button, .attorney .block_one button, .attorney .block_two button{

    background: #af3329;
    border: none;
    margin: 20px 0;  
    padding: 10px 20px;
    color: #fff;


 }
.attorney .block_three button:hover, .attorney .block_one button:hover, .attorney .block_two button:hover{
background: #435c85 ;
  -o-transition: all .4s;
  -ms-transition: all .4s;
  -moz-transition: all .4s;
  -webkit-transition: all .4s;
  transition: all .4s;



 }


/* .attorney .block_three:hover{
   background:  rgba(180, 246, 92, 0.611765);
     -o-transition: all .4s;
  -ms-transition: all .4s;
  -moz-transition: all .4s;
  -webkit-transition: all .4s;
  transition: all .4s;
 } 

 .attorney .block_one:hover{
    background: rgba(255, 181, 4, 0.54902); 
    -o-transition: all .4s;
  -ms-transition: all .4s;
  -moz-transition: all .4s;
  -webkit-transition: all .4s;
  transition: all .4s;} 

 .attorney .block_two:hover{

 background:   rgba(117, 184, 229, 0.458824);
   -o-transition: all .4s;
  -ms-transition: all .4s;
  -moz-transition: all .4s;
  -webkit-transition: all .4s;
  transition: all .4s;

 }*/
 
    .attorney .block_three img, .attorney .block_one img, .attorney .block_two img {
      width: 79%; }
      
   
  .attorney .hidden_one .bl_img, .attorney .hidden_two .bl_img, .attorney .hidden_three .bl_img {
    text-align: center; }
    .attorney .hidden_one .bl_img img, .attorney .hidden_two .bl_img img, .attorney .hidden_three .bl_img img {
      padding: 40px 0 0; }
  .attorney .hidden_one .bl_text h3, .attorney .hidden_two .bl_text h3, .attorney .hidden_three .bl_text h3 {
    text-transform: uppercase;
    color: #d6d6d6; }
  .attorney .hidden_one .bl_text h6, .attorney .hidden_two .bl_text h6, .attorney .hidden_three .bl_text h6 {
    text-transform: uppercase;
    color: #d6d6d6; }
  .attorney .hidden_one .bl_text ul, .attorney .hidden_two .bl_text ul, .attorney .hidden_three .bl_text ul {
    text-align: left;
    color: #999; }
.attorney .block_one{
  background: url('../img/1nn.jpg')no-repeat top;  background-size: cover; ;
}

.attorney .block_two{
  background: url('../img/2nn.jpg')no-repeat top; 

}
.attorney .block_three{
  background: url('../img/slide-2.jpg') no-repeat top;   background-size: cover;;
}

.arrow_box_two {
    width: 100%;
  position: absolute;
  bottom: 0;
  text-align: center;
    margin-top: 20px;
  }

.arrow_box_two:after, .arrow_box_two:before {
  bottom: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none; }

.arrow_box_two:after {
  border-color: rgba(136, 183, 213, 0);
  border-bottom-color:  #d0e4f1;
  border-width: 21px;
  margin-left: -31px; }

.arrow_box_two:before {
  border-color: rgba(194, 225, 245, 0);
  border-bottom-color:  #d0e4f1; }

.arrow_box_three {
    width: 100%;
   position: absolute;
  bottom: 0;
  margin-top: 20px; 
  text-align: center;}

.arrow_box_three:after, .arrow_box_three:before {
  bottom: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none; }

.arrow_box_three:after {
  border-color: rgba(136, 183, 213, 0);
  border-bottom-color: #abbbce ;
  border-width: 21px;
  margin-left: -31px; }

.arrow_box_three:before {
  border-color: rgba(194, 225, 245, 0);
  border-bottom-color: #abbbce; }

.arrow_box {
  margin-top: 20px;
  width: 100%;
  text-align: center;
    position: absolute;
  bottom: 0; }

.arrow_box:after, .arrow_box:before {
  bottom: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none; }

.arrow_box:after {
  border-color: rgba(136, 183, 213, 0);
  border-bottom-color: #e0d3f5;
  border-width: 21px;
  margin-left: -31px; }

.arrow_box:before {
  border-color: rgba(194, 225, 245, 0);
  border-bottom-color: #e0d3f5; }



.arrow_box_tabs {
    position: absolute;
    /* bottom: 0; */
    text-align: center;
    /* margin-top: 24px; */
  }

.arrow_box_tabs:after, .arrow_box_tabs:before {
  bottom: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none; }

.arrow_box_tabs:after {
  border-color: rgba(136, 183, 213, 0);
  border-bottom-color:  #435c85;
      border-width: 21px;
    margin-left: 248px;
    top: -21px;}


.attorney .bl_text{
  width:  57%;
  position: absolute; 
     margin:19%  18%;

}

.attorney .bl_text h3{
  color: #000;
  background: rgba(255, 255, 255, 0.86);
  padding: 10px 13px;
  
}

.attorney .bl_text p{
 margin: 10px;
     font-weight: 600;
}


/* TABS */


.tabs_block {
    width: 100%;
    margin: 0 auto;
    background: #eee;
}
.tabs_block:after {
    content:"";
    display:block;
    clear:both;
}

.tabss {
    margin: 0;
    padding: 0;
    list-style: none;
    float:left;
}

.tabss li {
    text-align: center;
    float: left;
    width: 11%;
    padding: 21px 15px;
    background: #435c85;
    margin-right: 1px;
    cursor: pointer;
    color: #fff;
    height: 100px;
    -webkit-transition:all .2s linear 0s;
    -webkit-transition-delay:.2s 0s;
    transition:all .2s linear 0s;
}

.tabss li:hover {
    background: #eee;
    color:#4F5559; 
    -webkit-transition:all .2s linear 0s;
    -webkit-transition-delay:.2s 0s;
    transition:all .2s linear 0s;
}


.tabss li.active {
    background: #eee;
    color:#4F5559; 
}

.cont_tabs {
    background: #eee;
    width: 99.8%;
    padding:8% 2% ;
    display:none;
    text-align: left;
    float: left;
}

.cont_tabs p {
    margin-bottom: 15px;
    font-weight: 600;
}

.visible, .open_tab {
    display: block;
}

.cont_tabs img {
    width: 100%;
    height: auto;
}

.pl-left {
    float:left;
    margin:5px 15px 5px 0;
}

.pl-right {
    float:right;
    margin:5px 0 5px 15px;
}

@media (max-width: 300px) {
  .tabs, .tabs li {
   float: none;
  }
}



.tabs {
  max-width: 100%;
  padding: 0px;
  margin: 0 auto;
}

.tabs>section {
  display: none;
  padding: 15px;
  background: #fff;
  border: 1px solid #ddd;
}
.tabs>section>h4 {
  color: #ea938e;
  font-weight: 600;

}
.tabs>section>p {
  margin: 0 0 5px;
  line-height: 1.5;
  color: #383838;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

 
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.tabs>input {
  display: none;
  position: absolute;
}
.tabs>label {
  display: inline-block;
  margin: 0 auto;
  padding: 15px 0;
  font-weight: 600;
  text-align: center;
  color: #fff;
  border: 0px solid #ddd;
  border-width: 1px 1px 1px 1px;
  background: #4a6492;
  border-radius: 3px 3px 0 0;
  width: 19.75%;
  font-size: 12px;
}

.tabs>label:before {
  font-family: fontawesome;
  font-weight: normal;
  margin-right: 10px;
}
.tabs>label[for*="1"]:before {
  content: "\f19d";
}
.tabs>label[for*="2"]:before {
  content: "\f20e";
}
.tabs>label[for*="3"]:before {
  content: "\f0b1";
}
.tabs>label[for*="4"]:before {
  content: "\f007";
}
.tabs>label[for*="5"]:before {
  content: "\f164";
}

 
.tabs>label:hover {
  color: #;
  cursor: pointer;
}

.tabs>input:checked+label {
  color: #555;
  border-top: 2px solid #ea938e;
  border-bottom: 1px solid #fff;
  background: #fff;
}

#tab1:checked~#content-tab1, #tab2:checked~#content-tab2, #tab3:checked~#content-tab3, #tab4:checked~#content-tab4, #tab5:checked~#content-tab5 {
  display: block;
}

 

 @media only screen and (max-width: 1200px){
  .tabs>label {
    display: inline-block;
    margin: 0 auto;
    padding: 15px 0;
    font-weight: 600;
    text-align: center;
    color: #fff;
    border: 0px solid #ddd;
    border-width: 1px 1px 1px 1px;
    background: #4a6492;
    border-radius: 3px 3px 0 0;
    width: 19.7%;
    font-size: 10px;
}
}

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

  .tabss {
      margin: 0;
      padding: 0;
      list-style: none;
      float: left;
      width: 30%;
  }
  .tabss li{
    width: 100%;
    float: none;
  }
.cont_tabs {
    background: #eee;
    width: 70%;
    padding: 8% 2%;
    text-align: left;
    float: left;
}
  .tabs>label {
    display: inline-block;
    margin: 0 auto;
    padding: 15px 0;
    font-weight: 600;
    text-align: center;
    color: #fff;
    border: 0px solid #ddd;
    border-width: 1px 1px 1px 1px;
    background: #4a6492;
    border-radius: 3px 3px 0 0;
    width: 19.6%;}
.tabs>label {
    font-size: 0;
  }
  .tabs>label:before {
    margin: 0;
    font-size: 18px;
  }
}





@media screen and (max-width: 768px) {
   .tabs>label {
    width: 19.5%;
}

}

@media screen and (max-width: 600px) {
   .tabs>label {
    width: 19.4%;
}

}
@media screen and (max-width: 480px) {
  .tabs>label {
    width: 19.0%;
}
}
