/* header */
:root {
  --primary-background-color: #00B074;
  --primary-background-secondary-color: #fff;
  --primary-background-third-color: #F0FAF7;
  --primary-white-color: #ffffff;
  --secondary-color: #00B074;
  --primary-font: 'Inter', sans-serif;
  --primary-green: #a3e951;
  --secondary-green: #5cbb5c;
  --primary-gray: #dbdbe0;
  --primary-white:#ffffff;
  --primary-blue:#4DBBEF;
  --primary-yellow:#A4E550;
  --trans: all 0.5s ease;
}
body {
    margin: 0;
}
body,
html {
  background-color: var(--primary-white-color);
  font-family: var(--primary-font);
  margin:0;
}
a:hover {
  text-decoration: none;
}
p{font-size: 18px;
    color: #52526C;
line-height: 30px;}
img, iframe  {
  max-width: 100%;
}

.container {
    width: 93%;
	max-width:1200px;
	margin:0 auto;}
header {background:#fff;}

.topHead {
    display: flex;
    flex-direction: row;
    justify-content: space-between;align-items: center; padding: 10px 0 0;}
.topNav {
    border-top: 1px solid #F5F5F5;
	    margin-top: 11px;
}
.topHeadLang ul{margin:0;padding:0;}
.topHeadLang ul li{list-style: none;
    display: inline-block;
    margin: 0 10px;}
.topHeadLang ul li a{display:inline-block;border-radius: 100px;width: 24px;
    height: 24px;}
.topHeadLang ul li a:hover{-webkit-box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 75%);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 75%);}
.btn {
    background-color: var(--primary-background-color);
    color:  var(--primary-white-color);
	    border-radius: 100px;
    text-decoration: none;
    padding: 10px 25px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;border:2px solid var(--secondary-color);}
.btn:hover{border:2px solid var(--secondary-color);
background-color: var(--primary-background-secondary-color);color:var(--secondary-color);}

.topHeadLang {
    display: flex;
    justify-content: center;
    align-items: end;column-gap: 12px;}

.topHeadLang .btn.btn-green {
    padding: 10px 25px;
    font-size: 14px;
}

.menu {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    padding: 0;
	margin-bottom: 0;
	margin-top: 5px;
}

.menu > li {
  margin: 0 1rem;
      list-style: none;
}
.menu > li a{color: #0A0A32;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
    font-size: 16px;
    padding: 15px 3px;
    display: inline-block;
    width: 100%;
    text-align: center;border-bottom: 3px solid transparent;}
.menu > li a:hover, .menu > li.active a {
    color: #117964;
    border-bottom: 3px solid var(--secondary-color);
    transition: color 0.3s ease-in-out;
}	
.menu-button-container {
  display: none;
  height: 100%;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #00B074;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: '';
  margin-top: -8px;
}

.menu-button::after {
  content: '';
  margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}

.top-banner{background-color: var(--primary-background-third-color);
-webkit-box-shadow: inset 0px 6px 11px -5px rgb(0 0 0 / 18%);
    -moz-box-shadow: inset 0px 6px 11px -5px rgb(0 0 0 / 18%);
    box-shadow: inset 0px 6px 11px -5px rgb(0 0 0 / 18%);}

.top-banner-content {
    display: flex;
    align-items: center;
    padding: 50px 3% 0;
	    column-gap: 58px;}
.top-banner-text {
    width: 56%;
	    padding-bottom: 100px;}
.top-banner-text p{font-size: 18px;
    color: #52526C;
    line-height: 30px;}
.btn.btn-black, .btn.btn-green {
	padding: 18px 25px;
    font-size: 16px;
    font-weight: 700;}
	
.btn.btn-black{color: #282B32;
    border-color: #282B32;
    background-color: var(--primary-background-third-color);}
.btn.btn-green{color:  var(--secondary-color);
    border-color: var(--secondary-color);
    background-color: #fff;}
	
.btn.btn-black:hover, .innerPage .btn.btn-black:hover{color: var(--primary-white-color);
    border-color: #fff;
    background-color: var(--primary-background-color);}
.btn.btn-green:hover{color: var(--primary-white-color);
    border-color: #fff;
    background-color: var(--primary-background-color);}
.btn.btn-green-frt{background-color: var(--primary-background-color);color: var(--primary-white-color);}

.btn.btn-green-frt:hover{color:  var(--secondary-color);
    border-color: var(--secondary-color);
    background-color: var(--primary-background-secondary-color);}
	
.h1Title{font-size: 50px;
    color: #0A0A32;
    font-weight: 400; margin-top: 0;margin-bottom: 30px;}
.h1Title span{ color: #00B074;
    font-weight: 700;
    width: 100%;
    display: inline-block;}
.new-era{background-color: var(--primary-background-color); padding:60px 0 40px;text-align: center;}

.scroll-prompt {
    display: inline-block;
    position: relative;
    margin: 0 auto;
    right: 0;
    text-align: center;
    border-radius: 100px;
    border: 3px solid #fff;
    width: 64px;
    height: 64px;
}
.scroll-prompt .scroll-prompt-arrow-container {
  -webkit-animation-name: bounce;
          animation-name: bounce;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.scroll-prompt .scroll-prompt-arrow {
  -webkit-animation-name: opacity;
          animation-name: opacity;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.scroll-prompt .scroll-prompt-arrow:last-child {
  animation-direction: reverse;
  margin-top: -6px;
}
.scroll-prompt .scroll-prompt-arrow > div {
  height: 32px;
}

@-webkit-keyframes opacity {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0.1;
  }
  20% {
    opacity: 0.2;
  }
  30% {
    opacity: 0.3;
  }
  40% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.5;
  }
  60% {
    opacity: 0.6;
  }
  70% {
    opacity: 0.7;
  }
  80% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.9;
  }
  100% {
    opacity: 1;
  }
}

@keyframes opacity {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0.1;
  }
  20% {
    opacity: 0.2;
  }
  30% {
    opacity: 0.3;
  }
  40% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.5;
  }
  60% {
    opacity: 0.6;
  }
  70% {
    opacity: 0.7;
  }
  80% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.9;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes bounce {
  0% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(3px);
  }
  20% {
    transform: translateY(6px);
  }
  30% {
    transform: translateY(9px);
  }
  40% {
    transform: translateY(12px);
  }
  50% {
    transform: translateY(15px);
  }
  60% {
    transform: translateY(18px);
  }
  70% {
    transform: translateY(21px);
  }
  80% {
    transform: translateY(24px);
  }
  90% {
    transform: translateY(27px);
  }
  100% {
    transform: translateY(30px);
  }
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(3px);
  }
  20% {
    transform: translateY(6px);
  }
  30% {
    transform: translateY(9px);
  }
  40% {
    transform: translateY(12px);
  }
  50% {
    transform: translateY(15px);
  }
  60% {
    transform: translateY(18px);
  }
  70% {
    transform: translateY(21px);
  }
  80% {
    transform: translateY(24px);
  }
  90% {
    transform: translateY(27px);
  }
  100% {
    transform: translateY(30px);
  }
}

.new-era h3{ font-size: 40px;
    color: #fff;
    margin: 0 0 35px;
    padding: 0 250px;
	line-height: 53px;}
.new-era-testimonial{padding:80px 0 200px;}
.bio-era {
    display: flex;
    padding: 60px 0;column-gap: 50px;}
.bio-era-left {
    flex: 0 0 52%; text-align: center;}
.bio-era-left img{padding: 20px 0 40px;width: 100%;}
.bio-era-right {
    font-size: 18px;
    color: #52526C;
    line-height: 30px;flex: 0 0 481px;}

.video-era {
	    background-color: var(--primary-background-third-color);
    text-align: center;
        padding: 70px 0;}
.video-era iframe{border:10px solid #00B074;}

.team-bio {
    padding: 70px 0 100px;}
.team-bio-content {
    display: flex; padding: 0 4%; column-gap: 70px;}
.team-bio-content-lt {
    flex: 0 0 52%;}
.team-bio-content-lt h2{font-size:38px; color:#0A0A32;font-weight:400;margin: 0 0 35px;line-height: 55px;}

.team-bio-content-lt p{font-size: 18px;
    color: #52526C;
    line-height: 30px;}
.btn.btn-pd {
    padding: 18px 55px;}
.mid-line {
    border-top: 9px double #00B074;
    opacity: 0.1;
    margin: 70px 0;}
.testimonial-slide {
    background: #fff;
}
.testimonial {
 column-gap: 30px;
  display: flex;
  padding: 70px 90px;
}
.testimonial .description {
 font-size: 25px;
    font-weight: 400;
    color: #52526C;
    line-height: 40px;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    position: relative;
    text-align: left;
	    margin-bottom: 0;
}

.testimonial .pic {
       margin: 11px auto;
    overflow: hidden;
    flex: 0 0 5%;
}
.testimonial .pic img {
  width: 100%;
  height: auto;
}
.testimonial .title {
  font-family: "Roboto", sans-serif;
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  color: #ee0979;
  text-transform: capitalize;
  margin: 0;
}
.tst-name, .tst-dst {
    width: 100%;
    display: inline-block;
}
.tst-author {
    line-height: 23px;
    display: block;
    margin-top: 25px;
}
.tst-name{font-size: 18px;
    color: #00B074;
    font-weight: 700;}
.tst-dst {
    font-size: 14px;
    color: #52526C;}
.testimonial .post {
  font-family: "Raleway", sans-serif;
  display: inline-block;
  font-size: 20px;
  color: #848484;
}
.owl-theme .owl-controls {
  margin-top: 10px;
    position: absolute;
    bottom: -30%;
    right: 0;
    left: 0;
}
.owl-theme .owl-controls .owl-buttons div {
     display: inline-block;
    margin: 0 10px;
}
/*.owl-prev:before,
.owl-next:before {
  content: "\f104";
  font-family: "fontawesome";
  font-size: 23px;
  font-weight: 700;
  color: #fff;
}
.owl-next:before {
  content: "\f105";
}*/
.owl-buttons .owl-prev, .owl-buttons .owl-next{width: 65px;
    height: 65px;
    background-size: cover;
    display: inline-block;}
.owl-buttons .owl-prev {
	background-image: url("../images/left-arrow.png");
}
.owl-buttons .owl-next {
	background-image: url("../images/right-arrow.png");
}
.owl-buttons .owl-prev:hover, .owl-buttons .owl-next:hover{opacity:0.6;}

.sub-text{color: #00B074;
    font-size: 12px;
    text-transform: uppercase;font-weight: 600;margin-bottom: 15px;letter-spacing: 2px;}
.inh1Title.h1Title{font-size: 38px;}
.innerPage .h1Title span{width:auto;}
.subPara {padding: 0 12%;}
.innerPage .btn.btn-black {
    background-color: #fff;}
	
/* Features page */
.innerPageFtrs .top-banner-text {
    width: 100%;padding-bottom: 40px;}
.innerPageFtrs .h1Title span{width:auto;}
.innerPageFtrs .inh1Title.h1Title {line-height: 54px;}

.accordion_head {
    color: #0A0A32;
    cursor: pointer;
    font-size: 25px;
    margin: 0 0 1px 0;
    padding: 22px 11px;
    font-weight: 600;border-bottom: 1px solid #00B074;}
.accordion_body {
    font-size: 18px;
    color: #52526C;
    padding: 8px;}
.accordion_body p {
       padding: 0 5px 25px 5px;
    margin: 0px;
}
.plusminus {
        float: right;
    background: #00B074;
    width: 46px;
    height: 46px;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 100px;
    font-size: 40px;
    font-weight: 300;
    margin-top: -10px;
}
.faq-sec {
    padding: 80px 0 100px;
}
/* Features page END */
/* About page */
.bioTxt{
	background-color: var(--primary-background-color);
    padding: 60px 0 40px;}
.bioTxt h2 {
    font-size: 40px;
    color: #fff; font-weight: 400;margin: 0;}
.bioTxt p{color: #fff;}

.bioTxt.bioTxtWht {
	background-color: #F0FAF7;}
.bioTxt.bioTxtWht h2{color: #0A0A32;}
.bioTxt.bioTxtWht h2 strong{color: #00B074;}
.bioTxt.bioTxtWht p {color: #52526C;}
.innerPageFtrs .owl-theme .owl-controls {
bottom: -45%;}
/* Aout page END */

/* Working page */
.work-list{padding: 80px 0 100px;}
.work-list ul{margin:0;padding:0;}
.work-list ul li{list-style: none;
    display: flex;
        align-items: flex-start;
    column-gap: 40px;
	    padding: 45px 0;border-bottom:1px solid #00B074;}
.numList {
        display: flex;
    align-items: center;
    justify-content: center;}
.numList span{
    font-size: 25px;
    color: #00B074;
    font-weight: 600;
    border: 2px solid #00B074;
    border-radius: 100px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;}
.work-content h3 {
    margin: 0;
    font-size: 25px;
    color: #0A0A32;
    font-weight: 600;}
.work-content p {
    margin-bottom: 0;}
	
/* Working page END */

.solbioTxt {
    display: flex;
       column-gap: 100px;
    background: #F0FBF7;}
.solbioTxtImg {
    flex: 0 54%;}
.solTxt {
    flex: 0 440px;
    display: flex;
    flex-direction: column;
    justify-content: center;}
.totalCoverage {
    padding: 75px 0 10px;
}
.totalCoverage .container{max-width: 1000px;}
.totalCoverageTxt {
    -webkit-box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 75%);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 20px -10px rgb(0 0 0 / 75%);
    text-align: center;
    padding: 20px;}
.totalTxt {
	border:1px solid #00B074; padding: 50px 80px;}
.totalTxt h2{margin: 0;
    font-size: 30px;
    font-weight: 500; color: #0A0A32;margin: 0 0 20px;}
.totalTxt p {
    margin: 0;}
.priceSec {
    background: #00B074;
    padding: 70px 0 80px;}
.secTitle {
    margin: 0;
    font-size: 40px;
    font-weight: 400;
}
.priceHead {
    text-align: center;
    color: #fff;    margin-bottom: 45px;}
.priceHead p{color: #fff;}

.priceGrid {
    display: flex;
    text-align: center; column-gap: 30px;padding: 0 50px;}
.priceCol {
        background: #fff;
    border-radius: 10px;
    padding: 40px;
    flex: 0 0 24%;}
.pricePlan {
    margin: 0;
    font-size: 20px;
    color: #00B074;}
.priceCost {
    color: #52526C;
    margin: 20px 0 0;
    font-size: 54px;}
.priceCost span {
    font-size: 20px;}
.priceCol h6 {
       font-size: 14px;
    color: #52526C;
    margin: 0 0 35px;
    font-weight: 500;}
.priceCol p {
    margin: 40px 0 20px 0;line-height: 42px;}
.priceCol .btn.btn-green {
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 700;}

footer{background:#282B32;color:#fff;}
.footBotom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 10px;}
.footHeadLang {
    width: 74%;
    text-align: right;
}
.footHeadLang ul{margin: 0;
    padding: 0;}
.footHeadLang ul li{display: inline-block;
    list-style: none;
    text-decoration: none;    margin-left: 6%;}
.footHeadLang ul li a{color: #fff;
    text-decoration: none;
	    font-size: 16px;
    font-weight: 300;}
.footHeadLang ul li a:hover, .footHeadLang ul li.active a{color: #00B074;}




@media (max-width: 1024px){
.h1Title {
font-size: 40px; margin: 0;}
.bio-era-left {
    flex: 0 0 40%;}
.new-era h3 {padding: 0 160px;}
.team-bio-content-lt h2 {
    font-size: 30px;
    line-height: 40px;}
.footHeadLang ul li, .navbar-container input[type="checkbox"]{margin-left: 3%;}
}


@media (max-width: 768px){
.top-nav {
    position: relative;}
.bio-era-left {
    flex: 0 0 29%;}
}
@media (max-width: 767px){
.topHeadLang ul li { margin: 0 5px;}
  .menu-button-container {
    display: flex;
	    padding: 20px 0 28px;
  }
  .menu {
    position: absolute;
    top: 0;
    margin-top: 50px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;    z-index: 10;
  }
  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle:checked ~ .menu li {
        border: 1px solid #fff;
    padding: 23px;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 1;
    text-align: left;
    line-height: 0; }
  .menu > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: white;
    background-color: #00B074;opacity: 0;
  }
  .menu > li:not(:last-child) {
    border-bottom: 1px solid #444;
  }
.menu > li a{color: #fff;padding: 0 3px; text-align: left;}
.menu > li a:hover, .menu > li.active a {
    color: #0A0A32;}
.top-banner-content, .topHead, .bio-era, .team-bio-content, .footBotom{flex-direction: column;}
.team-bio-content-rv {
    flex-direction: column-reverse;}
.top-banner-text, .bio-era-right, .team-bio-content-rv, .team-bio {text-align: center;}
.top-banner-text {
    width: 95%;}
.h1Title, .inh1Title.h1Title {
        font-size: 24px;
    margin: 0;
    text-align: center;}
.top-banner-text {
    width: 95%;
    padding-bottom: 50px;}
.new-era {
   padding: 30px 0;}
.new-era h3 {
    padding: 0 9px;
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 23px;}
.bio-era {
    padding: 30px 0;}
.bio-era-left img {
    padding: 10px 0;}
.bio-era-right {
    width: 86%;
    margin: 20px 20px 0;}
.video-era{padding: 40px 6%;}
.video-era iframe {width: 94%;}
.team-bio {padding: 10px 0 30px;}
.team-bio-content-lt h2 {
    font-size: 23px;
    line-height: 33px;
    margin-bottom: 0;
	margin-top: 20px;}
.mid-line {margin: 20px 0 0;}
.testimonial {padding: 30px 20px;}
.testimonial .description {
    font-size: 16px; line-height: 25px;}

.new-era-testimonial {
    padding: 40px 0 120px;}
.owl-buttons .owl-prev, .owl-buttons .owl-next {
    width: 50px;
    height: 50px;}
.owl-theme .owl-controls {
bottom: -20%;}
.footHeadLang {
    width: 98%;
    text-align: center; margin: 10px 0;}
.footHeadLang ul li a {
    font-size: 14px;
    margin-bottom: 6px;
    display: inline-block;}

.topHeadLang ul li { margin: 0 5px;width: 11%;}
.topHeadLang ul li img {
    width: 89%;}
.btn {
    padding: 10px 17px;
    font-size: 10px;
}
  .menu-button-container {
    display: flex;
	    padding: 14px 0 28px;
  }
  .menu {
    position: absolute;
    top: 0;
    margin-top: 50px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;    z-index: 10;
  }
  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle:checked ~ .menu li {
        border: 1px solid #fff;
    padding: 23px;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 1;
    text-align: left;
    line-height: 0; }
  .menu > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: white;
    background-color: #00B074;opacity: 0;
  }
  .menu > li:not(:last-child) {
    border-bottom: 1px solid #444;
  }
.scroll-prompt {
    width: 50px;
    height: 50px;}
.btn.btn-black, .btn.btn-green {
        padding: 10px 18px;
    font-size: 12px;
    font-weight: 700;}
.team-bio-content-lt p, .bio-era-right, .top-banner-text p{font-size: 16px;}
.team-bio-content-lt br {
    display: none;}
.subPara {
    padding: 0 0%;}
.video-era br {
    display: none;}
.innerPageFtrs .inh1Title.h1Title {
    line-height: 30px;
    font-size: 20px;}
.innerPageFtrs .top-banner-text {
    padding-bottom: 15px;}
.faq-sec {
    padding: 20px 0 40px;}
.accordion_head {
    padding: 15px 11px 15px 11px;font-size: 13px;}
.plusminus {
    width: 30px;
    height: 30px;
    font-size: 25px;
    margin-top: -8px;}
.bioTxt { padding: 30px 0 30px;text-align: center;}
.bioTxt h2 {
    font-size: 22px;}
.innerPageFtrs .owl-theme .owl-controls {
    bottom: -28%;}
.work-list {
    padding: 30px 11px 40px;}
.work-list ul li{padding: 20px 0;column-gap: 16px;}
.work-content h3 {
    font-size: 18px;}
.numList span {
    font-size: 18px;
    width: 30px;
height: 30px;}
p {
font-size: 16px;line-height: 25px;}
.priceGrid, .solbioTxt {flex-direction: column;}
.solTxt {
    padding: 20px 9%; text-align: center; justify-content: flex-start;flex: 0 330px;}
.totalCoverage {
    padding: 35px 0 0;}
.totalTxt {
    border: 1px solid #00B074;
    padding: 40px 20px;}
.totalTxt h2 {
font-size: 25px;}
.priceSec {
    padding: 35px 0;}
.secTitle {
font-size: 25px;}
.priceGrid {padding: 0 15px;}
.priceCol{padding: 40px 10px 20px;margin-bottom: 15px;}
.priceCol p {
margin: 20px 0 20px 0; line-height: 25px;}
.priceCost {font-size: 45px;}
.priceHead {margin-bottom: 30px;}
.topHeadLang .btn.btn-green, .topHeadLang .btn{padding: 8px 13px;
    font-size: 10px;}
}


