* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth !important;
}

html body {
  max-width: 1920px;
  margin: auto;
}

body {
  overflow-x: hidden;
  font-family: "Roboto", sans-serif !important;
  width: 100%;
}

.max-width {
  width: 93%;
  margin: auto;
}

h1 {
  font-size: 24.3rem !important;
}

h2 {
  font-size: 7rem !important;
}

h3 {
  font-size: 6rem !important;
  font-weight: 100 !important;
}

h4 {
  font-size: 5rem !important;
  font-weight: 100 !important;
}

h5 {
  font-size: 4rem !important;
  font-weight: 100 !important;
}

h6 {
  font-size: 3rem !important;
  font-weight: 100 !important;
}

p,
span,
textarea,
input,
::placeholder,
a,
ul,
li,
label {
  font-size: 1.5rem !important;
  text-decoration: none;
  line-height: 22px;
}

/* colors  */

.color-black {
  color: #000000;
}

.color-gray-light {
  color: #121416;
}

.color-gray-dark {
  color: #808080;
}

.color-white {
  color: white;
}

.dark-blue {
  color: #046498;
}

.light-blue {
  color: #64c6fb1a;
}

.navy-blue {
  color: #0042e1;
}

/* background colors  */

.light-blue-bg {
  background-color: rgb(37, 175, 249);
}

.dark-blue-bg {
  background-color: #046498;
}

.gradient-bg {
  background: rgb(19, 108, 181);
  background: linear-gradient(
    90deg,
    rgba(19, 108, 181, 1) 12%,
    rgba(73, 187, 189, 1) 70%
  );
}

.gray-bg {
  background-color: #f6f6f4;
}

.black-bg {
  background-color: black;
}
.view-all-btn {
  border: none;
  padding: 10px 30px;
  height: 40px;
  cursor: pointer;
  border-radius: 10px;
}
/* margin padding  */

.mt-10 {
  margin-top: 100px;
}

.mb-10 {
  margin-bottom: 100px;
}

.mt-5 {
  margin-top: 50px;
}

.mb-5 {
  margin-bottom: 50px;
}

.mt-3 {
  margin-top: 30px;
}

.mb-3 {
  margin-bottom: 30px;
}

.mt-2 {
  margin-top: 20px;
}

.mb-2 {
  margin-bottom: 20px;
}

.mt-1 {
  margin-top: 10px;
}

.mb-1 {
  margin-bottom: 10px;
}

/* padding  */

.p-5 {
  padding: 50px 0px;
}
.p-4 {
  padding: 2rem !important;
}
.p-8 {
  padding: 6rem !important;
}
.pb-4 {
  padding-bottom: 2rem !important;
}

/* gradinet line  */

.line {
  height: 5px;
  width: 100px;
}

/* aniamtion  */

.left-anim,
.right-anim {
  opacity: 0;
  transition:
    transform 1s ease,
    opacity 1s ease;
}

.left-anim {
  transform: translateX(-100%); /* Initially off-screen to the left */
}

.right-anim {
  transform: translateX(100%); /* Initially off-screen to the right */
}

.visible .left-anim {
  opacity: 1;
  transform: translateX(0); /* Move to its normal position */
}

.visible .right-anim {
  opacity: 1;
  transform: translateX(0); /* Move to its normal position */
}
.text-uppercase {
  text-transform: uppercase !important;
}

@media (max-width: 992px) {
  h2 {
    font-size: 6rem !important;
  }
  h3 {
    font-size: 5rem !important;
  }
  h4 {
    font-size: 4.5rem !important;
  }
}

@media (max-width: 768px) {
  h2 {
    font-size: 5rem !important;
  }
  h3 {
    font-size: 4.5rem !important;
  }
  h4 {
    font-size: 4rem !important;
  }
}

@media (max-width: 556px) {
  h2 {
    font-size: 4.5rem !important;
  }
  h3 {
    font-size: 4rem !important;
  }
  h4 {
    font-size: 3.5rem !important;
  }
}
