@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Red+Rose:wght@300;400;500;600;700&display=swap");

:root {
  --primary: #7bc678;
  --secondary: #f76800;
  --secondary-dark: #e66a10;
  --bttext: #363636;
  --bgdark: #14a197;
  --bglight: #ededed;
  --btbg: #fdde43;
}

/* Text utilities */
.text-primary {
  color: var(--primary);
}
.text-secondary {
  color: var(--secondary);
}
.text-secondary-dark {
  color: var(--secondary-dark);
}
.text-bttext {
  color: var(--bttext);
}

/* Background utilities */
.bg-primary {
  background-color: var(--primary);
}

.bg-bglight {
  background-color: var(--bglight);
}
.bg-bgdark {
  background-color: var(--bgdark);
}
.bg-btbg {
  background-color: var(--btbg);
}

/* Global styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  font-family: "Poppins", sans-serif;
  color: #323030;
  background-color: #fff;
}

.redrose {
  font-family: "Red Rose", serif;
}

/* my contain sizes */
@media (min-width: 100px) {
  .contain {
    max-width: 1920px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
  }
  .paddingy {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .marginy {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .paddingx {
    padding-left: 20px;
    padding-right: 20px;
  }
  .define-text-manually {
    font-size: 40px !important;
    line-height: 1 !important;
  }
}

@media (min-width: 768px) {
  .contain {
    max-width: 1920px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
  }
  .paddingy {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .marginy {
    margin-top: 35px;
    margin-bottom: 35px;
  }
  .paddingx {
    padding-left: 30px;
    padding-right: 30px;
  }
  .define-text-manually {
    font-size: 40px !important;
    line-height: 1 !important;
  }
}

@media (min-width: 1024px) {
  .contain {
    max-width: 1920px;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    padding-left: 0px;
    padding-right: 0px;
  }
  .paddingy {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .marginy {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .paddingx {
    padding-left: 40px;
    padding-right: 40px;
  }
  .define-text-manually {
    font-size: 45px !important;
    line-height: 1 !important;
  }
}

.contain2 {
  max-width: 1920px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}

/* hero section heading */
@media (min-width: 1350px) {
  .define-text-manually {
    font-size: 50px !important;
    line-height: 1 !important;
  }
}

@media (min-width: 1650px) {
  .define-text-manually {
    font-size: 65px !important;
    line-height: 1 !important;
  }
}

@media (min-width: 1850px) {
  .define-text-manually {
    font-size: 80px !important;
    line-height: 1 !important;
  }
}

/* milestone line animation */
@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  } /* move up 20px */
  100% {
    transform: translateY(0);
  }
}

.animate-float {
  animation: floatUpDown 3s ease-in-out infinite;
}
