* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

@font-face {
  font-family: "Poppins", sans-serif;
  src: url(../font/Poppins/Poppins-Regular.ttf);
}
body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
}

h1 {
  font-size: 45px;
  text-transform: capitalize;
}

h2 {
  font-size: 42px;
  text-transform: capitalize;
}

h3 {
  font-size: 42px;
  text-transform: capitalize;
}

h4 {
  font-size: 24px;
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: calc(100% - 150px);
  margin: 0 auto;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
}

.tagline {
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: capitalize;
}

.primary-btn a {
  display: flex;
  gap: 30px;
  align-items: center;
  color: #fff;
  font-size: 18px;
  letter-spacing: 2px;
}
.primary-btn a .icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  color: #000;
  font-size: 30px;
  border-radius: 50%;
  transition: all 0.2s linear;
}
.primary-btn a .icon i {
  transform: rotate(45deg);
  transition: all 0.2s linear;
}

.primary-btn a:hover .icon {
  background-color: #dbf3ff;
}
.primary-btn a:hover .icon i {
  transform: rotate(0deg);
}

.secondary-btn a {
  display: flex;
  gap: 30px;
  align-items: center;
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 600;
}
.secondary-btn a .icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: #000000;
  font-size: 30px;
  border-radius: 50%;
  transition: all 0.2s linear;
}
.secondary-btn a .icon i {
  transform: rotate(45deg);
  transition: all 0.2s linear;
}

.secondary-btn a:hover .icon {
  background-color: #dbf3ff;
  color: #000;
}
.secondary-btn a:hover .icon i {
  transform: rotate(0deg);
}

.section-padding {
  padding: 100px 0px;
}

.sticky {
  box-shadow: 0 2px 20px 0 rgba(209, 209, 209, 0.6);
  position: fixed !important;
  top: 0;
  width: 100%;
  padding: 0;
  z-index: 999;
  transition: all 0.2s linear;
  background-color: #ffffff !important;
}/*# sourceMappingURL=global.css.map */