:root {
  --anity-font: "DM Sans", sans-serif;
  --anity-font-two: "Libre Baskerville", serif;
  --anity-font-three: "fredoka_oneregular";
  --anity-gray: #727272;
  --anity-gray-rgb: 114, 114, 114;
  --anity-base: var(--bs-primary);
  --anity-base-rgb: var(--bs-primary-rgb);
  --anity-black: var(--text-color);
  --anity-black-rgb: var(--text-color-rgb);
  --anity-primary: var(--bs-primary);
  --anity-primary-rgb: var(--bs-primary-rgb);
  --anity-extra: #26CC8C;
  --anity-extra-rgb: 38, 204, 140;
  --anity-extra-two: #F2F0EC;
  --anity-extra-two-rgb: 242, 240, 236;
  --anity-white: var(--white-color);
  --anity-white-rgb: 255, 255, 255;
  --anity-bdr-color: #e3e3e3;
  --anity-bdr-radius: 20px;
}

.thm-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  outline: none !important;
  font-weight: 700;
  font-size: 12px;
  color: var(--anity-black);
  border: 1px solid var(--anity-base);
  padding: 5px 16px 5px;
  padding-right: 9px;
  border-radius: 30px;
  transition: 0.5s ease-in-out;
  text-transform: uppercase;
  overflow: hidden;
  letter-spacing: 1.4px;
  gap: 10px;
  z-index: 2;
  text-align: center;
}
.thm-btn::after {
  content: "";
  background-color: var(--anity-base);
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  clip-path: circle(0% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
  z-index: -1;
}
.thm-btn:hover::after {
  clip-path: circle(100% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 3s;
}
.thm-btn span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  font-size: 12px;
  background-color: var(--anity-base);
  border-radius: 50%;
  color: var(--anity-white);
  transition: all 500ms ease;
}
.thm-btn span:hover {
  background-color: var(--anity-white);
  color: var(--anity-base);
  transition-delay: 200ms;
}
.thm-btn span i:hover {
  animation: bounceright 0.3s alternate ease infinite;
}
.thm-btn.btn-sm {
  font-size: 10px;
  padding: 4px 10px 4px;
  padding-right: 6px;
  gap: 6px;
}
.thm-btn.btn-sm span {
  width: 30px;
  height: 30px;
  font-size: 10px;
}
.thm-btn:hover {
  color: var(--anity-white);
  border: 1px solid var(--anity-base);
}
.thm-btn:hover span {
  background: var(--anity-white);
}
.thm-btn:hover span i {
  color: var(--anity-base);
}
.thm-btn:hover i {
  animation: bounceright 0.3s alternate ease infinite;
}
.thm-btn.white_btn {
  color: var(--white-color);
  border: 1px solid var(--white-color);
}
.thm-btn.white_btn:hover {
  color: var(--text-color);
  border: 1px solid var(--white-color);
}
.thm-btn.white_btn:hover::after {
  background: var(--white-color);
}
.thm-btn.btn_trans {
  color: var(--white-color);
  border: 1px solid var(--white-color);
}
.thm-btn.btn_trans:hover {
  color: var(--anity-base);
  border: 1px solid var(--white-color);
}
.thm-btn.btn_trans:hover::after {
  background: var(--white-color);
}
.thm-btn.active {
  color: var(--anity-white);
  font-weight: 600;
}
.thm-btn.active::after {
  background-color: var(--anity-base);
  clip-path: circle(100% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 3s;
}
.thm-btn.active span {
  background: var(--anity-base);
  border: 1px solid var(--anity-white);
}
.thm-btn.active span i {
  color: var(--anity-white);
}

.card_thm_btn:hover .thm-btn {
  color: var(--anity-white);
  border: 1px solid var(--anity-base);
}
.card_thm_btn:hover .thm-btn span {
  background: var(--anity-white);
}
.card_thm_btn:hover .thm-btn span i {
  color: var(--anity-base);
}
.card_thm_btn:hover .thm-btn i {
  animation: bounceright 0.3s alternate ease infinite;
}
.card_thm_btn:hover .thm-btn::after {
  clip-path: circle(100% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 3s;
}

.card_effect_1:hover .thm-btn.white_btn {
  color: var(--text-color) !important;
  border: 1px solid var(--white-color) !important;
}
.card_effect_1:hover .thm-btn.white_btn::after {
  clip-path: circle(100% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 2s;
  background: var(--white-color) !important;
}
.card_effect_1:hover .thm-btn.white_btn:hover span {
  background: transparent;
}
.card_effect_1:hover .thm-btn.white_btn:hover span i {
  color: var(--anity-base);
}

.section-title {
  position: relative;
  display: block;
  margin-top: -10px;
  padding-top: 15px;
  margin-bottom: 1rem;
  z-index: 1;
}
.section-title__tagline {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
  color: var(--anity-base);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}
.section-title__title {
  color: var(--anity-black);
  font-size: 40px;
  line-height: 1.2em;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin: 9px 0 0;
}
.section-title__title span {
  color: var(--anity-base);
  font-weight: 500;
}

.section-title-two {
  position: relative;
  display: block;
  margin-top: -11px;
  margin-bottom: 1rem;
  z-index: 1;
}
.section-title-two__tagline {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
  color: var(--anity-base);
  font-weight: 400;
}
.section-title-two__title {
  color: var(--anity-black);
  font-size: 40px;
  line-height: 1.2em;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin: 5px 0 0;
}
.section-title-two__title span {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.section-title-two__title span img {
  position: absolute;
  bottom: -15px;
  right: -5px;
  animation: leftRight 4s ease-in-out infinite;
  z-index: -1;
}

.section-title_wrap p {
  letter-spacing: 0.2px;
  text-align: justify;
}
.section-title_wrap .section-title__title {
  max-width: 600px;
}

.main-slider-content {
  position: relative;
  display: block;
  z-index: 5;
}
.main-slider-content__inner {
  position: relative;
  display: block;
}
.main-slider-content .sub-title {
  position: relative;
  display: block;
  opacity: 0;
  transform: perspective(400px) rotateX(0deg) translateX(-120px);
  transform-origin: top;
  transition: all 1000ms ease;
  z-index: 10;
}
.main-slider-content .sub-title h4 {
  color: var(--anity-black);
  font-size: 30px;
  line-height: 1em;
  font-weight: 500;
}
.main-slider-content .big-title {
  position: relative;
  display: block;
  padding-top: 25px;
  opacity: 0;
  transform: perspective(400px) rotateY(0deg) translateY(-120px);
  transform-origin: top;
  transition: all 1000ms ease;
  z-index: 10;
}
.main-slider-content .big-title h2 {
  color: var(--anity-white);
  font-size: 80px;
  line-height: 1.1em;
  font-weight: 700;
}
.main-slider-content .big-title h2 span {
  color: var(--anity-base);
  font-weight: 500;
}
.main-slider-content .btn-box {
  position: relative;
  display: block;
  line-height: 0;
  padding-top: 40px;
  opacity: 0;
  visibility: hidden;
  transform: perspective(400px) rotateY(0deg) translateY(100px);
  transform-origin: bottom;
  transition: all 1000ms ease;
  z-index: 10;
}
.main-slider-content .btn-box a {
  background-color: var(--anity-white);
}

.owl-item.active .main-slider-content .sub-title {
  opacity: 1;
  transform: perspective(400px) rotateX(0deg) translateX(0px);
  transition-delay: 1000ms;
}
.owl-item.active .main-slider-content .big-title {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1000ms;
}
.owl-item.active .main-slider-content .btn-box {
  visibility: visible;
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1000ms;
}

/*============= About One ============*/
.about-One {
  position: relative;
  display: block;
  padding: 0;
  z-index: 1;
  overflow: hidden;
}
.about-One__left {
  position: relative;
  display: block;
  margin-right: 254px;
}
.about-One__img-box {
  position: relative;
  display: block;
}
.about-One__img-box img {
  aspect-ratio: 1;
  max-width: 400px;
}
.about-One .has_stroke img {
  border: 10px solid #fff;
  border-radius: 20px;
}
.about-One__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
  aspect-ratio: 1;
  max-width: 400px;
}
.about-One__img::after {
  background: linear-gradient(90deg, rgba(var(--karoons-white-rgb, 255, 255, 255), 0.05) 0px, rgba(var(--karoons-white-rgb, 255, 255, 255), 0.05) 77%, rgba(var(--karoons-white-rgb, 255, 255, 255), 0.25) 92%, rgba(var(--karoons-white-rgb, 255, 255, 255), 0));
  content: "";
  height: 200%;
  left: -210%;
  opacity: 0;
  position: absolute;
  top: -50%;
  transition: all 0.7s ease 0s;
  width: 200%;
}
.about-One__img:hover::after {
  left: -30%;
  opacity: 1;
  top: -20%;
  transition-duration: 0.7s, 0.7s, 0.15s;
  transition-property: left, top, opacity;
  transition-timing-function: linear;
}
.about-One__img img {
  width: 100%;
  border-radius: 20px;
}
.about-One__img-2 {
  position: absolute;
  top: 120px;
  right: -224px;
  overflow: hidden;
}
.about-One__img-2:after {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}
.about-One__img-2:hover:after {
  animation: shine 1.5s;
}
.about-One__img-2 img {
  width: auto;
  border-radius: 20px;
}
.about-One__provide-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: var(--anity-primary);
  border-radius: 20px;
  margin-right: 56px;
  margin-top: 46px;
  padding: 21px 31px 23px;
}
.about-One__provide-icon {
  position: relative;
  display: inline-block;
}
.about-One__provide-icon span {
  position: relative;
  display: inline-block;
  font-size: 64px;
  color: var(--anity-black);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}
.about-One__provide-icon:hover span {
  transform: scale(0.9);
}
.about-One__provide-content {
  position: relative;
  display: block;
}
.about-One__provide-count {
  position: relative;
  display: flex;
  align-items: center;
}
.about-One__provide-count h3,
.about-One__provide-count span {
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
}
.about-One__provide-count span {
  color: var(--anity-black);
  font-family: var(--anity-font-two);
}
.about-One__provide-count-text {
  margin-top: 6px;
  color: var(--anity-black);
}
.about-One__shape-1 {
  position: absolute;
  width: 265px;
  height: 279px;
  right: -200px;
  top: 92px;
  border-radius: 50%;
  background-color: var(--anity-primary);
  filter: blur(162px);
  z-index: -1;
  animation: zoomInOut 3s ease-in-out infinite;
}
.about-One__right {
  position: relative;
  display: block;
  margin-top: 89px;
}
.about-One__right .section-title {
  position: relative;
  display: block;
  margin-top: -8px;
  margin-bottom: 1rem;
  z-index: 1;
}
.about-One__vission-mission {
  position: relative;
  display: block;
}
.about-One__tab-box {
  position: relative;
  display: block;
}
.about-One__tab-box .tab-buttons {
  position: relative;
  display: flex;
  margin-bottom: 18px;
  align-items: center;
  gap: 15px;
}
.about-One__tab-box .tab-buttons .tab-btn {
  position: relative;
  display: block;
}
.about-One__tab-box .tab-buttons .tab-btn + .tab-btn {
  margin-left: 0;
}
.about-One__tab-box .tab-buttons .tab-btn span {
  position: relative;
  display: inline-block;
  width: 180px;
  font-size: 16px;
  font-weight: 700;
  color: var(--anity-black);
  background-color: transparent;
  padding: 9px 20px;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
  text-align: center;
  text-transform: capitalize;
  border: 1px solid var(--anity-gray);
  border-radius: 10px;
  overflow: hidden;
}
.about-One__tab-box .tab-buttons .tab-btn span::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--anity-extra);
  background-position: top bottom;
  transition: all 0.5s ease-in-out;
  transform-origin: top;
  transform: scaleY(0);
  z-index: -1;
}
.about-One__tab-box .tab-buttons .tab-btn.active-btn span {
  color: var(--anity-white);
  border: 1px solid var(--anity-extra);
}
.about-One__tab-box .tab-buttons .tab-btn.active-btn span::before {
  transform: scaleY(1);
}
.about-One__tab-box .tabs-content {
  position: relative;
  display: block;
}
.about-One__tab-box .tabs-content .tab {
  position: relative;
  display: none;
  transform: translateY(35px);
  transition: all 600ms ease;
  z-index: 10;
}
.about-One__tab-box .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0;
  transform: translateY(0);
}
.about-One__tab-box .tabs-content__inner {
  position: relative;
  display: block;
}
.about-One__btn-and-need-help {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 41px;
}
.about-One__btn-box {
  position: relative;
  display: block;
}
.about-One__need-help {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}
.about-One__need-help .icon {
  position: relative;
  display: inline-block;
  top: 5px;
}
.about-One__need-help .icon span {
  font-size: 46px;
  color: var(--anity-base);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}
.about-One__need-help .icon span:hover {
  transform: scale(0.9);
}
.about-One__need-help .content {
  position: relative;
  display: block;
}
.about-One__need-help .content p {
  color: var(--anity-black);
}
.about-One__need-help .content h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}
.about-One__need-help .content h4 a {
  color: var(--anity-black);
}
.about-One__need-help .content h4 a:hover {
  color: var(--anity-base);
}

.img_animation {
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}
.img_animation img {
  transition: transform 0.4s ease-in-out;
  width: 100%;
}
.img_animation:hover img {
  transform: scale(1.1);
}
.img_animation::after {
  content: "";
  position: absolute;
}

.glass_animation_1::after {
  background: linear-gradient(90deg, rgba(var(--karoons-white-rgb, 255, 255, 255), 0.05) 0px, rgba(var(--karoons-white-rgb, 255, 255, 255), 0.05) 77%, rgba(var(--karoons-white-rgb, 255, 255, 255), 0.25) 92%, rgba(var(--karoons-white-rgb, 255, 255, 255), 0));
  height: 200%;
  left: -210%;
  opacity: 0;
  top: -50%;
  transition: all 0.7s ease 0s;
  width: 200%;
}
.glass_animation_1:hover::after {
  left: -30%;
  opacity: 1;
  top: -20%;
  transition-duration: 0.7s, 0.7s, 0.15s;
  transition-property: left, top, opacity;
  transition-timing-function: linear;
}

.glass_animation_2::after {
  background: hsla(0, 0%, 100%, 0.5);
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 9;
}
.glass_animation_2:hover::after {
  height: 100%;
  opacity: 0;
  transition: all 0.6s linear;
}

.glass_animation_3::after {
  top: 0;
  left: -100%;
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}
.glass_animation_3:hover::after {
  animation: shine 1.5s;
}

.rotate_360 {
  animation: rotate360 10s linear infinite;
  display: inline-block;
  /* Ensures the rotation works smoothly */
}

@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* Floating up/down */
.float {
  animation: floatUpDown 3s ease-in-out infinite;
  display: inline-block;
}

/* Keyframes for smooth up-down movement */
@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.blog-one {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 140px 0 110px;
  z-index: 1;
}
.blog-one--style2 {
  padding: 140px 0px 110px;
}
.blog-one__single {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--anity-white);
  border: 1px solid #DDDDDD;
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
  border-radius: var(--anity-bdr-radius);
  padding: 12px 12px 12px;
  margin-bottom: 30px;
}
.blog-one__single:hover .blog-one__img::after {
  left: -30%;
  opacity: 1;
  top: -20%;
  transition-duration: 0.7s, 0.7s, 0.15s;
  transition-property: left, top, opacity;
  transition-timing-function: linear;
}
.blog-one__single:hover .blog-one__img img {
  transform: scale(1.05) rotate(0deg);
}
.blog-one__img-box {
  position: relative;
  display: block;
}
.blog-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--anity-bdr-radius);
}
.blog-one__img::after {
  background: linear-gradient(90deg, rgba(var(--karoons-white-rgb, 52, 52, 52), 0.05) 0px, rgba(var(--karoons-white-rgb, 52, 52, 52), 0.05) 77%, rgba(var(--karoons-white-rgb, 52, 52, 52), 0.25) 92%, rgba(var(--karoons-white-rgb, 52, 52, 52), 0));
  content: "";
  height: 200%;
  left: -210%;
  opacity: 0;
  position: absolute;
  top: -50%;
  transition: all 0.7s ease 0s;
  width: 200%;
}
.blog-one__img img {
  width: 100%;
  border-radius: var(--anity-bdr-radius);
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
  aspect-ratio: 3/2;
}
.blog-one__img.sq_img img {
  aspect-ratio: 1;
}
.blog-one__date {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  flex-direction: column;
  width: 55px;
  height: 70px;
  background-color: var(--anity-white);
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}
.blog-one__date::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background-color: var(--anity-primary);
  z-index: -1;
}
.blog-one__date p {
  font-size: 18px;
  font-weight: 600;
  color: var(--anity-white);
  font-family: var(--anity-font-two);
}
.blog-one__date p span {
  color: var(--anity-black);
  font-size: 16px;
  text-transform: uppercase;
}
.blog-one__content {
  position: relative;
  display: flex;
  padding-top: 15px;
  flex-direction: column;
  flex-grow: 1;
}
.blog-one__content > div:first-child {
  flex-grow: 1;
}
.blog-one__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  text-transform: capitalize;
}
.blog-one__title a {
  color: var(--anity-black);
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-one__title a:hover {
  color: var(--anity-base);
  background-size: 100% 1px;
}
.blog-one__btn-box {
  position: relative;
  display: block;
  margin-top: 20px;
}

.event-one {
  position: relative;
  display: block;
  padding: 140px 0 0px;
  z-index: 1;
}
.event-one.pdb {
  padding-bottom: 110px;
}
.event-one__single {
  position: relative;
  display: block;
  background-color: var(--anity-white);
  border: 1px solid var(--anity-extra-two);
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  margin-bottom: 30px;
  padding: 12px 12px 12px;
}
.event-one__single:hover .event-one__img::after {
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 400ms linear;
}
.event-one__single:hover .event-one__img::before {
  bottom: 0;
  top: 0;
  opacity: 0;
  transition: all 400ms linear;
}
.event-one__img-box {
  position: relative;
  display: block;
}
.event-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--anity-bdr-radius);
}
.event-one__img::after {
  background: rgba(var(--anity-white-rgb, 255, 255, 255), 0.3);
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  pointer-events: none;
  transition: all 400ms linear;
}
.event-one__img::before {
  background: rgba(var(--anity-white-rgb, 255, 255, 255), 0.3);
  bottom: 50%;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  z-index: 1;
  top: 51%;
  opacity: 1;
  pointer-events: none;
  transition: all 400ms linear;
}
.event-one__img img {
  width: 100%;
  border-radius: var(--anity-bdr-radius);
  transition: transform 0.4s ease-in-out;
  aspect-ratio: 3/2;
}
.event-one__img:hover img {
  transform: scale(1.1);
}
.event-one__date {
  position: absolute;
  left: 20px;
  bottom: 20px;
  border-radius: 10px;
  background-color: var(--anity-white);
  padding: 5px 15px 5px;
  padding-right: 52px;
  z-index: 2;
}
.event-one__date p {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--anity-black);
}
.event-one__date p span {
  color: var(--anity-extra);
}
.event-one__content {
  position: relative;
  display: block;
  padding-top: 15px;
}
.event-one__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  text-transform: capitalize;
}
.event-one__title a {
  color: var(--anity-black);
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.event-one__title a:hover {
  color: var(--anity-base);
  background-size: 100% 1px;
}
.event-one__text {
  margin-top: 22px;
  margin-bottom: 20px;
}
.event-one__location {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #616670;
}
.event-one__location span {
  color: var(--anity-base);
}
.event-one__btn-box {
  margin-top: 20px;
}/*# sourceMappingURL=custom-style.css.map */