@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
:root {
  --body-family: "Montserrat", sans-serif;
  --body-color: #6b6b6b;
  --main-color: #4fb848;
  --heading-color: #252525;
  --new-color: #f2fffa;
  --optional-color: #032644;
  --white-color: #ffffff;
  --black-color: #000000;
  --font-size: 15px;
  --transition: all ease 0.5s;
  --border-radius: 4px;
  --box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

body {
  overflow-x: hidden;
  font-size: var(--font-size);
  font-family: var(--body-family);
  color: var(--body-color);
}

a {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  text-decoration: none;
  color: var(--body-color);
}

a:hover {
  text-decoration: none !important;
  color: var(--main-color);
}

a:focus {
  text-decoration: none;
}

button {
  outline: 0 !important;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  padding: 0;
}

button:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-weight: bold;
  font-family: var(--heading-font-family);
}

h3 {
  font-weight: 600;
}

p {
  font-size: var(--font-size);
  margin-bottom: 15px;
  line-height: 1.8;
}

p:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  margin: 0;
}
.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

.default-btn,
[type="submit"]:not(:disabled) {
  font-size: 16px;
  color: var(--white-color) !important;
  line-height: 1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: inline-table;
  padding: 15px 12px;
  border-radius: 10px;
  font-weight: 600;
  background-color: var(--main-color);
}

.default-btn i {
  position: relative;
  top: 2px;
  margin-left: 5px;
}

.default-btn::before,
.default-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--heading-color);
  z-index: -1;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.default-btn::after {
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
}

.default-btn:hover {
  color: var(--white-color);
}

.default-btn:hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.default-btn:hover::after {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.ptb-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-40 {
  padding-bottom: 40px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-minus-100 {
  margin-top: -100px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.ml-15 {
  margin-left: 10px;
}

.mr-15 {
  margin-right: 10px;
}

.video-popup {
  position: relative;
  padding: 0px;
  width: auto;
  max-width: 800px;
  margin: 0px auto;
}

.white-popup {
  position: relative;
  width: auto;
  max-width: 500px;
  margin: 20px auto;
}
