@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  transition: all 0.5s;
  font-family: "Poppins", sans-serif;
}

:root {
  --firstcolor: #175c62;
  --secound-color: #539d97;
  --threed-color: #08b984;
  --black-color: #000;
  --white-color: #fff;
  --fontsize18: 1.125rem;
  --fontsize20: 1.25rem;
  --fontsize25: 1.563rem;
  --fontsize32: 2.032rem;
  --fontsize35: 2.188rem;
  --fontsize36: 2.25rem;
  --font-size37: 2.313rem;
  --fontsize45: 2.813rem;
  --fontsize48: 3rem;
  --fontsize64: 4rem;
  --fontsize95: 5.938rem;
  --fontsize73: 4.563rem;
  --fontsize75: 4.688rem;
  --fontsize85: 5.313rem;
  --fontsize24: 1.5rem;
}

.compensate-for-scrollbar {
  margin-right: 0 !important;
}

.fancybox-slide--image {
  padding: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
}

p {
  font-family: "Poppins", sans-serif;
}

:is(ul, li) {
  padding: 0;
  margin: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  transition: 0.5s ease-out;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

button:focus {
  border: 0;
  outline: none;
  box-shadow: none;
}

button {
  border: 0;
  outline: 0;
}

section {
  position: relative;
  padding: 5rem 0;
}

.btn.focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
  border: 0;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  font-size: 0;
}

.defult-btn {
  background-color: var(--firstcolor);
  height: 52px;
  font-size: 1rem;
  display: inline-flex;
  padding: 0 45px;
  border: 1px solid var(--black-color);
  font-weight: 600;
  align-items: center;
  box-shadow: 0px 4px 16px -10px var(--black-color);
  border-radius: 30px;
  justify-content: center;
  position: relative;
  transition: 0.5s ease-out;
  text-transform: uppercase;
}

.defult-btn:hover {
  background-color: #0d816c !important;
  border: 1px solid var(--threed-color);
  color: var(--white-color);
}

.sec-heding h3 {
  font-size: var(--fontsize36);
  color: var(--firstcolor);
  margin-bottom: 1rem;
  font-weight: bold;
}

.sec-heding p {
  font-size: var(--fontsize18);
  color: var(--black-color);
  padding: 0 10rem;
}

.sec-heding {
  margin-bottom: 3rem;
  text-align: center;
}

/* main header */
.main-header {
  padding: 10px 0;
  border-bottom: 2px solid var(--firstcolor);
}

.main-header .menu-left,
.main-header .menu-right {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-header .menu-right a {
  color: var(--firstcolor);
  font-size: 14px;
  font-weight: 600;
}

.order-btn {
  color: var(--white-color) !important;
}

.main-header .menu-right {
  justify-content: flex-end;
}

.main-header .menu-left li {
  position: relative;
}

.main-header .menu-left a {
  color: var(--firstcolor);
  font-weight: 500;
  transition: color 0.3s;
  padding: 10px 5px;
  position: relative;
  font-size: 14px;
  font-weight: 700;
  text-transform: capitalize;
}

.menu-left a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: var(--secound-color);
  transition: width 0.3s ease;
}

.menu-left a.active::after {
  transform: scaleX(1);
  width: 100%;

}

.menu-left a.active {
  color: var(--secound-color);
}

.menu-left a:hover::after {
  width: 100%;
}

:is(.main-header :is(.menu-left, .menu-right)) a:hover {
  color: var(--secound-color);
}

.main-header .dropdown {
  position: absolute;
  top: 180%;
  left: 0;
  display: none;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 10px;
  columns: 3;
  min-width: max-content;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 99;
}

.main-header .menu-left li:hover .dropdown {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-header .dropdown a {
  display: block;
  padding: 6px 10px;
  font-size: 14px;
  color: #444;
  border-radius: 5px;
  transition: background 0.2s;
}

.main-header .dropdown a:hover {
  background: #f0f0f0;
}

.main-header .icon-btn img {
  width: 22px;
  height: 22px;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.main-header .icon-btn:hover img {
  filter: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 2px;
}
.mobile-menu .order-btn {width: 100%;}
/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 260px;
  height: 100vh;
  background: #fff;
  padding: 20px;
  transition: left 0.4s ease;
  z-index: 1000;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-menu.open {
  left: 0;
}

.mobile-menu .close-btn {
  align-self: flex-end;
  font-size: 22px;
  cursor: pointer;
  color: #666;
}

.mobile-menu li {
  border-radius: 0;
  padding: 3px 0;
  border-bottom: 1px solid var(--firstcolor);
  margin-bottom: 11px;
}

.mobile-menu a {
  font-size: 15px;
  color: var(--black-color);
  transition: background 0.2s;
}

.mobile-menu a:hover {
  background: var(--threed-color);
  padding: 4px 1rem;
}
.mobile-menu ul{
  overflow: scroll;
  height: 360px;
}

/* Services Scroll */
.services-scroll {
  max-height: 200px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.services-scroll::-webkit-scrollbar {
  width: 6px;
}

.services-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
:is(.menu-right,.mobileicons)
 i {
  display: block;
  color: var(--threed-color);
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.mobileicons{
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.mobileicons i{
  margin-bottom: 0;
  font-size: 2.4rem;
}
/* end main header */
/*  mian-banner */
.banrheading span {
  border-radius: 12px;
  border: 2px dashed var(--threed-color);
  font-size: var(--fontsize24);
  padding: 1rem;
  color: #0e9c60;
  background-color: #edfcf3;
  transform: rotate(357deg) translate(10px, -22px);
  display: inline-block;
  animation: blink-border 1s step-end infinite;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

@keyframes blink-border {

  0%,
  100% {
    border-color: var(--threed-color);
  }

  50% {
    border-color: transparent;
  }
}

.banrheading h1 {
  font-size: var(--fontsize64);
  text-transform: capitalize;
  font-weight: 700;
}

.two-buttons {
  margin-top: 2rem;
}

.two-buttons i {
  margin-right: 8px;
}

.two-buttons a {
  margin-right: 1rem;
  padding: 0 5vw;
  color: var(--white-color);
}

.two-buttons a:last-child {
  background: none;
  background-color: transparent;
  color: var(--firstcolor);
  border-color: var(--secound-color);
}

.two-buttons a:last-child:hover {
  background: var(--threed-color);
  color: var(--white-color);
}

.banrheading strong {
  margin: 1rem 0;
  display: block;
  font-size: var(--fontsize32);
}

.plaitform {
  margin-top: 5rem;
}

.plaitform ul {
  justify-content: space-around;
}

.plaitform li span {
  font-size: var(--fontsize32);
  font-weight: 700;
  color: var(--firstcolor);
}

.plaitform li span i {
  font-size: var(--fontsize18);
}

.plaitform li p {
  font-size: var(--fontsize18);
  color: var(--threed-color);
  margin-bottom: 0;
}

.plaitform a,
.plaitform ul,
.bannerpoint {
  display: flex;
  align-items: center;
  gap: 20px;
}

.bannerpoint h4 {
  color: var(--firstcolor);
  font-size: var(--fontsize36);
  font-weight: 600;
}

.bannerpoint p {
  font-size: var(--fontsize18);
  color: var(--threed-color);
}

.bannerpoint {
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
}

.plaitform li figure {
  border: 1px solid #0e9c60;
  padding: 10px;
  margin-bottom: 0;
  border-radius: 50%;
  background-color: #edfcf3;

}


.plaitform li {
  margin-bottom: 2rem;
}

/* banner-from */
/* Main Wrapper */
.form-wrapper {
  padding: 15px;
  background: #ffffff;
  border: 1px solid var(--firstcolor);
  border-radius: 16px;
  position: relative;
  margin: 0 3rem;
}

.form-wrapper::before {
  background-color: var(--firstcolor);
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  margin: auto;
  width: 80%;
  height: 105%;
  z-index: -1;
  border-radius: 30px;
}


.form-wrapper .promo-offer {
  margin: 0 auto 30px;
  text-align: center;
  background: var(--secound-color);
  padding: 15px 0;
  border-radius: 16px;
  box-shadow: 0 2px 10px var(--black-color);
  position: relative;
  overflow: hidden;
}

.form-wrapper .promo-offer img {
  width: 90px;
  height: 90px;
  margin-bottom: 20px;
  object-fit: contain;
}

.form-wrapper .promo-offer h2 {
  font-size: var(--fontsize32);
  color: var(--white-color);
  margin: 0;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1px;
}

.form-wrapper .promo-offer p {
  font-size: var(--fontsize18);
  margin-top: 10px;
  color: var(--white-color);
  font-weight: 500;
  margin-bottom: 0;
}

.form-wrapper #countdown {
  margin-top: 15px;
  font-size: var(--fontsize24);
  font-weight: bold;
  color: var(--firstcolor);
  display: inline-block;
  border-radius: 10px;
}

.form-wrapper .btn-submit {
  width: 100%;
  grid-column: span 2;
  background-color: var(--threed-color);
  border: 0;
  color: var(--white-color);
  border-radius: 5px;
}

.form-wrapper .timer-offer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 1rem;
  grid-column: span 2;
}

.form-wrapper .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-wrapper .form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-wrapper .form-control {
  width: 100%;
  padding: 15px 18px;
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid #539d97;
  background: #f5fdfd;
  color: #175c62;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.02);
  transition: 0.3s;
  padding-right: 45px;
}

.form-wrapper .form-control:focus {
  border-color: #175c62;
  background-color: #fff;
  box-shadow: 0 0 8px rgba(23, 92, 98, 0.25);
  outline: none;
}

.form-wrapper .form-control::placeholder {
  color: #999;
}

/* Select styling */
.form-wrapper .select-field {
  appearance: none;
  background-image: url('data:image/svg+xml,%3Csvg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M5 7L10 12L15 7" stroke="%23175c62" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: var(--fontsize18);
  cursor: pointer;
}

/* Input icon */
.form-wrapper .input-icon {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  font-size: 18px;
  color: #175c62;
  pointer-events: none;
}

/* Submit Button */

/* end banner-from */
/* end main-banner */

/* servces-sec */
.services {
  background-color: #f8f9fa;
  padding: 4rem 0;
}

.services .card {
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  padding: 15px;
  border-radius: 12px;
}

.services .card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.card-body {
  padding-left: 0;
  text-align: center;
}

.services .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.services .card-title {
  font-size: var(--fontsize20);
  color: var(--firstcolor);
  margin-bottom: 0.5rem;
}

.services .card-text {
  font-size: 0.95rem;
  color: var(--black-color);
}

.services .card-img-top {
  height: 200px;
  object-fit: cover;
}

/* end serves-sec */
/* how it work */
.how-it-work-sec {
  background-color: #f1f9f9;
  padding: 4rem 0;
}

.how-it-work-sec .step-box {
  text-align: center;
  padding: 2rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  height: 100%;
}

.how-it-work-sec .step-box:hover {
  transform: translateY(-8px);
}

.how-it-work-sec .step-icon {
  font-size: 3rem;
  color: var(--threed-color);
  margin-bottom: 1rem;
}

.how-it-work-sec .step-title {
  font-size: var(--fontsize20);
  font-weight: 600;
  color: var(--secound-color);
  margin-bottom: 0.5rem;
}

.how-it-work-sec .step-desc {
  font-size: 0.95rem;
  color: var(--black-color);
}

/* who we are sec */
.who-we-are-sec {
  background-color: #fff;
  padding: 4rem 0;
}

:is(.who-we-are-sec, .resources-sec) .sec-heding p {
  padding: 0;
}

:is(.who-we-are-sec, .resources-sec) .sec-heding {
  text-align: left;
}

.who-we-are-sec .info-box p {
  color: var(--black-color);
  font-size: var(--fontsize18);
  margin-bottom: 0;
}

.who-we-are-sec .info-box {
  background-color: #f1f9f9;
  border-left: 5px solid var(--threed-color);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.who-we-are-sec .info-box:hover {
  transform: translateY(-5px);
}

.who-we-are-sec .info-box h5 {
  font-size: var(--fontsize20);
  color: var(--firstcolor);
  margin-bottom: 0.5rem;
}

.who-we-are-sec img {
  width: 100%;
  border-radius: 10px;
}

/* Guarantees-sec */
.guarantees-sec {
  background-color: var(--secound-color);
  padding: 4rem 0;
  color: #fff;
}

.guarantees-sec .sec-heding * {
  color: var(--white-color);
}

.guarantee-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: zoomFade 1s ease forwards;
}

.guarantee-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.guarantee-icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #fff;
}

.guarantee-text h4 {
  font-size: var(--fontsize25);
  margin-bottom: 0.5rem;
  color: var(--white-color);
}

.guarantee-text p {
  font-size: var(--fontsize18);
  color: #f1f1f1;
  margin: 0;
}

@keyframes slideInTop {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomFade {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Resources-sec */
.resources-sec {
  padding: 4rem 0;
  background-color: var(--white-color);
}

.resources-sec .row {
  align-items: center;
}



.resources-sec ul {
  padding-left: 1.2rem;
  margin-top: 1rem;
  columns: 2;
}

.resources-sec ul li {
  font-size: var(--fontsize18);
  color: var(--black-color);
  margin-bottom: 0.5rem;
  list-style-type: disc;
}

.resources-sec .img-wrapper img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

/* writing-help */

.writing-help-sec {
  padding: 4rem 0;
  background-color: var(--white-color);
}


.writing-help-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 3rem;
  gap: 2rem;
}

.writing-step {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 2rem;
  flex: 1 1 260px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.writing-step h4 {
  font-size: var(--fontsize25);
  color: var(--secound-color);
  margin-bottom: 1rem;
}

.writing-step p {
  font-size: var(--fontsize18);
  color: var(--black-color);
}

/* testimonials */
.testimonials-sec {
  padding: 5rem 0;
  background: linear-gradient(to right, #e0f7fa, #ffffff);
}

.testimonials-sec h2 {
  text-align: center;
  font-size: var(--fontsize36);
  color: var(--firstcolor);
  margin-bottom: 3rem;
  font-weight: bold;
}

.testimonial-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
  text-align: center;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-card img {
  width: 80px !important;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid var(--threed-color);
}

.testimonial-card p {
  font-size: var(--fontsize18);
  color: #333;
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-card h5 {
  font-size: var(--fontsize20);
  color: var(--secound-color);
  font-weight: 600;
  margin-bottom: 0;
}

.testimonial-card span {
  font-size: 0.875rem;
  color: #888;
  display: block;
  margin-top: 0.3rem;
}

.testimonial-card::before {
  content: "\201C";
  font-size: 4rem;
  position: absolute;
  top: -10px;
  left: 20px;
  color: var(--threed-color);
  opacity: 0.3;
}

/* packages */
.packages-sec {
  background: #f7fdfd;
}

.price-card {
  background: var(--white-color);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease-in-out;
  border: 2px solid var(--firstcolor);
}

:is(.testimonials-sec, .packages-sec) .owl-stage-outer {
  padding: 20px 0;
}

.sticky {
  position: sticky;
  width: 100%;
  z-index: 44;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  top: 0;
  background: #fff;
}

.trustedimg img {
  margin-bottom: 1rem;
}

.price-card:hover {
  transform: translateY(-8px);
}

.price-card h4 {
  font-size: var(--fontsize25);
  color: var(--firstcolor);
  margin-bottom: 0.5rem;
}

.price-card h3 {
  font-size: var(--fontsize36);
  color: var(--threed-color);
  margin-bottom: 1rem;
}

.price-card ul {
  max-height: 300px;
  overflow-y: auto;
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--secound-color) transparent;
}

.price-card ul::-webkit-scrollbar {
  width: 6px;
}

.price-card ul::-webkit-scrollbar-thumb {
  background-color: var(--secound-color);
  border-radius: 3px;
}

.price-card ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  font-size: var(--fontsize18);
  color: #333;
}

.price-card button {
  background-color: var(--threed-color);
  color: #fff;
  border: none;
  padding: 0.6rem 1.5rem;
  font-size: var(--fontsize18);
  border-radius: 6px;
  cursor: pointer;
}

.price-card button:hover {
  background-color: var(--firstcolor);
}

.trustedlogoslider img {
  width: auto !important;
  object-fit: cover;
}

.leftsidetext {
  background-color: #e8f5ee;
  padding: 3rem 3rem;
  border-radius: 30px;
  height: 100%;
}

.leftsidetext img {
  margin-top: 2rem;
}

.rightside {
  background-color: #f3f6fa;
}

.reputable-sec .sec-heding {
  margin-bottom: 0;
}

/* footer */

.footer-sec {
  background-color: #f5f5f5;
  padding: 3rem 0 1rem;
}

.footer-sec .footer-logo p{
  margin: 1rem 0;
}

.footer-sec .row>.col-md-3:nth-child(2) .footer-box {
  padding-left: 3rem;
}

.footer-sec .footer-box h5 {
  font-size: var(--fontsize20);
  margin-bottom: 1rem;
  color: var(--firstcolor);
}

.footer-sec .footer-box ul {
  columns: 2;
}

.footer-sec .footer-box ul li {
  margin-bottom: 0.5rem;
}

.footer-sec .footer-box ul li a,
.footer-box a,
.footer-box p {
  color: var(--firstcolor);
  text-decoration: none;
  transition: 0.3s;
}

.footer-sec .footer-box ul li a:hover,
.footer-box a:hover {
  color: var(--threed-color);
}

.footer-sec .footer-contact p {
  margin-bottom: 0.3rem;
}

.footer-sec .footer-image {
  text-align: center;
  margin-top: 2rem;
}

.footer-sec .footer-image img {
  max-width: 200px;
}

.footer-sec .footer-disclaimer {
  font-size: 14px;
  text-align: center;
  padding: 0 15%;
  color: var(--firstcolor);
  margin: 0rem 0 1rem;
}

.footer-sec .footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: var(--black-color);
}

.footer-sec .footer-bottom a {
  color: var(--firstcolor);
  text-decoration: none;
  margin: 0 5px;
}

.footer-sec .two-buttons {
  margin-top: 0;
}

.sical-icons {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 1rem;
}

.sical-icons i {
  font-size: var(--fontsize24);
  transition: 0.3s;
}

.sical-icons li:nth-child(1) a {
  color: #3b5998;
}

/* Facebook */
.sical-icons li:nth-child(2) a {
  color: #e4405f;
}

/* Instagram */
.sical-icons li:nth-child(3) a {
  color: #1da1f2;
}

/* Twitter */
.sical-icons li:nth-child(4) a {
  color: #ff0000;
}

/* YouTube */
.sical-icons li:nth-child(5) a {
  color: #bd081c;
}

/* Pinterest */

.sical-icons li a:hover {
  opacity: 0.7;
}

.content-img img {
  width: 100%;
  border-radius: 22px;
}

.content-text.sec-heding {
  text-align: left;
}

.content-text.sec-heding p {
  padding: 0;
}

.merge-badge img {
  position: absolute;
  right: 0;
  border-radius: 100%;
  border: 10px solid var(--secound-color);
  bottom: 0;
  top: 0;
  margin: auto;
  left: 0;
  width: 200px;
  height: 200px;
  transform: translate(20px, -25px);
}

.content-text {
  padding: 3rem;
}

.whatsapp-widget {
  background: #12b919;
  padding: 8px 15px 7px 15px;
  border-radius: 22px;
  box-shadow: 0 0 10px rgba(0, 0, 0, .3);
  position: fixed;
  bottom: 18px;
  left: 10px;
  clear: both;
  outline: none;
  z-index: 99999;
}

/* popup */

.popup-modal {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: top 0.5s ease;
}

.popup-modal.active {
  top: 0;
}

.popup-content {
  background: transparent;
  padding: 0;
  border-radius: 10px;
  width: 90%;
  max-width: 50%;
  position: relative;
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.popup-close {
  position: absolute;
  top: 17px;
  right: 20px;
  font-size: 1.5rem;
  background: #fff !important;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}