:root {
  --black: #343A40;
  --white: #ffffff;
  --grey-color: #E9ECEF;
  --primary-color: #0A1F44;
  --secondary-color: #0D6EFD;
  --accent-color: #FF6B00;
  --lightgrey: #F5F7FA;
  --highlight: #00C2FF;
  --title-font: "Montserrat", sans-serif;
  --paragraph-font: "Inter", sans-serif;
}



body {
  font-family: var(--paragraph-font);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  color: var(--black);
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font);color: var(--primary-color);
}

a {
  text-decoration: none;
}

p {
  font-weight: 400;
}

.custom-container {
  padding-left: 24px;
  padding-right: 24px;
  max-width: 1180px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.pt-50 {
  padding-top: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pt-25 {
  padding-top: 25px;
}

.pb-25 {
  padding-bottom: 25px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mt-25 {
  margin-top: 25px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mt-70 {
  margin-top: 70px;
}

.fs-20 {
  font-size: 20px;
}

.main-title {
  font-size: 40px;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1;
}

.main-title span {
  color: var(--primary-color);
}

.sub-title {
  font-size: 26px;
  font-weight: 500;
}

.bg-grey {
  background: var(--lightgrey);
}
.bg-grey2 {
  background: var(--grey-color);
}

.theme-btn {
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  text-decoration: none;
  border-radius: 10px;
  outline: 0;
  border: none;
  padding: 14px 26px 14px 26px;
  background: var(--accent-color);
  color: #fff;
  transition: 0.3s ease-in;
  position: relative;
  overflow: hidden;
}

.theme-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width:0;
  height: 100%;
  border-radius: 10px;
  background: var(--secondary-color);transform-origin: left;transition: 0.3s ease-in;

}.theme-btn:hover::before{
  width: 100%;
}
.theme-btn span{
  display: block;position: relative;
}
.theme-btn2 {
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  text-decoration: none;
  border-radius: 10px;
  outline: 0;
  border: none;
  padding: 14px 26px 14px 26px;
  background: var(--secondary-color);
  color: #fff;
  transition: 0.3s ease-in;
  position: relative;
  overflow: hidden;
}
.theme-btn2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width:0;
  height: 100%;
  border-radius: 10px;
  background: var(--accent-color);transform-origin: left;transition: 0.3s ease-in;

}.theme-btn2:hover::before{
  width: 100%;
}
.theme-btn2 span{
  display: block;position: relative;
}
.theme-btn3 {
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  text-decoration: none;
  border-radius: 10px;
  outline: 0;
  border: 1px solid var(--secondary-color);
  padding: 14px 26px 14px 26px;
  background: transparent;
  color: var(--secondary-color);
  transition: 0.3s ease-in;
  position: relative;
}.bg-blue{
  background: var(--primary-color);
}