:root {
  --thm-font: "Kumbh Sans", sans-serif;
  --thm-gray: #797989;
  --thm-gray-rgb: rgba(121, 121, 137);
  --thm-primary: #003361;
  --thm-primary-rgb: rgba(0, 51, 97, 1);
  --thm-black: #000000;
  --thm-black-rgb: rgba(0, 0, 0);
  --thm-base: #e51d3a;
  --thm-base-rgb: rgba(238, 41, 106);
}
.container {
  max-width: 1240px;
}

/*==============================================
   Base Css
===============================================*/
* {
  margin: 0px;
  padding: 0px;
}

body {
  color: var(--thm-gray);
  font-family: var(--thm-font);
  overflow-x: hidden;
}

button:focus {
  outline: none;
}

h1,
h2,
h3 {
  color: var(--thm-primary);
  font-weight: 700;
  font-family: var(--thm-font);
  margin: 0px;
}
h2 {
  font-size: 35px;
}
h3 {
  font-size: 20px;
  line-height: 34px;
  font-weight: 700;
}
h4 {
  font-size: 18px;
  color: var(--thm-base);
  font-weight: 700;
}

a,
a:hover,
a:active,
a:focus {
  text-decoration: none;
  outline: none;
  border: none;
  transition: all 0.4s ease-in-out;
}

ul,
li {
  list-style: none;
}
ol,
ul {
  padding-left: 0em;
}
p {
  margin-bottom: 10px;
}

/* Button Style */
.btn-style {
  cursor: pointer;
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding-top: 4px;
  padding-left: 40px;
  padding-bottom: 5px;
  padding-right: 50px;
  background-color: var(--thm-base);
  color: #ffffff;
  font-size: 16px;
  line-height: 45px;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: capitalize;
  border-radius: 30px;
  transition: all 0.3s linear;
  font-family: var(--thm-font);
  z-index: 1;
}

.btn-style::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  transform: translateX(-100%);
  border-radius: 30px;
  transition-duration: 800ms;
  background-color: var(--thm-primary);
  z-index: 2;
}

.btn-style:hover::before {
  transform: translateX(0px);
}

.btn-style .txt {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 2;
}

.btn-style:hover,
.btn-style:focus {
  color: #ffffff;
}

/* Button Style ends */

/*============================================
=           Spacing         =
=============================================*/
.header-spacing {
  padding: 0px;
}
.spacing {
  padding: 120px 0px 120px 0px;
}

@media screen and (max-width: 1025px) {
  .spacing {
    padding: 80px 30px;
  }
  .btn-style {
    padding-top: 4px;
    padding-left: 30px;
    padding-bottom: 4px;
    padding-right: 35px;
    line-height: 35px;
  }
}

@media screen and (max-width: 767px) {
  .spacing {
    padding: 60px 15px;
  }
  .btn-style {
    padding-top: 4px;
    padding-left: 20px;
    padding-bottom: 4px;
    padding-right: 25px;
    line-height: 36px;
    border-radius: 5px;
  }
  .btn-style::before {
    border-radius: 5px;
  }
}
.internal-link{
  text-decoration: none;
  color: var(--thm-base) !important;
  font-weight: 500;
}