@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;600;700&display=swap');
.rt-post-grid.rt-post-grid-style-3 .post-content {
    border: 1px solid var(--color-border) !important;
}

#back-to-top {
    display: none !important;
}

.text-icon-pulse {
    position: absolute;
    top: 104%;
    z-index: 99999;
    color: var(--color-primary);
    white-space: nowrap
}

.icon-pulse {
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 999999999;
}

.icon-pulse {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-pulse svg {
    fill: #006c43;
}

.icon-pulse a {
    background: var(--color-primary);
    color: #000;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-text-pulse {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 999999999;
}

.icon-text-pulse {
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-text-pulse svg {
  fill: #006c43;
}

.icon-text-pulse a {
  background: var(--color-primary);
  color: #006c43;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  padding: 20px;
  font-weight: bold;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle1,
.circle2 {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--color-primary);
    position: absolute;
}

@keyframes pulse {
    from {
        transform: scale(1);
        opacity: 1
    }

    to {
        transform: scale(4);
        opacity: 0
    }
}

.circle1 {
    animation: pulse 3s infinite
}

.circle2 {
    animation: pulse 1.5s infinite
}

.btn_pethub_primary {
    padding: 5px 18px 5px 25px;
    font-size: 0.75rem;
    font-weight: 700;
    height: 44px;
    background: transparent;
    color: #646464;
    text-transform: uppercase;
    border: 1px solid var(--color-border);
    border-radius: 3px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    letter-spacing: 0.05rem;

    background-color: #006c43;
    color: var(--color-white);
    border-color: transparent;
    height: 46px;
}

.btn_pethub_primary:hover {
    background-color: transparent;
    color: #006c43;
    border-color: #006c43;
}

.video-event .video-slide {
  min-height: 500px;
}

.second-list-group .list-group-item {
  border-right: none;
  border-left: none;
  border-top: none;
}

.second-list-group .list-group-item:last-child {
  border-right: none;
  border-left: none;
  border-top: none;
  border-bottom: none;
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li
{
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button
{
  font-size: 0;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: #e2e2e2;
  text-align: center;
  border-radius: 50%;
  display: block;
  cursor: pointer;
  border: 0;
  outline: none;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
    opacity: 1;
}
.slick-dots li.slick-active button
{
  background: #006c43;
}

/*==========================
   Category area start
===========================*/

.category-item {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.08);
  transition: all ease 0.5s;
  margin-bottom: 30px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.category-item .icon {
  float: left;
  padding: 30px;
  margin-right: 30px;
  transition: all ease 0.5s;
  height: 90px;
  width: 90px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  text-align: center;
}
.category-item .content {
  padding: 30px;
  transition: all ease-in-out 0.5s;
  height: 90px;
}
.category-item .icon i {
  color: #fff;
  font-size: 26px;
  line-height: 28px;
}
.category-item:hover h3 {
  color: #fff;
}
.category-item.green-bg .icon {
  background: #006c43;
}
.category-item.green-bg:hover {
  background: #006c43;
}
.category-item.green-bg:hover .icon {
  background: rgba(255, 255, 255, 0.2);
}
.category-item.yellow-bg .icon {
  background: #f7b219;
}
.category-item.yellow-bg:hover {
  background: #f7b219;
}
.category-item.yellow-bg:hover .icon {
  background: rgba(255, 255, 255, 0.2);
}
.category-item.blue-bg .icon {
  background: #005A98;
}
.category-item.blue-bg:hover {
  background: #005A98;
}
.category-item.blue-bg:hover .icon {
  background: rgba(255, 255, 255, 0.2);
}
.category-item.gray-bg {
  background: #f7f7f7;
}
.category-item.gray-bg .icon {
  background: #e5e5e5;
}
.category-item.gray-bg .icon i {
  color: #000000;
}
.category-item.gray-bg .content h3 {
  color: #000000;
}
.category-item.gray-bg:hover {
  background: #6c6f72;
}
.category-item.gray-bg:hover .content h3 {
  color: #FFF;
}
.category-item.gray-bg:hover .icon {
  background: rgba(255, 255, 255, 0.2);
}
.category-item.gray-bg:hover .icon i {
  color: #FFF;
}

@media (max-width: 1200px) {
  .category-item .icon {
    margin-right: 20px;
    height: auto;
  }
}
@media (max-width: 1024px) {
  .category-item .icon {
    padding: 24px 30px;
  }

  .plans-price{
    font-size: 22px !important;
  }
}

@media (max-width: 991px) {
  .category-item .icon {
    padding: 25px 30px;
  }
}

@media (max-width: 767px) {
  .category-item {
    padding-top: 30px;
    text-align: center;
  }
  .category-item .icon {
    float: none;
    display: inline-block;
    margin-right: 0;
  }
  .col-md-6:last-child .category-item {
    margin-bottom: 0;
  }
  .col-md-6:last-child .single-items {
    margin-bottom: 0;
  }
  .circle-bg.tiles {
    display: none;
  }
  .single-item .item-image img {
    width: auto;
  }
  .video-event .video-slide {
    min-height: 380px;
  }
}

/*==========================
   Marketers area start
===========================*/
.marketers-section {
  padding-top: 0px;
}

.single-items {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.single-items .item-image img,
.slick-slide img,
.project-card .project-info {
  border-radius: 5px;
}

.circle-bg {
  z-index: -1;
}

/*==========================
   Marketers area end
===========================*/
.tiles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.tile {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.5s ease-out;
}

.section-heading {
  color: #333333;
  font-weight: 700;
  margin: 0;
  font-size: 56px;
  line-height: 62px;
  letter-spacing: -1.68px;
  padding-bottom: 24px;
}

.single-item .item-image {
  overflow: hidden;
  text-align: center;
}
.single-item .item-image img {
  transition: all 0.5s ease;
}
.single-item:hover .item-image img {
  transform: scale(1.1);
}

.single-items {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.ml-200 {
  margin-left: 200px;
}

.pr-40 {
  padding-right: 40px;
}

.mb-55 {
  margin-bottom: 55px;
}

.ml-60 {
  margin-left: 60px;
}


.bg-albastor {
  background-color: #f9f9f9;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

/*-------------------------------
   Project  Section  CSS
-------------------------------*/
.project-card {
  position: relative;
  margin-bottom: 25px;
  padding: 15px;
}

.project-card .project-info {
  width: calc(100% - 50px);
  margin: -60px auto 0;
  background-color: #fff;
  padding: 20px;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 2px 20px rgb(5 17 69 / 8%);
  box-shadow: 0px 2px 20px rgb(5 17 69 / 8%);
}

.project-card .project-info .project-title {
  width: calc(100% - 50px);
  margin-right: auto;
}

.project-card .project-info .project-title h3 {
  font-size: 22px;
  margin: 0 0 10px;
}

.project-card .project-info .project-title h3:hover a {
  color: #1B7261;
}

.project-card .project-info .project-title p {
  margin: 0;
}

.project-card .project-info .project-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  background-color: rgba(28, 114, 97, 0.08);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.project-card .project-info .project-link i {
  font-size: 18px;
  font-weight: 800;
  line-height: 50px;
  color: #1B7261;
  position: relative;
  right: -2px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.project-card .project-info .project-link:hover {
  background-color: #1B7261;
}

.project-card .project-info .project-link:hover i {
  color: #fff;
}

@media only screen and (min-width: 1400px) {
  .project-card .project-info {
      width: calc(100% - 60px);
      margin: -60px auto 0;
      padding: 30px;
  }
}

.cover-space {
  padding: 60px;
}

.whats-new-style-1 .cover-space {
  border-radius: 5px;
}

.about-studies .about-video-wrap-style-1 {
    margin: 0;
}

.about-studies .forma-m::before {
  background: #f7f7f7;
  height: 95%;
  left: 0;
  top: 20px;
}

.about-studies .about-img-gallery-style-1 .about-video-wrap-style-1 .item-img {
  top: -10px;
  z-index: 0;
  left: -20px;
}

.list-rep {
  font-size: 14px;
}

.list-rep ul:last-child {
  margin-bottom: 0 !important;
}

.banner-content.style-2 .banner-subtitle {
  color: #FFF;
}

.about-img-gallery-style-1 .shape-list li {
  z-index: 10;
}

.forma-m::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 20%;
  height: 85%;
  width: 100%;
  background: #f7b219;
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: center;
  background-position-y: center;
  z-index: -1;
  border-radius: 5px;
}

.forma-n::before {
  content: '';
  position: absolute;
  top: 46%;
  left: 0%;
  height: 42%;
  width: 100%;
  background: #f7b219;
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: center;
  background-position-y: center;
  z-index: -1;
  border-radius: 5px;
}

.forma-p::before {
  content: '';
  position: absolute;
  top: 250px;
  left: 30%;
  height: 320px;
  width: 70%;
  background: #006c43;
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: center;
  background-position-y: center;
  z-index: -1;
  border-radius: 5px;
}

@media screen and (max-width: 768px) {
  .forma-m::before,
  .forma-n::before,
  .forma-p::before {
    display: none;
  }
  .small-banner .banner.banner-style-2 {
    min-height: 240px !important;
  }
  .cover-space {
    padding: 20px;
  }
}

#forma-4 {
  background: transparent;
}

[data-theme=dark] #forma-4 {
  background: #171818;
}

[data-theme=dark] #forma-4 svg {
  fill: #000;
}

#forma-3 {
  background: #f7f7f7;
}

[data-theme=dark] #forma-3 {
  background: #171818;
}

[data-theme=dark] #forma-3 svg {
  fill: #000;
}

[data-theme=dark] #forma-2 {
  background: #000000;
}

[data-theme=dark] #forma-2 svg {
  fill: #171818;
}

#forma-1 {
  background: #f7b219;
}

[data-theme=dark] #forma-1,
[data-theme=dark] .rt-category-slider-style-1 {
  background: #171818;
}

[data-theme=dark] #forma-1 svg {
  fill: #000;
}

.about-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.section-padding-01 {
  padding-top: 70px;
  padding-bottom: 70px;
}

@media only screen and (min-width: 1500px),
only screen and (min-width: 1200px) and (max-width: 1499px) {
  .custom-container {
    max-width: 1200px;
  }
}

.about-description {
  background-color: #006c43;
  overflow: hidden;
  padding: 49px 0px 98px 0px;
  border-radius: 5px;
  position: relative;
  margin-top: 48px;
  z-index: 0;
}

.about-image-02 {
  position: relative;
  z-index: 1;
  margin-top: 48px;
}

.about-image-02__image {
  margin-top: -48px;
}

.about-image-02__image img {
  max-width: calc(1170px - ((40 * 1170px) / 100));
  border-radius: 5px;
}

.about-image-02__shape-01 {
  width: 179px;
  top: auto !important;
  left: -30px !important;
  bottom: -48px;
  position: absolute;
  z-index: -1;
  transition: none;
}

.about-description .heading-tilte {
  color: #FFF;
  margin-top: 30px;
}

.about-description__box {
  max-width: 340px;
  margin-left: auto;
  margin-right: 70px;
  color: #FFF;
}

.about-description__btn {
  margin-top: 44px;
}

/* andrey */

.swiper-pagination-2 .swiper-pagination-bullet {
  margin-left: 5px;
}

.swiper-pagination-2 .swiper-pagination-bullet:first-child {
  margin-left: 0px;
}

.features-area.style-two .image-box {
  position: relative;
  -webkit-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.12);
  box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  transition: -webkit-transform 0.3s ease 0s;
  background: #FFF;
  padding: 40px 30px !important;
}

.features-area.style-two .image-box.blue {
  background-color: #005A98;
  color: #FFF;
}

.features-area.style-two .image-box.yellow {
  background-color: #f7b219;
  color: #FFF;
}

.features-area.style-two .image-box.green {
  background-color: #006c43;
  color: #FFF;
}

.features-area.style-two .image-box:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px) !important;
  transition: -webkit-transform 0.3s ease 0s;
}

@media (max-width: 991px) {
  .res-margin {
    margin-bottom: 45px;
  }
}

.play-btn-primary {
  animation: pulseShadowlgTgr 2000ms linear infinite;
}

@-webkit-keyframes pulseShadowlgTgr {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(242, 183, 0, 0.7);
  }

  70% {
    -webkit-box-shadow: 0 0 0 20px rgba(242, 183, 0, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(242, 183, 0, 0);
  }
}

@keyframes pulseShadowlgTgr {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(242, 183, 0, 0.7);
    box-shadow: 0 0 0 0 rgba(242, 183, 0, 0.7);
  }

  70% {
    -webkit-box-shadow: 0 0 0 20px rgba(242, 183, 0, 0);
    box-shadow: 0 0 0 20px rgba(242, 183, 0, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(242, 183, 0, 0);
    box-shadow: 0 0 0 0 rgba(242, 183, 0, 0);
  }
}












.arrow-center-tgr {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.arrow-center-tgr .slider-navigation {
  position: absolute;
  z-index: 9;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 45px;
}

.arrow-center-tgr .slider-navigation .btn-prev {
  position: absolute;
  left: 0;
  transform: translateX(-50%);
}

.arrow-center-tgr .slider-navigation .btn-next {
  position: absolute;
  right: 0;
  transform: translateX(50%);
}



@media screen and (max-width: 576px) {
  .arrow-center-tgr {
    overflow: initial;
  }
}




@media screen and (max-width: 1199px) {
  .custom-container {
    max-width: 100%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-image-02__image img {
    max-width: calc(1170px - ((40 * 1170px) / 75));
  }
}

@media screen and (max-width: 991px) {
  .about-description__box {
    margin-left: 70px;

  }
}

@media screen and (max-width: 991px) {
  .about-image-02__image {
    text-align: center;
  }

  .about-image-02__image img {
    max-width: 100%;
  }
}

.welcome-area {
  background: rgba(0, 0, 0, 0) url(../images/banner/bg-platform.jpg) no-repeat scroll center center/cover;
  z-index: 1;
  height: 800px;
}

.welcome-area.bg-overlay::after {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.6;
  z-index: -2;
}

.welcome-area .shape-bottom {
  position: absolute;
  top: auto;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: -1;
}

.welcome-area .welcome-thumb {
  max-width: 300px;
  padding-top: 125px;
}


.welcome-area .store-buttons img {
  max-width: 190px;
}

.welcome-area .welcome-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 68px;
}

.welcome-area .button-group a {
  margin-right: 10px;
}

.welcome-area .button-group a:last-child {
  margin-right: 0px;
}

@media (max-width: 767px) {
  .contact-list-style-1 .list-item {
    display: block;
  }

  .contact-section-layout-1 {
    text-align: center;
  }

  .contact-list-style-1 .list-item .list-icon {
    margin-right: 0;
    padding-bottom: 10px;
  }

  .contact-section #btn-iam {
    text-align: center;
  }

  .contact-section #btn-iam h4 {
    padding-bottom: 20px;
  }

  .tag-section {
    padding-bottom: 20px !important;
  }

  .section-padding-2 {
    padding-top: 60px;
  }

  .banner.author-banner {
    text-align: center;
    padding: 70px 0px 70px 0px;
  }

  .author-big-box-style-1 .author-social-area {
    flex-basis: 100%;
    display: flex;
    justify-content: center;
  }

  .footer-widget {
    text-align: center;
  }

  .about-img-gallery-style-1 .about-video-wrap-style-1 .item-img {
    top: 0 !important;
  }

  .about-section-style-2 .about-img-gallery-style-1 {
    min-height: 0 !important;
  }

  .shop-wrap-style-2 .tab-content img {
    width: 50%;
  }

  .single-shop-tab {
    margin-bottom: 30px;
  }

  #features.section-padding {
    padding-bottom: 20px !important;
    text-align: center;
  }

  .big-title {
    font-size: 36px !important;
  }

  .btn-iam {
    padding-top: 0px !important;
  }

  .rt-btn-blue-lg {
    font-size: 0.75rem !important;
    letter-spacing: 0.05rem !important;
    height: 46px !important;
  }

  .rt-btn-blue-lg-border {
    font-size: 0.75rem !important;
    letter-spacing: 0.05rem !important;
    height: 46px !important;
  }

  .welcome-area {
    height: 100% !important;
    padding-top: 90px;
  }

  .welcome-area .welcome-thumb {
    max-width: 270px;
    padding-top: 20px;
  }

  footer .rt-subscribe-title-box-style-8 {
    text-align: center !important;
  }

  footer .footer-widget .logo img {
    width: 50% !important;
    margin-bottom: 50px;
  }

  .footer-widget .logo {
    margin-bottom: 0px;
  }

  footer .footer-social {
    justify-content: center;
  }

  .cat-slider-area .cat-title-wrap .title {
    padding-right: 0;
  }

  .cat-slider-area {
    padding: 20px !important;
    display: block;
    margin-top: 14px;
    -webkit-box-shadow: 0px 0px 49px 0px rgb(10 10 10 / 0%);
    box-shadow: 0px 0px 49px 0px rgb(10 10 10 / 0%);
  }

  .cat-slider-area .cat-title-wrap {
    margin-bottom: 0;
  }

  #forma-1 svg,
  #forma-2 svg,
  #forma-3 svg,
  #forma-4 svg {
    height: 50px;
  }

  .rt-category-slider-style-1 {
    padding-bottom: 10px;
    background-color: #FFF;
  }

  .welcome-area .welcome-intro {
    text-align: center;
  }

  .welcome-area .welcome-intro .btn-wrap {
    margin-bottom: 30px;
  }

  .welcome-area .welcome-title {
    font-size: 2rem !important;
    line-height: 1.333 !important;
  }

  .about-description {
    margin-top: -30px;
    padding: 40px 0px 55px 0px;
    text-align: center;
  }

  .about-description p {
    margin-bottom: 25px !important;
  }

  .about-description__box {
    margin-left: 40px;
    margin-right: 40px;
  }

  .about-image-02__image img {
    max-width: 80%;
  }

  .who-we-are-style-1,
  .contact-section-layout-1 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .map-section-style-1 {
    padding-bottom: 60px;
  }

  .about-content-style-1 {
    text-align: center;
  }

  .about-content-style-1 .rt-section-heading-style-2>.btn-wrap {
    margin-top: 0;
  }

  .about-content-style-1 .rt-read-more-primary_2 {
    width: 100%;
  }

  .about-content-area-2 .rt-read-more-primary_2 {
    width: 100%;
  }

  .contact-list-style-1 .list-item:nth-child(3) {
    margin-bottom: 0;
  }

  .rt-filter-dropdwon .rt-filter-btn {
    margin-bottom: 15px;
  }

  .single-shop-tab .tab-nav-list {
    justify-content: center;
  }

  .shop-box-style-1 {
    margin-bottom: 0;
  }

  .shop-box-style-1 .figure-box {
    padding: 14px 0px;
  }

  .about-section-style-2,
  .tab-content {
    text-align: center;
  }

  .rt-section-heading-style-2 {
    margin-bottom: 0;
  }
}

.overlay-dark {
  position: relative;
  z-index: 0;
}

.overlay-dark::after {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgb(0, 0, 0);
  opacity: 0.80;
  z-index: -1;
}

.overlay-light {
  position: relative;
  z-index: 0;
}

.overlay-light::after {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgb(0, 0, 0);
  opacity: 0.2;
  z-index: -1;
}

.overlay-medium {
  position: relative;
  z-index: 0;
}

.overlay-medium::after {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgb(0, 0, 0);
  opacity: 0.5;
  z-index: -1;
}

.download-area {
  padding: 50px 0;
  background: rgba(0, 0, 0, 0) url(https://theme-land.com/sapp/demo/assets/img/bg/download-bg.jpg) no-repeat fixed center center/cover;
}

.download-area .store-buttons img {
  max-width: 180px;
}

.download-area .button-group a {
  margin-right: 10px;
}

.download-area .button-group a:last-child {
  margin-right: 0px;
}

@media screen and (min-width: 768px) {
  .download-area {
    padding: 70px 0;
  }
}

@media screen and (min-width: 991px) {
  .download-area {
    padding: 100px 0 190px;
  }
}

.more-data {
  padding: 50px 0;
  background: rgba(0, 0, 0, 0) url(../images/bg/bg-1.jpg) no-repeat fixed center center/cover;
 /*background: rgba(0, 0, 0, 0) url(../images/bg/bg-2.jpg) no-repeat fixed center center/cover;*/
}

.more-data .store-buttons img {
  max-width: 180px;
}

.more-data .button-group a {
  margin-right: 10px;
}

.more-data .button-group a:last-child {
  margin-right: 0px;
}

@media screen and (min-width: 768px) {
  .more-data {
    padding: 70px 0;
  }
}

@media screen and (min-width: 991px) {
  .download-area {
    padding: 100px 0 190px;
  }
  .more-data {
    padding: 100px 0 190px;
  }
}

/* andrey  end */

.big-title {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.1;
}

[data-theme=dark] .welcome-area svg {
  fill: #000 !important;
}

/* leo start */

/* ******************************
:: 10.0 FEATURES AREA CSS
****************************** */
.features-area .features-slider-wrapper {
  padding: 67px 23px 90px 26px;
  background-size: 100%;
  max-width: 290px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .comments-form-style-1 .submit-btn {
    width: 100%;
  }

  .download-area {
    padding-bottom: 130px;
  }

  .more-data {
    padding-bottom: 130px;
  }

  .shop-box-style-1 .content-box .title {
    margin-bottom: 30px;
  }

  .features-area .features-slider-wrapper {
    padding: 52px 18px 90px 21px;
    max-width: 245px;
  }
}

@media (max-width: 575px) {
  .features-area .features-slider-wrapper {
    padding: 52px 18px 90px 21px;
    max-width: 220px;
  }
}



@media (max-width: 991px) {
  .canvas-open {
    overflow: hidden;
  }

  .canvas-open .main:before {
    width: 100%;
    opacity: .95;
    visibility: visible;
  }
}


section,
.section {
  position: relative;
}


a:hover,
a:focus {
  color: var(--primary-color-2);
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* ******************************
:: 4.0 COMMON CSS
****************************** */

.op-5 {
  opacity: 0.5;
}

.avatar-sm {
  height: 3rem;
  width: 3rem;
}

.avatar-md {
  height: 4rem;
  width: 4rem;
}

.avatar-lg {
  height: 5rem;
  width: 5rem;
}

@media (max-width: 575px) {
  .avatar-lg {
    height: 4rem;
    width: 4rem;
  }
}

.featured-icon>span::before {
  font-size: 4.25rem;
  line-height: 1;
  color: var(--secondary-color-2);
  margin: 0;
}

@media (min-width: 992px) {
  .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

.ptb_100 {
  padding: 100px 0;
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

.p-5 {
  padding: 3rem !important;
}

/* leo end */

[data-theme=dark] .post-md.style-2 .post-content .post-title a {
  color: #FFF;
}

[data-theme=dark] .swiper-pagination-bullet {
  background: #FFF;
}

[data-theme=dark] .swiper-pagination-bullet-active {
  background: #FFF;
}

.rt-btn-blue-lg {
  font-size: 18px;
  color: var(--color-white);
  background-color: #006c43;
  font-weight: 700;
  border-radius: 4px;
  border: 1px solid #006c43;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  text-transform: uppercase;
  height: 70px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 30px;
}

.rt-btn-blue-lg:hover {
  color: #006c43;
  background-color: var(--color-white);
  border: 1px solid #006c43;
}

.rt-btn-blue-lg:focus {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

[data-theme=dark] .rt-btn-blue-lg {
  --color-white: #fff;
  --color-black: #000;
}

.rt-btn-blue-lg-border {
  font-size: 18px;
  line-height: 1.2;
  color: #006c43;
  background-color: transparent;
  font-weight: 700;
  border-radius: 4px;
  border: 1px solid #006c43;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  text-transform: uppercase;
  height: 70px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 30px;
}

.rt-btn-blue-lg-border:hover {
  color: var(--color-white);
  background-color: #006c43;
  border: 1px solid #006c43;
}

.rt-btn-blue-lg-border:focus {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

[data-theme=dark] .rt-btn-blue-lg-border {
  --color-white: #fff;
  --color-black: #000;
}

.btn-iam {
  position: relative;
  padding-top: 60px;
  padding-bottom: 10px;
}

.play-btn-white_xxl {
  width: 270px;
  height: 270px;
}

.banner-event {
  height: 450px !important;
}

@media (max-width: 767px) {
  .banner-event {
    height: 340px !important;
  }

  .rt-post-overlay.single-post-overlay .post-img img {
    min-height: 100%;
  }
}

.swiper-container {
  border-radius: 0;
}

.offscreen-navigation .menu>li.active a {
  color: #006c43;
}

.subscribe-section-style-1 .heading-tilte {
  margin-bottom: 20px;
  color: #006c43;
  text-transform: uppercase;
}

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #006c43;
  border-color: #006c43;
}

.rt-sidebar-section-layout-3 .post-img img {
  border-radius: 4px;
}

.rt-main-post-single .post-body h6 {
  margin-bottom: 15px;
}

section.call-to-action {
  background-position: center center !important;
  background-size: cover !important;
  position: relative !important;
  z-index: 1;
}

section.call-to-action::before {
  background: rgb(0, 0, 0);
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.25) 60%, rgba(0, 0, 0, 0) 100%);
  z-index: 0;
}

section.call-to-action::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.flip-horizontal {
  -moz-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  transform: scaleX(-1);
  -ms-filter: fliph;
  /*IE*/
  filter: fliph;
  /*IE*/
}

.editor-choice-section-style-1 .slider-navigation {
  position: absolute;
  z-index: 2;
  top: 50%;
  margin-top: -25px;
  width: 100%;
}

.editor-choice-section-style-1 .slider-navigation .btn-prev {
  left: 0;
  position: absolute;
  margin-left: 15px;
}

.editor-choice-section-style-1 .slider-navigation .btn-next {
  right: 0;
  position: absolute;
  margin-right: 15px;
}

.editor-choice-section-style-1 .slider-navigation.style-2 .slider-btn {
  width: 50px;
  height: 50px;
}

/*about-video-wrap-style-2*/
.about-video-wrap-style-2 {
  margin: 0;
  position: relative;
}

.about-video-wrap-style-2 .shape {
  position: absolute;
  right: -35px;
  bottom: -32px;
  z-index: 1;
}

@media (max-width: 1199px) {
  .about-video-wrap-style-2 {
    margin: 0;
  }
}

.about-video-wrap-style-2 .item-img {
  overflow: hidden;
  position: relative;
  z-index: 1;
  border-radius: 4px;
}

.about-video-wrap-style-2 .item-img::after {
  background-color: rgba(var(--color-black), 0.2);
}

.about-video-wrap-style-2 .item-img img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 1.5s ease-out;
  transition: all 1.5s ease-out;
  width: 100%;
}

.about-video-wrap-style-2 .item-img img:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.about-video-wrap-style-2 .item-img .rt-play-over {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
}

.about-video-wrap-style-2 .item-img::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.tag-section .post-list .item {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 10px;
  margin-bottom: 25px;
}

.tag-section .post-list .item:last-child {
  border-bottom: 1px solid var(--color-border);
}

.tag-section .rt-post-cat-normal {
  text-transform: none;
  letter-spacing: 0;
}

.tag-section .post-title a {
  text-transform: uppercase;
  letter-spacing: 0;
}

.tag-section .post-content a:hover {
  color: #006c43;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

.about-section-style-2 .rt-section-heading {
  margin-bottom: 20px;
}

.rt-category-slider-style-1 .rt-section-heading {
  margin-bottom: 20px;
}

.about-section-style-2 .about-img-gallery-style-1.forma-m::before {
  width: 120% !important;
}

.marketers-section .forma-n::before {
  width: 120% !important;
}

.about-section-style-2 .about-img-gallery-style-1 {
  min-height: 500px;
}

.about-img-gallery-style-1 .about-video-wrap-style-1 .item-img {
  top: 50px;
  z-index: 0;
}

.features-area.style-two .image-box .featured-img i {
  font-size: 42px;
}

.list-style-footer li {}

.list-style-footer li>span {
  position: relative;
  padding-left: 20px;
}

.list-style-footer li>span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-primary);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

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

.margin-40px-top {
  margin-top: 40px;
}

.border-radius-5 {
  border-radius: 5px;
}

.border-radius-8 {
  border-radius: 8px;
}

@media (max-width: 575px) {
  .xs-margin-15px-bottom {
    margin-bottom: 15px;
  }
}

@media (max-width: 575px) {
  .xs-margin-15px-tb {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}


/* feature box style 15 */
.feature-box-15 .feature-box-content {
  position: relative;
  overflow: hidden;
}

.feature-box-15 .feature-box-image {
  transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  -o-transform: rotateY(0deg);
}

.feature-box-15 .hover-content,
.feature-box-15 .feature-box-image {
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transform: rotateY(0deg);
  transition: ease-in-out 0.4s;
  -webkit-transform-style: preserve-3d;
  -webkit-transform: rotateY(0deg);
  -webkit-transition: ease-in-out 0.4s;
  -moz-transform-style: preserve-3d;
  -moz-transform: rotateY(0deg);
  -moz-transition: ease-in-out 0.4s;
  -ms-transform-style: preserve-3d;
  -ms-transform: rotateY(0deg);
  -ms-transition: ease-in-out 0.4s;
  -o-transform-style: preserve-3d;
  -o-transform: rotateY(0deg);
  -o-transition: ease-in-out 0.4s;
}

.feature-box-15 .hover-content {
  left: 0;
  position: absolute;
  top: 0;
  height: 100%;
  transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  width: 100%;
  opacity: 0;
}

.feature-box-15 .feature-box-content:hover .feature-box-image {
  transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  opacity: 0;
}

.feature-box-15 .feature-box-content:hover .hover-content {
  transform: rotateX(0deg);
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  opacity: 1;
}

.feature-box-15 .feature-box-text {
  position: absolute;
  bottom: 20px;
  width: 100%;
  color: #fff;
  transform: translateY(-50%);
  font-weight: 700;
  padding-right: 12%;
  padding-left: 12%;
  text-align: center;
  font-size: 26px;
  line-height: 28px;
}

.bg-pet-primary {
  background-color: #006c43 !important;
}

.padding-twelve-lr {
  padding-left: 12%;
  padding-right: 12%;
}

.section-products .shop-box-style-1:hover .figure-box img {
  -webkit-transform: scale(1) !important;
  transform: scale(1) !important;
}



/* feature box style 10 */
.feature-box-10 .number {
  display: flex;
  font-size: 30px;
  height: 90px;
  margin: 0 auto;
  text-align: center;
  vertical-align: middle;
  width: 90px;
  position: relative;
  align-items: center;
  justify-content: center;
  color: #006c43;
}

.feature-box-10:hover .number {
  background: #006c43;
  color: #fff
}

.feature-box-10 .number-right:after {
  width: 170%;
  position: absolute;
  content: "";
  height: 1px;
  background: #e2e2e2;
  top: 45px;
  z-index: -1;
  left: 130px
}

@media (max-width: 1199px) {

  .feature-box-10 .number-right::after {
    width: 100%
  }
}

@media (max-width: 991px) {

  .feature-box-10 .number-right::after {
    width: 70%
  }
}

@media (max-width: 767px) {

  /* feature box 10 */
  .feature-box-10 .number-right::before,
  .feature-box-10 .number-right::after {
    height: 0
  }
}

/* .feature-box-10 .number-center:before {
  width: 250%;
  position: absolute;
  content: "";
  height: 1px;
  background: #e2e2e2;
  top: 45px;
  z-index: -1;
  right: 130px
} */

.feature-box-10 * {
  transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-duration: .2s;
  -ms-transition-duration: .2s;
  -moz-transition-duration: .2s;
  -webkit-transition-duration: .2s;
  -o-transition-duration: .2s;
}

.border-color-pet-primary {
  border-color: #006c43 !important;
}

.border-all {
  border: 1px solid #ededed;
}

.border-width-2 {
  border-width: 2px;
}

.letter-spacing-minus-1 {
  letter-spacing: -1px;
}

.padding-five-all {
  padding: 5%;
}

.margin-10px-bottom {
  margin-bottom: 10px;
}

.opacity-text{
  background: rgb(0 0 0 / 0);
  padding: 5px;
}

.rt-post-overlay .post-img::before {
  position: absolute;
    content: "";
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.75) 100%);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}

.feature-box-15 .feature-box-content {
  position: relative;
  z-index: 1;
}

.feature-box-15 .feature-box-image::before {
  position: absolute;
  z-index: 0;
  background: rgb(0,0,0);
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.75) 100%);
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.shop-wrap-style-1 .slider-navigation.style-2 .slider-btn {
  width: 48px;
  height: 48px;
}

.shop-wrap-style-1 .titile-wrapper {
  margin-top: 8px;
}



@media (max-width: 767px){
  .fix-display {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .margin-b{
    margin-bottom: 10px!important;
  }

  .fix-display .fix-display-two {
    margin-top: auto;
  }

  .fix-float{
    float:none;
  }

  .margin-bt{
    margin-bottom: 50px;
    margin-top:50px

  }

}

.b-background{
  background-image: url("../images/banner/bg-platform.jpg");
  background-size: cover;

}

.formify_left_fullwidth img {
  width: 80% !important;
  padding: 30px;
}

.fix-b {
    width: 100%;
    font-size: 14px;
    line-height: 1.1;
    font-weight: 700;
    background: #006c43;
    color: #fff;
    border-radius: 5px;
    text-transform: capitalize;
    padding: 10px;
    box-shadow: none;
    transition: all 0.2s linear;
    margin-top: 5px;
}

.p-fix{
  padding-top: 15px;
  padding-bottom: 15px;

}

.color-fix{
  color:#0055FB
}


 /* @media screen and (max-width: 767px) {
  .table {
    border: 0;
  }

  .table caption {
    font-size: 1.3em;
  }

  .table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }

  .table tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: .625em;
  }

  .table td {
    border-bottom: 1px solid #ddd;
    display: block;
    text-align: right;
  }

  .table td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
  }

  .table td:last-child {
    border-bottom: 0;
  }
}

.teste{
  text-align:left;
} */

.table>tbody td:first-child {
  text-align: left;
}

.table>tbody p,
.table>tbody td {
  font-size: 14px;
  margin-bottom: 2px;
}

.table>tbody tr i {
  color: #006c43;
}

.table>tbody tr:last-child {
  font-weight: bold;
  background: #f3f3f3;
  color: #005A98;
}

.table>thead p.text-muted {
  font-size: 14px;
  margin-bottom: 2px;
}

.test1{
  padding-right:25px;
}

.time-is-now .about-video-wrap-style-1 {
  margin: 0;
}

.brazilian-market .about-img-gallery-style-1 .about-video-wrap-style-1 .item-img {
  top: 0;
}

.table>tbody td:first-child {
  text-align: center;
}

.n-b{
  border:0;

}


.fix-logo-one{
  position:relative;

}

.fix-logo-two{
  position:relative;
  top:65%;
}

.fix-logo-three{
  position:relative;
  top:75%;
}

@media (max-width: 767px){
  .fix-logo-one {
    position: initial;
    top:0%;

  }

  .fix-logo-two {
    position: initial;
    top:0%;

  }

  .fix-logo-three {
    position: initial;
    top:0%;

  }
}

div#MeuModal{
  padding:0px!important;
}

body.modal-open {
  padding-right:0px!important;
}


.logo-widget{
  display: flex;
}

.row.footer-logo {
  display: flex;
  align-items: flex-end;
}

.fix-height{
  line-height:0!important;
}

.logo-widget img{
  vertical-align: sub!important;
}

.logo-widget-text{
  margin-bottom: 0px;
}

.main-footer .fix-text {
  position: initial;
  margin-bottom: 0px!important;
}

.m-text{
  margin-bottom: 0px;
}

.align-t{
  text-align: start;
}

.p-m{
  color: #fff;
  font-weight: 500;
  font-size: 12px;
  position: relative;
  left:3%;
  letter-spacing: 0.5px;

}

.ajust-space-p{
  padding-left:20px;
}

@media (max-width: 780px) {

  .ajust-space-p{
    padding-left:0px;
  }
}

.custom-footer-pdi{
  z-index: 2;
  position: relative;
}

.imagem-ondulada {
  /* clip-path: polygon(24% 6%, 73% 5%, 100% 13%, 100% 100%, 80% 100%, 20% 100%, 0 100%, 0 16%); */
}

.pdi-bg-image{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.header-section-pesquisa{
  background-color: #005A98;
    border-bottom: solid;
    height: 15em;
    border-color: #f7b219;
}

.title-section-pesquisa{
  padding: 20px;
  margin-left: 18em
}

.margin-bottom-svg{
  bottom: 0;
}

.align-question-pdi{
  text-align: start;
  margin: 3em;
}

.plans-section h2{
    font-family: 'Open Sans' !important;
    font-size: 36px;
    font-weight: 700;
    line-height: 49px;
    letter-spacing: 0em;
    color: #F7B219;
    text-align: center;
    margin:60px auto;
}

.plans-highlight{
    color: #D9D9D9;
}

.plans-name {
    font-family: 'Open Sans' !important;
    font-size: 20px;
    font-weight: 500;
    line-height: 27px;
    letter-spacing: 0em;
    margin-bottom:5px;
}

.plan-pay-schedule{
    margin-left:10px;
    font-size:0.8em;
}

.plans-price{
    font-family: 'Open Sans' !important;
    font-size: 26px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0em;
}

.plans-list li{
    margin-bottom:10px;
    max-width:250px;
    display: flex;
    /* align-items: center; */
}

.plans-list i{
    font-size:20px;
    color:#045692;
    margin-right:10px;
}

.container-plans{
    margin-bottom:100px;
}

.content-plans-title{
    font-family: 'Open Sans' !important;
    font-size: 20px;
    font-weight: 700;
    line-height: 27px;
    letter-spacing: 0em;
    color: #006C43;
    margin-top:40px;
}

.content-plans p{
    font-family: 'Montserrat' !important;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: 0em;
    color:#646464;
}

.more-info{
    margin-bottom:100px;
}

.more-info-title h3{
    font-family: 'Open Sans' !important;
    font-size: 24px;
    font-weight: 700;
    line-height: 33px;
    letter-spacing: 0em;
    color:#F7B219;
    vertical-align:middle;
}

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

.custom-hr{
    color: #D9D9D9;
    height:2px !important;
    width:80%;
    opacity: 1;
    position: relative;
    bottom:5px;
    left:20px;
}

@media (max-width: 780px) {

  .margin-bottom-svg{
    bottom: -3.2em!important;
  }

  .title-section-pesquisa{
    padding: 20px;
    margin-left: 0em!important
  }

  .align-question-pdi{
    text-align: start;
    margin: 1em;
  }


  /* Plans mobile*/
  .row-plans{
    text-align: center;
  }

  .plans-list li{
    justify-content: center;
    max-width: 100%;
  }

  .plans-name{
    margin-top:40px;
  }

  .plans-section h2{
    margin-bottom:0px;
}

.more-info-title{
    display:block;
}

.more-info-title h3{
    text-align: center;
}

.custom-hr {
    width: 90%;
    bottom: 5px;
    left: 0px;
    margin: 0 auto;
}

.more-info{
    text-align: center;
}

.container-plans{
    margin-bottom: 50px;
}
}

.label-pdi-answer{
  font-weight: bold;
  color: #005A98;
  font-size: 1.2em
}

.custom-check-input-radio{
  width: 1.2em;
  height: 1.2em;
}


