@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700;900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");
/* @import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"); */

@import url("bootstrap.min.css");
@import url("slick.css");
@import url("slick-theme.css");
@import url("gallery.css");
@import url("aos.css");
:root {

  /* --theme-primary-color: #800080; */
  --theme-primary-color: #F3C02E;
  --theme-secondary-color: #800080;
  --theme-tertiary-color: #177DE8;
  /* --theme-secondary-color: #F000F9; */
  /* --theme-secondary-color: #F3C02E; */
  /* --theme-btn-effect-hover: #E000F2; */
  --theme-btn-effect-hover: #177DE8;
  /* --theme-secondary-color: #202C45; */
  --theme-accent-one: #000000;
  --theme-accent-two: #878A9B;
  --theme-accent-three: #EBF5FF;
  --theme-link-color: #177DE8;
  --theme-color-white: #ffffff;
  --extra-color: #F3C02E;

}
/*-- font style --*/
/*-- media query --*/
* {
  outline: none;
}

html,
body,
ul,
ol {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
}

a {
  color: var(--theme-primary-color);
  transition: all 0.2s ease;
}

a:hover,
a:active,
a:focus {
  transition: all ease-in-out 0.3s;
  color: var(--theme-primary-color);
}

:focus-visible {
  outline: none;
}

button:focus:not(:focus-visible) {
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
}

a,
a:hover {
  text-decoration: none;
}

a {
  transition: all 0.3s ease 0s;
}

.custum-input {
  border-radius: 0.8rem;
  min-height: 50px;
}
.custum-input:focus {
  background-color: transparent;
}

::-webkit-input-placeholder {
  color: var(--theme-secondary-color) !important;
}

:focus::-webkit-input-placeholder {
  opacity: 0.5;
  color: var(--theme-primary-color);
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  color: #ffffff;
  background-color: var(--theme-primary-color);
  border-color: transparent;
  opacity: 0.5;
}

.btn-wrapper {
  height: auto;
}
.btn-wrapper .menu-toggle {
  min-height: 40px;
}
.btn-wrapper .menu-toggle .icon-bars {
  display: block;
  width: 2rem;
  height: 2px;
  background-color: #ffffff;
  position: relative;
  transition: transform 0.3s ease-in, background-color 0.2s ease;
}
.btn-wrapper .menu-toggle .icon-bars::before, .btn-wrapper .menu-toggle .icon-bars::after {
  display: block;
  width: 2rem;
  height: 2px;
  background-color: #ffffff;
  content: "";
  position: absolute;
  left: 0;
  transition: top 0.3s 0.3s ease-in, transform 0.3s ease-in, background-color 0.2s ease;
}
.btn-wrapper .menu-toggle .icon-bars::before {
  top: 0.5em;
}
.btn-wrapper .menu-toggle .icon-bars::after {
  top: -0.5em;
}
.btn-wrapper .menu-toggle:active .icon-bars {
  transition: transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 135deg);
}
.btn-wrapper .menu-toggle:active .icon-bars::before {
  transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 90deg);
  top: 0;
}
.btn-wrapper .menu-toggle:active .icon-bars::after {
  transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 90deg);
  top: 0;
}

.menu--is-revealed .menu-toggle .icon-bars {
  transition: transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 135deg);
}
.menu--is-revealed .menu-toggle .icon-bars::before {
  transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 90deg);
  top: 0;
}
.menu--is-revealed .menu-toggle .icon-bars::after {
  transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 90deg);
  top: 0;
}

html {
  font-size: 1rem;
}

body {
  font-family: "Merriweather", serif;
}

.font-small {
  font-size: 0.875rem;
}

.font-extra-small {
  font-size: 0.75rem;
}

/*-- background color css --*/
.theme-bg-primary {
  background-color: var(--theme-primary-color);
}

.theme-bg-secondary {
  background-color: var(--theme-secondary-color);
}

.theme-bg-accent-one {
  background-color: #000000;
}

.theme-bg-accent-two {
  background-color: #878A9B;
}

/*-- text css --*/
.theme-text-white {
  color: #ffffff;
}

.theme-text-primary {
  color: var(--theme-primary-color);
}

.theme-text-secondary {
  color: var(--theme-secondary-color);
}

.theme-text-tertiary {
  color: var(--theme-tertiary-color);
}

.theme-text-accent-one {
  color: #000000;
}

.theme-text-accent-two {
  color: #878A9B;
}

.extra-text-color {
  color: #ffc107;
}

/*-- shadow css --*/
.theme-box-shadow {
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
}

.theme-text-shadow {
  text-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
}

/*-- custom button css*/
.custom-btn-primary {
  background-color: var(--theme-primary-color);
  color: #ffffff;
  min-width: 140px;
  min-height: 50px;
  border: 0;
  border-radius: 0.8rem;
}

.custom-btn-secondary {
  background-color: var(--theme-secondary-color);
  color: #ffffff;
  min-width: 140px;
  min-height: 50px;
  border: 0;
  border-radius: 0.8rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.custom-link {
  background-color: #878A9B;
  color: var(--theme-primary-color);
  min-width: 120px;
  min-height: 40px;
}
.custom-link:hover {
  background-color: transparent;
  color: var(--theme-secondary-color);
  border: 2px solid var(--theme-primary-color);
}

.theme-border-radius {
  border-radius: 0.8rem;
}

.theme-border {
  border: 1px solid var(--theme-primary-color);
}

/*-- primary button effect css --*/
.btn-effect {
  position: relative;
  overflow: hidden;
  z-index: 10;
  transition: all 0.3s;
}
.btn-effect::after {
  background: var(--theme-btn-effect-hover);
  content: "";
  position: absolute;
  z-index: -1;
  transition: all 0.3s;
  height: 0;
  left: 50%;
  top: 50%;
  width: 0;
}
.btn-effect::after {
  background: var(--theme-btn-effect-hover);
  content: "";
  position: absolute;
  z-index: -1;
}
.btn-effect:hover {
  color: #ffffff;
  background-color: var(--theme-primary-color);
  transition: all 0.2s ease;
}

.btn-effect:hover::after {
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

/*-- secundary button effect css --*/
.btn-effect-secundary {
  position: relative;
  overflow: hidden;
  z-index: 10;
  transition: all 0.3s;
}
.btn-effect-secundary::after {
  background: var(--theme-btn-effect-hover);
  content: "";
  position: absolute;
  z-index: -1;
  transition: all 0.3s;
  height: 0;
  left: 50%;
  top: 50%;
  width: 0;
}
.btn-effect-secundary::after {
  background: var(--theme-btn-effect-hover);
  content: "";
  position: absolute;
  z-index: -1;
}
.btn-effect-secundary:hover {
  color: #ffffff;
  background-color: var(--theme-secondary-color);
  transition: all 0.2s ease;
}

.btn-effect-secundary:hover::after {
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

/*-- secondary button css --*/
.icon-wrapper {
  box-shadow: 0 0 0px 0px rgba(32, 44, 69, 0.5);
  cursor: pointer;
  border-radius: 50%;
}

/*-- stroke button css --*/
.stroke-btn {
  background-color: #ffffff;
  border: 1px solid var(--theme-primary-color);
  color: var(--theme-primary-color);
}
.stroke-btn-secondary {
  background-color: #ffffff;
  border: 1px solid var(--theme-secondary-color);
  color: var(--theme-secondary-color);
}
/*-- image hover effect --*/
.img-effect img {
  transition: all 0.4s ease-in-out;
}
.img-effect:hover img {
  transform: scale(1.5);
}

/*-- slick slider custom dots --*/
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
  box-shadow: none;
}

.slick-dots li button:before {
  color: var(--theme-primary-color);
  font-size: 10px;
}

.slick-dots li.slick-active button::before {
  color: var(--theme-primary-color);
}

/*-- highlight para css --*/
.para-highlight {
  position: relative;
  color: #000000;
  font-weight: 700;
}
.para-highlight::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 5px;
  background-color: var(--theme-primary-color);
  margin-right: 15px;
}

/* pulseBig */
@keyframes pulseBig {
  0% {
    box-shadow: 0 0 0 0 #ffffff;
  }
  50% {
    box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
  }
}
/* icons float css*/
.box-icon-float {
  transform: translatey(0px);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-20px);
  }
  100% {
    transform: translatey(0px);
  }
}
/* perfect center element css */
.ele-center {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

/* anchor button effect */
a.effect {
  color: #878A9B;
}
a.effect:hover {
  color: var(--theme-primary-color);
}
a.effect:hover i {
  color: var(--theme-primary-color);
}
a.effect:hover i:before {
  transform: translateX(5px);
  transition: all 0.2s ease;
}
a.effect .bi:before {
  transition: all 0.2s ease;
}

/* image opacity light */
.img-lt {
  filter: opacity(0.5);
  transition: 0.5s ease-in-out;
}
.img-lt:hover {
  filter: opacity(1);
}

/*-- preloader css --*/
.page-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  background: #ffffff;
  z-index: 9999;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-loader #loading {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 3px solid var(--theme-primary-color);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

/*-- header css part --*/
.header {
  background-color: #ffffff;
}
.header .navbar-nav .nav-item .nav-link {
  color: var(--theme-secondary-color);
  padding: 1.2rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}
@media screen and (max-width: 992px) {
  .header .navbar-nav .nav-item .nav-link {
    padding: 0.8rem 0rem;
    border-bottom: 1px solid #878A9B;
  }
}
.header .navbar-nav .nav-item .dropdown-menu {
  border-radius: 0;
  border: 0;
  padding: 0;
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
}
.header .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  color: #000000;
  padding: 0.8rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.header .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {
  background-color: var(--theme-primary-color);
  color: #ffffff;
}
.header .navbar-nav .active a {
  color: var(--theme-primary-color) !important;
}
.header .navbar-nav .active a::before {
  content: "";
  width: 1.25rem;
  height: 2px;
  background: var(--theme-primary-color);
  position: absolute;
  bottom: 0;
  display: block;
  left: 0;
  top: 0;
  border-radius: 3rem;
}
@media screen and (max-width: 992px) {
  .header .navbar-nav .active a::before {
    left: 0;
  }
}
.header .navbar-nav .active .dropdown-item {
  color: var(--theme-secondary-color) !important;
}

/*-- nav button effect css --*/
.nav-effect {
  position: relative;
}
.nav-effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.25rem;
  height: 4px;
  background: var(--theme-primary-color);
  transform-origin: center center;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(1, 0, 0, 1);
  border-radius: 3rem;
}
@media screen and (max-width: 992px) {
  .nav-effect::before {
    left: 0%;
  }
}
.nav-effect:hover:before {
  transform-origin: left center;
  transform: scale(1, 1);
}

/*-- header fixed animation --*/
.smooth {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInDown;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/*-- hero slider css --*/
.hero {
  position: relative;
  background: linear-gradient(to bottom right, rgba(72, 72, 212, 0), rgba(241, 104, 104, 0)), url(../images/hero/shap-bg.png) center center no-repeat;
  background-size: contain;
  background-position: right top;
}
.hero .item {
  min-height: 85vh;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .item .hero-pic {
  position: relative;
}
.hero .item .hero-pic:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  background: url("../images/hero/Polygon-shap.svg") no-repeat;
  width: 180px;
  height: 180px;
}
.hero .item .hero-pic .circle-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(32, 44, 69, 0.5);
  border-radius: 50%;
  width: 100px;
  height: 100px;
}
.hero .item .text {
  color: var(--theme-primary-color);
}

/*-- about section css --*/
.about-company .about-pic {
  position: relative;
  width: 80%;
  margin: 0 auto;
}
.about-company .about-pic .experience-box {
  position: absolute;
  top: 0;
  left: -20px;
  background-color: var(--theme-primary-color);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 0.8rem;
}
.about-company .about-pic .experience-box p {
  color: #ffffff;
}
.about-company .about-pic .video-box {
  position: absolute;
  bottom: 0;
  right: -20px;
  background-color: var(--theme-secondary-color);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 0.8rem;
}
.about-company .about-pic .video-box span {
  color: #ffffff;
}
 .action {
  width: 3.75rem;
  height: 3.75rem;
  padding: 1.4rem;
  justify-content: center;
  align-items: center;
  display: flex;
  animation: pulseBig infinite 2s linear;
}
 .action:hover {
  background-color: var(--theme-tertiary-color);
  color: var(--theme-tertiary-color);
}
 .about-list {
  padding: 1rem 0;
}
 .about-list li {
  font-size: 0.875rem;
  line-height: 2rem;
}
 .about-list li i {
  color: var(--theme-secondary-color);
  margin-right: 0.8rem;
}

/*-- core services --*/
.core-services {
  background-color: rgba(242, 24, 79, 0.05);
}
.core-services .icon-wrap {
  background-color: var(--theme-secondary-color);
  width: 10rem;
  height: 10rem;
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  border-radius: 50%;
  text-align: center;
  transition-duration: 0.3s;
}

.core-services .icon-img {
  background-color: var(--theme-secondary-color);
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  transition-duration: 0.3s;
}



.feature-list {
  list-style: none;
}
.feature-list li {
  color: #878A9B;
  line-height: 2.5rem;
}
.feature-list li i {
  color: var(--theme-secondary-color);
}

/*-- card effect --*/
.cardeffect {
  text-align: center;
  background-color: #ffffff;
  transition: all 500ms ease-in-out;
}
.cardeffect:hover {
  transform: translateY(-10px);
  cursor: pointer;
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
}

/*-- our courses css --*/
.courses-sec .nav-pills li .nav-link {
  border: 0px solid transparent;
  color: var(--theme-secondary-color);
  font-weight: bold;
}
.courses-sec .nav-pills li .active {
  background-color: transparent;
  color: var(--theme-primary-color);
}
.courses-sec .card-wrap {
  background-color: #ffffff;
}
.courses-sec .card-wrap .con-img-wrap {
  position: relative;
  border-radius: 0.8rem;
  overflow: hidden;
}
.courses-sec .card-wrap .con-img-wrap img {
  transition: all 0.2s ease;
}
.courses-sec .card-wrap .con-img-wrap img:hover {
  transform: scale(1.1);
}
.courses-sec .card-wrap .con-img-wrap .offer-tag {
  background-color: var(--theme-primary-color);
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: block;
  position: absolute;
  right: 10px;
  bottom: 20px;
  text-align: center;
  line-height: 50px;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
}
.courses-sec .card-wrap .con-wrap .rating-cover {
  color: #878A9B;
}
.courses-sec .card-wrap .con-wrap .rating-cover i {
  color: #ffc107;
}
.courses-sec .card-wrap .con-wrap .timing {
  color: #878A9B;
}
.courses-sec .card-wrap .con-wrap .timing i {
  color: var(--theme-primary-color);
}

/*-- class gallery css --*/
.gallery-sec {
  background-color: rgba(242, 24, 79, 0.1);
  background-image: url(../images/section/gallery-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  min-height: 750px;
  background-position: center center;
}
.gallery-sec .project-card {
  position: relative;
  width: 100%;
}
.gallery-sec .project-card figure {
  position: relative;
  overflow: hidden;
  margin: 0px;
  width: 100%;
  height: auto;
  cursor: pointer;
  min-height: 300px;
  border-radius: 0.8rem;
  background: var(--theme-primary-color);
  background: linear-gradient(0deg, var(--theme-primary-color) 0%, rgba(242, 24, 79, 0) 100%);
}
@media screen and (max-width: 992px) {
  .gallery-sec .project-card figure {
    height: 300px;
  }
}
.gallery-sec .project-card figure img {
  position: relative;
  display: block;
  min-height: 100%;
  min-width: 100%;
  opacity: 0.8;
}
.gallery-sec .project-card .content {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

/*-- price plan css --*/
.price-sec {
  padding: 4rem 0;
}
.price-sec .price-box {
  text-align: center;
  position: relative;
  transition: all 0.2s ease-out;
}
.price-sec .price-box:hover {
  transform: translateY(-10px);
}
.price-sec .price-box .top-sec {
  margin-top: 1rem;
}
.price-sec .price-box .pricing-rate {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}
.price-sec .price-box .pricing-rate .price {
  font-weight: 900;
  margin: 1rem 0;
}
.price-sec .price-box .pricing-rate .supper {
  vertical-align: super;
  font-size: 1.5rem;
}
.price-de {  
  margin-right: 20px;
  margin-left: 10px;
  text-decoration: line-through;
  font-size: 1rem;
}
.price-por {  
  margin-left: 10px;
  font-weight: 900;
  font-size: 1.5rem;
  /* color: var(--theme-secondary-color); */
}
.price-sec .price-box .list ul li {
  line-height: 2rem;
}
.price-sec .price-box .list ul li i {
  color: #878A9B;
}
.price-sec .price-box .tag {
  position: absolute;
  top: 0;
  left: 0;
  padding: 7px 12px;
  background-color: var(--theme-primary-color);
  color: #ffffff;
  min-width: 66px;
}
.price-sec .price-box .tag:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 38px;
  border-left: 33px solid var(--theme-primary-color);
  border-right: 33px solid var(--theme-primary-color);
  border-bottom: 20px solid transparent;
}

/*-- free consultations css --*/
.free-consult {
  background-color: rgba(242, 24, 79, 0.1);
  /* background-image: url(../images/pets/coelho-2.jpg); */
  background-image: url(../images/ana/ana_bg_rosa.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  min-height: 750px;
  background-position: center top;
  position: relative;
  align-items: center;
  justify-content: center;
  display: flex;
  padding: 6rem 0;
  background-attachment: fixed;
}
.free-consult::before {
  content: "";
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.4) 1%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  border-radius: 0 10px 10px 0;
}
.free-consult .group {
  display: flex;
}
.free-consult .video-icon {
  border-radius: 50%;
  background-color: #ffffff;
  color: var(--theme-secondary-color);
  line-height: 60px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulseBig infinite 4s linear;
  margin-left: 1rem;
}
.free-consult .video-icon i {
  color: var(--theme-primary-color);
  font-size: 1.5rem;
}

/*-- testimonials css --*/
.testimonials {
  position: relative;
  background-color: rgba(242, 24, 79, 0.05);
}
.testimonials .slick-track {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.testimonials .pic-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonials .pic-wrap .avatar {
  overflow: hidden;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--theme-primary-color);
  border: 1px solid var(--theme-primary-color);
}
.testimonials .client-con {
  text-align: justify;
  background-color: #ffffff;
  border-radius: 0.8rem;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.testimonials .client-con .circle {
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid var(--theme-primary-color);
  width: 4rem;
  height: 4rem;
  display: inline-flex;
  padding: 1rem;
  top: -20px;
}
.testimonials .client-con .qotes-img {
  width: 100%;
  height: 100%;
  display: inline-block;
}
.testimonials .carouselTestimonials {
  position: relative;
}
.testimonials .carouselTestimonials .slick-slide {
  display: flex;
}

/*-- latest news css --*/
.news .news-card {
  background-color: #ffffff;
  border-radius: 0.8rem;
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
}
.news .news-card a {
  color: var(--theme-secondary-color);
}
.news .news-card a:hover {
  color: var(--theme-primary-color);
}
.news .date-tag {
  width: auto;
  height: auto;
  padding: 10px;
  text-align: center;
  border-radius: 0.8rem;
  color: #ffffff;
  background-color: var(--theme-secondary-color);
  position: absolute;
  right: 0px;
  bottom: 0px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/*-- contact form css --*/
.contact-sec {
  background-color: rgba(0, 0, 0, 0.04);
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.contact-sec .contact-form {
  position: relative;
}
.contact-sec .icons {
  background-color: var(--theme-secondary-color);
  width: 5rem;
  height: 5rem;
  display: inline-flex; /* Usar flexbox para centralização vertical */
  align-items: center; /* Centralizar verticalmente */
  justify-content: center; /* Centralizar horizontalmente */
  border-radius: 50%;
  text-align: center;
  transition-duration: 0.3s;  
}
.contact-sec .icons:hover {
  background-color: var(--theme-secondary-color);
  transform: translateY(-5px);
  cursor: pointer;
}
.contact-sec .icons:hover i {
  color: var(--theme-primary-color);
}
.contact-sec .icons i {
  font-size: 2.5rem;
  color: #ffffff;
}
.contact-sec .content-box {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.contact-sec .content-box h3 {
  font-weight: 700;
}

/*-- partner css --*/
.partner {
  position: relative;
}

/*-- subscribe section --*/
.subscribe .box {
  background-color: rgba(242, 24, 79, 0.05);
  border-radius: 0.8rem;
  padding: 4rem;
}
@media screen and (max-width: 575px) {
  .subscribe .box {
    padding: 2rem;
  }
}
.subscribe .box .input-group {
  background-color: #ffffff;
  padding: 0.5rem;
  border-radius: 0.8rem;
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .subscribe .box .input-group {
    flex-direction: column;
  }
}
.subscribe .box .input-group::before {
  content: "\f32f";
  position: absolute;
  display: block;
  font-family: "bootstrap-icons";
  color: #878A9B;
  z-index: 10;
  top: 20px;
  left: 16px;
}
.subscribe .box .input-group input {
  padding-left: 2.2rem !important;
}
@media screen and (max-width: 767px) {
  .subscribe .box .input-group input {
    width: 100%;
  }
}
.subscribe .box .input-group button {
  border-radius: 0.8rem !important;
}

/*-- footer section --*/
.footer {
  background-color: rgba(0, 0, 0, 0.04);
}
.footer p {
  color: #878A9B;
  line-height: 1.5;
}
.footer .footer-link li {
  line-height: 2.5rem;
  padding: 0 1rem;
}
.footer .footer-link li a {
  color: #878A9B;
  font-size: 0.875rem;
  padding: 0 0 0.5rem 0;
}
.footer .footer-link li a:hover {
  color: var(--theme-primary-color);
}
.footer .social a,
.footer .social .botom-link {
  color: #878A9B;
}
.footer .social a:hover,
.footer .social .botom-link:hover {
  color: var(--theme-primary-color);
}

/*-- back to top button css --*/
.scrollup {
  overflow: hidden;
  position: fixed;
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  bottom: -5rem;
  right: 10px;
  text-align: center;
  z-index: 1;
  background-color: var(--theme-link-color);
  opacity: 0.8;
  display: block;
  color: #ffffff;
  transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  display: flex;
  justify-content: center;
  align-items: center; /* Centraliza verticalmente */
  line-height: normal; /* Reset da altura da linha para o texto */
  
}
.scrollup::before {
  content: "";
  display: block;
  width: 60px; /* Largura da imagem */
  height: 60px; /* Altura da imagem */
  background-image: url('../images/icons/patas/pata-branca.fw.png'); /* URL da imagem */
  background-size: contain; /* Ajuste o tamanho da imagem como necessário */
  background-repeat: no-repeat;
  background-position: center; /* Centraliza a imagem dentro do círculo */
}

.scrollup i {
  opacity: 0.8;
  margin-top: 15px;
  font-size: 1.8rem;
  display: inline-block;
  transition: all 0.5s ease-out;
  /* transform: rotate(135deg); */
  background-image: url("../images/icons/patas/pata-branca.fw.png");
  height: 120px;
  width: 120px;

}
.scrollup:hover::before {
  content: "";
  display: block;
  width: 60px; /* Largura da imagem */
  height: 60px; /* Altura da imagem */
  background-image: url('../images/icons/patas/pata-roxa.fw.png'); /* URL da imagem */
  background-size: contain; /* Ajuste o tamanho da imagem como necessário */
  background-repeat: no-repeat;
  background-position: center; /* Centraliza a imagem dentro do círculo */
}
.scrollup:focus::before {
  content: "";
  display: block;
  width: 60px; /* Largura da imagem */
  height: 60px; /* Altura da imagem */
  background-image: url('../images/icons/patas/pata-roxa.fw.png'); /* URL da imagem */
  background-size: contain; /* Ajuste o tamanho da imagem como necessário */
  background-repeat: no-repeat;
  background-position: center; /* Centraliza a imagem dentro do círculo */
}

.scrollup.back-top {
  bottom: 20px;
}/*# sourceMappingURL=main.css.map */