@import url('./variable.css?t=5');
@import url('./home.css?t=4787');
@import url('./header.css?t=12');
@import url('./footer.css?t=9');
@import url('./qr-code.css?t=20');
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed: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');
@import url('https://fonts.googleapis.com/css2?family=Gilda+Display&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow: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');


.fpirsD {
  flex-wrap: wrap!important;
}
.gilda-display-regular {
  font-family: "Gilda Display", serif;
  font-weight: 400;
  font-style: normal;
}

body {
  font-family: "Barlow", sans-serif;

  min-height: 100vh;
  padding: 0;
  margin: 0;
  overflow-x: auto;
  height: auto;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  height: 100%;

}

main {
  flex: 1;
}

.container-fluid {
  padding: 0 48px;
}

ul,
li,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.common-shadow {
  box-shadow: 0px 10px 10px 0px rgba(153, 153, 153, 0.2);
}

.common-section {
  padding-top: 80px;
}

.common-primary-btn {
  background-color: var(--gold-color);
  border-radius: 5px;
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  height: 54px;
  max-width: 180px;
  min-width: 180px;
  border: 1px solid var(--gold-color);
  transition: all 0.90s ease;
  position: relative;
}

.common-primary-btn:hover {
  background-color: transparent;
  border: 1px solid var(--gold-color);
  transform: scale(0.96);
  color: var(--gold-color);
}

.common-primary-btn:hover:before {
  top: -70%;
  background-image: radial-gradient(circle, var(--gold-color) 20%, transparent 20%),
    radial-gradient(circle, transparent 20%, var(--gold-color) 20%, transparent 30%),
    radial-gradient(circle, var(--gold-color) 10%, transparent 20%),
    radial-gradient(circle, var(--gold-color) 20%, transparent 20%),
    radial-gradient(circle, transparent 10%, var(--gold-color) 15%, transparent 20%),
    radial-gradient(circle, var(--gold-color) 20%, transparent 20%),
    radial-gradient(circle, var(--gold-color) 20%, transparent 20%),
    radial-gradient(circle, var(--gold-color) 20%, transparent 20%),
    radial-gradient(circle, var(--gold-color) 20%, transparent 20%);
  background-size: 10% 10%, 4% 1%, 10% 12%, 10% 10%, 18% 12%, 10% 10%, 13% 12%,
    10% 10%, 12% 18%;
  background-position: 50% 120%;
  animation: greentopBubbles 2s ease;
}

@keyframes greentopBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%,
      40% 90%, 55% 90%, 70% 90%;
  }

  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%,
      50% 50%, 65% 20%, 90% 30%;
  }

  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%,
      50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

.common-primary-btn:hover::after {
  bottom: -70%;
  background-image: radial-gradient(circle, var(--gold-color) 20%, transparent 20%),
    radial-gradient(circle, var(--gold-color) 20%, transparent 20%),
    radial-gradient(circle, transparent 10%, var(--gold-color) 15%, transparent 20%),
    radial-gradient(circle, var(--gold-color) 20%, transparent 20%),
    radial-gradient(circle, var(--gold-color) 20%, transparent 20%),
    radial-gradient(circle, var(--gold-color) 20%, transparent 20%),
    radial-gradient(circle, var(--gold-color) 20%, transparent 20%);
  background-size: 10% 10%, 4% 1%, 10% 12%, 10% 10%, 18% 12%, 10% 10%, 13% 12%,
    10% 10%, 12% 18%;
  background-position: 50% 0%;
  animation: greenbottomBubbles 2s ease;
}

@keyframes greenbottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%,
      70% -10%, 70% 0%;
  }

  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%,
      105% 0%;
  }

  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%,
      110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

.common-primary-btn:active {
  transform: scale(0.96);
}

.common-primary-btn:before,
.common-primary-btn:after {
  position: absolute;
  content: "";
  width: 100%;
  left: 50%;
  right: 0;
  top: 0;
  margin: 0 auto;
  height: 100%;
  transform: translateX(-50%);
  z-index: -1000;
  background-repeat: no-repeat;
}

/* .common-title {
  font-size: 48px;
  color: var(--gold-color);
  font-family: 'Gilda Display', serif;

  font-weight: 400;
  text-align: center;
} */


.common-main-title {
  font-size: 36px;
  font-family: 'Gilda Display', serif;
  font-weight: 500;
  color: var(--black);
  position: relative;
  margin-bottom: 20px;
  line-height: 1.25em;
}

.common-sub-title {
  font-size: 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  color: var(--gold-color);
  text-transform: uppercase;
  position: relative;
  letter-spacing: 6px;
  margin-bottom: 5px;
}

/* animations */
.fade-in {
  opacity: 0;
  animation: fadeIn 1.5s ease-in-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(4);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* fadeout animataion */
.slide-up {
  transform: translateY(2px);
  opacity: 0;
  animation: slideUp 2.2s ease-out forwards;
}

@keyframes slideUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* left-side animation */
.slide-in-left {
  opacity: 0;
  transform: translateX(-100px);
  animation: slideInLeft 2.2s ease-out forwards;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-top-right {
  opacity: 0;
  transform: translate(100px, -100px);
  /* Right + Top */
  animation: slideInTopRight 1.5s ease-out forwards;
}

@keyframes slideInTopRight {
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.slider-up-load {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUpLoad 0.8s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes slideUpLoad {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.slider-down-load {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUpLoad 0.8s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes slideDownLoad {
  0% {
    transform: translateY(0);
    opacity: 0;
  }

  100% {
    transform: translateY(30px);
    opacity: 1;
  }
}

.zoom-in {
  opacity: 0;
  transform: scale(0.8);
  animation: zoomIn 1s ease-out forwards;
}

@keyframes zoomIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.rotate-in {
  opacity: 0;
  transform: rotate(-30deg) scale(0.8);
  animation: rotateIn 2s ease-out forwards;
}

@keyframes rotateIn {
  to {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

.bounce-in {
  opacity: 0;
  transform: translateY(100px);
  animation: bounceIn 1.2s ease-in forwards;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }

  60% {
    opacity: 1;
    transform: translateY(-20px);
  }

  80% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(0);
  }
}

.slide-in-bottom-right {
  opacity: 0;
  transform: translate(100px, 100px);
  animation: slideInBottomRight 1.3s ease-out forwards;
}

@keyframes slideInBottomRight {
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

/* Back-to-top button styling */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background-color: var(--gold-color);
  /* gold color */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease, transform 0.2s ease;
  z-index: 1000;
}

.back-to-top:hover {
  background-color: var(--footer-color);
  /* navy color on hover */
  transform: translateY(-3px);
}

.back-to-top svg {
  stroke: var(--white);
  transition: stroke 0.3s ease;
}

.back-to-top:hover svg {
  stroke: var(--white);
  /* stays white */
}

.desktop-view-contact {
  display: block;
}

.mobile-view-contact {
  display: none;
}

.contact-us-section {
  background: var(--section-bg);
  padding: 80px 0;
  margin-top: 80PX;
  background: url(../assets/image/5.png);
  background-repeat: no-repeat;
  background-size: cover;
  animation: rotateBg 68s linear infinite;
  position: relative;
}

@keyframes rotateBg {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 100% 100%;
  }
}

.contact-us-section:after {
  background: #00000085;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 100%;
  top: 0;
}

.contact-us-section .form {
  width: 100%;
  max-width: 100%;
  /* background-color: var(--white); */
  border-radius: 10px;
  /* box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1); */
  z-index: 1000;
  overflow: hidden;
  display: flex;
  /* grid-template-columns: repeat(2, 1fr); */
  /* background: url('../assets/image/blog-1.png'); */
  /* background-repeat: no-repeat; */
  /* background-size: cover; */
}

.contact-us-section .contact-form {
  background-color: var(--gold-color);
  position: relative;

}

.contact-us-section .circle {
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 20%, var(--gold-color));
  position: absolute;
}

.contact-us-section .circle.one {
  width: 130px;
  height: 130px;
  top: 130px;
  right: -40px;
}

.contact-us-section .circle.two {
  width: 80px;
  height: 80px;
  top: 10px;
  right: 30px;
}

.contact-us-section .contact-form:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: var(--white);
  transform: rotate(45deg);
  top: 50px;
  left: -13px;
}

.contact-us-section form {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}

.contact-us-section .title {
  color: var(--white);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.contact-us-section .input-container {
  position: relative;
  margin: 1rem 0;
  width: 100%;
}

.contact-us-section .input {
  width: 100%;
  outline: none;
  border: 2px solid #fafafa;
  background: none;
  padding: 0.6rem 1.2rem;
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 5px;
  transition: 0.3s;
}

.contact-us-section textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 5px;
  resize: none;
  overflow-y: auto;
}

.contact-us-section .input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #fafafa;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.contact-us-section .input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}

.contact-us-section .btn {
  padding: 0.6rem 1.3rem;
  background-color: var(--white);
  border: 2px solid #fafafa;
  font-size: 0.95rem;
  color: var(--gold-color);
  line-height: 1;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
  width: 100%;
}

.contact-us-section .btn:hover {
  background-color: transparent;
  color: var(--white);
}

.contact-us-section .input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.contact-us-section .input-container span:before,
.input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: var(--gold-color);
  top: 50%;
  transform: translateY(-50%);
}

.contact-us-section .input-container span:before {
  left: 50%;
}

.contact-us-section .input-container span:after {
  right: 50%;
}

.contact-us-section .input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

.contact-us-section .input-container.focus span:before,
.contact-us-section .input-container.focus span:after {
  width: 50%;
  opacity: 1;
}

.contact-us-section .contact-info {
  padding: 10px;
  position: relative;
  z-index: 1;
}

.contact-us-section .contact-info .title {
  color: var(--white);
  font-size: 30px;
  font-weight: 500;
  font-family: "Barlow", sans-serif;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
}

.contact-us-section .text {
  color: var(--white);
  margin: 1.5rem 0 2rem 0;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}

.contact-us-section .info .information {
  color: var(--footer-bg);
  font-size: 14px;
  box-shadow: var(--shadow);
  padding: 20px 14px 40px;
  border: 1px solid var(--white);
  border-radius: 10px;
  transition: transform 0.3s ease;
  gap: 10px;
  position: relative;
  min-height: 300px;
  background: #0000008a;
  background-color: transparent;
  position: relative;
  transition: all 0.90s ease;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
}
.contact-us-section .info .information .contact-icon a{
  margin-top: 0;
}
.contact-us-section .info .information .common-main-title{
  min-height: 50px;
  margin-bottom: 24px;
  line-height: normal;
  margin-top: 24px;
}
.contact-us-section .info .information:hover {

  border: 1px solid var(--gold-color);
  transform: scale(0.96);
  color: var(--gold-color);
}

.contact-us-section .info .information:before {
  top: -70%;
  background-image: radial-gradient(circle, var(--gold-color) 20%, transparent 20%),
    radial-gradient(circle, transparent 20%, var(--gold-color) 20%, transparent 30%),
    radial-gradient(circle, var(--gold-color) 10%, transparent 20%),
    radial-gradient(circle, var(--gold-color) 20%, transparent 20%),
    radial-gradient(circle, transparent 10%, var(--gold-color) 15%, transparent 20%),
    radial-gradient(circle, var(--gold-color) 20%, transparent 20%),
    radial-gradient(circle, var(--gold-color) 20%, transparent 20%),
    radial-gradient(circle, var(--gold-color) 20%, transparent 20%),
    radial-gradient(circle, var(--gold-color) 20%, transparent 20%);
  background-size: 10% 10%, 4% 1%, 10% 12%, 10% 10%, 18% 12%, 10% 10%, 13% 12%,
    10% 10%, 12% 18%;
  background-position: 50% 120%;
  animation: greentopBubbles 2s ease;
}

@keyframes greentopBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%,
      40% 90%, 55% 90%, 70% 90%;
  }

  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%,
      50% 50%, 65% 20%, 90% 30%;
  }

  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%,
      50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

.contact-us-section .info .information:hover::after {
  bottom: -70%;
  background-image: radial-gradient(circle, var(--gold-color) 20%, transparent 20%),
    radial-gradient(circle, var(--gold-color) 20%, transparent 20%),
    radial-gradient(circle, transparent 10%, var(--gold-color) 15%, transparent 20%),
    radial-gradient(circle, var(--gold-color) 20%, transparent 20%),
    radial-gradient(circle, var(--gold-color) 20%, transparent 20%),
    radial-gradient(circle, var(--gold-color) 20%, transparent 20%),
    radial-gradient(circle, var(--gold-color) 20%, transparent 20%);
  background-size: 10% 10%, 4% 1%, 10% 12%, 10% 10%, 18% 12%, 10% 10%, 13% 12%,
    10% 10%, 12% 18%;
  background-position: 50% 0%;
  animation: greenbottomBubbles 2s ease;
}

@keyframes greenbottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%,
      70% -10%, 70% 0%;
  }

  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%,
      105% 0%;
  }

  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%,
      110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

.contact-us-section .info .information:active {
  transform: scale(0.96);
}

.contact-us-section .info .information:before,
.contact-us-section .info .information:after {
  position: absolute;
  content: "";
  width: 100%;
  left: 50%;
  right: 0;
  top: 0;
  margin: 0 auto;
  height: 100%;
  transform: translateX(-50%);
  z-index: -1000;
  background-repeat: no-repeat;
}

.contact-us-section .info .information .contact-icon {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  border: 1px solid var(--gold-color);
  bottom: -21px;
  left: 0;
  right: 0;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

.contact-us-section .info .information:hover {
  transform: translateY(-8px);

}

.contact-us-section .info .information i {
  color: var(--gold-color);
}

.contact-us-section .info .information p {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  text-align: center;
}

.contact-us-section .info .information a {
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  margin-top: 10px;
}

.contact-us-section .info .information .contact-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.contact-us-section .info .information .contact-content span.contact-main-title {
  color: var(--gold-color);
  font-weight: 700;
  font-size: 16px;
  padding-bottom: 6px;
}

.contact-us-section .info .information .contact-content span.contact-sub-title {
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
}

.contact-us-section .icon {
  width: 28px;
  margin-right: 0.7rem;
}

.contact-us-section .social-media {
  padding: 2rem 0 0 0;
}

.contact-us-section .social-media p {
  color: #333;
}

.contact-us-section .social-icons {
  display: flex;
  margin-top: 0.5rem;
}

.contact-us-section .social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: linear-gradient(45deg, #ab8a6291, #ab8a62);
  color: var(--white);
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  transition: 0.3s;
}

.contact-us-section .social-icons a:hover {
  transform: scale(1.05);
}

.contact-us-section .contact-info:before {
  content: "";
  position: absolute;
  width: 110px;
  height: 100px;
  border: 22px solid var(--gold-color);
  border-radius: 50%;
  bottom: -77px;
  right: 50px;
  display: none;
  opacity: 0.3;
}

.contact-us-section .big-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #1cd4af, #159b80);
  bottom: 50%;
  right: 50%;
  transform: translate(-40%, 38%);
  display: none;
}

.contact-us-section .big-circle:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background-color: #fafafa;
  border-radius: 50%;
  top: calc(50% - 180px);
  left: calc(50% - 180px);
}

.contact-us-section .square {
  position: absolute;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(181%, 11%);
  opacity: 0.2;
}

.contact-us-section .common-primary-btn {
  position: relative;
  max-width: 100%;
  min-width: 100%;
}

.contact-us-section .common-primary-btn:hover {
  background-color: transparent;
  border: 1px solid var(--gold-color);
  transform: scale(0.96);
  color: var(--gold-color);
}

.contact-us-section .common-primary-btn:hover:before {
  top: -70%;
  background-image: radial-gradient(circle, var(--gold-color) 20%, transparent 20%),
    radial-gradient(circle, transparent 20%, var(--gold-color) 20%, transparent 30%),
    radial-gradient(circle, var(--gold-color) 20%, transparent 20%),
    radial-gradient(circle, var(--gold-color) 20%, transparent 20%),
    radial-gradient(circle, transparent 10%, var(--gold-color) 15%, transparent 20%),
    radial-gradient(circle, var(--gold-color) 20%, transparent 20%),
    radial-gradient(circle, var(--gold-color) 20%, transparent 20%),
    radial-gradient(circle, var(--gold-color) 20%, transparent 20%),
    radial-gradient(circle, var(--gold-color) 20%, transparent 20%);
  background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%,
    10% 10%, 18% 18%;
  background-position: 50% 120%;
  animation: greentopBubbles 0.6s ease;
}

@keyframes greentopBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%,
      40% 90%, 55% 90%, 70% 90%;
  }

  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%,
      50% 50%, 65% 20%, 90% 30%;
  }

  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%,
      50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

.contact-us-section .common-primary-btn:hover::after {
  bottom: -70%;
  background-image: radial-gradient(circle, var(--gold-color) 20%, transparent 20%),
    radial-gradient(circle, var(--gold-color) 20%, transparent 20%),
    radial-gradient(circle, transparent 10%, var(--gold-color) 15%, transparent 20%),
    radial-gradient(circle, var(--gold-color) 20%, transparent 20%),
    radial-gradient(circle, var(--gold-color) 20%, transparent 20%),
    radial-gradient(circle, var(--gold-color) 20%, transparent 20%),
    radial-gradient(circle, var(--gold-color) 20%, transparent 20%);
  background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 20% 20%, 18% 18%;
  background-position: 50% 0%;
  animation: greenbottomBubbles 0.6s ease;
}

@keyframes greenbottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%,
      70% -10%, 70% 0%;
  }

  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%,
      105% 0%;
  }

  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%,
      110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

.contact-us-section .common-primary-btn:active {
  transform: scale(0.96);
}

.contact-us-section .common-primary-btn:before,
.contact-us-section .common-primary-btn:after {
  position: absolute;
  content: "";
  width: 100%;
  left: 50%;
  right: 0;
  top: 0;
  margin: 0 auto;
  height: 100%;
  transform: translateX(-50%);
  z-index: -1000;
  background-repeat: no-repeat;
}

.contact-us-section .conact-form-service {
  box-shadow: var(--shadow);
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  max-height: 400px;
  padding: 25px 14px;
  border-radius: 10px;
}

.contact-us-section .conact-form-service img {
  width: 40px;
  height: auto;
  margin-bottom: 10px;
  min-height: 20px;
}

.contact-us-section .conact-form-service h6 {
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
}

.contact-us-section .conact-form-service p {
  font-size: 14px;
  color: var(--black);
  font-weight: 400;
  margin: 10px 0;
  text-align: center;
  min-height: 220px;
}

.contact-us-section .conact-form-service .common-primary-btn {
  position: relative;
  max-width: 140px;
  min-width: 140px;
  height: 40px;
    font-size: 16px;
}

.contact-us-section .contact-position .col-md-2 {
  width: 210px;
  margin-bottom: 20px;

}

/* common css */
.common-banner-section .common-banner-content {
  margin: 80px 0;
  color: var(--white);
  text-align: center;
  background-color: #33333397;
  width: 738px;
  padding: 70px 61px;
  max-width: 100%;
  border-radius: 15px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.whatsapp-icon .pulse i {
  position: relative;
  z-index: 20;
  top: 11px;
  font-size: 30px;
}

.whatsapp-icon .pulse {
  position: fixed;
  cursor: pointer;
  display: block;
  width: 50px;
  height: 50px;
  bottom: 113px;
  right: 34px;
  background-color: rgba(0, 200, 0, 1);
  color: var(--white);
  border-radius: 50px;
  text-align: center;
  transition-duration: 0.5s;
  animation: pulse-btn 3s infinite;
  z-index: 9000;
}

.whatsapp-icon .pulse:hover {
  background-color: rgba(0, 150, 0, 1);
  color: var(--white);
}

.whatsapp-icon .my-float {
  margin-top: 15px;
}

@-webkit-keyframes pulse-btn {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 1);
  }

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

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

.whatsapp-icon .pulse a {
  color: var(--white);
}

@media (max-width:1400px) {
  .contact-us-section .info .information {
    padding: 20px 10px 40px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .contact-us-section .info .information a {
    text-align: center;
  }
}

.common-banner-section {
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  background-position-x: 75%;
  min-height: 400px;
  height: 100%;
  max-height: 650px;
}

@media (max-width:1440px) {}

@media (max-width:1199px) {

  .contact-us-section .info .information {
    margin-bottom: 30px;
    padding: 20px;
    margin-top: 30px;
  }

  .contact-us-section .contact-info {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }

  .contact-us-section .contact-position .col-md-2 {
    width: 182px;
  }

  .contact-us-section .common-primary-btn {
    font-size: 16px;
  }


  
}

@media (max-width:1024px) {
  .common-primary-btn {
    height: 50px;
    max-width: 120px;
    min-width: 120px;
    font-size: 16px;
  }

  .common-section {
    padding-top: 50px;
  }

  .common-title {
    font-size: 40px;
  }

  .contact-us-section {
    margin-top: 50px;
    padding: 50px 0;
  }


}

@media (max-width:991px) {

  .common-main-title {
    font-size: 28px;
  }

  .common-sub-title {
    font-size: 14px;
  }

  .contact-us-section .contact-info .title {
    font-size: 24px;
  }

  .contact-us-section .contact-position .col-md-2 {
    width: 200px;
  }

  .contact-us-section .info .information {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .contact-us-section .info .information .common-main-title{
    min-height: 50px;
    margin-bottom: 0;
    line-height: normal;
    margin-top: 0;
  }
  .contact-us-section .conact-form-service{
    max-height: 360px;
  }
}

@media (max-width:767px) {
  .container-fluid {
    padding: 0 10px;
  }

  .common-title {
    font-size: 30px;
  }

  .common-primary-btn:before,
  .common-primary-btn:after {
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: 0;
  }

  .common-section {
    padding-top: 30px;
  }

  .customer-card {
    margin-bottom: 40px;
  }

  .contact-us-section {
    margin-top: 30px;
  }

  .contact-us-section .form {
    display: flex;
    flex-direction: column;
  }

  .contact-us-section .contact-form:before {
    transform: rotate(140deg);
    top: -16px;
    left: 50%;
    display: none;
  }


  .contact-us-section .contact-info .title {
    font-size: 20px;
    text-align: center;
    line-height: 30px;
  }

  .contact-us-section .text {
    margin: 0;
    text-align: center;
    padding-bottom: 20px;
    font-size: 14px;
  }

  .contact-us-section .info .information {
    min-height: 320px;
    margin-bottom: 20px;
  }
  .contact-us-section .conact-form-service p{
    min-height: auto;
  }
  .contact-us-section .conact-form-service{
    padding: 25px;
    gap: 10px;
  }
  .contact-us-section .contact-position .col-md-2{
    width: 100%;
    padding: 0;
  }
   .contact-us-section .contact-position .cotainer{
    padding: 0 11px;
   }
}

@media (max-width:576px) {
  .common-primary-btn {
    max-width: 100px;
    min-width: 100px;
    font-size: 14px;
    height: 40px;
  }

  .common-title {
    font-size: 28px;
  }

  .back-to-top {
    width: 35px;
    height: 35px;
    right: 20px;
  }

  .whatsapp-icon .pulse {
    height: 45px;
    width: 45px;
    bottom: 87px;
    right: 16px;
  }

  .whatsapp-icon .pulse i {
    top: 11px;
    font-size: 21px;
  }
  .common-main-title{
    font-size: 24px;
  }
}

h2.common-main-title.just-in {
    font-size: 36px !important;
    font-family: "Gilda Display", serif !important;
    font-weight: 500 !important;
    color: var(--black) !important;
    position: relative !important;
    margin-bottom: 20px !important;
    line-height: 1.25em !important;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #495057 !important;
    background-color: #fff !important;
    border-color: #dee2e6 #dee2e6 #fff !important;
}
.nav-tabs .nav-link {
    border: 1px solid transparent !important;
    border-top-left-radius: .25rem !important;
    border-top-right-radius: .25rem !important;
}
.nav-tabs {
    border-bottom: 1px solid #dee2e6 !important;
}