:root {
  --primary-color: #56bdcc;
  --sidebar-width: 260px;
  --space: 20px;
  --btn-gradient: linear-gradient(45deg, #6362e7a3, #6362e7);
  --btn-gradient-hover: linear-gradient(45deg, #6362e7, #6362e7a3);
}

body {
  background: #ffffff;
  /* font-family: "DM Sans", sans-serif; */
  font-family: "Roboto", sans-serif;
  color: #474747;
  font-size: 14px;
}

a {
  color: #474747;
  text-decoration: none;
}

a:hover {
  color: #4e9bc4;
}

.paddingtopcss {
  /* padding-top: 125px; */
}

.iti {
  position: relative;
  display: inline-block;
  width: 100%;

}

.navbar-nav>.nav-item>.nav-link.active,
nav.navbar .navbar-nav>.nav-item>.nav-link.active {
  color: #4e9bc4;
}

h1 {
  font-size: 58px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 36px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

p {
  font-size: 18px;
  margin-bottom: 15px;
}

/* .btn {
  font-size: 14px;
  font-weight: 500;
  border-radius: 35px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
} */

.btn {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  padding: 0 34px;
  line-height: 51px;
  transition: all 200ms linear 0ms;
  border-radius: 100px;
  box-shadow: 0 8px 10px rgba(12, 12, 12, 0.1);
  position: relative;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  background-image: linear-gradient(90deg,
      var(--primary-color) 0%,
      var(--primary-color) 50%,
      var(--primary-color));
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='', endColorStr='');
  background-size: 300%, 1px;
  background-position: 0;
  height: auto;
  box-shadow: none !important;
}

.btn:focus {
  box-shadow: none !important;
  border: 1px solid var(--primary-color);
}

.btn:hover {
  background: #fff;
  color: #474747;
  border: 1px solid #474747;
}

.btns {
  font-size: 15px;
  font-weight: 700;
  color: #474747;
  background-color: transparent;
  padding: 0 34px;
  line-height: 51px;
  transition: all 200ms linear 0ms;
  border-radius: 100px;
  box-shadow: 0 8px 10px rgba(12, 12, 12, 0.1);
  text-align: center;
  cursor: pointer;
  border: 1px solid #6b6b6b;
  height: auto;
  box-shadow: none !important;
}

.btns:focus {
  box-shadow: none !important;
  border: 1px solid var(--primary-color);
}

.btns:hover {
  background: #56bdcc;
  color: #474747;
  border: 1px solid #474747;
}

.btns:focus {
  box-shadow: none !important;
  border: 1px solid #6b6b6b;
  background: #56bdcc;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.commoncss {
  padding: 80px 0px 80px;
}

.commoncsscstm {
  padding: 80px 0px 40px;
}