@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Inter:wght@300;400;500;600&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css');

* {
  margin: 0;
  padding: 0;
  max-width: 100%;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
}

html {
  scrollbar-gutter: stable;
}

/* style css start */

.container {
  max-width: 1300px;
  margin: auto;
}

.padding_top_30 {
  padding-top: 30px !important;
}

.padding_top_20 {
  padding-top: 20px !important;
}

.padding_top_10 {
  padding-top: 10px !important;
}

.padding_bottom_30 {
  padding-bottom: 30px !important;
}

.margin_left_20 {
  margin-left: 20px !important;
}

section {
  margin-top: 5% !important;
}

.text_center {
  text-align: center;
}

.text_end {
  text-align: end;
}

.text_start {
  text-align: start;
}

.cursor_pointer {
  cursor: pointer !important;
}
button{
  cursor: pointer;
}

.display_none {
  display: none;
}
.visibility_hidden{
  visibility: hidden;
}

.mini_para{
  font-size: 14px;
   font-weight: 300;
  line-height: 1.6;
  color: #4b5563;
}
 

/* main heading css start */
.main_heading h1 {
  font-size: 5rem;
  font-family: 'Caveat', cursive;
  line-height: 1.2;
}

.main_heading h1 span {
  font-size: 5rem;
  font-family: 'Caveat', cursive;
  line-height: 1.2;
}

.main_heading {
  font-size: 5rem;
  font-family: 'Caveat', cursive;
  line-height: 1.2;
}

@media (max-width: 375px) {
  .main_heading {
    font-size: 36px;
  }
}

@media (max-width: 1024px) {
  .main_heading h1 {
    font-size: 4rem;
  }

  .main_heading h1 span {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  .main_heading h1 {
    font-size: 3rem;
  }

  .main_heading h1 span {
    font-size: 3rem;
  }
}

@media (max-width: 375px) {
  .main_heading h1 {
    font-size: 2rem;
  }

  .main_heading h1 span {
    font-size: 2rem;
  }
}

@media (max-width: 320px) {
  .main_heading h1 {
    font-size: 1.5rem;
  }

  .main_heading h1 span {
    font-size: 1.5rem;
  }
}

/* main heading css end */

/* paragraph css start */
.mini_text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: #4b5563;
}

/* Container css start */
@media (max-width: 1024px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}

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

@media (max-width: 325px) {
  .container {
    padding: 0 5px;
  }
}

/* conatiner css end */


/* scroll to top button */
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  border-radius: 8%;
  background: #232d63;
  color: #fff;
  border: none;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: scale(0.6);
  pointer-events: none;
  transition: all 0.35s ease;
}

#scrollTopBtn.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

#scrollTopBtn:hover {
  transform: scale(0.9);
}

#scrollTopBtn svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  color: #fff;
  width: 16px;
  height: 16px;
}

/* multiple place using this css start*/
.left-visual {
  margin-top: 40px;
  display: flex;
  justify-content: start;
}

.left-visual img {
  width: 60%;
  height: 100%;
  padding: 10px;
  border-radius: 12px;
}
/* From 768px and below */
@media (max-width: 768px) {
  .left-visual {
    justify-content: center;
  }
}
/* multiple place using this css end*/




/* subtle floating effect */
@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

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